ETH Price: $2,899.89 (-10.00%)
Gas: 12 Gwei

Token

isotile Genesis Avatars (ISO)
 

Overview

Max Total Supply

0 ISO

Holders

1,038

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
supertightvault.eth
Balance
1 ISO
0xb68bace12f832b72c3169b8de865e07806c32923
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A collection of 9,000 isotile Genesis Avatars. First official collection of a metaverse. View them with your VR glasses or drag the mouse over the NFT to see it in different perspectives.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GenesisAvatars

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : GenesisAvatars.sol
// SPDX-License-Identifier: BUSL-1.1

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract GenesisAvatars is ERC721Pausable, Ownable {
    IERC1155 private _isotileFurnitureInstance;
    
    string public avatarsHashSha1 = "3b2aaeee939ebd5b41866075662819dce7bdcd3f";

    bool private _claimingPaused = true;
    uint256 private _mintingId;
    uint256 private _claimingId;
    
    uint256 private _maxClaimingIdIncluded = 4496;
    uint256 private _maxMintingIdIncluded = 8999;
    
    string private _name = "isotile Genesis Avatars";
    string private _symbol = "ISO";

    string private _baseTokenURI;
    uint256 private _price = 0.09 ether;
    
    mapping (address => uint256) private _earlyClaimers;
    
    constructor(string memory baseURI) ERC721(_name, _symbol) {
        setBaseURI(baseURI);
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }
    
    function isClaimingPaused() public view returns (bool){
        return _claimingPaused;
    }
    
    function getEarlyClaimerAmount(address user_address) public view returns (uint256){
        return _earlyClaimers[user_address];
    }
    
    function mint(uint256 num) public payable {
        uint256 supply = _maxClaimingIdIncluded + _mintingId + 1;
        require(num < 51, "You can mint max 50 avatars");
        require(num > 0, "You cant mint negative avatars");
        require(supply + num <= _maxMintingIdIncluded + 1, "Exceeds maximum avatars supply");
        require(msg.value == _price * num, "Ether sent is not correct");

        _mintingId += num;
        for(uint256 i; i < num; i++){
            _safeMint(msg.sender, supply + i);
        }
    }
    
    function claim(uint256 megarares_count) public {
        require(!_claimingPaused, "Claiming is paused");
        
        require(megarares_count > 0, "Cant claim 0");
        require(megarares_count < 501, "Cant claim more than 500");
        
        address[] memory addresses = new address[](4);
        addresses[0] = msg.sender;
        addresses[1] = msg.sender;
        addresses[2] = msg.sender;
        addresses[3] = msg.sender;
        
        uint256[] memory ids = new uint256[](4);
        ids[0] = 0;
        ids[1] = 1;
        ids[2] = 2;
        ids[3] = 3;
        
        uint256[] memory totalBatch = _isotileFurnitureInstance.balanceOfBatch(addresses, ids);
        uint256 totalBalanceIsotileFurnitures = totalBatch[0] + totalBatch[1] + totalBatch[2] + totalBatch[3];
        
        _earlyClaimers[msg.sender] += megarares_count;
        require(totalBalanceIsotileFurnitures >= _earlyClaimers[msg.sender], "You are trying to claim more than you can");
        
        uint256 totalAvatars = megarares_count * 3;
        
        uint256 supply = _claimingId;
        require(supply + totalAvatars <= _maxClaimingIdIncluded + 1, "Exceeds maximum avatars supply");
        
        _claimingId += totalAvatars;
        for(uint256 i; i < totalAvatars; i++){
            _safeMint(msg.sender, supply + i);
        }
    }
    
    function claimForAddress(address user_address, uint256 megarares_count) onlyOwner public {
        require(megarares_count > 0, "Cant claim 0");
        require(megarares_count < 501, "Cant claim more than 500");
        
        _earlyClaimers[user_address] += megarares_count;

        uint256 totalAvatars = megarares_count * 3;
        
        uint256 supply = _claimingId;
        require(supply + totalAvatars <= _maxClaimingIdIncluded + 1, "Exceeds maximum avatars supply");
        
        _claimingId += totalAvatars;
        for(uint256 i; i < totalAvatars; i++){
            _safeMint(user_address, supply + i);
        }
    }
    
    function setIsotileFurnitureInstance(address isotileFurnitureAddress) onlyOwner public {
        _isotileFurnitureInstance = IERC1155(isotileFurnitureAddress);
    }
  
    function setBaseURI(string memory baseURI) onlyOwner public {
        _baseTokenURI = baseURI;
    }
    
    function setPrice(uint256 price) onlyOwner public {
        _price = price;
    }
    
    function setName(string memory name_) onlyOwner public {
        _name = name_;
    }
    
    function setSymbol(string memory symbol_) onlyOwner public {
        _symbol = symbol_;
    }
    
    function pauseClaiming() onlyOwner public {
        _claimingPaused = true;
    }
    
    function unpauseClaiming() onlyOwner public {
        _claimingPaused = false;
    }

    function pause() onlyOwner public {
        _pause();
    }
  
    function unpause() onlyOwner public {
        _unpause();
    }

    function withdraw() onlyOwner public {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

File 2 of 14 : Ownable.sol
// 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);
    }
}

File 3 of 14 : IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 4 of 14 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 5 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 6 of 14 : ERC721.sol
// 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.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 {}
}

File 7 of 14 : IERC165.sol
// 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);
}

File 8 of 14 : Context.sol
// 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;
    }
}

File 9 of 14 : ERC165.sol
// 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;
    }
}

File 10 of 14 : Strings.sol
// 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);
    }
}

File 11 of 14 : Address.sol
// 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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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);
            }
        }
    }
}

File 12 of 14 : IERC721Metadata.sol
// 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);
}

File 13 of 14 : IERC721Receiver.sol
// 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);
}

File 14 of 14 : IERC721.sol
// 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;
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"avatarsHashSha1","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"megarares_count","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user_address","type":"address"},{"internalType":"uint256","name":"megarares_count","type":"uint256"}],"name":"claimForAddress","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":"address","name":"user_address","type":"address"}],"name":"getEarlyClaimerAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"isClaimingPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseClaiming","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"isotileFurnitureAddress","type":"address"}],"name":"setIsotileFurnitureInstance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"symbol_","type":"string"}],"name":"setSymbol","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":[{"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseClaiming","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260286080818152906200300460a0398051620000299160089160209091019062000351565b506009805460ff19166001179055611190600c55612327600d556040805180820190915260178082527f69736f74696c652047656e65736973204176617461727300000000000000000060209092019182526200008991600e9162000351565b506040805180820190915260038082526249534f60e81b6020909201918252620000b691600f9162000351565b5067013fbe85edc90000601155348015620000d057600080fd5b506040516200302c3803806200302c833981016040819052620000f391620003f7565b600e80546200010290620004fb565b80601f01602080910402602001604051908101604052809291908181526020018280546200013090620004fb565b8015620001815780601f10620001555761010080835404028352916020019162000181565b820191906000526020600020905b8154815290600101906020018083116200016357829003601f168201915b5050505050600f80546200019590620004fb565b80601f0160208091040260200160405190810160405280929190818152602001828054620001c390620004fb565b8015620002145780601f10620001e85761010080835404028352916020019162000214565b820191906000526020600020905b815481529060010190602001808311620001f657829003601f168201915b505084516200022e93506000925060208601915062000351565b5080516200024490600190602084019062000351565b50506006805460ff1916905550620002656200025f62000277565b6200027b565b6200027081620002d5565b506200054e565b3390565b600680546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002df62000277565b6001600160a01b0316620002f26200033d565b6001600160a01b031614620003245760405162461bcd60e51b81526004016200031b90620004c6565b60405180910390fd5b80516200033990601090602084019062000351565b5050565b60065461010090046001600160a01b031690565b8280546200035f90620004fb565b90600052602060002090601f016020900481019282620003835760008555620003ce565b82601f106200039e57805160ff1916838001178555620003ce565b82800160010185558215620003ce579182015b82811115620003ce578251825591602001919060010190620003b1565b50620003dc929150620003e0565b5090565b5b80821115620003dc5760008155600101620003e1565b600060208083850312156200040a578182fd5b82516001600160401b038082111562000421578384fd5b818501915085601f83011262000435578384fd5b8151818111156200044a576200044a62000538565b604051601f8201601f191681018501838111828210171562000470576200047062000538565b604052818152838201850188101562000487578586fd5b8592505b81831015620004aa57838301850151818401860152918401916200048b565b81831115620004bb57858583830101525b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200051057607f821691505b602082108114156200053257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612aa6806200055e6000396000f3fe6080604052600436106101f95760003560e01c8063879cad4e1161010d578063a22cb465116100a0578063c47f00271161006f578063c47f002714610541578063c87b56dd14610561578063db82655314610581578063e985e9c5146105a1578063f2fde38b146105c1576101f9565b8063a22cb465146104cc578063aad2816e146104ec578063b84c824614610501578063b88d4fde14610521576101f9565b806398d5fdca116100dc57806398d5fdca1461046f5780639e99fec714610484578063a0712d6814610499578063a0fa4a11146104ac576101f9565b8063879cad4e146104105780638da5cb5b1461042557806391b7f5ed1461043a57806395d89b411461045a576101f9565b80633ff8035b116101905780635c975abb1161015f5780635c975abb146103845780636352211e1461039957806370a08231146103b9578063715018a6146103e65780638456cb59146103fb576101f9565b80633ff8035b1461030f57806342842e0e1461032457806355f804b31461034457806359b54d9514610364576101f9565b806323b872dd116101cc57806323b872dd146102a5578063379607f5146102c55780633ccfd60b146102e55780633f4ba83a146102fa576101f9565b806301ffc9a7146101fe57806306fdde0314610234578063081812fc14610256578063095ea7b314610283575b600080fd5b34801561020a57600080fd5b5061021e610219366004612053565b6105e1565b60405161022b9190612218565b60405180910390f35b34801561024057600080fd5b50610249610629565b60405161022b9190612223565b34801561026257600080fd5b506102766102713660046120d1565b6106bb565b60405161022b9190612144565b34801561028f57600080fd5b506102a361029e366004611f83565b610707565b005b3480156102b157600080fd5b506102a36102c0366004611e95565b61079f565b3480156102d157600080fd5b506102a36102e03660046120d1565b6107d7565b3480156102f157600080fd5b506102a3610c7e565b34801561030657600080fd5b506102a3610cf0565b34801561031b57600080fd5b506102a3610d39565b34801561033057600080fd5b506102a361033f366004611e95565b610d84565b34801561035057600080fd5b506102a361035f36600461208b565b610d9f565b34801561037057600080fd5b506102a361037f366004611e49565b610df1565b34801561039057600080fd5b5061021e610e52565b3480156103a557600080fd5b506102766103b43660046120d1565b610e5b565b3480156103c557600080fd5b506103d96103d4366004611e49565b610e90565b60405161022b91906128ed565b3480156103f257600080fd5b506102a3610ed4565b34801561040757600080fd5b506102a3610f1d565b34801561041c57600080fd5b5061021e610f64565b34801561043157600080fd5b50610276610f6d565b34801561044657600080fd5b506102a36104553660046120d1565b610f81565b34801561046657600080fd5b50610249610fc5565b34801561047b57600080fd5b506103d9610fd4565b34801561049057600080fd5b50610249610fda565b6102a36104a73660046120d1565b611068565b3480156104b857600080fd5b506103d96104c7366004611e49565b61116c565b3480156104d857600080fd5b506102a36104e7366004611f49565b611187565b3480156104f857600080fd5b506102a3611255565b34801561050d57600080fd5b506102a361051c36600461208b565b6112a3565b34801561052d57600080fd5b506102a361053c366004611ed0565b6112f5565b34801561054d57600080fd5b506102a361055c36600461208b565b611334565b34801561056d57600080fd5b5061024961057c3660046120d1565b611386565b34801561058d57600080fd5b506102a361059c366004611f83565b611409565b3480156105ad57600080fd5b5061021e6105bc366004611e63565b61154b565b3480156105cd57600080fd5b506102a36105dc366004611e49565b611579565b60006001600160e01b031982166380ac58cd60e01b148061061257506001600160e01b03198216635b5e139f60e01b145b806106215750610621826115ea565b90505b919050565b6060600e8054610638906129ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610664906129ae565b80156106b15780601f10610686576101008083540402835291602001916106b1565b820191906000526020600020905b81548152906001019060200180831161069457829003601f168201915b5050505050905090565b60006106c682611603565b6106eb5760405162461bcd60e51b81526004016106e290612677565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071282610e5b565b9050806001600160a01b0316836001600160a01b031614156107465760405162461bcd60e51b81526004016106e2906127ed565b806001600160a01b0316610758611620565b6001600160a01b031614806107745750610774816105bc611620565b6107905760405162461bcd60e51b81526004016106e290612509565b61079a8383611624565b505050565b6107b06107aa611620565b82611692565b6107cc5760405162461bcd60e51b81526004016106e29061289c565b61079a838383611717565b60095460ff16156107fa5760405162461bcd60e51b81526004016106e290612236565b6000811161081a5760405162461bcd60e51b81526004016106e290612790565b6101f5811061083b5760405162461bcd60e51b81526004016106e29061282e565b60408051600480825260a0820190925260009160208201608080368337019050509050338160008151811061088057634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b03168152505033816001815181106108c257634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050338160028151811061090457634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050338160038151811061094657634e487b7160e01b600052603260045260246000fd5b6001600160a01b039290921660209283029190910182015260408051600480825260a0820190925260009290919082016080803683370190505090506000816000815181106109a557634e487b7160e01b600052603260045260246000fd5b6020026020010181815250506001816001815181106109d457634e487b7160e01b600052603260045260246000fd5b602002602001018181525050600281600281518110610a0357634e487b7160e01b600052603260045260246000fd5b602002602001018181525050600381600381518110610a3257634e487b7160e01b600052603260045260246000fd5b60209081029190910101526007546040516313849cfd60e21b81526000916001600160a01b031690634e1273f490610a709086908690600401612195565b60006040518083038186803b158015610a8857600080fd5b505afa158015610a9c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ac49190810190611fac565b9050600081600381518110610ae957634e487b7160e01b600052603260045260246000fd5b602002602001015182600281518110610b1257634e487b7160e01b600052603260045260246000fd5b602002602001015183600181518110610b3b57634e487b7160e01b600052603260045260246000fd5b602002602001015184600081518110610b6457634e487b7160e01b600052603260045260246000fd5b6020026020010151610b769190612920565b610b809190612920565b610b8a9190612920565b33600090815260126020526040812080549293508792909190610bae908490612920565b909155505033600090815260126020526040902054811015610be25760405162461bcd60e51b81526004016106e29061262e565b6000610bef86600361294c565b600b54600c5491925090610c04906001612920565b610c0e8383612920565b1115610c2c5760405162461bcd60e51b81526004016106e2906127b6565b81600b6000828254610c3e9190612920565b90915550600090505b82811015610c7457610c6233610c5d8385612920565b611844565b80610c6c816129e9565b915050610c47565b5050505050505050565b610c86611620565b6001600160a01b0316610c97610f6d565b6001600160a01b031614610cbd5760405162461bcd60e51b81526004016106e2906126c3565b6040514790339082156108fc029083906000818181858888f19350505050158015610cec573d6000803e3d6000fd5b5050565b610cf8611620565b6001600160a01b0316610d09610f6d565b6001600160a01b031614610d2f5760405162461bcd60e51b81526004016106e2906126c3565b610d3761185e565b565b610d41611620565b6001600160a01b0316610d52610f6d565b6001600160a01b031614610d785760405162461bcd60e51b81526004016106e2906126c3565b6009805460ff19169055565b61079a838383604051806020016040528060008152506112f5565b610da7611620565b6001600160a01b0316610db8610f6d565b6001600160a01b031614610dde5760405162461bcd60e51b81526004016106e2906126c3565b8051610cec906010906020840190611d41565b610df9611620565b6001600160a01b0316610e0a610f6d565b6001600160a01b031614610e305760405162461bcd60e51b81526004016106e2906126c3565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60065460ff1690565b6000818152600260205260408120546001600160a01b0316806106215760405162461bcd60e51b81526004016106e2906125b0565b60006001600160a01b038216610eb85760405162461bcd60e51b81526004016106e290612566565b506001600160a01b031660009081526003602052604090205490565b610edc611620565b6001600160a01b0316610eed610f6d565b6001600160a01b031614610f135760405162461bcd60e51b81526004016106e2906126c3565b610d3760006118cc565b610f25611620565b6001600160a01b0316610f36610f6d565b6001600160a01b031614610f5c5760405162461bcd60e51b81526004016106e2906126c3565b610d37611926565b60095460ff1690565b60065461010090046001600160a01b031690565b610f89611620565b6001600160a01b0316610f9a610f6d565b6001600160a01b031614610fc05760405162461bcd60e51b81526004016106e2906126c3565b601155565b6060600f8054610638906129ae565b60115490565b60088054610fe7906129ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611013906129ae565b80156110605780601f1061103557610100808354040283529160200191611060565b820191906000526020600020905b81548152906001019060200180831161104357829003601f168201915b505050505081565b6000600a54600c5461107a9190612920565b611085906001612920565b9050603382106110a75760405162461bcd60e51b81526004016106e2906123e1565b600082116110c75760405162461bcd60e51b81526004016106e290612373565b600d546110d5906001612920565b6110df8383612920565b11156110fd5760405162461bcd60e51b81526004016106e2906127b6565b8160115461110b919061294c565b34146111295760405162461bcd60e51b81526004016106e290612865565b81600a600082825461113b9190612920565b90915550600090505b8281101561079a5761115a33610c5d8385612920565b80611164816129e9565b915050611144565b6001600160a01b031660009081526012602052604090205490565b61118f611620565b6001600160a01b0316826001600160a01b031614156111c05760405162461bcd60e51b81526004016106e29061245c565b80600560006111cd611620565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611211611620565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112499190612218565b60405180910390a35050565b61125d611620565b6001600160a01b031661126e610f6d565b6001600160a01b0316146112945760405162461bcd60e51b81526004016106e2906126c3565b6009805460ff19166001179055565b6112ab611620565b6001600160a01b03166112bc610f6d565b6001600160a01b0316146112e25760405162461bcd60e51b81526004016106e2906126c3565b8051610cec90600f906020840190611d41565b611306611300611620565b83611692565b6113225760405162461bcd60e51b81526004016106e29061289c565b61132e84848484611981565b50505050565b61133c611620565b6001600160a01b031661134d610f6d565b6001600160a01b0316146113735760405162461bcd60e51b81526004016106e2906126c3565b8051610cec90600e906020840190611d41565b606061139182611603565b6113ad5760405162461bcd60e51b81526004016106e290612741565b60006113b76119b4565b905060008151116113d75760405180602001604052806000815250611402565b806113e1846119c3565b6040516020016113f2929190612115565b6040516020818303038152906040525b9392505050565b611411611620565b6001600160a01b0316611422610f6d565b6001600160a01b0316146114485760405162461bcd60e51b81526004016106e2906126c3565b600081116114685760405162461bcd60e51b81526004016106e290612790565b6101f581106114895760405162461bcd60e51b81526004016106e29061282e565b6001600160a01b038216600090815260126020526040812080548392906114b1908490612920565b90915550600090506114c482600361294c565b600b54600c54919250906114d9906001612920565b6114e38383612920565b11156115015760405162461bcd60e51b81526004016106e2906127b6565b81600b60008282546115139190612920565b90915550600090505b828110156115445761153285610c5d8385612920565b8061153c816129e9565b91505061151c565b5050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611581611620565b6001600160a01b0316611592610f6d565b6001600160a01b0316146115b85760405162461bcd60e51b81526004016106e2906126c3565b6001600160a01b0381166115de5760405162461bcd60e51b81526004016106e29061232d565b6115e7816118cc565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165982610e5b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061169d82611603565b6116b95760405162461bcd60e51b81526004016106e290612493565b60006116c483610e5b565b9050806001600160a01b0316846001600160a01b031614806116ff5750836001600160a01b03166116f4846106bb565b6001600160a01b0316145b8061170f575061170f818561154b565b949350505050565b826001600160a01b031661172a82610e5b565b6001600160a01b0316146117505760405162461bcd60e51b81526004016106e2906126f8565b6001600160a01b0382166117765760405162461bcd60e51b81526004016106e290612418565b611781838383611ade565b61178c600082611624565b6001600160a01b03831660009081526003602052604081208054600192906117b590849061296b565b90915550506001600160a01b03821660009081526003602052604081208054600192906117e3908490612920565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cec828260405180602001604052806000815250611b0e565b611866610e52565b6118825760405162461bcd60e51b81526004016106e2906122ad565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118b5611620565b6040516118c29190612144565b60405180910390a1565b600680546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61192e610e52565b1561194b5760405162461bcd60e51b81526004016106e2906124df565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118b5611620565b61198c848484611717565b61199884848484611b41565b61132e5760405162461bcd60e51b81526004016106e2906122db565b606060108054610638906129ae565b6060816119e857506040805180820190915260018152600360fc1b6020820152610624565b8160005b8115611a1257806119fc816129e9565b9150611a0b9050600a83612938565b91506119ec565b60008167ffffffffffffffff811115611a3b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a65576020820181803683370190505b5090505b841561170f57611a7a60018361296b565b9150611a87600a86612a04565b611a92906030612920565b60f81b818381518110611ab557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ad7600a86612938565b9450611a69565b611ae983838361079a565b611af1610e52565b1561079a5760405162461bcd60e51b81526004016106e290612262565b611b188383611c5c565b611b256000848484611b41565b61079a5760405162461bcd60e51b81526004016106e2906122db565b6000611b55846001600160a01b0316611d3b565b15611c5157836001600160a01b031663150b7a02611b71611620565b8786866040518563ffffffff1660e01b8152600401611b939493929190612158565b602060405180830381600087803b158015611bad57600080fd5b505af1925050508015611bdd575060408051601f3d908101601f19168201909252611bda9181019061206f565b60015b611c37573d808015611c0b576040519150601f19603f3d011682016040523d82523d6000602084013e611c10565b606091505b508051611c2f5760405162461bcd60e51b81526004016106e2906122db565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061170f565b506001949350505050565b6001600160a01b038216611c825760405162461bcd60e51b81526004016106e2906125f9565b611c8b81611603565b15611ca85760405162461bcd60e51b81526004016106e2906123aa565b611cb460008383611ade565b6001600160a01b0382166000908152600360205260408120805460019290611cdd908490612920565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611d4d906129ae565b90600052602060002090601f016020900481019282611d6f5760008555611db5565b82601f10611d8857805160ff1916838001178555611db5565b82800160010185558215611db5579182015b82811115611db5578251825591602001919060010190611d9a565b50611dc1929150611dc5565b5090565b5b80821115611dc15760008155600101611dc6565b600067ffffffffffffffff831115611df457611df4612a44565b611e07601f8401601f19166020016128f6565b9050828152838383011115611e1b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461062457600080fd5b600060208284031215611e5a578081fd5b61140282611e32565b60008060408385031215611e75578081fd5b611e7e83611e32565b9150611e8c60208401611e32565b90509250929050565b600080600060608486031215611ea9578081fd5b611eb284611e32565b9250611ec060208501611e32565b9150604084013590509250925092565b60008060008060808587031215611ee5578081fd5b611eee85611e32565b9350611efc60208601611e32565b925060408501359150606085013567ffffffffffffffff811115611f1e578182fd5b8501601f81018713611f2e578182fd5b611f3d87823560208401611dda565b91505092959194509250565b60008060408385031215611f5b578182fd5b611f6483611e32565b915060208301358015158114611f78578182fd5b809150509250929050565b60008060408385031215611f95578182fd5b611f9e83611e32565b946020939093013593505050565b60006020808385031215611fbe578182fd5b825167ffffffffffffffff80821115611fd5578384fd5b818501915085601f830112611fe8578384fd5b815181811115611ffa57611ffa612a44565b838102915061200a8483016128f6565b8181528481019084860184860187018a1015612024578788fd5b8795505b83861015612046578051835260019590950194918601918601612028565b5098975050505050505050565b600060208284031215612064578081fd5b813561140281612a5a565b600060208284031215612080578081fd5b815161140281612a5a565b60006020828403121561209c578081fd5b813567ffffffffffffffff8111156120b2578182fd5b8201601f810184136120c2578182fd5b61170f84823560208401611dda565b6000602082840312156120e2578081fd5b5035919050565b60008151808452612101816020860160208601612982565b601f01601f19169290920160200192915050565b60008351612127818460208801612982565b83519083019061213b818360208801612982565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061218b908301846120e9565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b828110156121d75781516001600160a01b0316845292840192908401906001016121b2565b50505083810382850152845180825285830191830190845b8181101561220b578351835292840192918401916001016121ef565b5090979650505050505050565b901515815260200190565b60006020825261140260208301846120e9565b60208082526012908201527110db185a5b5a5b99c81a5cc81c185d5cd95960721b604082015260600190565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601e908201527f596f752063616e74206d696e74206e6567617469766520617661746172730000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f596f752063616e206d696e74206d617820353020617661746172730000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526029908201527f596f752061726520747279696e6720746f20636c61696d206d6f72652074686160408201526837103cb7ba9031b0b760b91b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252600c908201526b043616e7420636c61696d20360a41b604082015260600190565b6020808252601e908201527f45786365656473206d6178696d756d206176617461727320737570706c790000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526018908201527f43616e7420636c61696d206d6f7265207468616e203530300000000000000000604082015260600190565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff8111828210171561291857612918612a44565b604052919050565b6000821982111561293357612933612a18565b500190565b60008261294757612947612a2e565b500490565b600081600019048311821515161561296657612966612a18565b500290565b60008282101561297d5761297d612a18565b500390565b60005b8381101561299d578181015183820152602001612985565b8381111561132e5750506000910152565b6002810460018216806129c257607f821691505b602082108114156129e357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129fd576129fd612a18565b5060010190565b600082612a1357612a13612a2e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115e757600080fdfea2646970667358221220d547e9a94c3416910fab6ad63d3389a4b940c38dd3b1656be174e37069c5113a64736f6c63430008000033336232616165656539333965626435623431383636303735363632383139646365376264636433660000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f636c6f75642d30312e69736f74696c652e636f6d2f62617369632f617661746172732f6a736f6e2f00000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063879cad4e1161010d578063a22cb465116100a0578063c47f00271161006f578063c47f002714610541578063c87b56dd14610561578063db82655314610581578063e985e9c5146105a1578063f2fde38b146105c1576101f9565b8063a22cb465146104cc578063aad2816e146104ec578063b84c824614610501578063b88d4fde14610521576101f9565b806398d5fdca116100dc57806398d5fdca1461046f5780639e99fec714610484578063a0712d6814610499578063a0fa4a11146104ac576101f9565b8063879cad4e146104105780638da5cb5b1461042557806391b7f5ed1461043a57806395d89b411461045a576101f9565b80633ff8035b116101905780635c975abb1161015f5780635c975abb146103845780636352211e1461039957806370a08231146103b9578063715018a6146103e65780638456cb59146103fb576101f9565b80633ff8035b1461030f57806342842e0e1461032457806355f804b31461034457806359b54d9514610364576101f9565b806323b872dd116101cc57806323b872dd146102a5578063379607f5146102c55780633ccfd60b146102e55780633f4ba83a146102fa576101f9565b806301ffc9a7146101fe57806306fdde0314610234578063081812fc14610256578063095ea7b314610283575b600080fd5b34801561020a57600080fd5b5061021e610219366004612053565b6105e1565b60405161022b9190612218565b60405180910390f35b34801561024057600080fd5b50610249610629565b60405161022b9190612223565b34801561026257600080fd5b506102766102713660046120d1565b6106bb565b60405161022b9190612144565b34801561028f57600080fd5b506102a361029e366004611f83565b610707565b005b3480156102b157600080fd5b506102a36102c0366004611e95565b61079f565b3480156102d157600080fd5b506102a36102e03660046120d1565b6107d7565b3480156102f157600080fd5b506102a3610c7e565b34801561030657600080fd5b506102a3610cf0565b34801561031b57600080fd5b506102a3610d39565b34801561033057600080fd5b506102a361033f366004611e95565b610d84565b34801561035057600080fd5b506102a361035f36600461208b565b610d9f565b34801561037057600080fd5b506102a361037f366004611e49565b610df1565b34801561039057600080fd5b5061021e610e52565b3480156103a557600080fd5b506102766103b43660046120d1565b610e5b565b3480156103c557600080fd5b506103d96103d4366004611e49565b610e90565b60405161022b91906128ed565b3480156103f257600080fd5b506102a3610ed4565b34801561040757600080fd5b506102a3610f1d565b34801561041c57600080fd5b5061021e610f64565b34801561043157600080fd5b50610276610f6d565b34801561044657600080fd5b506102a36104553660046120d1565b610f81565b34801561046657600080fd5b50610249610fc5565b34801561047b57600080fd5b506103d9610fd4565b34801561049057600080fd5b50610249610fda565b6102a36104a73660046120d1565b611068565b3480156104b857600080fd5b506103d96104c7366004611e49565b61116c565b3480156104d857600080fd5b506102a36104e7366004611f49565b611187565b3480156104f857600080fd5b506102a3611255565b34801561050d57600080fd5b506102a361051c36600461208b565b6112a3565b34801561052d57600080fd5b506102a361053c366004611ed0565b6112f5565b34801561054d57600080fd5b506102a361055c36600461208b565b611334565b34801561056d57600080fd5b5061024961057c3660046120d1565b611386565b34801561058d57600080fd5b506102a361059c366004611f83565b611409565b3480156105ad57600080fd5b5061021e6105bc366004611e63565b61154b565b3480156105cd57600080fd5b506102a36105dc366004611e49565b611579565b60006001600160e01b031982166380ac58cd60e01b148061061257506001600160e01b03198216635b5e139f60e01b145b806106215750610621826115ea565b90505b919050565b6060600e8054610638906129ae565b80601f0160208091040260200160405190810160405280929190818152602001828054610664906129ae565b80156106b15780601f10610686576101008083540402835291602001916106b1565b820191906000526020600020905b81548152906001019060200180831161069457829003601f168201915b5050505050905090565b60006106c682611603565b6106eb5760405162461bcd60e51b81526004016106e290612677565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071282610e5b565b9050806001600160a01b0316836001600160a01b031614156107465760405162461bcd60e51b81526004016106e2906127ed565b806001600160a01b0316610758611620565b6001600160a01b031614806107745750610774816105bc611620565b6107905760405162461bcd60e51b81526004016106e290612509565b61079a8383611624565b505050565b6107b06107aa611620565b82611692565b6107cc5760405162461bcd60e51b81526004016106e29061289c565b61079a838383611717565b60095460ff16156107fa5760405162461bcd60e51b81526004016106e290612236565b6000811161081a5760405162461bcd60e51b81526004016106e290612790565b6101f5811061083b5760405162461bcd60e51b81526004016106e29061282e565b60408051600480825260a0820190925260009160208201608080368337019050509050338160008151811061088057634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b03168152505033816001815181106108c257634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050338160028151811061090457634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050338160038151811061094657634e487b7160e01b600052603260045260246000fd5b6001600160a01b039290921660209283029190910182015260408051600480825260a0820190925260009290919082016080803683370190505090506000816000815181106109a557634e487b7160e01b600052603260045260246000fd5b6020026020010181815250506001816001815181106109d457634e487b7160e01b600052603260045260246000fd5b602002602001018181525050600281600281518110610a0357634e487b7160e01b600052603260045260246000fd5b602002602001018181525050600381600381518110610a3257634e487b7160e01b600052603260045260246000fd5b60209081029190910101526007546040516313849cfd60e21b81526000916001600160a01b031690634e1273f490610a709086908690600401612195565b60006040518083038186803b158015610a8857600080fd5b505afa158015610a9c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610ac49190810190611fac565b9050600081600381518110610ae957634e487b7160e01b600052603260045260246000fd5b602002602001015182600281518110610b1257634e487b7160e01b600052603260045260246000fd5b602002602001015183600181518110610b3b57634e487b7160e01b600052603260045260246000fd5b602002602001015184600081518110610b6457634e487b7160e01b600052603260045260246000fd5b6020026020010151610b769190612920565b610b809190612920565b610b8a9190612920565b33600090815260126020526040812080549293508792909190610bae908490612920565b909155505033600090815260126020526040902054811015610be25760405162461bcd60e51b81526004016106e29061262e565b6000610bef86600361294c565b600b54600c5491925090610c04906001612920565b610c0e8383612920565b1115610c2c5760405162461bcd60e51b81526004016106e2906127b6565b81600b6000828254610c3e9190612920565b90915550600090505b82811015610c7457610c6233610c5d8385612920565b611844565b80610c6c816129e9565b915050610c47565b5050505050505050565b610c86611620565b6001600160a01b0316610c97610f6d565b6001600160a01b031614610cbd5760405162461bcd60e51b81526004016106e2906126c3565b6040514790339082156108fc029083906000818181858888f19350505050158015610cec573d6000803e3d6000fd5b5050565b610cf8611620565b6001600160a01b0316610d09610f6d565b6001600160a01b031614610d2f5760405162461bcd60e51b81526004016106e2906126c3565b610d3761185e565b565b610d41611620565b6001600160a01b0316610d52610f6d565b6001600160a01b031614610d785760405162461bcd60e51b81526004016106e2906126c3565b6009805460ff19169055565b61079a838383604051806020016040528060008152506112f5565b610da7611620565b6001600160a01b0316610db8610f6d565b6001600160a01b031614610dde5760405162461bcd60e51b81526004016106e2906126c3565b8051610cec906010906020840190611d41565b610df9611620565b6001600160a01b0316610e0a610f6d565b6001600160a01b031614610e305760405162461bcd60e51b81526004016106e2906126c3565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60065460ff1690565b6000818152600260205260408120546001600160a01b0316806106215760405162461bcd60e51b81526004016106e2906125b0565b60006001600160a01b038216610eb85760405162461bcd60e51b81526004016106e290612566565b506001600160a01b031660009081526003602052604090205490565b610edc611620565b6001600160a01b0316610eed610f6d565b6001600160a01b031614610f135760405162461bcd60e51b81526004016106e2906126c3565b610d3760006118cc565b610f25611620565b6001600160a01b0316610f36610f6d565b6001600160a01b031614610f5c5760405162461bcd60e51b81526004016106e2906126c3565b610d37611926565b60095460ff1690565b60065461010090046001600160a01b031690565b610f89611620565b6001600160a01b0316610f9a610f6d565b6001600160a01b031614610fc05760405162461bcd60e51b81526004016106e2906126c3565b601155565b6060600f8054610638906129ae565b60115490565b60088054610fe7906129ae565b80601f0160208091040260200160405190810160405280929190818152602001828054611013906129ae565b80156110605780601f1061103557610100808354040283529160200191611060565b820191906000526020600020905b81548152906001019060200180831161104357829003601f168201915b505050505081565b6000600a54600c5461107a9190612920565b611085906001612920565b9050603382106110a75760405162461bcd60e51b81526004016106e2906123e1565b600082116110c75760405162461bcd60e51b81526004016106e290612373565b600d546110d5906001612920565b6110df8383612920565b11156110fd5760405162461bcd60e51b81526004016106e2906127b6565b8160115461110b919061294c565b34146111295760405162461bcd60e51b81526004016106e290612865565b81600a600082825461113b9190612920565b90915550600090505b8281101561079a5761115a33610c5d8385612920565b80611164816129e9565b915050611144565b6001600160a01b031660009081526012602052604090205490565b61118f611620565b6001600160a01b0316826001600160a01b031614156111c05760405162461bcd60e51b81526004016106e29061245c565b80600560006111cd611620565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611211611620565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112499190612218565b60405180910390a35050565b61125d611620565b6001600160a01b031661126e610f6d565b6001600160a01b0316146112945760405162461bcd60e51b81526004016106e2906126c3565b6009805460ff19166001179055565b6112ab611620565b6001600160a01b03166112bc610f6d565b6001600160a01b0316146112e25760405162461bcd60e51b81526004016106e2906126c3565b8051610cec90600f906020840190611d41565b611306611300611620565b83611692565b6113225760405162461bcd60e51b81526004016106e29061289c565b61132e84848484611981565b50505050565b61133c611620565b6001600160a01b031661134d610f6d565b6001600160a01b0316146113735760405162461bcd60e51b81526004016106e2906126c3565b8051610cec90600e906020840190611d41565b606061139182611603565b6113ad5760405162461bcd60e51b81526004016106e290612741565b60006113b76119b4565b905060008151116113d75760405180602001604052806000815250611402565b806113e1846119c3565b6040516020016113f2929190612115565b6040516020818303038152906040525b9392505050565b611411611620565b6001600160a01b0316611422610f6d565b6001600160a01b0316146114485760405162461bcd60e51b81526004016106e2906126c3565b600081116114685760405162461bcd60e51b81526004016106e290612790565b6101f581106114895760405162461bcd60e51b81526004016106e29061282e565b6001600160a01b038216600090815260126020526040812080548392906114b1908490612920565b90915550600090506114c482600361294c565b600b54600c54919250906114d9906001612920565b6114e38383612920565b11156115015760405162461bcd60e51b81526004016106e2906127b6565b81600b60008282546115139190612920565b90915550600090505b828110156115445761153285610c5d8385612920565b8061153c816129e9565b91505061151c565b5050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611581611620565b6001600160a01b0316611592610f6d565b6001600160a01b0316146115b85760405162461bcd60e51b81526004016106e2906126c3565b6001600160a01b0381166115de5760405162461bcd60e51b81526004016106e29061232d565b6115e7816118cc565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165982610e5b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061169d82611603565b6116b95760405162461bcd60e51b81526004016106e290612493565b60006116c483610e5b565b9050806001600160a01b0316846001600160a01b031614806116ff5750836001600160a01b03166116f4846106bb565b6001600160a01b0316145b8061170f575061170f818561154b565b949350505050565b826001600160a01b031661172a82610e5b565b6001600160a01b0316146117505760405162461bcd60e51b81526004016106e2906126f8565b6001600160a01b0382166117765760405162461bcd60e51b81526004016106e290612418565b611781838383611ade565b61178c600082611624565b6001600160a01b03831660009081526003602052604081208054600192906117b590849061296b565b90915550506001600160a01b03821660009081526003602052604081208054600192906117e3908490612920565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cec828260405180602001604052806000815250611b0e565b611866610e52565b6118825760405162461bcd60e51b81526004016106e2906122ad565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118b5611620565b6040516118c29190612144565b60405180910390a1565b600680546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61192e610e52565b1561194b5760405162461bcd60e51b81526004016106e2906124df565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118b5611620565b61198c848484611717565b61199884848484611b41565b61132e5760405162461bcd60e51b81526004016106e2906122db565b606060108054610638906129ae565b6060816119e857506040805180820190915260018152600360fc1b6020820152610624565b8160005b8115611a1257806119fc816129e9565b9150611a0b9050600a83612938565b91506119ec565b60008167ffffffffffffffff811115611a3b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a65576020820181803683370190505b5090505b841561170f57611a7a60018361296b565b9150611a87600a86612a04565b611a92906030612920565b60f81b818381518110611ab557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ad7600a86612938565b9450611a69565b611ae983838361079a565b611af1610e52565b1561079a5760405162461bcd60e51b81526004016106e290612262565b611b188383611c5c565b611b256000848484611b41565b61079a5760405162461bcd60e51b81526004016106e2906122db565b6000611b55846001600160a01b0316611d3b565b15611c5157836001600160a01b031663150b7a02611b71611620565b8786866040518563ffffffff1660e01b8152600401611b939493929190612158565b602060405180830381600087803b158015611bad57600080fd5b505af1925050508015611bdd575060408051601f3d908101601f19168201909252611bda9181019061206f565b60015b611c37573d808015611c0b576040519150601f19603f3d011682016040523d82523d6000602084013e611c10565b606091505b508051611c2f5760405162461bcd60e51b81526004016106e2906122db565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061170f565b506001949350505050565b6001600160a01b038216611c825760405162461bcd60e51b81526004016106e2906125f9565b611c8b81611603565b15611ca85760405162461bcd60e51b81526004016106e2906123aa565b611cb460008383611ade565b6001600160a01b0382166000908152600360205260408120805460019290611cdd908490612920565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611d4d906129ae565b90600052602060002090601f016020900481019282611d6f5760008555611db5565b82601f10611d8857805160ff1916838001178555611db5565b82800160010185558215611db5579182015b82811115611db5578251825591602001919060010190611d9a565b50611dc1929150611dc5565b5090565b5b80821115611dc15760008155600101611dc6565b600067ffffffffffffffff831115611df457611df4612a44565b611e07601f8401601f19166020016128f6565b9050828152838383011115611e1b57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461062457600080fd5b600060208284031215611e5a578081fd5b61140282611e32565b60008060408385031215611e75578081fd5b611e7e83611e32565b9150611e8c60208401611e32565b90509250929050565b600080600060608486031215611ea9578081fd5b611eb284611e32565b9250611ec060208501611e32565b9150604084013590509250925092565b60008060008060808587031215611ee5578081fd5b611eee85611e32565b9350611efc60208601611e32565b925060408501359150606085013567ffffffffffffffff811115611f1e578182fd5b8501601f81018713611f2e578182fd5b611f3d87823560208401611dda565b91505092959194509250565b60008060408385031215611f5b578182fd5b611f6483611e32565b915060208301358015158114611f78578182fd5b809150509250929050565b60008060408385031215611f95578182fd5b611f9e83611e32565b946020939093013593505050565b60006020808385031215611fbe578182fd5b825167ffffffffffffffff80821115611fd5578384fd5b818501915085601f830112611fe8578384fd5b815181811115611ffa57611ffa612a44565b838102915061200a8483016128f6565b8181528481019084860184860187018a1015612024578788fd5b8795505b83861015612046578051835260019590950194918601918601612028565b5098975050505050505050565b600060208284031215612064578081fd5b813561140281612a5a565b600060208284031215612080578081fd5b815161140281612a5a565b60006020828403121561209c578081fd5b813567ffffffffffffffff8111156120b2578182fd5b8201601f810184136120c2578182fd5b61170f84823560208401611dda565b6000602082840312156120e2578081fd5b5035919050565b60008151808452612101816020860160208601612982565b601f01601f19169290920160200192915050565b60008351612127818460208801612982565b83519083019061213b818360208801612982565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061218b908301846120e9565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b828110156121d75781516001600160a01b0316845292840192908401906001016121b2565b50505083810382850152845180825285830191830190845b8181101561220b578351835292840192918401916001016121ef565b5090979650505050505050565b901515815260200190565b60006020825261140260208301846120e9565b60208082526012908201527110db185a5b5a5b99c81a5cc81c185d5cd95960721b604082015260600190565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601e908201527f596f752063616e74206d696e74206e6567617469766520617661746172730000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f596f752063616e206d696e74206d617820353020617661746172730000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526029908201527f596f752061726520747279696e6720746f20636c61696d206d6f72652074686160408201526837103cb7ba9031b0b760b91b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252600c908201526b043616e7420636c61696d20360a41b604082015260600190565b6020808252601e908201527f45786365656473206d6178696d756d206176617461727320737570706c790000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526018908201527f43616e7420636c61696d206d6f7265207468616e203530300000000000000000604082015260600190565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60405181810167ffffffffffffffff8111828210171561291857612918612a44565b604052919050565b6000821982111561293357612933612a18565b500190565b60008261294757612947612a2e565b500490565b600081600019048311821515161561296657612966612a18565b500290565b60008282101561297d5761297d612a18565b500390565b60005b8381101561299d578181015183820152602001612985565b8381111561132e5750506000910152565b6002810460018216806129c257607f821691505b602082108114156129e357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129fd576129fd612a18565b5060010190565b600082612a1357612a13612a2e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115e757600080fdfea2646970667358221220d547e9a94c3416910fab6ad63d3389a4b940c38dd3b1656be174e37069c5113a64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f636c6f75642d30312e69736f74696c652e636f6d2f62617369632f617661746172732f6a736f6e2f00000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://cloud-01.isotile.com/basic/avatars/json/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000030
Arg [2] : 68747470733a2f2f636c6f75642d30312e69736f74696c652e636f6d2f626173
Arg [3] : 69632f617661746172732f6a736f6e2f00000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.