ETH Price: $3,482.78 (+2.19%)
Gas: 8 Gwei

Token

TMRW LAND (TMRW)
 

Overview

Max Total Supply

468 TMRW

Holders

226

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hopester.eth
Balance
1 TMRW
0x0db33b8940769cf6bf38f5a81ad80c61dc9adfa5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TMRWLAND

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-18
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Counters.sol

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol

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: @openzeppelin/contracts/utils/introspection/IERC165.sol

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: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;

/**
 * @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;
}

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/utils/Strings.sol

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: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

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: @openzeppelin/contracts/token/ERC721/ERC721.sol

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: TMRWLAND.sol

pragma solidity ^0.8.0;

/// @author Tmrwland
contract TMRWLAND is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenId;

    uint256 public maxTMRW = 2500;
    uint256 public price = 200000000000000000; //0.2 Ether
    string baseTokenURI;
    bool public isSaleOpen = false;
    bool public isPresaleOpen = false;
    mapping(address => bool) public whitelistAddr;

    event TMRWLANDMinted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("TMRW LAND", "TMRW") {
        setBaseURI(baseURI);
    }

    //Get token Ids of all tokens owned by _owner
    function walletOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function toggleSale() external onlyOwner {
        isSaleOpen = !isSaleOpen;
    }

    function togglePresaleState() external onlyOwner {
        isPresaleOpen = !isPresaleOpen;
    }

    function whitelistAddress(
        address[] calldata users
    ) external onlyOwner {
        for (uint256 i = 0; i < users.length; i++) {
            require(!whitelistAddr[users[i]],"Address already whitelisted");
            whitelistAddr[users[i]] = true;
        }
    }

    function withdrawETH() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function presaleMint(uint256 _count) external payable {
        address user = msg.sender;
        require(isPresaleOpen, "Presale is not open yet");
        require(!isSaleOpen, "Presale is closed");
          require(
            _count > 0 && _count <= 2,
            "Minimum 1 and Maximum 2 TMRW LAND can be minted per address in presale"
        );
        require(
            totalSupply() + _count <= maxTMRW,
            "Exceeds maximum supply of TMRWLAND"
        );
        require(
            whitelistAddr[user],
            "Address not eligible for presale mint"
        );
       

        require(
            2 >= balanceOf(user) + _count,
            "Purchase will exceed max presale mint amount per address"
        );
        require(
            msg.value >= price * _count,
            "Ether sent with this transaction is not correct"
        );

          if (balanceOf(user) + _count == 2) {
            whitelistAddr[user] = false;
        }

        for (uint256 i = 0; i < _count; i++) {
            _mint(user);
        }
    }

    //mint TMRWLAND
    function mintTMRWLAND(address _to, uint256 _count) external payable {
        require(
            totalSupply() + _count <= maxTMRW,
            "Exceeds maximum supply of TMRWLAND"
        );
        if (msg.sender != owner()) {
            require(isSaleOpen, "Sale is not open yet");
            require(
                _count > 0 && _count <= 5,
                "Minimum 1 & Maximum 5 TMRWLAND can be minted per transaction"
            );
            require(
                msg.value >= price * _count,
                "Ether sent with this transaction is not correct"
            );
        }

        for (uint256 i = 0; i < _count; i++) {
            _mint(_to);
        }
    }

    function _mint(address _to) private {
        _tokenId.increment();
        uint256 tokenId = _tokenId.current();
        _safeMint(_to, tokenId);
        emit TMRWLANDMinted(tokenId);
    }

    function changePrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function incMaxTMRW(uint256 _maxTMRW) external onlyOwner {
        maxTMRW += _maxTMRW;
    }

    function decMaxTMRW(uint256 _maxTMRW) external onlyOwner {
        maxTMRW -= _maxTMRW;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }


}

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":"uint256","name":"totalMinted","type":"uint256"}],"name":"TMRWLANDMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTMRW","type":"uint256"}],"name":"decMaxTMRW","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTMRW","type":"uint256"}],"name":"incMaxTMRW","outputs":[],"stateMutability":"nonpayable","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":"isPresaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTMRW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintTMRWLAND","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":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[],"name":"togglePresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddr","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526109c4600c556702c68af0bb140000600d55600f805461ffff191690553480156200002e57600080fd5b5060405162002e9c38038062002e9c833981016040819052620000519162000256565b604080518082018252600981526815135495c81310539160ba1b602080830191825283518085019094526004845263544d525760e01b9084015281519192916200009e91600091620001b0565b508051620000b4906001906020840190620001b0565b505050620000d1620000cb620000e360201b60201c565b620000e7565b620000dc8162000139565b50620003ad565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000143620000e3565b6001600160a01b031662000156620001a1565b6001600160a01b031614620001885760405162461bcd60e51b81526004016200017f9062000325565b60405180910390fd5b80516200019d90600e906020840190620001b0565b5050565b600a546001600160a01b031690565b828054620001be906200035a565b90600052602060002090601f016020900481019282620001e257600085556200022d565b82601f10620001fd57805160ff19168380011785556200022d565b828001600101855582156200022d579182015b828111156200022d57825182559160200191906001019062000210565b506200023b9291506200023f565b5090565b5b808211156200023b576000815560010162000240565b6000602080838503121562000269578182fd5b82516001600160401b038082111562000280578384fd5b818501915085601f83011262000294578384fd5b815181811115620002a957620002a962000397565b604051601f8201601f1916810185018381118282101715620002cf57620002cf62000397565b6040528181528382018501881015620002e6578586fd5b8592505b81831015620003095783830185015181840186015291840191620002ea565b818311156200031a57858583830101525b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200036f57607f821691505b602082108114156200039157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612adf80620003bd6000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063b31d61b0116100a0578063e086e5ec1161006f578063e086e5ec14610598578063e985e9c5146105ad578063eb4f847b146105cd578063f285e69e146105e2578063f2fde38b146105f757610204565b8063b31d61b014610525578063b88d4fde14610545578063c87b56dd14610565578063c9b298f11461058557610204565b806395d89b41116100e757806395d89b41146104a6578063a035b1fe146104bb578063a22cb465146104d0578063a2b40d19146104f0578063a2f8c3c41461051057610204565b806370a0823114610447578063715018a6146104675780637d8966e41461047c5780638da5cb5b1461049157610204565b806323b872dd1161019b578063438b63001161016a578063438b63001461039a5780634adfe99d146103c75780634f6ccce7146103e757806355f804b3146104075780636352211e1461042757610204565b806323b872dd146103275780632f745c5914610347578063347f3e8d1461036757806342842e0e1461037a57610204565b8063081812fc116101d7578063081812fc146102a3578063095ea7b3146102d057806318160ddd146102f05780631a0813301461031257610204565b806301ffc9a71461020957806306fdde031461023f578063073c8f4914610261578063080a57f914610283575b600080fd5b34801561021557600080fd5b50610229610224366004611fbf565b610617565b6040516102369190612148565b60405180910390f35b34801561024b57600080fd5b50610254610644565b6040516102369190612153565b34801561026d57600080fd5b5061028161027c36600461203d565b6106d6565b005b34801561028f57600080fd5b5061022961029e366004611ded565b610738565b3480156102af57600080fd5b506102c36102be36600461203d565b61074d565b60405161023691906120b3565b3480156102dc57600080fd5b506102816102eb366004611f27565b610790565b3480156102fc57600080fd5b50610305610828565b6040516102369190612950565b34801561031e57600080fd5b5061022961082e565b34801561033357600080fd5b50610281610342366004611e39565b610837565b34801561035357600080fd5b50610305610362366004611f27565b61086f565b610281610375366004611f27565b6108c1565b34801561038657600080fd5b50610281610395366004611e39565b6109b7565b3480156103a657600080fd5b506103ba6103b5366004611ded565b6109d2565b6040516102369190612104565b3480156103d357600080fd5b506102816103e236600461203d565b610a90565b3480156103f357600080fd5b5061030561040236600461203d565b610ae1565b34801561041357600080fd5b50610281610422366004611ff7565b610b3c565b34801561043357600080fd5b506102c361044236600461203d565b610b92565b34801561045357600080fd5b50610305610462366004611ded565b610bc7565b34801561047357600080fd5b50610281610c0b565b34801561048857600080fd5b50610281610c56565b34801561049d57600080fd5b506102c3610ca9565b3480156104b257600080fd5b50610254610cb8565b3480156104c757600080fd5b50610305610cc7565b3480156104dc57600080fd5b506102816104eb366004611eed565b610ccd565b3480156104fc57600080fd5b5061028161050b36600461203d565b610d9b565b34801561051c57600080fd5b50610305610ddf565b34801561053157600080fd5b50610281610540366004611f50565b610de5565b34801561055157600080fd5b50610281610560366004611e74565b610f17565b34801561057157600080fd5b5061025461058036600461203d565b610f56565b61028161059336600461203d565b610fd9565b3480156105a457600080fd5b50610281611182565b3480156105b957600080fd5b506102296105c8366004611e07565b611240565b3480156105d957600080fd5b5061022961126e565b3480156105ee57600080fd5b5061028161127c565b34801561060357600080fd5b50610281610612366004611ded565b6112d8565b60006001600160e01b0319821663780e9d6360e01b148061063c575061063c82611346565b90505b919050565b606060008054610653906129e7565b80601f016020809104026020016040519081016040528092919081815260200182805461067f906129e7565b80156106cc5780601f106106a1576101008083540402835291602001916106cc565b820191906000526020600020905b8154815290600101906020018083116106af57829003601f168201915b5050505050905090565b6106de611386565b6001600160a01b03166106ef610ca9565b6001600160a01b03161461071e5760405162461bcd60e51b81526004016107159061266b565b60405180910390fd5b80600c60008282546107309190612959565b909155505050565b60106020526000908152604090205460ff1681565b60006107588261138a565b6107745760405162461bcd60e51b8152600401610715906125d0565b506000908152600460205260409020546001600160a01b031690565b600061079b82610b92565b9050806001600160a01b0316836001600160a01b031614156107cf5760405162461bcd60e51b81526004016107159061276f565b806001600160a01b03166107e1611386565b6001600160a01b031614806107fd57506107fd816105c8611386565b6108195760405162461bcd60e51b8152600401610715906124ab565b61082383836113a7565b505050565b60085490565b600f5460ff1681565b610848610842611386565b82611415565b6108645760405162461bcd60e51b81526004016107159061281f565b61082383838361149a565b600061087a83610bc7565b82106108985760405162461bcd60e51b8152600401610715906121d2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600c54816108cd610828565b6108d79190612959565b11156108f55760405162461bcd60e51b815260040161071590612469565b6108fd610ca9565b6001600160a01b0316336001600160a01b03161461099157600f5460ff166109375760405162461bcd60e51b815260040161071590612392565b600081118015610948575060058111155b6109645760405162461bcd60e51b8152600401610715906123c0565b80600d546109729190612985565b3410156109915760405162461bcd60e51b81526004016107159061261c565b60005b81811015610823576109a5836115c7565b806109af81612a22565b915050610994565b61082383838360405180602001604052806000815250610f17565b606060006109df83610bc7565b905060008167ffffffffffffffff811115610a0a57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a33578160200160208202803683370190505b50905060005b82811015610a8857610a4b858261086f565b828281518110610a6b57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a8081612a22565b915050610a39565b509392505050565b610a98611386565b6001600160a01b0316610aa9610ca9565b6001600160a01b031614610acf5760405162461bcd60e51b81526004016107159061266b565b80600c600082825461073091906129a4565b6000610aeb610828565b8210610b095760405162461bcd60e51b8152600401610715906128a7565b60088281548110610b2a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610b44611386565b6001600160a01b0316610b55610ca9565b6001600160a01b031614610b7b5760405162461bcd60e51b81526004016107159061266b565b8051610b8e90600e906020840190611ccd565b5050565b6000818152600260205260408120546001600160a01b03168061063c5760405162461bcd60e51b815260040161071590612552565b60006001600160a01b038216610bef5760405162461bcd60e51b815260040161071590612508565b506001600160a01b031660009081526003602052604090205490565b610c13611386565b6001600160a01b0316610c24610ca9565b6001600160a01b031614610c4a5760405162461bcd60e51b81526004016107159061266b565b610c546000611624565b565b610c5e611386565b6001600160a01b0316610c6f610ca9565b6001600160a01b031614610c955760405162461bcd60e51b81526004016107159061266b565b600f805460ff19811660ff90911615179055565b600a546001600160a01b031690565b606060018054610653906129e7565b600d5481565b610cd5611386565b6001600160a01b0316826001600160a01b03161415610d065760405162461bcd60e51b81526004016107159061235b565b8060056000610d13611386565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d57611386565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d8f9190612148565b60405180910390a35050565b610da3611386565b6001600160a01b0316610db4610ca9565b6001600160a01b031614610dda5760405162461bcd60e51b81526004016107159061266b565b600d55565b600c5481565b610ded611386565b6001600160a01b0316610dfe610ca9565b6001600160a01b031614610e245760405162461bcd60e51b81526004016107159061266b565b60005b818110156108235760106000848484818110610e5357634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e689190611ded565b6001600160a01b0316815260208101919091526040016000205460ff1615610ea25760405162461bcd60e51b815260040161071590612870565b600160106000858585818110610ec857634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610edd9190611ded565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f0f81612a22565b915050610e27565b610f28610f22611386565b83611415565b610f445760405162461bcd60e51b81526004016107159061281f565b610f5084848484611676565b50505050565b6060610f618261138a565b610f7d5760405162461bcd60e51b8152600401610715906126e9565b6000610f876116a9565b90506000815111610fa75760405180602001604052806000815250610fd2565b80610fb1846116b8565b604051602001610fc2929190612081565b6040516020818303038152906040525b9392505050565b600f543390610100900460ff166110025760405162461bcd60e51b815260040161071590612738565b600f5460ff16156110255760405162461bcd60e51b8152600401610715906122ec565b600082118015611036575060028211155b6110525760405162461bcd60e51b815260040161071590612166565b600c548261105e610828565b6110689190612959565b11156110865760405162461bcd60e51b815260040161071590612469565b6001600160a01b03811660009081526010602052604090205460ff166110be5760405162461bcd60e51b8152600401610715906127b0565b816110c882610bc7565b6110d29190612959565b600210156110f25760405162461bcd60e51b8152600401610715906128f3565b81600d546111009190612985565b34101561111f5760405162461bcd60e51b81526004016107159061261c565b8161112982610bc7565b6111339190612959565b6002141561115c576001600160a01b0381166000908152601060205260409020805460ff191690555b60005b8281101561082357611170826115c7565b8061117a81612a22565b91505061115f565b61118a611386565b6001600160a01b031661119b610ca9565b6001600160a01b0316146111c15760405162461bcd60e51b81526004016107159061266b565b6000336001600160a01b0316476040516111da906120b0565b60006040518083038185875af1925050503d8060008114611217576040519150601f19603f3d011682016040523d82523d6000602084013e61121c565b606091505b505090508061123d5760405162461bcd60e51b8152600401610715906127f5565b50565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600f54610100900460ff1681565b611284611386565b6001600160a01b0316611295610ca9565b6001600160a01b0316146112bb5760405162461bcd60e51b81526004016107159061266b565b600f805461ff001981166101009182900460ff1615909102179055565b6112e0611386565b6001600160a01b03166112f1610ca9565b6001600160a01b0316146113175760405162461bcd60e51b81526004016107159061266b565b6001600160a01b03811661133d5760405162461bcd60e51b81526004016107159061226f565b61123d81611624565b60006001600160e01b031982166380ac58cd60e01b148061137757506001600160e01b03198216635b5e139f60e01b145b8061063c575061063c826117d3565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113dc82610b92565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114208261138a565b61143c5760405162461bcd60e51b81526004016107159061241d565b600061144783610b92565b9050806001600160a01b0316846001600160a01b031614806114825750836001600160a01b03166114778461074d565b6001600160a01b0316145b8061149257506114928185611240565b949350505050565b826001600160a01b03166114ad82610b92565b6001600160a01b0316146114d35760405162461bcd60e51b8152600401610715906126a0565b6001600160a01b0382166114f95760405162461bcd60e51b815260040161071590612317565b6115048383836117ec565b61150f6000826113a7565b6001600160a01b03831660009081526003602052604081208054600192906115389084906129a4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611566908490612959565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6115d1600b611875565b60006115dd600b61187e565b90506115e98282611882565b7fdb44e9cbd5e3e0a3d6abf452be42c92ccb39b3c84958755b111d6b586329dd42816040516116189190612950565b60405180910390a15050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61168184848461149a565b61168d8484848461189c565b610f505760405162461bcd60e51b81526004016107159061221d565b6060600e8054610653906129e7565b6060816116dd57506040805180820190915260018152600360fc1b602082015261063f565b8160005b811561170757806116f181612a22565b91506117009050600a83612971565b91506116e1565b60008167ffffffffffffffff81111561173057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561175a576020820181803683370190505b5090505b84156114925761176f6001836129a4565b915061177c600a86612a3d565b611787906030612959565b60f81b8183815181106117aa57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117cc600a86612971565b945061175e565b6001600160e01b031981166301ffc9a760e01b14919050565b6117f7838383610823565b6001600160a01b0383166118135761180e816119b7565b611836565b816001600160a01b0316836001600160a01b0316146118365761183683826119fb565b6001600160a01b0382166118525761184d81611a98565b610823565b826001600160a01b0316826001600160a01b031614610823576108238282611b71565b80546001019055565b5490565b610b8e828260405180602001604052806000815250611bb5565b60006118b0846001600160a01b0316611be8565b156119ac57836001600160a01b031663150b7a026118cc611386565b8786866040518563ffffffff1660e01b81526004016118ee94939291906120c7565b602060405180830381600087803b15801561190857600080fd5b505af1925050508015611938575060408051601f3d908101601f1916820190925261193591810190611fdb565b60015b611992573d808015611966576040519150601f19603f3d011682016040523d82523d6000602084013e61196b565b606091505b50805161198a5760405162461bcd60e51b81526004016107159061221d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611492565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a0884610bc7565b611a1291906129a4565b600083815260076020526040902054909150808214611a65576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611aaa906001906129a4565b60008381526009602052604081205460088054939450909284908110611ae057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b0f57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b5557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b7c83610bc7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611bbf8383611bee565b611bcc600084848461189c565b6108235760405162461bcd60e51b81526004016107159061221d565b3b151590565b6001600160a01b038216611c145760405162461bcd60e51b81526004016107159061259b565b611c1d8161138a565b15611c3a5760405162461bcd60e51b8152600401610715906122b5565b611c46600083836117ec565b6001600160a01b0382166000908152600360205260408120805460019290611c6f908490612959565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cd9906129e7565b90600052602060002090601f016020900481019282611cfb5760008555611d41565b82601f10611d1457805160ff1916838001178555611d41565b82800160010185558215611d41579182015b82811115611d41578251825591602001919060010190611d26565b50611d4d929150611d51565b5090565b5b80821115611d4d5760008155600101611d52565b600067ffffffffffffffff80841115611d8157611d81612a7d565b604051601f8501601f191681016020018281118282101715611da557611da5612a7d565b604052848152915081838501861015611dbd57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461063f57600080fd5b600060208284031215611dfe578081fd5b610fd282611dd6565b60008060408385031215611e19578081fd5b611e2283611dd6565b9150611e3060208401611dd6565b90509250929050565b600080600060608486031215611e4d578081fd5b611e5684611dd6565b9250611e6460208501611dd6565b9150604084013590509250925092565b60008060008060808587031215611e89578081fd5b611e9285611dd6565b9350611ea060208601611dd6565b925060408501359150606085013567ffffffffffffffff811115611ec2578182fd5b8501601f81018713611ed2578182fd5b611ee187823560208401611d66565b91505092959194509250565b60008060408385031215611eff578182fd5b611f0883611dd6565b915060208301358015158114611f1c578182fd5b809150509250929050565b60008060408385031215611f39578182fd5b611f4283611dd6565b946020939093013593505050565b60008060208385031215611f62578182fd5b823567ffffffffffffffff80821115611f79578384fd5b818501915085601f830112611f8c578384fd5b813581811115611f9a578485fd5b8660208083028501011115611fad578485fd5b60209290920196919550909350505050565b600060208284031215611fd0578081fd5b8135610fd281612a93565b600060208284031215611fec578081fd5b8151610fd281612a93565b600060208284031215612008578081fd5b813567ffffffffffffffff81111561201e578182fd5b8201601f8101841361202e578182fd5b61149284823560208401611d66565b60006020828403121561204e578081fd5b5035919050565b6000815180845261206d8160208601602086016129bb565b601f01601f19169290920160200192915050565b600083516120938184602088016129bb565b8351908301906120a78183602088016129bb565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120fa90830184612055565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561213c57835183529284019291840191600101612120565b50909695505050505050565b901515815260200190565b600060208252610fd26020830184612055565b60208082526046908201527f4d696e696d756d203120616e64204d6178696d756d203220544d5257204c414e60408201527f442063616e206265206d696e74656420706572206164647265737320696e2070606082015265726573616c6560d01b608082015260a00190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260119082015270141c995cd85b19481a5cc818db1bdcd959607a1b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252603c908201527f4d696e696d756d20312026204d6178696d756d203520544d52574c414e44206360408201527f616e206265206d696e74656420706572207472616e73616374696f6e00000000606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526022908201527f45786365656473206d6178696d756d20737570706c79206f6620544d52574c41604082015261139160f21b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526017908201527f50726573616c65206973206e6f74206f70656e20796574000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526025908201527f41646472657373206e6f7420656c696769626c6520666f722070726573616c65604082015264081b5a5b9d60da1b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601b908201527f4164647265737320616c72656164792077686974656c69737465640000000000604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526038908201527f50757263686173652077696c6c20657863656564206d61782070726573616c6560408201527f206d696e7420616d6f756e742070657220616464726573730000000000000000606082015260800190565b90815260200190565b6000821982111561296c5761296c612a51565b500190565b60008261298057612980612a67565b500490565b600081600019048311821515161561299f5761299f612a51565b500290565b6000828210156129b6576129b6612a51565b500390565b60005b838110156129d65781810151838201526020016129be565b83811115610f505750506000910152565b6002810460018216806129fb57607f821691505b60208210811415612a1c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a3657612a36612a51565b5060010190565b600082612a4c57612a4c612a67565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461123d57600080fdfea2646970667358221220983bb3f7245752b8125181d1e178994c6e57d4cb056838d763ea3cca82cf957764736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c806370a0823111610118578063b31d61b0116100a0578063e086e5ec1161006f578063e086e5ec14610598578063e985e9c5146105ad578063eb4f847b146105cd578063f285e69e146105e2578063f2fde38b146105f757610204565b8063b31d61b014610525578063b88d4fde14610545578063c87b56dd14610565578063c9b298f11461058557610204565b806395d89b41116100e757806395d89b41146104a6578063a035b1fe146104bb578063a22cb465146104d0578063a2b40d19146104f0578063a2f8c3c41461051057610204565b806370a0823114610447578063715018a6146104675780637d8966e41461047c5780638da5cb5b1461049157610204565b806323b872dd1161019b578063438b63001161016a578063438b63001461039a5780634adfe99d146103c75780634f6ccce7146103e757806355f804b3146104075780636352211e1461042757610204565b806323b872dd146103275780632f745c5914610347578063347f3e8d1461036757806342842e0e1461037a57610204565b8063081812fc116101d7578063081812fc146102a3578063095ea7b3146102d057806318160ddd146102f05780631a0813301461031257610204565b806301ffc9a71461020957806306fdde031461023f578063073c8f4914610261578063080a57f914610283575b600080fd5b34801561021557600080fd5b50610229610224366004611fbf565b610617565b6040516102369190612148565b60405180910390f35b34801561024b57600080fd5b50610254610644565b6040516102369190612153565b34801561026d57600080fd5b5061028161027c36600461203d565b6106d6565b005b34801561028f57600080fd5b5061022961029e366004611ded565b610738565b3480156102af57600080fd5b506102c36102be36600461203d565b61074d565b60405161023691906120b3565b3480156102dc57600080fd5b506102816102eb366004611f27565b610790565b3480156102fc57600080fd5b50610305610828565b6040516102369190612950565b34801561031e57600080fd5b5061022961082e565b34801561033357600080fd5b50610281610342366004611e39565b610837565b34801561035357600080fd5b50610305610362366004611f27565b61086f565b610281610375366004611f27565b6108c1565b34801561038657600080fd5b50610281610395366004611e39565b6109b7565b3480156103a657600080fd5b506103ba6103b5366004611ded565b6109d2565b6040516102369190612104565b3480156103d357600080fd5b506102816103e236600461203d565b610a90565b3480156103f357600080fd5b5061030561040236600461203d565b610ae1565b34801561041357600080fd5b50610281610422366004611ff7565b610b3c565b34801561043357600080fd5b506102c361044236600461203d565b610b92565b34801561045357600080fd5b50610305610462366004611ded565b610bc7565b34801561047357600080fd5b50610281610c0b565b34801561048857600080fd5b50610281610c56565b34801561049d57600080fd5b506102c3610ca9565b3480156104b257600080fd5b50610254610cb8565b3480156104c757600080fd5b50610305610cc7565b3480156104dc57600080fd5b506102816104eb366004611eed565b610ccd565b3480156104fc57600080fd5b5061028161050b36600461203d565b610d9b565b34801561051c57600080fd5b50610305610ddf565b34801561053157600080fd5b50610281610540366004611f50565b610de5565b34801561055157600080fd5b50610281610560366004611e74565b610f17565b34801561057157600080fd5b5061025461058036600461203d565b610f56565b61028161059336600461203d565b610fd9565b3480156105a457600080fd5b50610281611182565b3480156105b957600080fd5b506102296105c8366004611e07565b611240565b3480156105d957600080fd5b5061022961126e565b3480156105ee57600080fd5b5061028161127c565b34801561060357600080fd5b50610281610612366004611ded565b6112d8565b60006001600160e01b0319821663780e9d6360e01b148061063c575061063c82611346565b90505b919050565b606060008054610653906129e7565b80601f016020809104026020016040519081016040528092919081815260200182805461067f906129e7565b80156106cc5780601f106106a1576101008083540402835291602001916106cc565b820191906000526020600020905b8154815290600101906020018083116106af57829003601f168201915b5050505050905090565b6106de611386565b6001600160a01b03166106ef610ca9565b6001600160a01b03161461071e5760405162461bcd60e51b81526004016107159061266b565b60405180910390fd5b80600c60008282546107309190612959565b909155505050565b60106020526000908152604090205460ff1681565b60006107588261138a565b6107745760405162461bcd60e51b8152600401610715906125d0565b506000908152600460205260409020546001600160a01b031690565b600061079b82610b92565b9050806001600160a01b0316836001600160a01b031614156107cf5760405162461bcd60e51b81526004016107159061276f565b806001600160a01b03166107e1611386565b6001600160a01b031614806107fd57506107fd816105c8611386565b6108195760405162461bcd60e51b8152600401610715906124ab565b61082383836113a7565b505050565b60085490565b600f5460ff1681565b610848610842611386565b82611415565b6108645760405162461bcd60e51b81526004016107159061281f565b61082383838361149a565b600061087a83610bc7565b82106108985760405162461bcd60e51b8152600401610715906121d2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600c54816108cd610828565b6108d79190612959565b11156108f55760405162461bcd60e51b815260040161071590612469565b6108fd610ca9565b6001600160a01b0316336001600160a01b03161461099157600f5460ff166109375760405162461bcd60e51b815260040161071590612392565b600081118015610948575060058111155b6109645760405162461bcd60e51b8152600401610715906123c0565b80600d546109729190612985565b3410156109915760405162461bcd60e51b81526004016107159061261c565b60005b81811015610823576109a5836115c7565b806109af81612a22565b915050610994565b61082383838360405180602001604052806000815250610f17565b606060006109df83610bc7565b905060008167ffffffffffffffff811115610a0a57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a33578160200160208202803683370190505b50905060005b82811015610a8857610a4b858261086f565b828281518110610a6b57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610a8081612a22565b915050610a39565b509392505050565b610a98611386565b6001600160a01b0316610aa9610ca9565b6001600160a01b031614610acf5760405162461bcd60e51b81526004016107159061266b565b80600c600082825461073091906129a4565b6000610aeb610828565b8210610b095760405162461bcd60e51b8152600401610715906128a7565b60088281548110610b2a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610b44611386565b6001600160a01b0316610b55610ca9565b6001600160a01b031614610b7b5760405162461bcd60e51b81526004016107159061266b565b8051610b8e90600e906020840190611ccd565b5050565b6000818152600260205260408120546001600160a01b03168061063c5760405162461bcd60e51b815260040161071590612552565b60006001600160a01b038216610bef5760405162461bcd60e51b815260040161071590612508565b506001600160a01b031660009081526003602052604090205490565b610c13611386565b6001600160a01b0316610c24610ca9565b6001600160a01b031614610c4a5760405162461bcd60e51b81526004016107159061266b565b610c546000611624565b565b610c5e611386565b6001600160a01b0316610c6f610ca9565b6001600160a01b031614610c955760405162461bcd60e51b81526004016107159061266b565b600f805460ff19811660ff90911615179055565b600a546001600160a01b031690565b606060018054610653906129e7565b600d5481565b610cd5611386565b6001600160a01b0316826001600160a01b03161415610d065760405162461bcd60e51b81526004016107159061235b565b8060056000610d13611386565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d57611386565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d8f9190612148565b60405180910390a35050565b610da3611386565b6001600160a01b0316610db4610ca9565b6001600160a01b031614610dda5760405162461bcd60e51b81526004016107159061266b565b600d55565b600c5481565b610ded611386565b6001600160a01b0316610dfe610ca9565b6001600160a01b031614610e245760405162461bcd60e51b81526004016107159061266b565b60005b818110156108235760106000848484818110610e5357634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e689190611ded565b6001600160a01b0316815260208101919091526040016000205460ff1615610ea25760405162461bcd60e51b815260040161071590612870565b600160106000858585818110610ec857634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610edd9190611ded565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f0f81612a22565b915050610e27565b610f28610f22611386565b83611415565b610f445760405162461bcd60e51b81526004016107159061281f565b610f5084848484611676565b50505050565b6060610f618261138a565b610f7d5760405162461bcd60e51b8152600401610715906126e9565b6000610f876116a9565b90506000815111610fa75760405180602001604052806000815250610fd2565b80610fb1846116b8565b604051602001610fc2929190612081565b6040516020818303038152906040525b9392505050565b600f543390610100900460ff166110025760405162461bcd60e51b815260040161071590612738565b600f5460ff16156110255760405162461bcd60e51b8152600401610715906122ec565b600082118015611036575060028211155b6110525760405162461bcd60e51b815260040161071590612166565b600c548261105e610828565b6110689190612959565b11156110865760405162461bcd60e51b815260040161071590612469565b6001600160a01b03811660009081526010602052604090205460ff166110be5760405162461bcd60e51b8152600401610715906127b0565b816110c882610bc7565b6110d29190612959565b600210156110f25760405162461bcd60e51b8152600401610715906128f3565b81600d546111009190612985565b34101561111f5760405162461bcd60e51b81526004016107159061261c565b8161112982610bc7565b6111339190612959565b6002141561115c576001600160a01b0381166000908152601060205260409020805460ff191690555b60005b8281101561082357611170826115c7565b8061117a81612a22565b91505061115f565b61118a611386565b6001600160a01b031661119b610ca9565b6001600160a01b0316146111c15760405162461bcd60e51b81526004016107159061266b565b6000336001600160a01b0316476040516111da906120b0565b60006040518083038185875af1925050503d8060008114611217576040519150601f19603f3d011682016040523d82523d6000602084013e61121c565b606091505b505090508061123d5760405162461bcd60e51b8152600401610715906127f5565b50565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600f54610100900460ff1681565b611284611386565b6001600160a01b0316611295610ca9565b6001600160a01b0316146112bb5760405162461bcd60e51b81526004016107159061266b565b600f805461ff001981166101009182900460ff1615909102179055565b6112e0611386565b6001600160a01b03166112f1610ca9565b6001600160a01b0316146113175760405162461bcd60e51b81526004016107159061266b565b6001600160a01b03811661133d5760405162461bcd60e51b81526004016107159061226f565b61123d81611624565b60006001600160e01b031982166380ac58cd60e01b148061137757506001600160e01b03198216635b5e139f60e01b145b8061063c575061063c826117d3565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113dc82610b92565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114208261138a565b61143c5760405162461bcd60e51b81526004016107159061241d565b600061144783610b92565b9050806001600160a01b0316846001600160a01b031614806114825750836001600160a01b03166114778461074d565b6001600160a01b0316145b8061149257506114928185611240565b949350505050565b826001600160a01b03166114ad82610b92565b6001600160a01b0316146114d35760405162461bcd60e51b8152600401610715906126a0565b6001600160a01b0382166114f95760405162461bcd60e51b815260040161071590612317565b6115048383836117ec565b61150f6000826113a7565b6001600160a01b03831660009081526003602052604081208054600192906115389084906129a4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611566908490612959565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6115d1600b611875565b60006115dd600b61187e565b90506115e98282611882565b7fdb44e9cbd5e3e0a3d6abf452be42c92ccb39b3c84958755b111d6b586329dd42816040516116189190612950565b60405180910390a15050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61168184848461149a565b61168d8484848461189c565b610f505760405162461bcd60e51b81526004016107159061221d565b6060600e8054610653906129e7565b6060816116dd57506040805180820190915260018152600360fc1b602082015261063f565b8160005b811561170757806116f181612a22565b91506117009050600a83612971565b91506116e1565b60008167ffffffffffffffff81111561173057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561175a576020820181803683370190505b5090505b84156114925761176f6001836129a4565b915061177c600a86612a3d565b611787906030612959565b60f81b8183815181106117aa57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117cc600a86612971565b945061175e565b6001600160e01b031981166301ffc9a760e01b14919050565b6117f7838383610823565b6001600160a01b0383166118135761180e816119b7565b611836565b816001600160a01b0316836001600160a01b0316146118365761183683826119fb565b6001600160a01b0382166118525761184d81611a98565b610823565b826001600160a01b0316826001600160a01b031614610823576108238282611b71565b80546001019055565b5490565b610b8e828260405180602001604052806000815250611bb5565b60006118b0846001600160a01b0316611be8565b156119ac57836001600160a01b031663150b7a026118cc611386565b8786866040518563ffffffff1660e01b81526004016118ee94939291906120c7565b602060405180830381600087803b15801561190857600080fd5b505af1925050508015611938575060408051601f3d908101601f1916820190925261193591810190611fdb565b60015b611992573d808015611966576040519150601f19603f3d011682016040523d82523d6000602084013e61196b565b606091505b50805161198a5760405162461bcd60e51b81526004016107159061221d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611492565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611a0884610bc7565b611a1291906129a4565b600083815260076020526040902054909150808214611a65576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611aaa906001906129a4565b60008381526009602052604081205460088054939450909284908110611ae057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611b0f57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b5557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611b7c83610bc7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611bbf8383611bee565b611bcc600084848461189c565b6108235760405162461bcd60e51b81526004016107159061221d565b3b151590565b6001600160a01b038216611c145760405162461bcd60e51b81526004016107159061259b565b611c1d8161138a565b15611c3a5760405162461bcd60e51b8152600401610715906122b5565b611c46600083836117ec565b6001600160a01b0382166000908152600360205260408120805460019290611c6f908490612959565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cd9906129e7565b90600052602060002090601f016020900481019282611cfb5760008555611d41565b82601f10611d1457805160ff1916838001178555611d41565b82800160010185558215611d41579182015b82811115611d41578251825591602001919060010190611d26565b50611d4d929150611d51565b5090565b5b80821115611d4d5760008155600101611d52565b600067ffffffffffffffff80841115611d8157611d81612a7d565b604051601f8501601f191681016020018281118282101715611da557611da5612a7d565b604052848152915081838501861015611dbd57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461063f57600080fd5b600060208284031215611dfe578081fd5b610fd282611dd6565b60008060408385031215611e19578081fd5b611e2283611dd6565b9150611e3060208401611dd6565b90509250929050565b600080600060608486031215611e4d578081fd5b611e5684611dd6565b9250611e6460208501611dd6565b9150604084013590509250925092565b60008060008060808587031215611e89578081fd5b611e9285611dd6565b9350611ea060208601611dd6565b925060408501359150606085013567ffffffffffffffff811115611ec2578182fd5b8501601f81018713611ed2578182fd5b611ee187823560208401611d66565b91505092959194509250565b60008060408385031215611eff578182fd5b611f0883611dd6565b915060208301358015158114611f1c578182fd5b809150509250929050565b60008060408385031215611f39578182fd5b611f4283611dd6565b946020939093013593505050565b60008060208385031215611f62578182fd5b823567ffffffffffffffff80821115611f79578384fd5b818501915085601f830112611f8c578384fd5b813581811115611f9a578485fd5b8660208083028501011115611fad578485fd5b60209290920196919550909350505050565b600060208284031215611fd0578081fd5b8135610fd281612a93565b600060208284031215611fec578081fd5b8151610fd281612a93565b600060208284031215612008578081fd5b813567ffffffffffffffff81111561201e578182fd5b8201601f8101841361202e578182fd5b61149284823560208401611d66565b60006020828403121561204e578081fd5b5035919050565b6000815180845261206d8160208601602086016129bb565b601f01601f19169290920160200192915050565b600083516120938184602088016129bb565b8351908301906120a78183602088016129bb565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120fa90830184612055565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561213c57835183529284019291840191600101612120565b50909695505050505050565b901515815260200190565b600060208252610fd26020830184612055565b60208082526046908201527f4d696e696d756d203120616e64204d6178696d756d203220544d5257204c414e60408201527f442063616e206265206d696e74656420706572206164647265737320696e2070606082015265726573616c6560d01b608082015260a00190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b602080825260119082015270141c995cd85b19481a5cc818db1bdcd959607a1b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252603c908201527f4d696e696d756d20312026204d6178696d756d203520544d52574c414e44206360408201527f616e206265206d696e74656420706572207472616e73616374696f6e00000000606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526022908201527f45786365656473206d6178696d756d20737570706c79206f6620544d52574c41604082015261139160f21b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602f908201527f45746865722073656e7420776974682074686973207472616e73616374696f6e60408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526017908201527f50726573616c65206973206e6f74206f70656e20796574000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526025908201527f41646472657373206e6f7420656c696769626c6520666f722070726573616c65604082015264081b5a5b9d60da1b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601b908201527f4164647265737320616c72656164792077686974656c69737465640000000000604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526038908201527f50757263686173652077696c6c20657863656564206d61782070726573616c6560408201527f206d696e7420616d6f756e742070657220616464726573730000000000000000606082015260800190565b90815260200190565b6000821982111561296c5761296c612a51565b500190565b60008261298057612980612a67565b500490565b600081600019048311821515161561299f5761299f612a51565b500290565b6000828210156129b6576129b6612a51565b500390565b60005b838110156129d65781810151838201526020016129be565b83811115610f505750506000910152565b6002810460018216806129fb57607f821691505b60208210811415612a1c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a3657612a36612a51565b5060010190565b600082612a4c57612a4c612a67565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461123d57600080fdfea2646970667358221220983bb3f7245752b8125181d1e178994c6e57d4cb056838d763ea3cca82cf957764736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46358:4259:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39872:300;;;;;;;;;;-1:-1:-1;39872:300:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27032:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;50291:95::-;;;;;;;;;;-1:-1:-1;50291:95:0;;;;;:::i;:::-;;:::i;:::-;;46695:45;;;;;;;;;;-1:-1:-1;46695:45:0;;;;;:::i;:::-;;:::i;28725:308::-;;;;;;;;;;-1:-1:-1;28725:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28248:411::-;;;;;;;;;;-1:-1:-1;28248:411:0;;;;;:::i;:::-;;:::i;40675:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46618:30::-;;;;;;;;;;;;;:::i;29784:376::-;;;;;;;;;;-1:-1:-1;29784:376:0;;;;;:::i;:::-;;:::i;40256:343::-;;;;;;;;;;-1:-1:-1;40256:343:0;;;;;:::i;:::-;;:::i;49267:710::-;;;;;;:::i;:::-;;:::i;30231:185::-;;;;;;;;;;-1:-1:-1;30231:185:0;;;;;:::i;:::-;;:::i;46959:385::-;;;;;;;;;;-1:-1:-1;46959:385:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50394:95::-;;;;;;;;;;-1:-1:-1;50394:95:0;;;;;:::i;:::-;;:::i;40865:320::-;;;;;;;;;;-1:-1:-1;40865:320:0;;;;;:::i;:::-;;:::i;47352:101::-;;;;;;;;;;-1:-1:-1;47352:101:0;;;;;:::i;:::-;;:::i;26639:326::-;;;;;;;;;;-1:-1:-1;26639:326:0;;;;;:::i;:::-;;:::i;26282:295::-;;;;;;;;;;-1:-1:-1;26282:295:0;;;;;:::i;:::-;;:::i;9739:94::-;;;;;;;;;;;;;:::i;47461:84::-;;;;;;;;;;;;;:::i;9088:87::-;;;;;;;;;;;;;:::i;27201:104::-;;;;;;;;;;;;;:::i;46532:41::-;;;;;;;;;;;;;:::i;29105:327::-;;;;;;;;;;-1:-1:-1;29105:327:0;;;;;:::i;:::-;;:::i;50188:95::-;;;;;;;;;;-1:-1:-1;50188:95:0;;;;;:::i;:::-;;:::i;46496:29::-;;;;;;;;;;;;;:::i;47659:283::-;;;;;;;;;;-1:-1:-1;47659:283:0;;;;;:::i;:::-;;:::i;30487:365::-;;;;;;;;;;-1:-1:-1;30487:365:0;;;;;:::i;:::-;;:::i;27376:468::-;;;;;;;;;;-1:-1:-1;27376:468:0;;;;;:::i;:::-;;:::i;48143:1095::-;;;;;;:::i;:::-;;:::i;47950:185::-;;;;;;;;;;;;;:::i;29503:214::-;;;;;;;;;;-1:-1:-1;29503:214:0;;;;;:::i;:::-;;:::i;46655:33::-;;;;;;;;;;;;;:::i;47553:98::-;;;;;;;;;;;;;:::i;9988:229::-;;;;;;;;;;-1:-1:-1;9988:229:0;;;;;:::i;:::-;;:::i;39872:300::-;40019:4;-1:-1:-1;;;;;;40061:50:0;;-1:-1:-1;;;40061:50:0;;:103;;;40128:36;40152:11;40128:23;:36::i;:::-;40041:123;;39872:300;;;;:::o;27032:100::-;27086:13;27119:5;27112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27032:100;:::o;50291:95::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;;;;;;;;;50370:8:::1;50359:7;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;50291:95:0:o;46695:45::-;;;;;;;;;;;;;;;:::o;28725:308::-;28846:7;28893:16;28901:7;28893;:16::i;:::-;28871:110;;;;-1:-1:-1;;;28871:110:0;;;;;;;:::i;:::-;-1:-1:-1;29001:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29001:24:0;;28725:308::o;28248:411::-;28329:13;28345:23;28360:7;28345:14;:23::i;:::-;28329:39;;28393:5;-1:-1:-1;;;;;28387:11:0;:2;-1:-1:-1;;;;;28387:11:0;;;28379:57;;;;-1:-1:-1;;;28379:57:0;;;;;;;:::i;:::-;28487:5;-1:-1:-1;;;;;28471:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;28471:21:0;;:62;;;;28496:37;28513:5;28520:12;:10;:12::i;28496:37::-;28449:168;;;;-1:-1:-1;;;28449:168:0;;;;;;;:::i;:::-;28630:21;28639:2;28643:7;28630:8;:21::i;:::-;28248:411;;;:::o;40675:113::-;40763:10;:17;40675:113;:::o;46618:30::-;;;;;;:::o;29784:376::-;29993:41;30012:12;:10;:12::i;:::-;30026:7;29993:18;:41::i;:::-;29971:140;;;;-1:-1:-1;;;29971:140:0;;;;;;;:::i;:::-;30124:28;30134:4;30140:2;30144:7;30124:9;:28::i;40256:343::-;40398:7;40453:23;40470:5;40453:16;:23::i;:::-;40445:5;:31;40423:124;;;;-1:-1:-1;;;40423:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;40565:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40256:343::o;49267:710::-;49394:7;;49384:6;49368:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:33;;49346:117;;;;-1:-1:-1;;;49346:117:0;;;;;;;:::i;:::-;49492:7;:5;:7::i;:::-;-1:-1:-1;;;;;49478:21:0;:10;-1:-1:-1;;;;;49478:21:0;;49474:410;;49524:10;;;;49516:43;;;;-1:-1:-1;;;49516:43:0;;;;;;;:::i;:::-;49609:1;49600:6;:10;:25;;;;;49624:1;49614:6;:11;;49600:25;49574:147;;;;-1:-1:-1;;;49574:147:0;;;;;;;:::i;:::-;49783:6;49775:5;;:14;;;;:::i;:::-;49762:9;:27;;49736:136;;;;-1:-1:-1;;;49736:136:0;;;;;;;:::i;:::-;49901:9;49896:74;49920:6;49916:1;:10;49896:74;;;49948:10;49954:3;49948:5;:10::i;:::-;49928:3;;;;:::i;:::-;;;;49896:74;;30231:185;30369:39;30386:4;30392:2;30396:7;30369:39;;;;;;;;;;;;:16;:39::i;46959:385::-;47048:16;47082:18;47103:17;47113:6;47103:9;:17::i;:::-;47082:38;;47133:25;47175:10;47161:25;;;;;;-1:-1:-1;;;47161:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47161:25:0;;47133:53;;47202:9;47197:112;47221:10;47217:1;:14;47197:112;;;47267:30;47287:6;47295:1;47267:19;:30::i;:::-;47253:8;47262:1;47253:11;;;;;;-1:-1:-1;;;47253:11:0;;;;;;;;;;;;;;;;;;:44;47233:3;;;;:::i;:::-;;;;47197:112;;;-1:-1:-1;47328:8:0;46959:385;-1:-1:-1;;;46959:385:0:o;50394:95::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;50473:8:::1;50462:7;;:19;;;;;;;:::i;40865:320::-:0;40985:7;41040:30;:28;:30::i;:::-;41032:5;:38;41010:132;;;;-1:-1:-1;;;41010:132:0;;;;;;;:::i;:::-;41160:10;41171:5;41160:17;;;;;;-1:-1:-1;;;41160:17:0;;;;;;;;;;;;;;;;;41153:24;;40865:320;;;:::o;47352:101::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;47423:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47352:101:::0;:::o;26639:326::-;26756:7;26797:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26797:16:0;26846:19;26824:110;;;;-1:-1:-1;;;26824:110:0;;;;;;;:::i;26282:295::-;26399:7;-1:-1:-1;;;;;26446:19:0;;26424:111;;;;-1:-1:-1;;;26424:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;26553:16:0;;;;;:9;:16;;;;;;;26282:295::o;9739:94::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;9804:21:::1;9822:1;9804:9;:21::i;:::-;9739:94::o:0;47461:84::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;47527:10:::1;::::0;;-1:-1:-1;;47513:24:0;::::1;47527:10;::::0;;::::1;47526:11;47513:24;::::0;;47461:84::o;9088:87::-;9161:6;;-1:-1:-1;;;;;9161:6:0;9088:87;:::o;27201:104::-;27257:13;27290:7;27283:14;;;;;:::i;46532:41::-;;;;:::o;29105:327::-;29252:12;:10;:12::i;:::-;-1:-1:-1;;;;;29240:24:0;:8;-1:-1:-1;;;;;29240:24:0;;;29232:62;;;;-1:-1:-1;;;29232:62:0;;;;;;;:::i;:::-;29352:8;29307:18;:32;29326:12;:10;:12::i;:::-;-1:-1:-1;;;;;29307:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;29307:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;29307:53:0;;;;;;;;;;;29391:12;:10;:12::i;:::-;-1:-1:-1;;;;;29376:48:0;;29415:8;29376:48;;;;;;:::i;:::-;;;;;;;;29105:327;;:::o;50188:95::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;50258:5:::1;:17:::0;50188:95::o;46496:29::-;;;;:::o;47659:283::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;47762:9:::1;47757:178;47777:16:::0;;::::1;47757:178;;;47824:13;:23;47838:5;;47844:1;47838:8;;;;;-1:-1:-1::0;;;47838:8:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47824:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47824:23:0;;::::1;;47823:24;47815:63;;;;-1:-1:-1::0;;;47815:63:0::1;;;;;;;:::i;:::-;47919:4;47893:13;:23;47907:5;;47913:1;47907:8;;;;;-1:-1:-1::0;;;47907:8:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47893:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47893:23:0;:30;;-1:-1:-1;;47893:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47795:3;::::1;::::0;::::1;:::i;:::-;;;;47757:178;;30487:365:::0;30676:41;30695:12;:10;:12::i;:::-;30709:7;30676:18;:41::i;:::-;30654:140;;;;-1:-1:-1;;;30654:140:0;;;;;;;:::i;:::-;30805:39;30819:4;30825:2;30829:7;30838:5;30805:13;:39::i;:::-;30487:365;;;;:::o;27376:468::-;27494:13;27547:16;27555:7;27547;:16::i;:::-;27525:113;;;;-1:-1:-1;;;27525:113:0;;;;;;;:::i;:::-;27651:21;27675:10;:8;:10::i;:::-;27651:34;;27740:1;27722:7;27716:21;:25;:120;;;;;;;;;;;;;;;;;27785:7;27794:18;:7;:16;:18::i;:::-;27768:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27716:120;27696:140;27376:468;-1:-1:-1;;;27376:468:0:o;48143:1095::-;48252:13;;48223:10;;48252:13;;;;;48244:49;;;;-1:-1:-1;;;48244:49:0;;;;;;;:::i;:::-;48313:10;;;;48312:11;48304:41;;;;-1:-1:-1;;;48304:41:0;;;;;;;:::i;:::-;48389:1;48380:6;:10;:25;;;;;48404:1;48394:6;:11;;48380:25;48358:145;;;;-1:-1:-1;;;48358:145:0;;;;;;;:::i;:::-;48562:7;;48552:6;48536:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:33;;48514:117;;;;-1:-1:-1;;;48514:117:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48664:19:0;;;;;;:13;:19;;;;;;;;48642:106;;;;-1:-1:-1;;;48642:106:0;;;;;;;:::i;:::-;48815:6;48797:15;48807:4;48797:9;:15::i;:::-;:24;;;;:::i;:::-;48792:1;:29;;48770:135;;;;-1:-1:-1;;;48770:135:0;;;;;;;:::i;:::-;48959:6;48951:5;;:14;;;;:::i;:::-;48938:9;:27;;48916:124;;;;-1:-1:-1;;;48916:124:0;;;;;;;:::i;:::-;49077:6;49059:15;49069:4;49059:9;:15::i;:::-;:24;;;;:::i;:::-;49087:1;49059:29;49055:89;;;-1:-1:-1;;;;;49105:19:0;;49127:5;49105:19;;;:13;:19;;;;;:27;;-1:-1:-1;;49105:27:0;;;49055:89;49161:9;49156:75;49180:6;49176:1;:10;49156:75;;;49208:11;49214:4;49208:5;:11::i;:::-;49188:3;;;;:::i;:::-;;;;49156:75;;47950:185;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;48004:12:::1;48030:10;-1:-1:-1::0;;;;;48022:24:0::1;48054:21;48022:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48003:77;;;48099:7;48091:36;;;;-1:-1:-1::0;;;48091:36:0::1;;;;;;;:::i;:::-;9379:1;47950:185::o:0;29503:214::-;-1:-1:-1;;;;;29674:25:0;;;29645:4;29674:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29503:214::o;46655:33::-;;;;;;;;;:::o;47553:98::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;47630:13:::1;::::0;;-1:-1:-1;;47613:30:0;::::1;47630:13;::::0;;;::::1;;;47629:14;47613:30:::0;;::::1;;::::0;;47553:98::o;9988:229::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10091:22:0;::::1;10069:110;;;;-1:-1:-1::0;;;10069:110:0::1;;;;;;;:::i;:::-;10190:19;10200:8;10190:9;:19::i;25863:355::-:0;26010:4;-1:-1:-1;;;;;;26052:40:0;;-1:-1:-1;;;26052:40:0;;:105;;-1:-1:-1;;;;;;;26109:48:0;;-1:-1:-1;;;26109:48:0;26052:105;:158;;;;26174:36;26198:11;26174:23;:36::i;2061:98::-;2141:10;2061:98;:::o;32399:127::-;32464:4;32488:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32488:16:0;:30;;;32399:127::o;36522:174::-;36597:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36597:29:0;-1:-1:-1;;;;;36597:29:0;;;;;;;;:24;;36651:23;36597:24;36651:14;:23::i;:::-;-1:-1:-1;;;;;36642:46:0;;;;;;;;;;;36522:174;;:::o;32693:452::-;32822:4;32866:16;32874:7;32866;:16::i;:::-;32844:110;;;;-1:-1:-1;;;32844:110:0;;;;;;;:::i;:::-;32965:13;32981:23;32996:7;32981:14;:23::i;:::-;32965:39;;33034:5;-1:-1:-1;;;;;33023:16:0;:7;-1:-1:-1;;;;;33023:16:0;;:64;;;;33080:7;-1:-1:-1;;;;;33056:31:0;:20;33068:7;33056:11;:20::i;:::-;-1:-1:-1;;;;;33056:31:0;;33023:64;:113;;;;33104:32;33121:5;33128:7;33104:16;:32::i;:::-;33015:122;32693:452;-1:-1:-1;;;;32693:452:0:o;35789:615::-;35962:4;-1:-1:-1;;;;;35935:31:0;:23;35950:7;35935:14;:23::i;:::-;-1:-1:-1;;;;;35935:31:0;;35913:122;;;;-1:-1:-1;;;35913:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36054:16:0;;36046:65;;;;-1:-1:-1;;;36046:65:0;;;;;;;:::i;:::-;36124:39;36145:4;36151:2;36155:7;36124:20;:39::i;:::-;36228:29;36245:1;36249:7;36228:8;:29::i;:::-;-1:-1:-1;;;;;36270:15:0;;;;;;:9;:15;;;;;:20;;36289:1;;36270:15;:20;;36289:1;;36270:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36301:13:0;;;;;;:9;:13;;;;;:18;;36318:1;;36301:13;:18;;36318:1;;36301:18;:::i;:::-;;;;-1:-1:-1;;36330:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36330:21:0;-1:-1:-1;;;;;36330:21:0;;;;;;;;;36369:27;;36330:16;;36369:27;;;;;;;35789:615;;;:::o;49985:195::-;50032:20;:8;:18;:20::i;:::-;50063:15;50081:18;:8;:16;:18::i;:::-;50063:36;;50110:23;50120:3;50125:7;50110:9;:23::i;:::-;50149;50164:7;50149:23;;;;;;:::i;:::-;;;;;;;;49985:195;;:::o;10225:173::-;10300:6;;;-1:-1:-1;;;;;10317:17:0;;;-1:-1:-1;;;;;;10317:17:0;;;;;;;10350:40;;10300:6;;;10317:17;10300:6;;10350:40;;10281:16;;10350:40;10225:173;;:::o;31734:352::-;31891:28;31901:4;31907:2;31911:7;31891:9;:28::i;:::-;31952:48;31975:4;31981:2;31985:7;31994:5;31952:22;:48::i;:::-;31930:148;;;;-1:-1:-1;;;31930:148:0;;;;;;;:::i;50497:113::-;50557:13;50590:12;50583:19;;;;;:::i;12730:723::-;12786:13;13007:10;13003:53;;-1:-1:-1;13034:10:0;;;;;;;;;;;;-1:-1:-1;;;13034:10:0;;;;;;13003:53;13081:5;13066:12;13122:78;13129:9;;13122:78;;13155:8;;;;:::i;:::-;;-1:-1:-1;13178:10:0;;-1:-1:-1;13186:2:0;13178:10;;:::i;:::-;;;13122:78;;;13210:19;13242:6;13232:17;;;;;;-1:-1:-1;;;13232:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13232:17:0;;13210:39;;13260:154;13267:10;;13260:154;;13294:11;13304:1;13294:11;;:::i;:::-;;-1:-1:-1;13363:10:0;13371:2;13363:5;:10;:::i;:::-;13350:24;;:2;:24;:::i;:::-;13337:39;;13320:6;13327;13320:14;;;;;;-1:-1:-1;;;13320:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;13320:56:0;;;;;;;;-1:-1:-1;13391:11:0;13400:2;13391:11;;:::i;:::-;;;13260:154;;12209:207;-1:-1:-1;;;;;;12368:40:0;;-1:-1:-1;;;12368:40:0;12209:207;;;:::o;41798:589::-;41942:45;41969:4;41975:2;41979:7;41942:26;:45::i;:::-;-1:-1:-1;;;;;42004:18:0;;42000:187;;42039:40;42071:7;42039:31;:40::i;:::-;42000:187;;;42109:2;-1:-1:-1;;;;;42101:10:0;:4;-1:-1:-1;;;;;42101:10:0;;42097:90;;42128:47;42161:4;42167:7;42128:32;:47::i;:::-;-1:-1:-1;;;;;42201:16:0;;42197:183;;42234:45;42271:7;42234:36;:45::i;:::-;42197:183;;;42307:4;-1:-1:-1;;;;;42301:10:0;:2;-1:-1:-1;;;;;42301:10:0;;42297:83;;42328:40;42356:2;42360:7;42328:27;:40::i;970:127::-;1059:19;;1077:1;1059:19;;;970:127::o;848:114::-;940:14;;848:114::o;33487:110::-;33563:26;33573:2;33577:7;33563:26;;;;;;;;;;;;:9;:26::i;37261:984::-;37416:4;37437:15;:2;-1:-1:-1;;;;;37437:13:0;;:15::i;:::-;37433:805;;;37506:2;-1:-1:-1;;;;;37490:36:0;;37549:12;:10;:12::i;:::-;37584:4;37611:7;37641:5;37490:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37490:175:0;;;;;;;;-1:-1:-1;;37490:175:0;;;;;;;;;;;;:::i;:::-;;;37469:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37852:13:0;;37848:320;;37895:108;;-1:-1:-1;;;37895:108:0;;;;;;;:::i;37848:320::-;38118:6;38112:13;38103:6;38099:2;38095:15;38088:38;37469:714;-1:-1:-1;;;;;;37729:55:0;-1:-1:-1;;;37729:55:0;;-1:-1:-1;37722:62:0;;37433:805;-1:-1:-1;38222:4:0;37261:984;;;;;;:::o;43110:164::-;43214:10;:17;;43187:24;;;;:15;:24;;;;;:44;;;43242:24;;;;;;;;;;;;43110:164::o;43901:1002::-;44181:22;44231:1;44206:22;44223:4;44206:16;:22::i;:::-;:26;;;;:::i;:::-;44243:18;44264:26;;;:17;:26;;;;;;44181:51;;-1:-1:-1;44397:28:0;;;44393:328;;-1:-1:-1;;;;;44464:18:0;;44442:19;44464:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44515:30;;;;;;:44;;;44632:30;;:17;:30;;;;;:43;;;44393:328;-1:-1:-1;44817:26:0;;;;:17;:26;;;;;;;;44810:33;;;-1:-1:-1;;;;;44861:18:0;;;;;:12;:18;;;;;:34;;;;;;;44854:41;43901:1002::o;45198:1079::-;45476:10;:17;45451:22;;45476:21;;45496:1;;45476:21;:::i;:::-;45508:18;45529:24;;;:15;:24;;;;;;45902:10;:26;;45451:46;;-1:-1:-1;45529:24:0;;45451:46;;45902:26;;;;-1:-1:-1;;;45902:26:0;;;;;;;;;;;;;;;;;45880:48;;45966:11;45941:10;45952;45941:22;;;;;;-1:-1:-1;;;45941:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46046:28;;;:15;:28;;;;;;;:41;;;46218:24;;;;;46211:31;46253:10;:16;;;;;-1:-1:-1;;;46253:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45198:1079;;;;:::o;42688:221::-;42773:14;42790:20;42807:2;42790:16;:20::i;:::-;-1:-1:-1;;;;;42821:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42866:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42688:221:0:o;33824:321::-;33954:18;33960:2;33964:7;33954:5;:18::i;:::-;34005:54;34036:1;34040:2;34044:7;34053:5;34005:22;:54::i;:::-;33983:154;;;;-1:-1:-1;;;33983:154:0;;;;;;;:::i;15283:387::-;15606:20;15654:8;;;15283:387::o;34481:382::-;-1:-1:-1;;;;;34561:16:0;;34553:61;;;;-1:-1:-1;;;34553:61:0;;;;;;;:::i;:::-;34634:16;34642:7;34634;:16::i;:::-;34633:17;34625:58;;;;-1:-1:-1;;;34625:58:0;;;;;;;:::i;:::-;34696:45;34725:1;34729:2;34733:7;34696:20;:45::i;:::-;-1:-1:-1;;;;;34754:13:0;;;;;;:9;:13;;;;;:18;;34771:1;;34754:13;:18;;34771:1;;34754:18;:::i;:::-;;;;-1:-1:-1;;34783:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34783:21:0;-1:-1:-1;;;;;34783:21:0;;;;;;;;34822:33;;34783:16;;;34822:33;;34783:16;;34822:33;34481:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:666::-;;;3134:2;3122:9;3113:7;3109:23;3105:32;3102:2;;;3155:6;3147;3140:22;3102:2;3200:9;3187:23;3229:18;3270:2;3262:6;3259:14;3256:2;;;3291:6;3283;3276:22;3256:2;3334:6;3323:9;3319:22;3309:32;;3379:7;3372:4;3368:2;3364:13;3360:27;3350:2;;3406:6;3398;3391:22;3350:2;3451;3438:16;3477:2;3469:6;3466:14;3463:2;;;3498:6;3490;3483:22;3463:2;3557:7;3552:2;3546;3538:6;3534:15;3530:2;3526:24;3522:33;3519:46;3516:2;;;3583:6;3575;3568:22;3516:2;3619;3611:11;;;;;3641:6;;-1:-1:-1;3092:561:1;;-1:-1:-1;;;;3092:561:1:o;3658:257::-;;3769:2;3757:9;3748:7;3744:23;3740:32;3737:2;;;3790:6;3782;3775:22;3737:2;3834:9;3821:23;3853:32;3879:5;3853:32;:::i;3920:261::-;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4063:6;4055;4048:22;4010:2;4100:9;4094:16;4119:32;4145:5;4119:32;:::i;4186:482::-;;4308:2;4296:9;4287:7;4283:23;4279:32;4276:2;;;4329:6;4321;4314:22;4276:2;4374:9;4361:23;4407:18;4399:6;4396:30;4393:2;;;4444:6;4436;4429:22;4393:2;4472:22;;4525:4;4517:13;;4513:27;-1:-1:-1;4503:2:1;;4559:6;4551;4544:22;4503:2;4587:75;4654:7;4649:2;4636:16;4631:2;4627;4623:11;4587:75;:::i;4673:190::-;;4785:2;4773:9;4764:7;4760:23;4756:32;4753:2;;;4806:6;4798;4791:22;4753:2;-1:-1:-1;4834:23:1;;4743:120;-1:-1:-1;4743:120:1:o;4868:259::-;;4949:5;4943:12;4976:6;4971:3;4964:19;4992:63;5048:6;5041:4;5036:3;5032:14;5025:4;5018:5;5014:16;4992:63;:::i;:::-;5109:2;5088:15;-1:-1:-1;;5084:29:1;5075:39;;;;5116:4;5071:50;;4919:208;-1:-1:-1;;4919:208:1:o;5132:470::-;;5349:6;5343:13;5365:53;5411:6;5406:3;5399:4;5391:6;5387:17;5365:53;:::i;:::-;5481:13;;5440:16;;;;5503:57;5481:13;5440:16;5537:4;5525:17;;5503:57;:::i;:::-;5576:20;;5319:283;-1:-1:-1;;;;5319:283:1:o;5607:205::-;5807:3;5798:14::o;5817:203::-;-1:-1:-1;;;;;5981:32:1;;;;5963:51;;5951:2;5936:18;;5918:102::o;6025:490::-;-1:-1:-1;;;;;6294:15:1;;;6276:34;;6346:15;;6341:2;6326:18;;6319:43;6393:2;6378:18;;6371:34;;;6441:3;6436:2;6421:18;;6414:31;;;6025:490;;6462:47;;6489:19;;6481:6;6462:47;:::i;:::-;6454:55;6228:287;-1:-1:-1;;;;;;6228:287:1:o;6520:635::-;6691:2;6743:21;;;6813:13;;6716:18;;;6835:22;;;6520:635;;6691:2;6914:15;;;;6888:2;6873:18;;;6520:635;6960:169;6974:6;6971:1;6968:13;6960:169;;;7035:13;;7023:26;;7104:15;;;;7069:12;;;;6996:1;6989:9;6960:169;;;-1:-1:-1;7146:3:1;;6671:484;-1:-1:-1;;;;;;6671:484:1:o;7160:187::-;7325:14;;7318:22;7300:41;;7288:2;7273:18;;7255:92::o;7352:221::-;;7501:2;7490:9;7483:21;7521:46;7563:2;7552:9;7548:18;7540:6;7521:46;:::i;7578:474::-;7780:2;7762:21;;;7819:2;7799:18;;;7792:30;7858:34;7853:2;7838:18;;7831:62;7929:34;7924:2;7909:18;;7902:62;-1:-1:-1;;;7995:3:1;7980:19;;7973:37;8042:3;8027:19;;7752:300::o;8057:407::-;8259:2;8241:21;;;8298:2;8278:18;;;8271:30;8337:34;8332:2;8317:18;;8310:62;-1:-1:-1;;;8403:2:1;8388:18;;8381:41;8454:3;8439:19;;8231:233::o;8469:414::-;8671:2;8653:21;;;8710:2;8690:18;;;8683:30;8749:34;8744:2;8729:18;;8722:62;-1:-1:-1;;;8815:2:1;8800:18;;8793:48;8873:3;8858:19;;8643:240::o;8888:402::-;9090:2;9072:21;;;9129:2;9109:18;;;9102:30;9168:34;9163:2;9148:18;;9141:62;-1:-1:-1;;;9234:2:1;9219:18;;9212:36;9280:3;9265:19;;9062:228::o;9295:352::-;9497:2;9479:21;;;9536:2;9516:18;;;9509:30;9575;9570:2;9555:18;;9548:58;9638:2;9623:18;;9469:178::o;9652:341::-;9854:2;9836:21;;;9893:2;9873:18;;;9866:30;-1:-1:-1;;;9927:2:1;9912:18;;9905:47;9984:2;9969:18;;9826:167::o;9998:400::-;10200:2;10182:21;;;10239:2;10219:18;;;10212:30;10278:34;10273:2;10258:18;;10251:62;-1:-1:-1;;;10344:2:1;10329:18;;10322:34;10388:3;10373:19;;10172:226::o;10403:349::-;10605:2;10587:21;;;10644:2;10624:18;;;10617:30;10683:27;10678:2;10663:18;;10656:55;10743:2;10728:18;;10577:175::o;10757:344::-;10959:2;10941:21;;;10998:2;10978:18;;;10971:30;-1:-1:-1;;;11032:2:1;11017:18;;11010:50;11092:2;11077:18;;10931:170::o;11106:424::-;11308:2;11290:21;;;11347:2;11327:18;;;11320:30;11386:34;11381:2;11366:18;;11359:62;11457:30;11452:2;11437:18;;11430:58;11520:3;11505:19;;11280:250::o;11535:408::-;11737:2;11719:21;;;11776:2;11756:18;;;11749:30;11815:34;11810:2;11795:18;;11788:62;-1:-1:-1;;;11881:2:1;11866:18;;11859:42;11933:3;11918:19;;11709:234::o;11948:398::-;12150:2;12132:21;;;12189:2;12169:18;;;12162:30;12228:34;12223:2;12208:18;;12201:62;-1:-1:-1;;;12294:2:1;12279:18;;12272:32;12336:3;12321:19;;12122:224::o;12351:420::-;12553:2;12535:21;;;12592:2;12572:18;;;12565:30;12631:34;12626:2;12611:18;;12604:62;12702:26;12697:2;12682:18;;12675:54;12761:3;12746:19;;12525:246::o;12776:406::-;12978:2;12960:21;;;13017:2;12997:18;;;12990:30;13056:34;13051:2;13036:18;;13029:62;-1:-1:-1;;;13122:2:1;13107:18;;13100:40;13172:3;13157:19;;12950:232::o;13187:405::-;13389:2;13371:21;;;13428:2;13408:18;;;13401:30;13467:34;13462:2;13447:18;;13440:62;-1:-1:-1;;;13533:2:1;13518:18;;13511:39;13582:3;13567:19;;13361:231::o;13597:356::-;13799:2;13781:21;;;13818:18;;;13811:30;13877:34;13872:2;13857:18;;13850:62;13944:2;13929:18;;13771:182::o;13958:408::-;14160:2;14142:21;;;14199:2;14179:18;;;14172:30;14238:34;14233:2;14218:18;;14211:62;-1:-1:-1;;;14304:2:1;14289:18;;14282:42;14356:3;14341:19;;14132:234::o;14371:411::-;14573:2;14555:21;;;14612:2;14592:18;;;14585:30;14651:34;14646:2;14631:18;;14624:62;-1:-1:-1;;;14717:2:1;14702:18;;14695:45;14772:3;14757:19;;14545:237::o;14787:356::-;14989:2;14971:21;;;15008:18;;;15001:30;15067:34;15062:2;15047:18;;15040:62;15134:2;15119:18;;14961:182::o;15148:405::-;15350:2;15332:21;;;15389:2;15369:18;;;15362:30;15428:34;15423:2;15408:18;;15401:62;-1:-1:-1;;;15494:2:1;15479:18;;15472:39;15543:3;15528:19;;15322:231::o;15558:411::-;15760:2;15742:21;;;15799:2;15779:18;;;15772:30;15838:34;15833:2;15818:18;;15811:62;-1:-1:-1;;;15904:2:1;15889:18;;15882:45;15959:3;15944:19;;15732:237::o;15974:347::-;16176:2;16158:21;;;16215:2;16195:18;;;16188:30;16254:25;16249:2;16234:18;;16227:53;16312:2;16297:18;;16148:173::o;16326:397::-;16528:2;16510:21;;;16567:2;16547:18;;;16540:30;16606:34;16601:2;16586:18;;16579:62;-1:-1:-1;;;16672:2:1;16657:18;;16650:31;16713:3;16698:19;;16500:223::o;16728:401::-;16930:2;16912:21;;;16969:2;16949:18;;;16942:30;17008:34;17003:2;16988:18;;16981:62;-1:-1:-1;;;17074:2:1;17059:18;;17052:35;17119:3;17104:19;;16902:227::o;17134:340::-;17336:2;17318:21;;;17375:2;17355:18;;;17348:30;-1:-1:-1;;;17409:2:1;17394:18;;17387:46;17465:2;17450:18;;17308:166::o;17479:413::-;17681:2;17663:21;;;17720:2;17700:18;;;17693:30;17759:34;17754:2;17739:18;;17732:62;-1:-1:-1;;;17825:2:1;17810:18;;17803:47;17882:3;17867:19;;17653:239::o;17897:351::-;18099:2;18081:21;;;18138:2;18118:18;;;18111:30;18177:29;18172:2;18157:18;;18150:57;18239:2;18224:18;;18071:177::o;18253:408::-;18455:2;18437:21;;;18494:2;18474:18;;;18467:30;18533:34;18528:2;18513:18;;18506:62;-1:-1:-1;;;18599:2:1;18584:18;;18577:42;18651:3;18636:19;;18427:234::o;18666:420::-;18868:2;18850:21;;;18907:2;18887:18;;;18880:30;18946:34;18941:2;18926:18;;18919:62;19017:26;19012:2;18997:18;;18990:54;19076:3;19061:19;;18840:246::o;19091:177::-;19237:25;;;19225:2;19210:18;;19192:76::o;19273:128::-;;19344:1;19340:6;19337:1;19334:13;19331:2;;;19350:18;;:::i;:::-;-1:-1:-1;19386:9:1;;19321:80::o;19406:120::-;;19472:1;19462:2;;19477:18;;:::i;:::-;-1:-1:-1;19511:9:1;;19452:74::o;19531:168::-;;19637:1;19633;19629:6;19625:14;19622:1;19619:21;19614:1;19607:9;19600:17;19596:45;19593:2;;;19644:18;;:::i;:::-;-1:-1:-1;19684:9:1;;19583:116::o;19704:125::-;;19772:1;19769;19766:8;19763:2;;;19777:18;;:::i;:::-;-1:-1:-1;19814:9:1;;19753:76::o;19834:258::-;19906:1;19916:113;19930:6;19927:1;19924:13;19916:113;;;20006:11;;;20000:18;19987:11;;;19980:39;19952:2;19945:10;19916:113;;;20047:6;20044:1;20041:13;20038:2;;;-1:-1:-1;;20082:1:1;20064:16;;20057:27;19887:205::o;20097:380::-;20182:1;20172:12;;20229:1;20219:12;;;20240:2;;20294:4;20286:6;20282:17;20272:27;;20240:2;20347;20339:6;20336:14;20316:18;20313:38;20310:2;;;20393:10;20388:3;20384:20;20381:1;20374:31;20428:4;20425:1;20418:15;20456:4;20453:1;20446:15;20310:2;;20152:325;;;:::o;20482:135::-;;-1:-1:-1;;20542:17:1;;20539:2;;;20562:18;;:::i;:::-;-1:-1:-1;20609:1:1;20598:13;;20529:88::o;20622:112::-;;20680:1;20670:2;;20685:18;;:::i;:::-;-1:-1:-1;20719:9:1;;20660:74::o;20739:127::-;20800:10;20795:3;20791:20;20788:1;20781:31;20831:4;20828:1;20821:15;20855:4;20852:1;20845:15;20871:127;20932:10;20927:3;20923:20;20920:1;20913:31;20963:4;20960:1;20953:15;20987:4;20984:1;20977:15;21003:127;21064:10;21059:3;21055:20;21052:1;21045:31;21095:4;21092:1;21085:15;21119:4;21116:1;21109:15;21135:133;-1:-1:-1;;;;;;21211:32:1;;21201:43;;21191:2;;21258:1;21255;21248:12

Swarm Source

ipfs://983bb3f7245752b8125181d1e178994c6e57d4cb056838d763ea3cca82cf9577
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.