Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 11 from a total of 11 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer Ownersh... | 16530275 | 1136 days ago | IN | 0 ETH | 0.0007744 | ||||
| Set Denied Marke... | 16447375 | 1148 days ago | IN | 0 ETH | 0.0006838 | ||||
| Set Denied Marke... | 16447372 | 1148 days ago | IN | 0 ETH | 0.0006539 | ||||
| Set Denied Marke... | 16447368 | 1148 days ago | IN | 0 ETH | 0.00063039 | ||||
| Set Denied Marke... | 16447355 | 1148 days ago | IN | 0 ETH | 0.00068691 | ||||
| Set Denied Marke... | 16447350 | 1148 days ago | IN | 0 ETH | 0.00065138 | ||||
| Set Denied Marke... | 16447346 | 1148 days ago | IN | 0 ETH | 0.00067507 | ||||
| Set Denied Marke... | 16447340 | 1148 days ago | IN | 0 ETH | 0.00064582 | ||||
| Set Denied Marke... | 16447334 | 1148 days ago | IN | 0 ETH | 0.00070141 | ||||
| Set Denied Marke... | 16447327 | 1148 days ago | IN | 0 ETH | 0.00068691 | ||||
| Set Primary Mint... | 16447060 | 1148 days ago | IN | 0 ETH | 0.00065368 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
RuniverseLand
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
// @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
//
// Runiverse Land Plots
// Website: https://runiverse.world
//
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./ERC721Vestable.sol";
import "./IRuniverseLand.sol";
/**
* @dev This implements the total set of plots in the Runiverse. The plots are
* {ERC721} tokens.
*
* This contract itself is not upgradable and the tokens have a fixed supply, but the
* minting mechanism is flexible.
*
* Because the totally supply of land will be minted in phases over a long
* period of time, this contract is designed to mint through companion
* contracts, as specified by primaryMinter and secondaryMinter.
*
* We specify both a primary and a secondary minter because it allows for atomic
* upgrades without downtime.
*/
contract RuniverseLand is
Ownable,
ReentrancyGuard,
ERC721Vestable,
IRuniverseLand
{
using Strings for uint256;
/// @notice Maximum supply of land plots
uint256 private constant MAX_SUPPLY = 70000;
/// @notice Counter to track the number minted so far
uint256 public numMinted;
/// @notice Address of the primary minter
address public primaryMinter;
/// @notice Address of the secondary minter
address public secondaryMinter;
/// @notice The base URI for the metadata of the tokens
string public baseTokenURI;
error NoPlotsAvailable();
error Address0Error();
/// @notice Whitelist for markets
mapping(address => bool) private _deniedMarketplaces;
string private constant R = "I should like to save the Shire, if I could";
/**
* @dev Create the contract and set the initial baseURI
* @param baseURI string the initial base URI for the token metadata URL
*/
constructor(string memory baseURI) ERC721("RuniverseLand", "RUNIVERSE") {
baseTokenURI = baseURI;
}
/**
* @notice Mint a new token with a specific id
* @param recipient address representing the owner of the new tokenId
* @param tokenId uint256 ID of the token to be minted
* @param size PlotSize size to be minted.
*/
function mintTokenId(
address recipient,
uint256 tokenId,
PlotSize size
) public override nonReentrant {
if(numMinted >= MAX_SUPPLY){
revert NoPlotsAvailable();
}
require(
_msgSender() == primaryMinter || _msgSender() == secondaryMinter,
"Not a minter"
);
++numMinted;
emit LandMinted(recipient, tokenId, size);
_mint(recipient, tokenId);
}
/**
* @dev Returns the URL of a given tokenId
* @param tokenId uint256 ID of the token to be minted
* @return string the URL of a given tokenId
*/
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
return string(abi.encodePacked(baseTokenURI, tokenId.toString()));
}
/**
* @dev Returns if the token exists
* @param tokenId uint256 the id of the token
* @return exists bool if it exists
*/
function exists(uint256 tokenId) external view returns (bool) {
return _exists(tokenId);
}
/**
* @dev Returns the base uri of the token.
* @return _baseURI string prefix uri.
*/
function _baseURI() internal view virtual override returns (string memory) {
return baseTokenURI;
}
/**
* @dev Returns the total number of minted lands.
* @return totalSupply uint256 the number of minted lands.
*/
function totalSupply() external view returns (uint256) {
return numMinted;
}
/**
* Only the owner can do these things
*/
/**
* @dev Sets a new base URI
* @param newBaseURI string the new token base URI
*/
function setBaseURI(string calldata newBaseURI) public onlyOwner {
baseTokenURI = newBaseURI;
}
/**
* @dev Sets a new primary minter address
* @param newPrimaryMinter address of the new minter
*/
function setPrimaryMinter(address newPrimaryMinter) external onlyOwner {
require(newPrimaryMinter != address(0), "Invalid primary minter address");
primaryMinter = newPrimaryMinter;
}
/**
* @dev Sets a new secondary minter address
* @param newSecondaryMinter address of the new secondary minter
*/
function setSecondaryMinter(address newSecondaryMinter) external onlyOwner {
require(newSecondaryMinter != address(0), "Invalid seecondary minter address");
secondaryMinter = newSecondaryMinter;
}
/**
* @notice set the vesting toggle
* @param _newVestingEnabled 1 for true, 0 for false
*/
function setVestingEnabled(uint256 _newVestingEnabled) external onlyOwner {
_setVestingEnabled(_newVestingEnabled);
}
/**
* @notice set the last vesting token Id
*/
function setLastVestingGlobalId(uint256 _newTokenId) external onlyOwner {
_setLastVestingGlobalId(_newTokenId);
}
/**
* @notice set the new vesting start time
*/
function setVestingStart(uint256 _newVestingStart) external onlyOwner {
_setVestingStart(_newVestingStart);
}
/**
* @notice set the new vesting end time
*/
function setVestingEnd(uint256 _newVestingEnd) external onlyOwner {
_setVestingEnd(_newVestingEnd);
}
/**
* @notice Override of the approve method to blacklist markets
* @param to address to approve transfer
* @param tokenId token be transferred allowed by to
*/
function approve(address to, uint256 tokenId) public virtual override {
require(!_deniedMarketplaces[to], "Invalid Marketplace");
super.approve(to, tokenId);
}
/**
* @notice Override of the setApprovalForAll method to blacklist markets
* @param operator address to approve transfer
* @param approved enable or disable transfer
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(!_deniedMarketplaces[operator], "Invalid Marketplace");
super.setApprovalForAll(operator, approved);
}
/**
* @notice Override of the isApprovedForAll method to blacklist markets. Reverts if is not allowed.
* @param owner owner of the tokens
* @param operator marketplace address
* @return true if all the tokens are approved to be trasnferred by operator.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
require(!_deniedMarketplaces[operator], "Invalid Marketplace");
return super.isApprovedForAll( owner, operator );
}
/**
* @notice Override of the getApproved method to blacklist markets. Reverts if is not allowed.
* @param tokenId Id of the token to check if is approved.
* @return address that is allowed to transfer the tokenId
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
address addr = super.getApproved(tokenId);
require(!_deniedMarketplaces[addr], "Invalid Marketplace");
return addr;
}
/**
* @notice Add or remove an address for the market blacklist
* @param market market place address
* @param denied deny (true) or allow (false) a marketplace
*/
function setDeniedMarketplace(address market, bool denied) public onlyOwner {
_deniedMarketplaces[market] = denied;
}
/**
* @dev ETH should not be sent to this contract, but in the case that it is
* sent by accident, this function allows the owner to withdraw it.
*/
function withdrawAll() external payable onlyOwner {
(bool success, ) = msg.sender.call{value: address(this).balance}("");
require(success, "withdraw was not succesfull");
}
/**
* @dev Again, ERC20s should not be sent to this contract, but if someone
* does, it's nice to be able to recover them
* @param token IERC20 the token address
* @param amount uint256 the amount to send
*/
function forwardERC20s(IERC20 token, uint256 amount) external onlyOwner {
if(address(msg.sender) == address(0)){
revert Address0Error();
}
token.transfer(msg.sender, amount);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) private pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// Runiverse Land Plots
// Website: https://runiverse.world
//
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
abstract contract ERC721Vestable is ERC721 {
/// @notice master switch for vesting
uint256 public vestingEnabled = 1;
/// @notice the tokens from 0 to lastVestedTokenId will vest over time
uint256 public lastVestingGlobalId = 10924;
/// @notice the time the vesting started
uint256 public vestingStart = 1674172801; // Jan 20th, 2023. 23:59 gmt
/// @notice the time the vesting ends
uint256 public vestingEnd = 1737331201; // Jan 20th, 2025. 23:59 gmt
/// Invalid Vesting Global Id, the gived Global ID : "`gived_global_id`" must be greater than 0
/// @param gived_global_id Global id.
error InvalidVestingGlobalId(uint256 gived_global_id);
/// Token Not Vested, The Vesting date is the next one `gived_global_id`
/// @param current_time Current time on chain.
/// @param token_vesting_time Vesting time.
error TokenNotVested(uint256 current_time,uint256 token_vesting_time);
/**
* @dev See {ERC721-_beforeTokenTransfer}.
*
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
uint256 globalId = getGlobalId(tokenId);
if (
vestingEnabled == 1 &&
from != address(0) && // minting
globalId <= lastVestingGlobalId &&
block.timestamp < vestingEnd
) {
uint256 vestingDuration = vestingEnd - vestingStart;
if(block.timestamp < (vestingDuration * globalId) / lastVestingGlobalId + vestingStart){
revert TokenNotVested({
current_time: block.timestamp,
token_vesting_time: (vestingDuration * globalId) / lastVestingGlobalId + vestingStart
});
}
}
}
/**
* @notice returns true if a tokenId has besting property.
*/
function isVestingToken(uint256 tokenId) external view returns (bool) {
uint256 globalId = getGlobalId(tokenId);
return globalId <= lastVestingGlobalId;
}
/**
* @notice returns the time when a tokenId will be vested.
*/
function vestsAt(uint256 tokenId) public view returns (uint256) {
uint256 globalId = getGlobalId(tokenId);
uint256 vestingDuration = vestingEnd - vestingStart;
return (vestingDuration * globalId) / lastVestingGlobalId + vestingStart;
}
/**
* @notice returns true if a tokenId is already vested.
*/
function isVested(uint256 tokenId) public view returns (bool) {
uint256 globalId = getGlobalId(tokenId);
if (vestingEnabled == 0) return true;
if (globalId > lastVestingGlobalId) return true;
if (block.timestamp > vestingEnd) return true;
return block.timestamp >= vestsAt(tokenId);
}
/**
* @notice set the vesting toggle
*/
function _setVestingEnabled(uint256 _newVestingEnabled) internal virtual {
vestingEnabled = _newVestingEnabled;
}
/**
* @notice set the last vesting token Id
*/
function _setLastVestingGlobalId(uint256 _newTokenId) internal virtual {
if(_newTokenId <= 0){
revert InvalidVestingGlobalId({
gived_global_id: _newTokenId
});
}
lastVestingGlobalId = _newTokenId;
}
/**
* @notice set the new vesting start time
*/
function _setVestingStart(uint256 _newVestingStart) internal virtual {
require(
_newVestingStart < vestingEnd,
"Start must be less than end"
);
vestingStart = _newVestingStart;
}
/**
* @notice set the new vesting start time
*/
function _setVestingEnd(uint256 _newVestingEnd) internal virtual {
require(
_newVestingEnd > vestingStart,
"End must be greater than start"
);
vestingEnd = _newVestingEnd;
}
/**
* @notice extracts global id from token id
*/
function getGlobalId(uint256 tokenId) public pure returns (uint256) {
return tokenId>>40;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IRuniverseLand {
enum PlotSize {
_8,
_16,
_32,
_64,
_128,
_256,
_512,
_1024,
_2048,
_4096
}
event LandMinted(address to, uint256 tokenId, IRuniverseLand.PlotSize size);
function mintTokenId(
address recipient,
uint256 tokenId,
PlotSize size
) external;
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Address0Error","type":"error"},{"inputs":[{"internalType":"uint256","name":"gived_global_id","type":"uint256"}],"name":"InvalidVestingGlobalId","type":"error"},{"inputs":[],"name":"NoPlotsAvailable","type":"error"},{"inputs":[{"internalType":"uint256","name":"current_time","type":"uint256"},{"internalType":"uint256","name":"token_vesting_time","type":"uint256"}],"name":"TokenNotVested","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"enum IRuniverseLand.PlotSize","name":"size","type":"uint8"}],"name":"LandMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"forwardERC20s","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getGlobalId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isVested","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isVestingToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastVestingGlobalId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"enum IRuniverseLand.PlotSize","name":"size","type":"uint8"}],"name":"mintTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"primaryMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secondaryMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"},{"internalType":"bool","name":"denied","type":"bool"}],"name":"setDeniedMarketplace","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTokenId","type":"uint256"}],"name":"setLastVestingGlobalId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPrimaryMinter","type":"address"}],"name":"setPrimaryMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSecondaryMinter","type":"address"}],"name":"setSecondaryMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newVestingEnabled","type":"uint256"}],"name":"setVestingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newVestingEnd","type":"uint256"}],"name":"setVestingEnd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newVestingStart","type":"uint256"}],"name":"setVestingStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vestingEnabled","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestingStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"vestsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
60806040526001600855612aac6009556363c9d981600a5563678d9201600b553480156200002c57600080fd5b5060405162004ecd38038062004ecd833981810160405281019062000052919062000333565b6040518060400160405280600d81526020017f52756e6976657273654c616e64000000000000000000000000000000000000008152506040518060400160405280600981526020017f52554e4956455253450000000000000000000000000000000000000000000000815250620000de620000d26200013960201b60201c565b6200014160201b60201c565b600180819055508160029080519060200190620000fd92919062000205565b5080600390805190602001906200011692919062000205565b50505080600f90805190602001906200013192919062000205565b505062000508565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002139062000419565b90600052602060002090601f01602090048101928262000237576000855562000283565b82601f106200025257805160ff191683800117855562000283565b8280016001018555821562000283579182015b828111156200028257825182559160200191906001019062000265565b5b50905062000292919062000296565b5090565b5b80821115620002b157600081600090555060010162000297565b5090565b6000620002cc620002c684620003ad565b62000384565b905082815260208101848484011115620002eb57620002ea620004e8565b5b620002f8848285620003e3565b509392505050565b600082601f830112620003185762000317620004e3565b5b81516200032a848260208601620002b5565b91505092915050565b6000602082840312156200034c576200034b620004f2565b5b600082015167ffffffffffffffff8111156200036d576200036c620004ed565b5b6200037b8482850162000300565b91505092915050565b600062000390620003a3565b90506200039e82826200044f565b919050565b6000604051905090565b600067ffffffffffffffff821115620003cb57620003ca620004b4565b5b620003d682620004f7565b9050602081019050919050565b60005b8381101562000403578082015181840152602081019050620003e6565b8381111562000413576000848401525b50505050565b600060028204905060018216806200043257607f821691505b6020821081141562000449576200044862000485565b5b50919050565b6200045a82620004f7565b810181811067ffffffffffffffff821117156200047c576200047b620004b4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6149b580620005186000396000f3fe6080604052600436106102465760003560e01c8063768db24711610139578063b2143bfd116100b6578063d547cfb71161007a578063d547cfb71461087f578063d9273ee0146108aa578063e985e9c5146108d3578063eef28c6814610910578063f2fde38b14610939578063f9ae26a41461096257610246565b8063b2143bfd14610786578063b88d4fde146107c3578063c87b56dd146107ec578063d05032ad14610829578063d52079b41461085457610246565b806386ebf010116100fd57806386ebf010146106b55780638da5cb5b146106de57806395d89b41146107095780639727151a14610734578063a22cb4651461075d57610246565b8063768db247146106015780637f87bbd61461062c578063825337bb1461065757806384a1931f14610680578063853828b6146106ab57610246565b8063379bca61116101c75780635e6b3a891161018b5780635e6b3a891461050a57806362d4f6d1146105475780636352211e1461057057806370a08231146105ad578063715018a6146105ea57610246565b8063379bca61146104295780633f8cf7521461045257806342842e0e1461047b5780634f558e79146104a457806355f804b3146104e157610246565b806318160ddd1161020e57806318160ddd1461034257806323b872dd1461036d578063254800d4146103965780632cd6f789146103c1578063312d5555146103fe57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f0578063126f854d14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906133e0565b61099f565b60405161027f9190613abd565b60405180910390f35b34801561029457600080fd5b5061029d610a81565b6040516102aa9190613ad8565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906134c7565b610b13565b6040516102e791906139f6565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613320565b610bb7565b005b34801561032557600080fd5b50610340600480360381019061033b91906134c7565b610c52565b005b34801561034e57600080fd5b50610357610cda565b6040516103649190613dfa565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f919061320a565b610ce4565b005b3480156103a257600080fd5b506103ab610d44565b6040516103b89190613dfa565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e391906134c7565b610d4a565b6040516103f59190613abd565b60405180910390f35b34801561040a57600080fd5b50610413610daa565b60405161042091906139f6565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b91906134c7565b610dd0565b005b34801561045e57600080fd5b50610479600480360381019061047491906134c7565b610e58565b005b34801561048757600080fd5b506104a2600480360381019061049d919061320a565b610ee0565b005b3480156104b057600080fd5b506104cb60048036038101906104c691906134c7565b610f00565b6040516104d89190613abd565b60405180910390f35b3480156104ed57600080fd5b506105086004803603810190610503919061347a565b610f12565b005b34801561051657600080fd5b50610531600480360381019061052c91906134c7565b610fa4565b60405161053e9190613abd565b60405180910390f35b34801561055357600080fd5b5061056e6004803603810190610569919061319d565b610fc0565b005b34801561057c57600080fd5b50610597600480360381019061059291906134c7565b6110f0565b6040516105a491906139f6565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf919061319d565b6111a2565b6040516105e19190613dfa565b60405180910390f35b3480156105f657600080fd5b506105ff61125a565b005b34801561060d57600080fd5b506106166112e2565b6040516106239190613dfa565b60405180910390f35b34801561063857600080fd5b506106416112e8565b60405161064e9190613dfa565b60405180910390f35b34801561066357600080fd5b5061067e6004803603810190610679919061319d565b6112ee565b005b34801561068c57600080fd5b5061069561141e565b6040516106a29190613dfa565b60405180910390f35b6106b3611424565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190613360565b61154f565b005b3480156106ea57600080fd5b506106f3611738565b60405161070091906139f6565b60405180910390f35b34801561071557600080fd5b5061071e611761565b60405161072b9190613ad8565b60405180910390f35b34801561074057600080fd5b5061075b6004803603810190610756919061343a565b6117f3565b005b34801561076957600080fd5b50610784600480360381019061077f91906132e0565b611968565b005b34801561079257600080fd5b506107ad60048036038101906107a891906134c7565b611a03565b6040516107ba9190613dfa565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e5919061325d565b611a54565b005b3480156107f857600080fd5b50610813600480360381019061080e91906134c7565b611ab6565b6040516108209190613ad8565b60405180910390f35b34801561083557600080fd5b5061083e611b32565b60405161084b91906139f6565b60405180910390f35b34801561086057600080fd5b50610869611b58565b6040516108769190613dfa565b60405180910390f35b34801561088b57600080fd5b50610894611b5e565b6040516108a19190613ad8565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc91906134c7565b611bec565b005b3480156108df57600080fd5b506108fa60048036038101906108f591906131ca565b611c74565b6040516109079190613abd565b60405180910390f35b34801561091c57600080fd5b50610937600480360381019061093291906132e0565b611d15565b005b34801561094557600080fd5b50610960600480360381019061095b919061319d565b611dec565b005b34801561096e57600080fd5b50610989600480360381019061098491906134c7565b611ee4565b6040516109969190613dfa565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7a5750610a7982611ef2565b5b9050919050565b606060028054610a90906140f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610abc906140f9565b8015610b095780601f10610ade57610100808354040283529160200191610b09565b820191906000526020600020905b815481529060010190602001808311610aec57829003601f168201915b5050505050905090565b600080610b1f83611f5c565b9050601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590613cda565b60405180910390fd5b80915050919050565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90613cda565b60405180910390fd5b610c4e8282611fe1565b5050565b610c5a6120f9565b73ffffffffffffffffffffffffffffffffffffffff16610c78611738565b73ffffffffffffffffffffffffffffffffffffffff1614610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590613cba565b60405180910390fd5b610cd781612101565b50565b6000600c54905090565b610cf5610cef6120f9565b8261214f565b610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90613d7a565b60405180910390fd5b610d3f83838361222d565b505050565b600a5481565b600080610d5683611ee4565b905060006008541415610d6d576001915050610da5565b600954811115610d81576001915050610da5565b600b54421115610d95576001915050610da5565b610d9e83611a03565b4210159150505b919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610dd86120f9565b73ffffffffffffffffffffffffffffffffffffffff16610df6611738565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390613cba565b60405180910390fd5b610e5581612489565b50565b610e606120f9565b73ffffffffffffffffffffffffffffffffffffffff16610e7e611738565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90613cba565b60405180910390fd5b610edd816124d7565b50565b610efb83838360405180602001604052806000815250611a54565b505050565b6000610f0b82612526565b9050919050565b610f1a6120f9565b73ffffffffffffffffffffffffffffffffffffffff16610f38611738565b73ffffffffffffffffffffffffffffffffffffffff1614610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590613cba565b60405180910390fd5b8181600f9190610f9f929190612f8c565b505050565b600080610fb083611ee4565b9050600954811115915050919050565b610fc86120f9565b73ffffffffffffffffffffffffffffffffffffffff16610fe6611738565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390613cba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a390613dda565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090613c5a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90613c3a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112626120f9565b73ffffffffffffffffffffffffffffffffffffffff16611280611738565b73ffffffffffffffffffffffffffffffffffffffff16146112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90613cba565b60405180910390fd5b6112e06000612592565b565b60095481565b60085481565b6112f66120f9565b73ffffffffffffffffffffffffffffffffffffffff16611314611738565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613cba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190613b7a565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b61142c6120f9565b73ffffffffffffffffffffffffffffffffffffffff1661144a611738565b73ffffffffffffffffffffffffffffffffffffffff16146114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149790613cba565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516114c6906139e1565b60006040518083038185875af1925050503d8060008114611503576040519150601f19603f3d011682016040523d82523d6000602084013e611508565b606091505b505090508061154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390613d1a565b60405180910390fd5b50565b60026001541415611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90613dba565b60405180910390fd5b600260018190555062011170600c54106115db576040517f0b1ccc2400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661161c6120f9565b73ffffffffffffffffffffffffffffffffffffffff1614806116925750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661167a6120f9565b73ffffffffffffffffffffffffffffffffffffffff16145b6116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c890613d9a565b60405180910390fd5b600c600081546116e09061415c565b919050819055507fc38a31a0a4acbc99d7bac845f46b31d5e9d4c4feafa21cc75babd2125b97531c83838360405161171a93929190613a86565b60405180910390a161172c8383612656565b60018081905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611770906140f9565b80601f016020809104026020016040519081016040528092919081815260200182805461179c906140f9565b80156117e95780601f106117be576101008083540402835291602001916117e9565b820191906000526020600020905b8154815290600101906020018083116117cc57829003601f168201915b5050505050905090565b6117fb6120f9565b73ffffffffffffffffffffffffffffffffffffffff16611819611738565b73ffffffffffffffffffffffffffffffffffffffff161461186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613cba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156118d6576040517f48ac165200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611911929190613a5d565b602060405180830381600087803b15801561192b57600080fd5b505af115801561193f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196391906133b3565b505050565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec90613cda565b60405180910390fd5b6119ff8282612824565b5050565b600080611a0f83611ee4565b90506000600a54600b54611a239190613fd8565b9050600a546009548383611a379190613f7e565b611a419190613f4d565b611a4b9190613ef7565b92505050919050565b611a65611a5f6120f9565b8361214f565b611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b90613d7a565b60405180910390fd5b611ab0848484846129a5565b50505050565b6060611ac182612526565b611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790613d3a565b60405180910390fd5b600f611b0b83612a01565b604051602001611b1c9291906139bd565b6040516020818303038152906040529050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b600f8054611b6b906140f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611b97906140f9565b8015611be45780601f10611bb957610100808354040283529160200191611be4565b820191906000526020600020905b815481529060010190602001808311611bc757829003601f168201915b505050505081565b611bf46120f9565b73ffffffffffffffffffffffffffffffffffffffff16611c12611738565b73ffffffffffffffffffffffffffffffffffffffff1614611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90613cba565b60405180910390fd5b611c7181612b62565b50565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90613cda565b60405180910390fd5b611d0d8383612b6c565b905092915050565b611d1d6120f9565b73ffffffffffffffffffffffffffffffffffffffff16611d3b611738565b73ffffffffffffffffffffffffffffffffffffffff1614611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890613cba565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611df46120f9565b73ffffffffffffffffffffffffffffffffffffffff16611e12611738565b73ffffffffffffffffffffffffffffffffffffffff1614611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90613cba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf90613b3a565b60405180910390fd5b611ee181612592565b50565b6000602882901c9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000611f6782612526565b611fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9d90613c9a565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611fec826110f0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490613d5a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661207c6120f9565b73ffffffffffffffffffffffffffffffffffffffff1614806120ab57506120aa816120a56120f9565b611c74565b5b6120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e190613bfa565b60405180910390fd5b6120f48383612c00565b505050565b600033905090565b600b548110612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c90613afa565b60405180910390fd5b80600a8190555050565b600061215a82612526565b612199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219090613bda565b60405180910390fd5b60006121a4836110f0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061221357508373ffffffffffffffffffffffffffffffffffffffff166121fb84610b13565b73ffffffffffffffffffffffffffffffffffffffff16145b8061222457506122238185611c74565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661224d826110f0565b73ffffffffffffffffffffffffffffffffffffffff16146122a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229a90613cfa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a90613b9a565b60405180910390fd5b61231e838383612cb9565b612329600082612c00565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123799190613fd8565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d09190613ef7565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600a5481116124cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c490613c1a565b60405180910390fd5b80600b8190555050565b6000811161251c57806040517f0f7614b30000000000000000000000000000000000000000000000000000000081526004016125139190613dfa565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd90613c7a565b60405180910390fd5b6126cf81612526565b1561270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690613b5a565b60405180910390fd5b61271b60008383612cb9565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276b9190613ef7565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61282c6120f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561289a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289190613bba565b60405180910390fd5b80600760006128a76120f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166129546120f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129999190613abd565b60405180910390a35050565b6129b084848461222d565b6129bc84848484612ddd565b6129fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f290613b1a565b60405180910390fd5b50505050565b60606000821415612a49576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b5d565b600082905060005b60008214612a7b578080612a649061415c565b915050600a82612a749190613f4d565b9150612a51565b60008167ffffffffffffffff811115612a9757612a966142c1565b5b6040519080825280601f01601f191660200182016040528015612ac95781602001600182028036833780820191505090505b5090505b60008514612b5657600182612ae29190613fd8565b9150600a85612af191906141a5565b6030612afd9190613ef7565b60f81b818381518110612b1357612b12614292565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b4f9190613f4d565b9450612acd565b8093505050505b919050565b8060088190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c73836110f0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612cc4838383612f74565b6000612ccf82611ee4565b90506001600854148015612d105750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612d1e57506009548111155b8015612d2b5750600b5442105b15612dd7576000600a54600b54612d429190613fd8565b9050600a546009548383612d569190613f7e565b612d609190613f4d565b612d6a9190613ef7565b421015612dd55742600a546009548484612d849190613f7e565b612d8e9190613f4d565b612d989190613ef7565b6040517f1529db8f000000000000000000000000000000000000000000000000000000008152600401612dcc929190613e15565b60405180910390fd5b505b50505050565b6000612dfe8473ffffffffffffffffffffffffffffffffffffffff16612f79565b15612f67578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e276120f9565b8786866040518563ffffffff1660e01b8152600401612e499493929190613a11565b602060405180830381600087803b158015612e6357600080fd5b505af1925050508015612e9457506040513d601f19601f82011682018060405250810190612e91919061340d565b60015b612f17573d8060008114612ec4576040519150601f19603f3d011682016040523d82523d6000602084013e612ec9565b606091505b50600081511415612f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0690613b1a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f6c565b600190505b949350505050565b505050565b600080823b905060008111915050919050565b828054612f98906140f9565b90600052602060002090601f016020900481019282612fba5760008555613001565b82601f10612fd357803560ff1916838001178555613001565b82800160010185558215613001579182015b82811115613000578235825591602001919060010190612fe5565b5b50905061300e9190613012565b5090565b5b8082111561302b576000816000905550600101613013565b5090565b600061304261303d84613e63565b613e3e565b90508281526020810184848401111561305e5761305d6142ff565b5b6130698482856140b7565b509392505050565b600081359050613080816148fc565b92915050565b60008135905061309581614913565b92915050565b6000815190506130aa81614913565b92915050565b6000813590506130bf8161492a565b92915050565b6000815190506130d48161492a565b92915050565b600082601f8301126130ef576130ee6142f5565b5b81356130ff84826020860161302f565b91505092915050565b60008135905061311781614941565b92915050565b60008135905061312c81614958565b92915050565b60008083601f840112613148576131476142f5565b5b8235905067ffffffffffffffff811115613165576131646142f0565b5b602083019150836001820283011115613181576131806142fa565b5b9250929050565b60008135905061319781614968565b92915050565b6000602082840312156131b3576131b2614309565b5b60006131c184828501613071565b91505092915050565b600080604083850312156131e1576131e0614309565b5b60006131ef85828601613071565b925050602061320085828601613071565b9150509250929050565b60008060006060848603121561322357613222614309565b5b600061323186828701613071565b935050602061324286828701613071565b925050604061325386828701613188565b9150509250925092565b6000806000806080858703121561327757613276614309565b5b600061328587828801613071565b945050602061329687828801613071565b93505060406132a787828801613188565b925050606085013567ffffffffffffffff8111156132c8576132c7614304565b5b6132d4878288016130da565b91505092959194509250565b600080604083850312156132f7576132f6614309565b5b600061330585828601613071565b925050602061331685828601613086565b9150509250929050565b6000806040838503121561333757613336614309565b5b600061334585828601613071565b925050602061335685828601613188565b9150509250929050565b60008060006060848603121561337957613378614309565b5b600061338786828701613071565b935050602061339886828701613188565b92505060406133a98682870161311d565b9150509250925092565b6000602082840312156133c9576133c8614309565b5b60006133d78482850161309b565b91505092915050565b6000602082840312156133f6576133f5614309565b5b6000613404848285016130b0565b91505092915050565b60006020828403121561342357613422614309565b5b6000613431848285016130c5565b91505092915050565b6000806040838503121561345157613450614309565b5b600061345f85828601613108565b925050602061347085828601613188565b9150509250929050565b6000806020838503121561349157613490614309565b5b600083013567ffffffffffffffff8111156134af576134ae614304565b5b6134bb85828601613132565b92509250509250929050565b6000602082840312156134dd576134dc614309565b5b60006134eb84828501613188565b91505092915050565b6134fd8161400c565b82525050565b61350c8161401e565b82525050565b600061351d82613ea9565b6135278185613ebf565b93506135378185602086016140c6565b6135408161430e565b840191505092915050565b613554816140a5565b82525050565b600061356582613eb4565b61356f8185613edb565b935061357f8185602086016140c6565b6135888161430e565b840191505092915050565b600061359e82613eb4565b6135a88185613eec565b93506135b88185602086016140c6565b80840191505092915050565b600081546135d1816140f9565b6135db8186613eec565b945060018216600081146135f657600181146136075761363a565b60ff1983168652818601935061363a565b61361085613e94565b60005b8381101561363257815481890152600182019150602081019050613613565b838801955050505b50505092915050565b6000613650601b83613edb565b915061365b8261431f565b602082019050919050565b6000613673603283613edb565b915061367e82614348565b604082019050919050565b6000613696602683613edb565b91506136a182614397565b604082019050919050565b60006136b9601c83613edb565b91506136c4826143e6565b602082019050919050565b60006136dc602183613edb565b91506136e78261440f565b604082019050919050565b60006136ff602483613edb565b915061370a8261445e565b604082019050919050565b6000613722601983613edb565b915061372d826144ad565b602082019050919050565b6000613745602c83613edb565b9150613750826144d6565b604082019050919050565b6000613768603883613edb565b915061377382614525565b604082019050919050565b600061378b601e83613edb565b915061379682614574565b602082019050919050565b60006137ae602a83613edb565b91506137b98261459d565b604082019050919050565b60006137d1602983613edb565b91506137dc826145ec565b604082019050919050565b60006137f4602083613edb565b91506137ff8261463b565b602082019050919050565b6000613817602c83613edb565b915061382282614664565b604082019050919050565b600061383a602083613edb565b9150613845826146b3565b602082019050919050565b600061385d601383613edb565b9150613868826146dc565b602082019050919050565b6000613880602983613edb565b915061388b82614705565b604082019050919050565b60006138a3601b83613edb565b91506138ae82614754565b602082019050919050565b60006138c6602f83613edb565b91506138d18261477d565b604082019050919050565b60006138e9602183613edb565b91506138f4826147cc565b604082019050919050565b600061390c600083613ed0565b91506139178261481b565b600082019050919050565b600061392f603183613edb565b915061393a8261481e565b604082019050919050565b6000613952600c83613edb565b915061395d8261486d565b602082019050919050565b6000613975601f83613edb565b915061398082614896565b602082019050919050565b6000613998601e83613edb565b91506139a3826148bf565b602082019050919050565b6139b78161409b565b82525050565b60006139c982856135c4565b91506139d58284613593565b91508190509392505050565b60006139ec826138ff565b9150819050919050565b6000602082019050613a0b60008301846134f4565b92915050565b6000608082019050613a2660008301876134f4565b613a3360208301866134f4565b613a4060408301856139ae565b8181036060830152613a528184613512565b905095945050505050565b6000604082019050613a7260008301856134f4565b613a7f60208301846139ae565b9392505050565b6000606082019050613a9b60008301866134f4565b613aa860208301856139ae565b613ab5604083018461354b565b949350505050565b6000602082019050613ad26000830184613503565b92915050565b60006020820190508181036000830152613af2818461355a565b905092915050565b60006020820190508181036000830152613b1381613643565b9050919050565b60006020820190508181036000830152613b3381613666565b9050919050565b60006020820190508181036000830152613b5381613689565b9050919050565b60006020820190508181036000830152613b73816136ac565b9050919050565b60006020820190508181036000830152613b93816136cf565b9050919050565b60006020820190508181036000830152613bb3816136f2565b9050919050565b60006020820190508181036000830152613bd381613715565b9050919050565b60006020820190508181036000830152613bf381613738565b9050919050565b60006020820190508181036000830152613c138161375b565b9050919050565b60006020820190508181036000830152613c338161377e565b9050919050565b60006020820190508181036000830152613c53816137a1565b9050919050565b60006020820190508181036000830152613c73816137c4565b9050919050565b60006020820190508181036000830152613c93816137e7565b9050919050565b60006020820190508181036000830152613cb38161380a565b9050919050565b60006020820190508181036000830152613cd38161382d565b9050919050565b60006020820190508181036000830152613cf381613850565b9050919050565b60006020820190508181036000830152613d1381613873565b9050919050565b60006020820190508181036000830152613d3381613896565b9050919050565b60006020820190508181036000830152613d53816138b9565b9050919050565b60006020820190508181036000830152613d73816138dc565b9050919050565b60006020820190508181036000830152613d9381613922565b9050919050565b60006020820190508181036000830152613db381613945565b9050919050565b60006020820190508181036000830152613dd381613968565b9050919050565b60006020820190508181036000830152613df38161398b565b9050919050565b6000602082019050613e0f60008301846139ae565b92915050565b6000604082019050613e2a60008301856139ae565b613e3760208301846139ae565b9392505050565b6000613e48613e59565b9050613e54828261412b565b919050565b6000604051905090565b600067ffffffffffffffff821115613e7e57613e7d6142c1565b5b613e878261430e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f028261409b565b9150613f0d8361409b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f4257613f416141d6565b5b828201905092915050565b6000613f588261409b565b9150613f638361409b565b925082613f7357613f72614205565b5b828204905092915050565b6000613f898261409b565b9150613f948361409b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fcd57613fcc6141d6565b5b828202905092915050565b6000613fe38261409b565b9150613fee8361409b565b925082821015614001576140006141d6565b5b828203905092915050565b60006140178261407b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006140618261400c565b9050919050565b6000819050614076826148e8565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006140b082614068565b9050919050565b82818337600083830152505050565b60005b838110156140e45780820151818401526020810190506140c9565b838111156140f3576000848401525b50505050565b6000600282049050600182168061411157607f821691505b6020821081141561412557614124614263565b5b50919050565b6141348261430e565b810181811067ffffffffffffffff82111715614153576141526142c1565b5b80604052505050565b60006141678261409b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561419a576141996141d6565b5b600182019050919050565b60006141b08261409b565b91506141bb8361409b565b9250826141cb576141ca614205565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5374617274206d757374206265206c657373207468616e20656e640000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c696420736565636f6e64617279206d696e7465722061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f456e64206d7573742062652067726561746572207468616e2073746172740000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964204d61726b6574706c61636500000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f776974686472617720776173206e6f742073756363657366756c6c0000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f742061206d696e7465720000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e76616c6964207072696d617279206d696e74657220616464726573730000600082015250565b600a81106148f9576148f8614234565b5b50565b6149058161400c565b811461491057600080fd5b50565b61491c8161401e565b811461492757600080fd5b50565b6149338161402a565b811461493e57600080fd5b50565b61494a81614056565b811461495557600080fd5b50565b600a811061496557600080fd5b50565b6149718161409b565b811461497c57600080fd5b5056fea2646970667358221220a553e8bfb4cfad72a9a78ad2ee2271d4222a0d0a519ed7af78d28aec08c797a464736f6c634300080600330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f6170692e72756e6976657273652e776f726c642f476574506c6f74496e666f3f506c6f7449643d0000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102465760003560e01c8063768db24711610139578063b2143bfd116100b6578063d547cfb71161007a578063d547cfb71461087f578063d9273ee0146108aa578063e985e9c5146108d3578063eef28c6814610910578063f2fde38b14610939578063f9ae26a41461096257610246565b8063b2143bfd14610786578063b88d4fde146107c3578063c87b56dd146107ec578063d05032ad14610829578063d52079b41461085457610246565b806386ebf010116100fd57806386ebf010146106b55780638da5cb5b146106de57806395d89b41146107095780639727151a14610734578063a22cb4651461075d57610246565b8063768db247146106015780637f87bbd61461062c578063825337bb1461065757806384a1931f14610680578063853828b6146106ab57610246565b8063379bca61116101c75780635e6b3a891161018b5780635e6b3a891461050a57806362d4f6d1146105475780636352211e1461057057806370a08231146105ad578063715018a6146105ea57610246565b8063379bca61146104295780633f8cf7521461045257806342842e0e1461047b5780634f558e79146104a457806355f804b3146104e157610246565b806318160ddd1161020e57806318160ddd1461034257806323b872dd1461036d578063254800d4146103965780632cd6f789146103c1578063312d5555146103fe57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f0578063126f854d14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906133e0565b61099f565b60405161027f9190613abd565b60405180910390f35b34801561029457600080fd5b5061029d610a81565b6040516102aa9190613ad8565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906134c7565b610b13565b6040516102e791906139f6565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613320565b610bb7565b005b34801561032557600080fd5b50610340600480360381019061033b91906134c7565b610c52565b005b34801561034e57600080fd5b50610357610cda565b6040516103649190613dfa565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f919061320a565b610ce4565b005b3480156103a257600080fd5b506103ab610d44565b6040516103b89190613dfa565b60405180910390f35b3480156103cd57600080fd5b506103e860048036038101906103e391906134c7565b610d4a565b6040516103f59190613abd565b60405180910390f35b34801561040a57600080fd5b50610413610daa565b60405161042091906139f6565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b91906134c7565b610dd0565b005b34801561045e57600080fd5b50610479600480360381019061047491906134c7565b610e58565b005b34801561048757600080fd5b506104a2600480360381019061049d919061320a565b610ee0565b005b3480156104b057600080fd5b506104cb60048036038101906104c691906134c7565b610f00565b6040516104d89190613abd565b60405180910390f35b3480156104ed57600080fd5b506105086004803603810190610503919061347a565b610f12565b005b34801561051657600080fd5b50610531600480360381019061052c91906134c7565b610fa4565b60405161053e9190613abd565b60405180910390f35b34801561055357600080fd5b5061056e6004803603810190610569919061319d565b610fc0565b005b34801561057c57600080fd5b50610597600480360381019061059291906134c7565b6110f0565b6040516105a491906139f6565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf919061319d565b6111a2565b6040516105e19190613dfa565b60405180910390f35b3480156105f657600080fd5b506105ff61125a565b005b34801561060d57600080fd5b506106166112e2565b6040516106239190613dfa565b60405180910390f35b34801561063857600080fd5b506106416112e8565b60405161064e9190613dfa565b60405180910390f35b34801561066357600080fd5b5061067e6004803603810190610679919061319d565b6112ee565b005b34801561068c57600080fd5b5061069561141e565b6040516106a29190613dfa565b60405180910390f35b6106b3611424565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190613360565b61154f565b005b3480156106ea57600080fd5b506106f3611738565b60405161070091906139f6565b60405180910390f35b34801561071557600080fd5b5061071e611761565b60405161072b9190613ad8565b60405180910390f35b34801561074057600080fd5b5061075b6004803603810190610756919061343a565b6117f3565b005b34801561076957600080fd5b50610784600480360381019061077f91906132e0565b611968565b005b34801561079257600080fd5b506107ad60048036038101906107a891906134c7565b611a03565b6040516107ba9190613dfa565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e5919061325d565b611a54565b005b3480156107f857600080fd5b50610813600480360381019061080e91906134c7565b611ab6565b6040516108209190613ad8565b60405180910390f35b34801561083557600080fd5b5061083e611b32565b60405161084b91906139f6565b60405180910390f35b34801561086057600080fd5b50610869611b58565b6040516108769190613dfa565b60405180910390f35b34801561088b57600080fd5b50610894611b5e565b6040516108a19190613ad8565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc91906134c7565b611bec565b005b3480156108df57600080fd5b506108fa60048036038101906108f591906131ca565b611c74565b6040516109079190613abd565b60405180910390f35b34801561091c57600080fd5b50610937600480360381019061093291906132e0565b611d15565b005b34801561094557600080fd5b50610960600480360381019061095b919061319d565b611dec565b005b34801561096e57600080fd5b50610989600480360381019061098491906134c7565b611ee4565b6040516109969190613dfa565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a7a5750610a7982611ef2565b5b9050919050565b606060028054610a90906140f9565b80601f0160208091040260200160405190810160405280929190818152602001828054610abc906140f9565b8015610b095780601f10610ade57610100808354040283529160200191610b09565b820191906000526020600020905b815481529060010190602001808311610aec57829003601f168201915b5050505050905090565b600080610b1f83611f5c565b9050601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590613cda565b60405180910390fd5b80915050919050565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90613cda565b60405180910390fd5b610c4e8282611fe1565b5050565b610c5a6120f9565b73ffffffffffffffffffffffffffffffffffffffff16610c78611738565b73ffffffffffffffffffffffffffffffffffffffff1614610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590613cba565b60405180910390fd5b610cd781612101565b50565b6000600c54905090565b610cf5610cef6120f9565b8261214f565b610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90613d7a565b60405180910390fd5b610d3f83838361222d565b505050565b600a5481565b600080610d5683611ee4565b905060006008541415610d6d576001915050610da5565b600954811115610d81576001915050610da5565b600b54421115610d95576001915050610da5565b610d9e83611a03565b4210159150505b919050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610dd86120f9565b73ffffffffffffffffffffffffffffffffffffffff16610df6611738565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390613cba565b60405180910390fd5b610e5581612489565b50565b610e606120f9565b73ffffffffffffffffffffffffffffffffffffffff16610e7e611738565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90613cba565b60405180910390fd5b610edd816124d7565b50565b610efb83838360405180602001604052806000815250611a54565b505050565b6000610f0b82612526565b9050919050565b610f1a6120f9565b73ffffffffffffffffffffffffffffffffffffffff16610f38611738565b73ffffffffffffffffffffffffffffffffffffffff1614610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8590613cba565b60405180910390fd5b8181600f9190610f9f929190612f8c565b505050565b600080610fb083611ee4565b9050600954811115915050919050565b610fc86120f9565b73ffffffffffffffffffffffffffffffffffffffff16610fe6611738565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390613cba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a390613dda565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119090613c5a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90613c3a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112626120f9565b73ffffffffffffffffffffffffffffffffffffffff16611280611738565b73ffffffffffffffffffffffffffffffffffffffff16146112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90613cba565b60405180910390fd5b6112e06000612592565b565b60095481565b60085481565b6112f66120f9565b73ffffffffffffffffffffffffffffffffffffffff16611314611738565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613cba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190613b7a565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5481565b61142c6120f9565b73ffffffffffffffffffffffffffffffffffffffff1661144a611738565b73ffffffffffffffffffffffffffffffffffffffff16146114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149790613cba565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516114c6906139e1565b60006040518083038185875af1925050503d8060008114611503576040519150601f19603f3d011682016040523d82523d6000602084013e611508565b606091505b505090508061154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390613d1a565b60405180910390fd5b50565b60026001541415611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90613dba565b60405180910390fd5b600260018190555062011170600c54106115db576040517f0b1ccc2400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661161c6120f9565b73ffffffffffffffffffffffffffffffffffffffff1614806116925750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661167a6120f9565b73ffffffffffffffffffffffffffffffffffffffff16145b6116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c890613d9a565b60405180910390fd5b600c600081546116e09061415c565b919050819055507fc38a31a0a4acbc99d7bac845f46b31d5e9d4c4feafa21cc75babd2125b97531c83838360405161171a93929190613a86565b60405180910390a161172c8383612656565b60018081905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611770906140f9565b80601f016020809104026020016040519081016040528092919081815260200182805461179c906140f9565b80156117e95780601f106117be576101008083540402835291602001916117e9565b820191906000526020600020905b8154815290600101906020018083116117cc57829003601f168201915b5050505050905090565b6117fb6120f9565b73ffffffffffffffffffffffffffffffffffffffff16611819611738565b73ffffffffffffffffffffffffffffffffffffffff161461186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613cba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156118d6576040517f48ac165200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401611911929190613a5d565b602060405180830381600087803b15801561192b57600080fd5b505af115801561193f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196391906133b3565b505050565b601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec90613cda565b60405180910390fd5b6119ff8282612824565b5050565b600080611a0f83611ee4565b90506000600a54600b54611a239190613fd8565b9050600a546009548383611a379190613f7e565b611a419190613f4d565b611a4b9190613ef7565b92505050919050565b611a65611a5f6120f9565b8361214f565b611aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9b90613d7a565b60405180910390fd5b611ab0848484846129a5565b50505050565b6060611ac182612526565b611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790613d3a565b60405180910390fd5b600f611b0b83612a01565b604051602001611b1c9291906139bd565b6040516020818303038152906040529050919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b600f8054611b6b906140f9565b80601f0160208091040260200160405190810160405280929190818152602001828054611b97906140f9565b8015611be45780601f10611bb957610100808354040283529160200191611be4565b820191906000526020600020905b815481529060010190602001808311611bc757829003601f168201915b505050505081565b611bf46120f9565b73ffffffffffffffffffffffffffffffffffffffff16611c12611738565b73ffffffffffffffffffffffffffffffffffffffff1614611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90613cba565b60405180910390fd5b611c7181612b62565b50565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90613cda565b60405180910390fd5b611d0d8383612b6c565b905092915050565b611d1d6120f9565b73ffffffffffffffffffffffffffffffffffffffff16611d3b611738565b73ffffffffffffffffffffffffffffffffffffffff1614611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890613cba565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b611df46120f9565b73ffffffffffffffffffffffffffffffffffffffff16611e12611738565b73ffffffffffffffffffffffffffffffffffffffff1614611e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5f90613cba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf90613b3a565b60405180910390fd5b611ee181612592565b50565b6000602882901c9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000611f6782612526565b611fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9d90613c9a565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611fec826110f0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490613d5a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661207c6120f9565b73ffffffffffffffffffffffffffffffffffffffff1614806120ab57506120aa816120a56120f9565b611c74565b5b6120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e190613bfa565b60405180910390fd5b6120f48383612c00565b505050565b600033905090565b600b548110612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c90613afa565b60405180910390fd5b80600a8190555050565b600061215a82612526565b612199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219090613bda565b60405180910390fd5b60006121a4836110f0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061221357508373ffffffffffffffffffffffffffffffffffffffff166121fb84610b13565b73ffffffffffffffffffffffffffffffffffffffff16145b8061222457506122238185611c74565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661224d826110f0565b73ffffffffffffffffffffffffffffffffffffffff16146122a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229a90613cfa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a90613b9a565b60405180910390fd5b61231e838383612cb9565b612329600082612c00565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123799190613fd8565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d09190613ef7565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600a5481116124cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c490613c1a565b60405180910390fd5b80600b8190555050565b6000811161251c57806040517f0f7614b30000000000000000000000000000000000000000000000000000000081526004016125139190613dfa565b60405180910390fd5b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bd90613c7a565b60405180910390fd5b6126cf81612526565b1561270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690613b5a565b60405180910390fd5b61271b60008383612cb9565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276b9190613ef7565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61282c6120f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561289a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289190613bba565b60405180910390fd5b80600760006128a76120f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166129546120f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129999190613abd565b60405180910390a35050565b6129b084848461222d565b6129bc84848484612ddd565b6129fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f290613b1a565b60405180910390fd5b50505050565b60606000821415612a49576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b5d565b600082905060005b60008214612a7b578080612a649061415c565b915050600a82612a749190613f4d565b9150612a51565b60008167ffffffffffffffff811115612a9757612a966142c1565b5b6040519080825280601f01601f191660200182016040528015612ac95781602001600182028036833780820191505090505b5090505b60008514612b5657600182612ae29190613fd8565b9150600a85612af191906141a5565b6030612afd9190613ef7565b60f81b818381518110612b1357612b12614292565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b4f9190613f4d565b9450612acd565b8093505050505b919050565b8060088190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c73836110f0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612cc4838383612f74565b6000612ccf82611ee4565b90506001600854148015612d105750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015612d1e57506009548111155b8015612d2b5750600b5442105b15612dd7576000600a54600b54612d429190613fd8565b9050600a546009548383612d569190613f7e565b612d609190613f4d565b612d6a9190613ef7565b421015612dd55742600a546009548484612d849190613f7e565b612d8e9190613f4d565b612d989190613ef7565b6040517f1529db8f000000000000000000000000000000000000000000000000000000008152600401612dcc929190613e15565b60405180910390fd5b505b50505050565b6000612dfe8473ffffffffffffffffffffffffffffffffffffffff16612f79565b15612f67578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e276120f9565b8786866040518563ffffffff1660e01b8152600401612e499493929190613a11565b602060405180830381600087803b158015612e6357600080fd5b505af1925050508015612e9457506040513d601f19601f82011682018060405250810190612e91919061340d565b60015b612f17573d8060008114612ec4576040519150601f19603f3d011682016040523d82523d6000602084013e612ec9565b606091505b50600081511415612f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0690613b1a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f6c565b600190505b949350505050565b505050565b600080823b905060008111915050919050565b828054612f98906140f9565b90600052602060002090601f016020900481019282612fba5760008555613001565b82601f10612fd357803560ff1916838001178555613001565b82800160010185558215613001579182015b82811115613000578235825591602001919060010190612fe5565b5b50905061300e9190613012565b5090565b5b8082111561302b576000816000905550600101613013565b5090565b600061304261303d84613e63565b613e3e565b90508281526020810184848401111561305e5761305d6142ff565b5b6130698482856140b7565b509392505050565b600081359050613080816148fc565b92915050565b60008135905061309581614913565b92915050565b6000815190506130aa81614913565b92915050565b6000813590506130bf8161492a565b92915050565b6000815190506130d48161492a565b92915050565b600082601f8301126130ef576130ee6142f5565b5b81356130ff84826020860161302f565b91505092915050565b60008135905061311781614941565b92915050565b60008135905061312c81614958565b92915050565b60008083601f840112613148576131476142f5565b5b8235905067ffffffffffffffff811115613165576131646142f0565b5b602083019150836001820283011115613181576131806142fa565b5b9250929050565b60008135905061319781614968565b92915050565b6000602082840312156131b3576131b2614309565b5b60006131c184828501613071565b91505092915050565b600080604083850312156131e1576131e0614309565b5b60006131ef85828601613071565b925050602061320085828601613071565b9150509250929050565b60008060006060848603121561322357613222614309565b5b600061323186828701613071565b935050602061324286828701613071565b925050604061325386828701613188565b9150509250925092565b6000806000806080858703121561327757613276614309565b5b600061328587828801613071565b945050602061329687828801613071565b93505060406132a787828801613188565b925050606085013567ffffffffffffffff8111156132c8576132c7614304565b5b6132d4878288016130da565b91505092959194509250565b600080604083850312156132f7576132f6614309565b5b600061330585828601613071565b925050602061331685828601613086565b9150509250929050565b6000806040838503121561333757613336614309565b5b600061334585828601613071565b925050602061335685828601613188565b9150509250929050565b60008060006060848603121561337957613378614309565b5b600061338786828701613071565b935050602061339886828701613188565b92505060406133a98682870161311d565b9150509250925092565b6000602082840312156133c9576133c8614309565b5b60006133d78482850161309b565b91505092915050565b6000602082840312156133f6576133f5614309565b5b6000613404848285016130b0565b91505092915050565b60006020828403121561342357613422614309565b5b6000613431848285016130c5565b91505092915050565b6000806040838503121561345157613450614309565b5b600061345f85828601613108565b925050602061347085828601613188565b9150509250929050565b6000806020838503121561349157613490614309565b5b600083013567ffffffffffffffff8111156134af576134ae614304565b5b6134bb85828601613132565b92509250509250929050565b6000602082840312156134dd576134dc614309565b5b60006134eb84828501613188565b91505092915050565b6134fd8161400c565b82525050565b61350c8161401e565b82525050565b600061351d82613ea9565b6135278185613ebf565b93506135378185602086016140c6565b6135408161430e565b840191505092915050565b613554816140a5565b82525050565b600061356582613eb4565b61356f8185613edb565b935061357f8185602086016140c6565b6135888161430e565b840191505092915050565b600061359e82613eb4565b6135a88185613eec565b93506135b88185602086016140c6565b80840191505092915050565b600081546135d1816140f9565b6135db8186613eec565b945060018216600081146135f657600181146136075761363a565b60ff1983168652818601935061363a565b61361085613e94565b60005b8381101561363257815481890152600182019150602081019050613613565b838801955050505b50505092915050565b6000613650601b83613edb565b915061365b8261431f565b602082019050919050565b6000613673603283613edb565b915061367e82614348565b604082019050919050565b6000613696602683613edb565b91506136a182614397565b604082019050919050565b60006136b9601c83613edb565b91506136c4826143e6565b602082019050919050565b60006136dc602183613edb565b91506136e78261440f565b604082019050919050565b60006136ff602483613edb565b915061370a8261445e565b604082019050919050565b6000613722601983613edb565b915061372d826144ad565b602082019050919050565b6000613745602c83613edb565b9150613750826144d6565b604082019050919050565b6000613768603883613edb565b915061377382614525565b604082019050919050565b600061378b601e83613edb565b915061379682614574565b602082019050919050565b60006137ae602a83613edb565b91506137b98261459d565b604082019050919050565b60006137d1602983613edb565b91506137dc826145ec565b604082019050919050565b60006137f4602083613edb565b91506137ff8261463b565b602082019050919050565b6000613817602c83613edb565b915061382282614664565b604082019050919050565b600061383a602083613edb565b9150613845826146b3565b602082019050919050565b600061385d601383613edb565b9150613868826146dc565b602082019050919050565b6000613880602983613edb565b915061388b82614705565b604082019050919050565b60006138a3601b83613edb565b91506138ae82614754565b602082019050919050565b60006138c6602f83613edb565b91506138d18261477d565b604082019050919050565b60006138e9602183613edb565b91506138f4826147cc565b604082019050919050565b600061390c600083613ed0565b91506139178261481b565b600082019050919050565b600061392f603183613edb565b915061393a8261481e565b604082019050919050565b6000613952600c83613edb565b915061395d8261486d565b602082019050919050565b6000613975601f83613edb565b915061398082614896565b602082019050919050565b6000613998601e83613edb565b91506139a3826148bf565b602082019050919050565b6139b78161409b565b82525050565b60006139c982856135c4565b91506139d58284613593565b91508190509392505050565b60006139ec826138ff565b9150819050919050565b6000602082019050613a0b60008301846134f4565b92915050565b6000608082019050613a2660008301876134f4565b613a3360208301866134f4565b613a4060408301856139ae565b8181036060830152613a528184613512565b905095945050505050565b6000604082019050613a7260008301856134f4565b613a7f60208301846139ae565b9392505050565b6000606082019050613a9b60008301866134f4565b613aa860208301856139ae565b613ab5604083018461354b565b949350505050565b6000602082019050613ad26000830184613503565b92915050565b60006020820190508181036000830152613af2818461355a565b905092915050565b60006020820190508181036000830152613b1381613643565b9050919050565b60006020820190508181036000830152613b3381613666565b9050919050565b60006020820190508181036000830152613b5381613689565b9050919050565b60006020820190508181036000830152613b73816136ac565b9050919050565b60006020820190508181036000830152613b93816136cf565b9050919050565b60006020820190508181036000830152613bb3816136f2565b9050919050565b60006020820190508181036000830152613bd381613715565b9050919050565b60006020820190508181036000830152613bf381613738565b9050919050565b60006020820190508181036000830152613c138161375b565b9050919050565b60006020820190508181036000830152613c338161377e565b9050919050565b60006020820190508181036000830152613c53816137a1565b9050919050565b60006020820190508181036000830152613c73816137c4565b9050919050565b60006020820190508181036000830152613c93816137e7565b9050919050565b60006020820190508181036000830152613cb38161380a565b9050919050565b60006020820190508181036000830152613cd38161382d565b9050919050565b60006020820190508181036000830152613cf381613850565b9050919050565b60006020820190508181036000830152613d1381613873565b9050919050565b60006020820190508181036000830152613d3381613896565b9050919050565b60006020820190508181036000830152613d53816138b9565b9050919050565b60006020820190508181036000830152613d73816138dc565b9050919050565b60006020820190508181036000830152613d9381613922565b9050919050565b60006020820190508181036000830152613db381613945565b9050919050565b60006020820190508181036000830152613dd381613968565b9050919050565b60006020820190508181036000830152613df38161398b565b9050919050565b6000602082019050613e0f60008301846139ae565b92915050565b6000604082019050613e2a60008301856139ae565b613e3760208301846139ae565b9392505050565b6000613e48613e59565b9050613e54828261412b565b919050565b6000604051905090565b600067ffffffffffffffff821115613e7e57613e7d6142c1565b5b613e878261430e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f028261409b565b9150613f0d8361409b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f4257613f416141d6565b5b828201905092915050565b6000613f588261409b565b9150613f638361409b565b925082613f7357613f72614205565b5b828204905092915050565b6000613f898261409b565b9150613f948361409b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fcd57613fcc6141d6565b5b828202905092915050565b6000613fe38261409b565b9150613fee8361409b565b925082821015614001576140006141d6565b5b828203905092915050565b60006140178261407b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006140618261400c565b9050919050565b6000819050614076826148e8565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006140b082614068565b9050919050565b82818337600083830152505050565b60005b838110156140e45780820151818401526020810190506140c9565b838111156140f3576000848401525b50505050565b6000600282049050600182168061411157607f821691505b6020821081141561412557614124614263565b5b50919050565b6141348261430e565b810181811067ffffffffffffffff82111715614153576141526142c1565b5b80604052505050565b60006141678261409b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561419a576141996141d6565b5b600182019050919050565b60006141b08261409b565b91506141bb8361409b565b9250826141cb576141ca614205565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5374617274206d757374206265206c657373207468616e20656e640000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c696420736565636f6e64617279206d696e7465722061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f456e64206d7573742062652067726561746572207468616e2073746172740000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964204d61726b6574706c61636500000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f776974686472617720776173206e6f742073756363657366756c6c0000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f742061206d696e7465720000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e76616c6964207072696d617279206d696e74657220616464726573730000600082015250565b600a81106148f9576148f8614234565b5b50565b6149058161400c565b811461491057600080fd5b50565b61491c8161401e565b811461492757600080fd5b50565b6149338161402a565b811461493e57600080fd5b50565b61494a81614056565b811461495557600080fd5b50565b600a811061496557600080fd5b50565b6149718161409b565b811461497c57600080fd5b5056fea2646970667358221220a553e8bfb4cfad72a9a78ad2ee2271d4222a0d0a519ed7af78d28aec08c797a464736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f6170692e72756e6976657273652e776f726c642f476574506c6f74496e666f3f506c6f7449643d0000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://api.runiverse.world/GetPlotInfo?PlotId=
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [2] : 68747470733a2f2f6170692e72756e6976657273652e776f726c642f47657450
Arg [3] : 6c6f74496e666f3f506c6f7449643d0000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.