ETH Price: $3,257.24 (+2.35%)
Gas: 1 Gwei

Token

Thenftist (Thenftist)
 

Overview

Max Total Supply

1,165 Thenftist

Holders

237

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Thenftist
0x26b4cca53786b28f94b2d0ad6a50ddc60946a344
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:
NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-20
*/

/**
 *Submitted for verification at polygonscan.com on 2022-01-13
*/

// SPDX-License-Identifier: MIT
// 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/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/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/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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @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/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/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/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/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/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/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.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: contracts/nft_v1-copy-paste.sol



pragma solidity >=0.7.0 <0.9.0;



contract NFT is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.3 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 250;
  bool public paused = false;
  uint256 public minted = 0;
  bool public revealed = false;
  string public notRevealedUri;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply()+3000-minted;
    require(!paused);
    require(_mintAmount > 0);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
      require(_mintAmount <= maxMintAmount);
      require(msg.value >= cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }




 function mintFrom(uint256 _mintFrom, uint256 _mintAmount) public payable onlyOwner {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
      require(_mintAmount <= maxMintAmount);
      require(msg.value >= cost * _mintAmount);
    }

    for (uint256 i = _mintFrom; i < _mintAmount+_mintFrom; i++) {
      _safeMint(msg.sender, i);
    }
    minted += _mintAmount;
  } 







  function mintSelective(uint[] memory _mintSelective) public payable onlyOwner{
    uint256 _mintAmount = _mintSelective.length;
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
      require(_mintAmount <= maxMintAmount);
      require(msg.value >= cost * _mintAmount);
    }

    for (uint256 i = 0; i < _mintAmount; i++) {
      _safeMint(msg.sender, _mintSelective[i]);
    }
    minted += _mintAmount;
  }





  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
      return bytes(notRevealedUri).length > 0
        ? string(abi.encodePacked(notRevealedUri, tokenId.toString(), baseExtension))
        : "";
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {

    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintFrom","type":"uint256"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_mintSelective","type":"uint256[]"}],"name":"mintSelective","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000210565b50670429d069189e0000600d55612710600e5560fa600f556010805460ff1990811690915560006011556012805490911690553480156200006857600080fd5b5060405162002bdc38038062002bdc8339810160408190526200008b916200036d565b835184908490620000a490600090602085019062000210565b508051620000ba90600190602084019062000210565b505050620000d7620000d1620000f760201b60201c565b620000fb565b620000e2826200014d565b620000ed81620001b5565b5050505062000479565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200019c5760405162461bcd60e51b8152602060048201819052602482015260008051602062002bbc83398151915260448201526064015b60405180910390fd5b8051620001b190600b90602084019062000210565b5050565b600a546001600160a01b03163314620002005760405162461bcd60e51b8152602060048201819052602482015260008051602062002bbc833981519152604482015260640162000193565b8051620001b19060139060208401905b8280546200021e9062000426565b90600052602060002090601f0160209004810192826200024257600085556200028d565b82601f106200025d57805160ff19168380011785556200028d565b828001600101855582156200028d579182015b828111156200028d57825182559160200191906001019062000270565b506200029b9291506200029f565b5090565b5b808211156200029b5760008155600101620002a0565b600082601f830112620002c857600080fd5b81516001600160401b0380821115620002e557620002e562000463565b604051601f8301601f19908116603f0116810190828211818310171562000310576200031062000463565b816040528381526020925086838588010111156200032d57600080fd5b600091505b8382101562000351578582018301518183018401529082019062000332565b83821115620003635760008385830101525b9695505050505050565b600080600080608085870312156200038457600080fd5b84516001600160401b03808211156200039c57600080fd5b620003aa88838901620002b6565b95506020870151915080821115620003c157600080fd5b620003cf88838901620002b6565b94506040870151915080821115620003e657600080fd5b620003f488838901620002b6565b935060608701519150808211156200040b57600080fd5b506200041a87828801620002b6565b91505092959194509250565b600181811c908216806200043b57607f821691505b602082108114156200045d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61273380620004896000396000f3fe6080604052600436106102305760003560e01c80635c975abb1161012e578063a475b5dd116100ab578063d5abeb011161006f578063d5abeb0114610614578063da3ef23f1461062a578063e985e9c51461064a578063f2c4ce1e14610693578063f2fde38b146106b357600080fd5b8063a475b5dd14610597578063b88d4fde146105ac578063c56cff59146105cc578063c6682862146105df578063c87b56dd146105f457600080fd5b80637f00c7a6116100f25780637f00c7a6146105115780638da5cb5b1461053157806395d89b411461054f578063a0712d6814610564578063a22cb4651461057757600080fd5b80635c975abb1461048f5780635f2e9d0a146104a95780636352211e146104bc57806370a08231146104dc578063715018a6146104fc57600080fd5b806323b872dd116101bc57806344a0d68a1161018057806344a0d68a146103ff5780634f02c4201461041f5780634f6ccce714610435578063518302271461045557806355f804b31461046f57600080fd5b806323b872dd1461036a5780632f745c591461038a5780633ccfd60b146103aa57806342842e0e146103b2578063438b6300146103d257600080fd5b8063081c8c4411610203578063081c8c44146102e6578063095ea7b3146102fb57806313faede61461031b57806318160ddd1461033f578063239c70ae1461035457600080fd5b806301ffc9a71461023557806302329a291461026a57806306fdde031461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b50610255610250366004612207565b6106d3565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a6102853660046121ec565b6106fe565b005b34801561029857600080fd5b506102a1610744565b6040516102619190612465565b3480156102ba57600080fd5b506102ce6102c936600461228a565b6107d6565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b506102a161086b565b34801561030757600080fd5b5061028a610316366004612115565b6108f9565b34801561032757600080fd5b50610331600d5481565b604051908152602001610261565b34801561034b57600080fd5b50600854610331565b34801561036057600080fd5b50610331600f5481565b34801561037657600080fd5b5061028a610385366004612033565b610a0f565b34801561039657600080fd5b506103316103a5366004612115565b610a40565b61028a610ad6565b3480156103be57600080fd5b5061028a6103cd366004612033565b610b74565b3480156103de57600080fd5b506103f26103ed366004611fe5565b610b8f565b6040516102619190612421565b34801561040b57600080fd5b5061028a61041a36600461228a565b610c31565b34801561042b57600080fd5b5061033160115481565b34801561044157600080fd5b5061033161045036600461228a565b610c60565b34801561046157600080fd5b506012546102559060ff1681565b34801561047b57600080fd5b5061028a61048a366004612241565b610cf3565b34801561049b57600080fd5b506010546102559060ff1681565b61028a6104b73660046122a3565b610d34565b3480156104c857600080fd5b506102ce6104d736600461228a565b610e28565b3480156104e857600080fd5b506103316104f7366004611fe5565b610e9f565b34801561050857600080fd5b5061028a610f26565b34801561051d57600080fd5b5061028a61052c36600461228a565b610f5c565b34801561053d57600080fd5b50600a546001600160a01b03166102ce565b34801561055b57600080fd5b506102a1610f8b565b61028a61057236600461228a565b610f9a565b34801561058357600080fd5b5061028a6105923660046120eb565b611060565b3480156105a357600080fd5b5061028a611125565b3480156105b857600080fd5b5061028a6105c736600461206f565b61115e565b61028a6105da36600461213f565b611196565b3480156105eb57600080fd5b506102a1611280565b34801561060057600080fd5b506102a161060f36600461228a565b61128d565b34801561062057600080fd5b50610331600e5481565b34801561063657600080fd5b5061028a610645366004612241565b6113d4565b34801561065657600080fd5b50610255610665366004612000565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069f57600080fd5b5061028a6106ae366004612241565b611411565b3480156106bf57600080fd5b5061028a6106ce366004611fe5565b61144e565b60006001600160e01b0319821663780e9d6360e01b14806106f857506106f8826114e6565b92915050565b600a546001600160a01b031633146107315760405162461bcd60e51b8152600401610728906124ca565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546107539061260f565b80601f016020809104026020016040519081016040528092919081815260200182805461077f9061260f565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610728565b506000908152600460205260409020546001600160a01b031690565b601380546108789061260f565b80601f01602080910402602001604051908101604052809291908181526020018280546108a49061260f565b80156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b505050505081565b600061090482610e28565b9050806001600160a01b0316836001600160a01b031614156109725760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610728565b336001600160a01b038216148061098e575061098e8133610665565b610a005760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610728565b610a0a8383611536565b505050565b610a1933826115a4565b610a355760405162461bcd60e51b8152600401610728906124ff565b610a0a83838361169b565b6000610a4b83610e9f565b8210610aad5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610728565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b005760405162461bcd60e51b8152600401610728906124ca565b6000610b14600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b5e576040519150601f19603f3d011682016040523d82523d6000602084013e610b63565b606091505b5050905080610b7157600080fd5b50565b610a0a8383836040518060200160405280600081525061115e565b60606000610b9c83610e9f565b905060008167ffffffffffffffff811115610bb957610bb96126d1565b604051908082528060200260200182016040528015610be2578160200160208202803683370190505b50905060005b82811015610c2957610bfa8582610a40565b828281518110610c0c57610c0c6126bb565b602090810291909101015280610c218161264a565b915050610be8565b509392505050565b600a546001600160a01b03163314610c5b5760405162461bcd60e51b8152600401610728906124ca565b600d55565b6000610c6b60085490565b8210610cce5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610728565b60088281548110610ce157610ce16126bb565b90600052602060002001549050919050565b600a546001600160a01b03163314610d1d5760405162461bcd60e51b8152600401610728906124ca565b8051610d3090600b906020840190611ec8565b5050565b600a546001600160a01b03163314610d5e5760405162461bcd60e51b8152600401610728906124ca565b6000610d6960085490565b60105490915060ff1615610d7c57600080fd5b60008211610d8957600080fd5b600e54610d968383612581565b1115610da157600080fd5b600a546001600160a01b03163314610ddc57600f54821115610dc257600080fd5b81600d54610dd091906125ad565b341015610ddc57600080fd5b825b610de88484612581565b811015610e0b57610df93382611846565b80610e038161264a565b915050610dde565b508160116000828254610e1e9190612581565b9091555050505050565b6000818152600260205260408120546001600160a01b0316806106f85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610728565b60006001600160a01b038216610f0a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610728565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f505760405162461bcd60e51b8152600401610728906124ca565b610f5a6000611860565b565b600a546001600160a01b03163314610f865760405162461bcd60e51b8152600401610728906124ca565b600f55565b6060600180546107539061260f565b6000601154610fa860085490565b610fb490610bb8612581565b610fbe91906125cc565b60105490915060ff1615610fd157600080fd5b60008211610fde57600080fd5b600e54610feb8383612581565b1115610ff657600080fd5b600a546001600160a01b0316331461103157600f5482111561101757600080fd5b81600d5461102591906125ad565b34101561103157600080fd5b60015b828111610a0a5761104e336110498385612581565b611846565b806110588161264a565b915050611034565b6001600160a01b0382163314156110b95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610728565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461114f5760405162461bcd60e51b8152600401610728906124ca565b6012805460ff19166001179055565b61116833836115a4565b6111845760405162461bcd60e51b8152600401610728906124ff565b611190848484846118b2565b50505050565b600a546001600160a01b031633146111c05760405162461bcd60e51b8152600401610728906124ca565b805160006111cd60085490565b60105490915060ff16156111e057600080fd5b600082116111ed57600080fd5b600e546111fa8383612581565b111561120557600080fd5b600a546001600160a01b0316331461124057600f5482111561122657600080fd5b81600d5461123491906125ad565b34101561124057600080fd5b60005b82811015610e0b5761126e33858381518110611261576112616126bb565b6020026020010151611846565b806112788161264a565b915050611243565b600c80546108789061260f565b6000818152600260205260409020546060906001600160a01b031661130c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610728565b60125460ff16611375576000601380546113259061260f565b90501161134157604051806020016040528060008152506106f8565b601361134c836118e5565b600c604051602001611360939291906123c8565b60405160208183030381529060405292915050565b600061137f6119e3565b9050600081511161139f57604051806020016040528060008152506113cd565b806113a9846118e5565b600c6040516020016113bd9392919061238b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113fe5760405162461bcd60e51b8152600401610728906124ca565b8051610d3090600c906020840190611ec8565b600a546001600160a01b0316331461143b5760405162461bcd60e51b8152600401610728906124ca565b8051610d30906013906020840190611ec8565b600a546001600160a01b031633146114785760405162461bcd60e51b8152600401610728906124ca565b6001600160a01b0381166114dd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610728565b610b7181611860565b60006001600160e01b031982166380ac58cd60e01b148061151757506001600160e01b03198216635b5e139f60e01b145b806106f857506301ffc9a760e01b6001600160e01b03198316146106f8565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061156b82610e28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661161d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610728565b600061162883610e28565b9050806001600160a01b0316846001600160a01b031614806116635750836001600160a01b0316611658846107d6565b6001600160a01b0316145b8061169357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116ae82610e28565b6001600160a01b0316146117165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610728565b6001600160a01b0382166117785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610728565b6117838383836119f2565b61178e600082611536565b6001600160a01b03831660009081526003602052604081208054600192906117b79084906125cc565b90915550506001600160a01b03821660009081526003602052604081208054600192906117e5908490612581565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d30828260405180602001604052806000815250611aaa565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118bd84848461169b565b6118c984848484611add565b6111905760405162461bcd60e51b815260040161072890612478565b6060816119095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611933578061191d8161264a565b915061192c9050600a83612599565b915061190d565b60008167ffffffffffffffff81111561194e5761194e6126d1565b6040519080825280601f01601f191660200182016040528015611978576020820181803683370190505b5090505b84156116935761198d6001836125cc565b915061199a600a86612665565b6119a5906030612581565b60f81b8183815181106119ba576119ba6126bb565b60200101906001600160f81b031916908160001a9053506119dc600a86612599565b945061197c565b6060600b80546107539061260f565b6001600160a01b038316611a4d57611a4881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a70565b816001600160a01b0316836001600160a01b031614611a7057611a708382611bea565b6001600160a01b038216611a8757610a0a81611c87565b826001600160a01b0316826001600160a01b031614610a0a57610a0a8282611d36565b611ab48383611d7a565b611ac16000848484611add565b610a0a5760405162461bcd60e51b815260040161072890612478565b60006001600160a01b0384163b15611bdf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b219033908990889088906004016123e4565b602060405180830381600087803b158015611b3b57600080fd5b505af1925050508015611b6b575060408051601f3d908101601f19168201909252611b6891810190612224565b60015b611bc5573d808015611b99576040519150601f19603f3d011682016040523d82523d6000602084013e611b9e565b606091505b508051611bbd5760405162461bcd60e51b815260040161072890612478565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611693565b506001949350505050565b60006001611bf784610e9f565b611c0191906125cc565b600083815260076020526040902054909150808214611c54576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c99906001906125cc565b60008381526009602052604081205460088054939450909284908110611cc157611cc16126bb565b906000526020600020015490508060088381548110611ce257611ce26126bb565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d1a57611d1a6126a5565b6001900381819060005260206000200160009055905550505050565b6000611d4183610e9f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611dd05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610728565b6000818152600260205260409020546001600160a01b031615611e355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610728565b611e41600083836119f2565b6001600160a01b0382166000908152600360205260408120805460019290611e6a908490612581565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ed49061260f565b90600052602060002090601f016020900481019282611ef65760008555611f3c565b82601f10611f0f57805160ff1916838001178555611f3c565b82800160010185558215611f3c579182015b82811115611f3c578251825591602001919060010190611f21565b50611f48929150611f4c565b5090565b5b80821115611f485760008155600101611f4d565b600067ffffffffffffffff831115611f7b57611f7b6126d1565b611f8e601f8401601f1916602001612550565b9050828152838383011115611fa257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611fd057600080fd5b919050565b80358015158114611fd057600080fd5b600060208284031215611ff757600080fd5b6113cd82611fb9565b6000806040838503121561201357600080fd5b61201c83611fb9565b915061202a60208401611fb9565b90509250929050565b60008060006060848603121561204857600080fd5b61205184611fb9565b925061205f60208501611fb9565b9150604084013590509250925092565b6000806000806080858703121561208557600080fd5b61208e85611fb9565b935061209c60208601611fb9565b925060408501359150606085013567ffffffffffffffff8111156120bf57600080fd5b8501601f810187136120d057600080fd5b6120df87823560208401611f61565b91505092959194509250565b600080604083850312156120fe57600080fd5b61210783611fb9565b915061202a60208401611fd5565b6000806040838503121561212857600080fd5b61213183611fb9565b946020939093013593505050565b6000602080838503121561215257600080fd5b823567ffffffffffffffff8082111561216a57600080fd5b818501915085601f83011261217e57600080fd5b813581811115612190576121906126d1565b8060051b91506121a1848301612550565b8181528481019084860184860187018a10156121bc57600080fd5b600095505b838610156121df5780358352600195909501949186019186016121c1565b5098975050505050505050565b6000602082840312156121fe57600080fd5b6113cd82611fd5565b60006020828403121561221957600080fd5b81356113cd816126e7565b60006020828403121561223657600080fd5b81516113cd816126e7565b60006020828403121561225357600080fd5b813567ffffffffffffffff81111561226a57600080fd5b8201601f8101841361227b57600080fd5b61169384823560208401611f61565b60006020828403121561229c57600080fd5b5035919050565b600080604083850312156122b657600080fd5b50508035926020909101359150565b600081518084526122dd8160208601602086016125e3565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061230b57607f831692505b602080841082141561232d57634e487b7160e01b600052602260045260246000fd5b81801561234157600181146123525761237f565b60ff1986168952848901965061237f565b60008881526020902060005b868110156123775781548b82015290850190830161235e565b505084890196505b50505050505092915050565b6000845161239d8184602089016125e3565b8451908301906123b18183602089016125e3565b6123bd818301866122f1565b979650505050505050565b60006123d482866122f1565b84516123b18183602089016125e3565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612417908301846122c5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124595783518352928401929184019160010161243d565b50909695505050505050565b6020815260006113cd60208301846122c5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612579576125796126d1565b604052919050565b6000821982111561259457612594612679565b500190565b6000826125a8576125a861268f565b500490565b60008160001904831182151516156125c7576125c7612679565b500290565b6000828210156125de576125de612679565b500390565b60005b838110156125fe5781810151838201526020016125e6565b838111156111905750506000910152565b600181811c9082168061262357607f821691505b6020821081141561264457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561265e5761265e612679565b5060010190565b6000826126745761267461268f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b7157600080fdfea264697066735822122085c05d2be9cf319f412d9db53ff2cbedaab17ff30c3262135e0a0c550f52703264736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000095468656e6674697374000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095468656e667469737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6562767439586b476a694a34674a78415276767a346641375657364774687676624a577036623679696170332f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654147567836413139756959524338466931724731754578694735757750434a706368336e6b66694677434c2f00000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80635c975abb1161012e578063a475b5dd116100ab578063d5abeb011161006f578063d5abeb0114610614578063da3ef23f1461062a578063e985e9c51461064a578063f2c4ce1e14610693578063f2fde38b146106b357600080fd5b8063a475b5dd14610597578063b88d4fde146105ac578063c56cff59146105cc578063c6682862146105df578063c87b56dd146105f457600080fd5b80637f00c7a6116100f25780637f00c7a6146105115780638da5cb5b1461053157806395d89b411461054f578063a0712d6814610564578063a22cb4651461057757600080fd5b80635c975abb1461048f5780635f2e9d0a146104a95780636352211e146104bc57806370a08231146104dc578063715018a6146104fc57600080fd5b806323b872dd116101bc57806344a0d68a1161018057806344a0d68a146103ff5780634f02c4201461041f5780634f6ccce714610435578063518302271461045557806355f804b31461046f57600080fd5b806323b872dd1461036a5780632f745c591461038a5780633ccfd60b146103aa57806342842e0e146103b2578063438b6300146103d257600080fd5b8063081c8c4411610203578063081c8c44146102e6578063095ea7b3146102fb57806313faede61461031b57806318160ddd1461033f578063239c70ae1461035457600080fd5b806301ffc9a71461023557806302329a291461026a57806306fdde031461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b50610255610250366004612207565b6106d3565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061028a6102853660046121ec565b6106fe565b005b34801561029857600080fd5b506102a1610744565b6040516102619190612465565b3480156102ba57600080fd5b506102ce6102c936600461228a565b6107d6565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b506102a161086b565b34801561030757600080fd5b5061028a610316366004612115565b6108f9565b34801561032757600080fd5b50610331600d5481565b604051908152602001610261565b34801561034b57600080fd5b50600854610331565b34801561036057600080fd5b50610331600f5481565b34801561037657600080fd5b5061028a610385366004612033565b610a0f565b34801561039657600080fd5b506103316103a5366004612115565b610a40565b61028a610ad6565b3480156103be57600080fd5b5061028a6103cd366004612033565b610b74565b3480156103de57600080fd5b506103f26103ed366004611fe5565b610b8f565b6040516102619190612421565b34801561040b57600080fd5b5061028a61041a36600461228a565b610c31565b34801561042b57600080fd5b5061033160115481565b34801561044157600080fd5b5061033161045036600461228a565b610c60565b34801561046157600080fd5b506012546102559060ff1681565b34801561047b57600080fd5b5061028a61048a366004612241565b610cf3565b34801561049b57600080fd5b506010546102559060ff1681565b61028a6104b73660046122a3565b610d34565b3480156104c857600080fd5b506102ce6104d736600461228a565b610e28565b3480156104e857600080fd5b506103316104f7366004611fe5565b610e9f565b34801561050857600080fd5b5061028a610f26565b34801561051d57600080fd5b5061028a61052c36600461228a565b610f5c565b34801561053d57600080fd5b50600a546001600160a01b03166102ce565b34801561055b57600080fd5b506102a1610f8b565b61028a61057236600461228a565b610f9a565b34801561058357600080fd5b5061028a6105923660046120eb565b611060565b3480156105a357600080fd5b5061028a611125565b3480156105b857600080fd5b5061028a6105c736600461206f565b61115e565b61028a6105da36600461213f565b611196565b3480156105eb57600080fd5b506102a1611280565b34801561060057600080fd5b506102a161060f36600461228a565b61128d565b34801561062057600080fd5b50610331600e5481565b34801561063657600080fd5b5061028a610645366004612241565b6113d4565b34801561065657600080fd5b50610255610665366004612000565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069f57600080fd5b5061028a6106ae366004612241565b611411565b3480156106bf57600080fd5b5061028a6106ce366004611fe5565b61144e565b60006001600160e01b0319821663780e9d6360e01b14806106f857506106f8826114e6565b92915050565b600a546001600160a01b031633146107315760405162461bcd60e51b8152600401610728906124ca565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546107539061260f565b80601f016020809104026020016040519081016040528092919081815260200182805461077f9061260f565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661084f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610728565b506000908152600460205260409020546001600160a01b031690565b601380546108789061260f565b80601f01602080910402602001604051908101604052809291908181526020018280546108a49061260f565b80156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b505050505081565b600061090482610e28565b9050806001600160a01b0316836001600160a01b031614156109725760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610728565b336001600160a01b038216148061098e575061098e8133610665565b610a005760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610728565b610a0a8383611536565b505050565b610a1933826115a4565b610a355760405162461bcd60e51b8152600401610728906124ff565b610a0a83838361169b565b6000610a4b83610e9f565b8210610aad5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610728565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b005760405162461bcd60e51b8152600401610728906124ca565b6000610b14600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b5e576040519150601f19603f3d011682016040523d82523d6000602084013e610b63565b606091505b5050905080610b7157600080fd5b50565b610a0a8383836040518060200160405280600081525061115e565b60606000610b9c83610e9f565b905060008167ffffffffffffffff811115610bb957610bb96126d1565b604051908082528060200260200182016040528015610be2578160200160208202803683370190505b50905060005b82811015610c2957610bfa8582610a40565b828281518110610c0c57610c0c6126bb565b602090810291909101015280610c218161264a565b915050610be8565b509392505050565b600a546001600160a01b03163314610c5b5760405162461bcd60e51b8152600401610728906124ca565b600d55565b6000610c6b60085490565b8210610cce5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610728565b60088281548110610ce157610ce16126bb565b90600052602060002001549050919050565b600a546001600160a01b03163314610d1d5760405162461bcd60e51b8152600401610728906124ca565b8051610d3090600b906020840190611ec8565b5050565b600a546001600160a01b03163314610d5e5760405162461bcd60e51b8152600401610728906124ca565b6000610d6960085490565b60105490915060ff1615610d7c57600080fd5b60008211610d8957600080fd5b600e54610d968383612581565b1115610da157600080fd5b600a546001600160a01b03163314610ddc57600f54821115610dc257600080fd5b81600d54610dd091906125ad565b341015610ddc57600080fd5b825b610de88484612581565b811015610e0b57610df93382611846565b80610e038161264a565b915050610dde565b508160116000828254610e1e9190612581565b9091555050505050565b6000818152600260205260408120546001600160a01b0316806106f85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610728565b60006001600160a01b038216610f0a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610728565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f505760405162461bcd60e51b8152600401610728906124ca565b610f5a6000611860565b565b600a546001600160a01b03163314610f865760405162461bcd60e51b8152600401610728906124ca565b600f55565b6060600180546107539061260f565b6000601154610fa860085490565b610fb490610bb8612581565b610fbe91906125cc565b60105490915060ff1615610fd157600080fd5b60008211610fde57600080fd5b600e54610feb8383612581565b1115610ff657600080fd5b600a546001600160a01b0316331461103157600f5482111561101757600080fd5b81600d5461102591906125ad565b34101561103157600080fd5b60015b828111610a0a5761104e336110498385612581565b611846565b806110588161264a565b915050611034565b6001600160a01b0382163314156110b95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610728565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461114f5760405162461bcd60e51b8152600401610728906124ca565b6012805460ff19166001179055565b61116833836115a4565b6111845760405162461bcd60e51b8152600401610728906124ff565b611190848484846118b2565b50505050565b600a546001600160a01b031633146111c05760405162461bcd60e51b8152600401610728906124ca565b805160006111cd60085490565b60105490915060ff16156111e057600080fd5b600082116111ed57600080fd5b600e546111fa8383612581565b111561120557600080fd5b600a546001600160a01b0316331461124057600f5482111561122657600080fd5b81600d5461123491906125ad565b34101561124057600080fd5b60005b82811015610e0b5761126e33858381518110611261576112616126bb565b6020026020010151611846565b806112788161264a565b915050611243565b600c80546108789061260f565b6000818152600260205260409020546060906001600160a01b031661130c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610728565b60125460ff16611375576000601380546113259061260f565b90501161134157604051806020016040528060008152506106f8565b601361134c836118e5565b600c604051602001611360939291906123c8565b60405160208183030381529060405292915050565b600061137f6119e3565b9050600081511161139f57604051806020016040528060008152506113cd565b806113a9846118e5565b600c6040516020016113bd9392919061238b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113fe5760405162461bcd60e51b8152600401610728906124ca565b8051610d3090600c906020840190611ec8565b600a546001600160a01b0316331461143b5760405162461bcd60e51b8152600401610728906124ca565b8051610d30906013906020840190611ec8565b600a546001600160a01b031633146114785760405162461bcd60e51b8152600401610728906124ca565b6001600160a01b0381166114dd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610728565b610b7181611860565b60006001600160e01b031982166380ac58cd60e01b148061151757506001600160e01b03198216635b5e139f60e01b145b806106f857506301ffc9a760e01b6001600160e01b03198316146106f8565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061156b82610e28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661161d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610728565b600061162883610e28565b9050806001600160a01b0316846001600160a01b031614806116635750836001600160a01b0316611658846107d6565b6001600160a01b0316145b8061169357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116ae82610e28565b6001600160a01b0316146117165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610728565b6001600160a01b0382166117785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610728565b6117838383836119f2565b61178e600082611536565b6001600160a01b03831660009081526003602052604081208054600192906117b79084906125cc565b90915550506001600160a01b03821660009081526003602052604081208054600192906117e5908490612581565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d30828260405180602001604052806000815250611aaa565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118bd84848461169b565b6118c984848484611add565b6111905760405162461bcd60e51b815260040161072890612478565b6060816119095750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611933578061191d8161264a565b915061192c9050600a83612599565b915061190d565b60008167ffffffffffffffff81111561194e5761194e6126d1565b6040519080825280601f01601f191660200182016040528015611978576020820181803683370190505b5090505b84156116935761198d6001836125cc565b915061199a600a86612665565b6119a5906030612581565b60f81b8183815181106119ba576119ba6126bb565b60200101906001600160f81b031916908160001a9053506119dc600a86612599565b945061197c565b6060600b80546107539061260f565b6001600160a01b038316611a4d57611a4881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a70565b816001600160a01b0316836001600160a01b031614611a7057611a708382611bea565b6001600160a01b038216611a8757610a0a81611c87565b826001600160a01b0316826001600160a01b031614610a0a57610a0a8282611d36565b611ab48383611d7a565b611ac16000848484611add565b610a0a5760405162461bcd60e51b815260040161072890612478565b60006001600160a01b0384163b15611bdf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b219033908990889088906004016123e4565b602060405180830381600087803b158015611b3b57600080fd5b505af1925050508015611b6b575060408051601f3d908101601f19168201909252611b6891810190612224565b60015b611bc5573d808015611b99576040519150601f19603f3d011682016040523d82523d6000602084013e611b9e565b606091505b508051611bbd5760405162461bcd60e51b815260040161072890612478565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611693565b506001949350505050565b60006001611bf784610e9f565b611c0191906125cc565b600083815260076020526040902054909150808214611c54576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c99906001906125cc565b60008381526009602052604081205460088054939450909284908110611cc157611cc16126bb565b906000526020600020015490508060088381548110611ce257611ce26126bb565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d1a57611d1a6126a5565b6001900381819060005260206000200160009055905550505050565b6000611d4183610e9f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611dd05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610728565b6000818152600260205260409020546001600160a01b031615611e355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610728565b611e41600083836119f2565b6001600160a01b0382166000908152600360205260408120805460019290611e6a908490612581565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ed49061260f565b90600052602060002090601f016020900481019282611ef65760008555611f3c565b82601f10611f0f57805160ff1916838001178555611f3c565b82800160010185558215611f3c579182015b82811115611f3c578251825591602001919060010190611f21565b50611f48929150611f4c565b5090565b5b80821115611f485760008155600101611f4d565b600067ffffffffffffffff831115611f7b57611f7b6126d1565b611f8e601f8401601f1916602001612550565b9050828152838383011115611fa257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611fd057600080fd5b919050565b80358015158114611fd057600080fd5b600060208284031215611ff757600080fd5b6113cd82611fb9565b6000806040838503121561201357600080fd5b61201c83611fb9565b915061202a60208401611fb9565b90509250929050565b60008060006060848603121561204857600080fd5b61205184611fb9565b925061205f60208501611fb9565b9150604084013590509250925092565b6000806000806080858703121561208557600080fd5b61208e85611fb9565b935061209c60208601611fb9565b925060408501359150606085013567ffffffffffffffff8111156120bf57600080fd5b8501601f810187136120d057600080fd5b6120df87823560208401611f61565b91505092959194509250565b600080604083850312156120fe57600080fd5b61210783611fb9565b915061202a60208401611fd5565b6000806040838503121561212857600080fd5b61213183611fb9565b946020939093013593505050565b6000602080838503121561215257600080fd5b823567ffffffffffffffff8082111561216a57600080fd5b818501915085601f83011261217e57600080fd5b813581811115612190576121906126d1565b8060051b91506121a1848301612550565b8181528481019084860184860187018a10156121bc57600080fd5b600095505b838610156121df5780358352600195909501949186019186016121c1565b5098975050505050505050565b6000602082840312156121fe57600080fd5b6113cd82611fd5565b60006020828403121561221957600080fd5b81356113cd816126e7565b60006020828403121561223657600080fd5b81516113cd816126e7565b60006020828403121561225357600080fd5b813567ffffffffffffffff81111561226a57600080fd5b8201601f8101841361227b57600080fd5b61169384823560208401611f61565b60006020828403121561229c57600080fd5b5035919050565b600080604083850312156122b657600080fd5b50508035926020909101359150565b600081518084526122dd8160208601602086016125e3565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061230b57607f831692505b602080841082141561232d57634e487b7160e01b600052602260045260246000fd5b81801561234157600181146123525761237f565b60ff1986168952848901965061237f565b60008881526020902060005b868110156123775781548b82015290850190830161235e565b505084890196505b50505050505092915050565b6000845161239d8184602089016125e3565b8451908301906123b18183602089016125e3565b6123bd818301866122f1565b979650505050505050565b60006123d482866122f1565b84516123b18183602089016125e3565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612417908301846122c5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124595783518352928401929184019160010161243d565b50909695505050505050565b6020815260006113cd60208301846122c5565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612579576125796126d1565b604052919050565b6000821982111561259457612594612679565b500190565b6000826125a8576125a861268f565b500490565b60008160001904831182151516156125c7576125c7612679565b500290565b6000828210156125de576125de612679565b500390565b60005b838110156125fe5781810151838201526020016125e6565b838111156111905750506000910152565b600181811c9082168061262357607f821691505b6020821081141561264457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561265e5761265e612679565b5060010190565b6000826126745761267461268f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b7157600080fdfea264697066735822122085c05d2be9cf319f412d9db53ff2cbedaab17ff30c3262135e0a0c550f52703264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000095468656e6674697374000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095468656e667469737400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6562767439586b476a694a34674a78415276767a346641375657364774687676624a577036623679696170332f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d654147567836413139756959524338466931724731754578694735757750434a706368336e6b66694677434c2f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Thenftist
Arg [1] : _symbol (string): Thenftist
Arg [2] : _initBaseURI (string): ipfs://Qmebvt9XkGjiJ4gJxARvvz4fA7VW6GthvvbJWp6b6yiap3/
Arg [3] : _initNotRevealedUri (string): ipfs://QmeAGVx6A19uiYRC8Fi1rG1uExiG5uwPCJpch3nkfiFwCL/

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 5468656e66746973740000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 5468656e66746973740000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d6562767439586b476a694a34674a78415276767a346641
Arg [10] : 375657364774687676624a577036623679696170332f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d6541475678364131397569595243384669317247317545
Arg [13] : 78694735757750434a706368336e6b66694677434c2f00000000000000000000


Deployed Bytecode Sourcemap

43309:4427:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37074:224;;;;;;;;;;-1:-1:-1;37074:224:0;;;;;:::i;:::-;;:::i;:::-;;;9259:14:1;;9252:22;9234:41;;9222:2;9207:18;37074:224:0;;;;;;;;47253:73;;;;;;;;;;-1:-1:-1;47253:73:0;;;;;:::i;:::-;;:::i;:::-;;24966:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26525:221::-;;;;;;;;;;-1:-1:-1;26525:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7920:32:1;;;7902:51;;7890:2;7875:18;26525:221:0;7756:203:1;43655:28:0;;;;;;;;;;;;;:::i;26048:411::-;;;;;;;;;;-1:-1:-1;26048:411:0;;;;;:::i;:::-;;:::i;43449:31::-;;;;;;;;;;;;;;;;;;;16863:25:1;;;16851:2;16836:18;43449:31:0;16717:177:1;37714:113:0;;;;;;;;;;-1:-1:-1;37802:10:0;:17;37714:113;;43522:34;;;;;;;;;;;;;;;;27415:339;;;;;;;;;;-1:-1:-1;27415:339:0;;;;;:::i;:::-;;:::i;37382:256::-;;;;;;;;;;-1:-1:-1;37382:256:0;;;;;:::i;:::-;;:::i;47333:400::-;;;:::i;27825:185::-;;;;;;;;;;-1:-1:-1;27825:185:0;;;;;:::i;:::-;;:::i;45622:348::-;;;;;;;;;;-1:-1:-1;45622:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46685:80::-;;;;;;;;;;-1:-1:-1;46685:80:0;;;;;:::i;:::-;;:::i;43592:25::-;;;;;;;;;;;;;;;;37904:233;;;;;;;;;;-1:-1:-1;37904:233:0;;;;;:::i;:::-;;:::i;43622:28::-;;;;;;;;;;-1:-1:-1;43622:28:0;;;;;;;;47021:98;;;;;;;;;;-1:-1:-1;47021:98:0;;;;;:::i;:::-;;:::i;43561:26::-;;;;;;;;;;-1:-1:-1;43561:26:0;;;;;;;;44539:504;;;;;;:::i;:::-;;:::i;24660:239::-;;;;;;;;;;-1:-1:-1;24660:239:0;;;;;:::i;:::-;;:::i;24390:208::-;;;;;;;;;;-1:-1:-1;24390:208:0;;;;;:::i;:::-;;:::i;4665:94::-;;;;;;;;;;;;;:::i;46771:116::-;;;;;;;;;;-1:-1:-1;46771:116:0;;;;;:::i;:::-;;:::i;4014:87::-;;;;;;;;;;-1:-1:-1;4087:6:0;;-1:-1:-1;;;;;4087:6:0;4014:87;;25135:104;;;;;;;;;;;;;:::i;44081:447::-;;;;;;:::i;:::-;;:::i;26818:295::-;;;;;;;;;;-1:-1:-1;26818:295:0;;;;;:::i;:::-;;:::i;46612:65::-;;;;;;;;;;;;;:::i;28081:328::-;;;;;;;;;;-1:-1:-1;28081:328:0;;;;;:::i;:::-;;:::i;45062:546::-;;;;;;:::i;:::-;;:::i;43407:37::-;;;;;;;;;;;;;:::i;45976:614::-;;;;;;;;;;-1:-1:-1;45976:614:0;;;;;:::i;:::-;;:::i;43485:32::-;;;;;;;;;;;;;;;;47125:122;;;;;;;;;;-1:-1:-1;47125:122:0;;;;;:::i;:::-;;:::i;27184:164::-;;;;;;;;;;-1:-1:-1;27184:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27305:25:0;;;27281:4;27305:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27184:164;46895:120;;;;;;;;;;-1:-1:-1;46895:120:0;;;;;:::i;:::-;;:::i;4914:192::-;;;;;;;;;;-1:-1:-1;4914:192:0;;;;;:::i;:::-;;:::i;37074:224::-;37176:4;-1:-1:-1;;;;;;37200:50:0;;-1:-1:-1;;;37200:50:0;;:90;;;37254:36;37278:11;37254:23;:36::i;:::-;37193:97;37074:224;-1:-1:-1;;37074:224:0:o;47253:73::-;4087:6;;-1:-1:-1;;;;;4087:6:0;2882:10;4234:23;4226:68;;;;-1:-1:-1;;;4226:68:0;;;;;;;:::i;:::-;;;;;;;;;47305:6:::1;:15:::0;;-1:-1:-1;;47305:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47253:73::o;24966:100::-;25020:13;25053:5;25046:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24966:100;:::o;26525:221::-;26601:7;30008:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30008:16:0;26621:73;;;;-1:-1:-1;;;26621:73:0;;14086:2:1;26621:73:0;;;14068:21:1;14125:2;14105:18;;;14098:30;14164:34;14144:18;;;14137:62;-1:-1:-1;;;14215:18:1;;;14208:42;14267:19;;26621:73:0;13884:408:1;26621:73:0;-1:-1:-1;26714:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26714:24:0;;26525:221::o;43655:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26048:411::-;26129:13;26145:23;26160:7;26145:14;:23::i;:::-;26129:39;;26193:5;-1:-1:-1;;;;;26187:11:0;:2;-1:-1:-1;;;;;26187:11:0;;;26179:57;;;;-1:-1:-1;;;26179:57:0;;15686:2:1;26179:57:0;;;15668:21:1;15725:2;15705:18;;;15698:30;15764:34;15744:18;;;15737:62;-1:-1:-1;;;15815:18:1;;;15808:31;15856:19;;26179:57:0;15484:397:1;26179:57:0;2882:10;-1:-1:-1;;;;;26271:21:0;;;;:62;;-1:-1:-1;26296:37:0;26313:5;2882:10;27184:164;:::i;26296:37::-;26249:168;;;;-1:-1:-1;;;26249:168:0;;12479:2:1;26249:168:0;;;12461:21:1;12518:2;12498:18;;;12491:30;12557:34;12537:18;;;12530:62;12628:26;12608:18;;;12601:54;12672:19;;26249:168:0;12277:420:1;26249:168:0;26430:21;26439:2;26443:7;26430:8;:21::i;:::-;26118:341;26048:411;;:::o;27415:339::-;27610:41;2882:10;27643:7;27610:18;:41::i;:::-;27602:103;;;;-1:-1:-1;;;27602:103:0;;;;;;;:::i;:::-;27718:28;27728:4;27734:2;27738:7;27718:9;:28::i;37382:256::-;37479:7;37515:23;37532:5;37515:16;:23::i;:::-;37507:5;:31;37499:87;;;;-1:-1:-1;;;37499:87:0;;9712:2:1;37499:87:0;;;9694:21:1;9751:2;9731:18;;;9724:30;9790:34;9770:18;;;9763:62;-1:-1:-1;;;9841:18:1;;;9834:41;9892:19;;37499:87:0;9510:407:1;37499:87:0;-1:-1:-1;;;;;;37604:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37382:256::o;47333:400::-;4087:6;;-1:-1:-1;;;;;4087:6:0;2882:10;4234:23;4226:68;;;;-1:-1:-1;;;4226:68:0;;;;;;;:::i;:::-;47555:7:::1;47576;4087:6:::0;;-1:-1:-1;;;;;4087:6:0;;4014:87;47576:7:::1;-1:-1:-1::0;;;;;47568:21:0::1;47597;47568:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47554:69;;;47638:2;47630:11;;;::::0;::::1;;47378:355;47333:400::o:0;27825:185::-;27963:39;27980:4;27986:2;27990:7;27963:39;;;;;;;;;;;;:16;:39::i;45622:348::-;45697:16;45725:23;45751:17;45761:6;45751:9;:17::i;:::-;45725:43;;45775:25;45817:15;45803:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45803:30:0;;45775:58;;45845:9;45840:103;45860:15;45856:1;:19;45840:103;;;45905:30;45925:6;45933:1;45905:19;:30::i;:::-;45891:8;45900:1;45891:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45877:3;;;;:::i;:::-;;;;45840:103;;;-1:-1:-1;45956:8:0;45622:348;-1:-1:-1;;;45622:348:0:o;46685:80::-;4087:6;;-1:-1:-1;;;;;4087:6:0;2882:10;4234:23;4226:68;;;;-1:-1:-1;;;4226:68:0;;;;;;;:::i;:::-;46744:4:::1;:15:::0;46685:80::o;37904:233::-;37979:7;38015:30;37802:10;:17;;37714:113;38015:30;38007:5;:38;37999:95;;;;-1:-1:-1;;;37999:95:0;;16506:2:1;37999:95:0;;;16488:21:1;16545:2;16525:18;;;16518:30;16584:34;16564:18;;;16557:62;-1:-1:-1;;;16635:18:1;;;16628:42;16687:19;;37999:95:0;16304:408:1;37999:95:0;38112:10;38123:5;38112:17;;;;;;;;:::i;:::-;;;;;;;;;38105:24;;37904:233;;;:::o;47021:98::-;4087:6;;-1:-1:-1;;;;;4087:6:0;2882:10;4234:23;4226:68;;;;-1:-1:-1;;;4226:68:0;;;;;;;:::i;:::-;47092:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47021:98:::0;:::o;44539:504::-;4087:6;;-1:-1:-1;;;;;4087:6:0;2882:10;4234:23;4226:68;;;;-1:-1:-1;;;4226:68:0;;;;;;;:::i;:::-;44629:14:::1;44646:13;37802:10:::0;:17;;37714:113;44646:13:::1;44675:6;::::0;44629:30;;-1:-1:-1;44675:6:0::1;;44674:7;44666:16;;;::::0;::::1;;44711:1;44697:11;:15;44689:24;;;::::0;::::1;;44752:9;::::0;44728:20:::1;44737:11:::0;44728:6;:20:::1;:::i;:::-;:33;;44720:42;;;::::0;::::1;;4087:6:::0;;-1:-1:-1;;;;;4087:6:0;44775:10:::1;:21;44771:130;;44830:13;;44815:11;:28;;44807:37;;;::::0;::::1;;44881:11;44874:4;;:18;;;;:::i;:::-;44861:9;:31;;44853:40;;;::::0;::::1;;44926:9:::0;44909:101:::1;44941:21;44953:9:::0;44941:11;:21:::1;:::i;:::-;44937:1;:25;44909:101;;;44978:24;44988:10;45000:1;44978:9;:24::i;:::-;44964:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44909:101;;;;45026:11;45016:6;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;44539:504:0:o;24660:239::-;24732:7;24768:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24768:16:0;24803:19;24795:73;;;;-1:-1:-1;;;24795:73:0;;13315:2:1;24795:73:0;;;13297:21:1;13354:2;13334:18;;;13327:30;13393:34;13373:18;;;13366:62;-1:-1:-1;;;13444:18:1;;;13437:39;13493:19;;24795:73:0;13113:405:1;24390:208:0;24462:7;-1:-1:-1;;;;;24490:19:0;;24482:74;;;;-1:-1:-1;;;24482:74:0;;12904:2:1;24482:74:0;;;12886:21:1;12943:2;12923:18;;;12916:30;12982:34;12962:18;;;12955:62;-1:-1:-1;;;13033:18:1;;;13026:40;13083:19;;24482:74:0;12702:406:1;24482:74:0;-1:-1:-1;;;;;;24574:16:0;;;;;:9;:16;;;;;;;24390:208::o;4665:94::-;4087:6;;-1:-1:-1;;;;;4087:6:0;2882:10;4234:23;4226:68;;;;-1:-1:-1;;;4226:68:0;;;;;;;:::i;:::-;4730:21:::1;4748:1;4730:9;:21::i;:::-;4665:94::o:0;46771:116::-;4087:6;;-1:-1:-1;;;;;4087:6:0;2882:10;4234:23;4226:68;;;;-1:-1:-1;;;4226:68:0;;;;;;;:::i;:::-;46848:13:::1;:33:::0;46771:116::o;25135:104::-;25191:13;25224:7;25217:14;;;;;:::i;44081:447::-;44138:14;44174:6;;44155:13;37802:10;:17;;37714:113;44155:13;:18;;44169:4;44155:18;:::i;:::-;:25;;;;:::i;:::-;44196:6;;44138:42;;-1:-1:-1;44196:6:0;;44195:7;44187:16;;;;;;44232:1;44218:11;:15;44210:24;;;;;;44273:9;;44249:20;44258:11;44249:6;:20;:::i;:::-;:33;;44241:42;;;;;;4087:6;;-1:-1:-1;;;;;4087:6:0;44296:10;:21;44292:130;;44351:13;;44336:11;:28;;44328:37;;;;;;44402:11;44395:4;;:18;;;;:::i;:::-;44382:9;:31;;44374:40;;;;;;44447:1;44430:93;44455:11;44450:1;:16;44430:93;;44482:33;44492:10;44504;44513:1;44504:6;:10;:::i;:::-;44482:9;:33::i;:::-;44468:3;;;;:::i;:::-;;;;44430:93;;26818:295;-1:-1:-1;;;;;26921:24:0;;2882:10;26921:24;;26913:62;;;;-1:-1:-1;;;26913:62:0;;11712:2:1;26913:62:0;;;11694:21:1;11751:2;11731:18;;;11724:30;11790:27;11770:18;;;11763:55;11835:18;;26913:62:0;11510:349:1;26913:62:0;2882:10;26988:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26988:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26988:53:0;;;;;;;;;;27057:48;;9234:41:1;;;26988:42:0;;2882:10;27057:48;;9207:18:1;27057:48:0;;;;;;;26818:295;;:::o;46612:65::-;4087:6;;-1:-1:-1;;;;;4087:6:0;2882:10;4234:23;4226:68;;;;-1:-1:-1;;;4226:68:0;;;;;;;:::i;:::-;46656:8:::1;:15:::0;;-1:-1:-1;;46656:15:0::1;46667:4;46656:15;::::0;;46612:65::o;28081:328::-;28256:41;2882:10;28289:7;28256:18;:41::i;:::-;28248:103;;;;-1:-1:-1;;;28248:103:0;;;;;;;:::i;:::-;28362:39;28376:4;28382:2;28386:7;28395:5;28362:13;:39::i;:::-;28081:328;;;;:::o;45062:546::-;4087:6;;-1:-1:-1;;;;;4087:6:0;2882:10;4234:23;4226:68;;;;-1:-1:-1;;;4226:68:0;;;;;;;:::i;:::-;45168:21;;45146:19:::1;45213:13;37802:10:::0;:17;;37714:113;45213:13:::1;45242:6;::::0;45196:30;;-1:-1:-1;45242:6:0::1;;45241:7;45233:16;;;::::0;::::1;;45278:1;45264:11;:15;45256:24;;;::::0;::::1;;45319:9;::::0;45295:20:::1;45304:11:::0;45295:6;:20:::1;:::i;:::-;:33;;45287:42;;;::::0;::::1;;4087:6:::0;;-1:-1:-1;;;;;4087:6:0;45342:10:::1;:21;45338:130;;45397:13;;45382:11;:28;;45374:37;;;::::0;::::1;;45448:11;45441:4;;:18;;;;:::i;:::-;45428:9;:31;;45420:40;;;::::0;::::1;;45481:9;45476:99;45500:11;45496:1;:15;45476:99;;;45527:40;45537:10;45549:14;45564:1;45549:17;;;;;;;;:::i;:::-;;;;;;;45527:9;:40::i;:::-;45513:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45476:99;;43407:37:::0;;;;;;;:::i;45976:614::-;29984:4;30008:16;;;:7;:16;;;;;;46074:13;;-1:-1:-1;;;;;30008:16:0;46099:97;;;;-1:-1:-1;;;46099:97:0;;15270:2:1;46099:97:0;;;15252:21:1;15309:2;15289:18;;;15282:30;15348:34;15328:18;;;15321:62;-1:-1:-1;;;15399:18:1;;;15392:45;15454:19;;46099:97:0;15068:411:1;46099:97:0;46212:8;;;;46209:179;;46278:1;46253:14;46247:28;;;;;:::i;:::-;;;:32;:133;;;;;;;;;;;;;;;;;46315:14;46331:18;:7;:16;:18::i;:::-;46351:13;46298:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46240:140;45976:614;-1:-1:-1;;45976:614:0:o;46209:179::-;46396:28;46427:10;:8;:10::i;:::-;46396:41;;46482:1;46457:14;46451:28;:32;:133;;;;;;;;;;;;;;;;;46519:14;46535:18;:7;:16;:18::i;:::-;46555:13;46502:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46451:133;46444:140;45976:614;-1:-1:-1;;;45976:614:0:o;47125:122::-;4087:6;;-1:-1:-1;;;;;4087:6:0;2882:10;4234:23;4226:68;;;;-1:-1:-1;;;4226:68:0;;;;;;;:::i;:::-;47208:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;46895:120::-:0;4087:6;;-1:-1:-1;;;;;4087:6:0;2882:10;4234:23;4226:68;;;;-1:-1:-1;;;4226:68:0;;;;;;;:::i;:::-;46977:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;4914:192::-:0;4087:6;;-1:-1:-1;;;;;4087:6:0;2882:10;4234:23;4226:68;;;;-1:-1:-1;;;4226:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5003:22:0;::::1;4995:73;;;::::0;-1:-1:-1;;;4995:73:0;;10543:2:1;4995:73:0::1;::::0;::::1;10525:21:1::0;10582:2;10562:18;;;10555:30;10621:34;10601:18;;;10594:62;-1:-1:-1;;;10672:18:1;;;10665:36;10718:19;;4995:73:0::1;10341:402:1::0;4995:73:0::1;5079:19;5089:8;5079:9;:19::i;24021:305::-:0;24123:4;-1:-1:-1;;;;;;24160:40:0;;-1:-1:-1;;;24160:40:0;;:105;;-1:-1:-1;;;;;;;24217:48:0;;-1:-1:-1;;;24217:48:0;24160:105;:158;;;-1:-1:-1;;;;;;;;;;16109:40:0;;;24282:36;16000:157;33901:174;33976:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33976:29:0;-1:-1:-1;;;;;33976:29:0;;;;;;;;:24;;34030:23;33976:24;34030:14;:23::i;:::-;-1:-1:-1;;;;;34021:46:0;;;;;;;;;;;33901:174;;:::o;30213:348::-;30306:4;30008:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30008:16:0;30323:73;;;;-1:-1:-1;;;30323:73:0;;12066:2:1;30323:73:0;;;12048:21:1;12105:2;12085:18;;;12078:30;12144:34;12124:18;;;12117:62;-1:-1:-1;;;12195:18:1;;;12188:42;12247:19;;30323:73:0;11864:408:1;30323:73:0;30407:13;30423:23;30438:7;30423:14;:23::i;:::-;30407:39;;30476:5;-1:-1:-1;;;;;30465:16:0;:7;-1:-1:-1;;;;;30465:16:0;;:51;;;;30509:7;-1:-1:-1;;;;;30485:31:0;:20;30497:7;30485:11;:20::i;:::-;-1:-1:-1;;;;;30485:31:0;;30465:51;:87;;;-1:-1:-1;;;;;;27305:25:0;;;27281:4;27305:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30520:32;30457:96;30213:348;-1:-1:-1;;;;30213:348:0:o;33205:578::-;33364:4;-1:-1:-1;;;;;33337:31:0;:23;33352:7;33337:14;:23::i;:::-;-1:-1:-1;;;;;33337:31:0;;33329:85;;;;-1:-1:-1;;;33329:85:0;;14860:2:1;33329:85:0;;;14842:21:1;14899:2;14879:18;;;14872:30;14938:34;14918:18;;;14911:62;-1:-1:-1;;;14989:18:1;;;14982:39;15038:19;;33329:85:0;14658:405:1;33329:85:0;-1:-1:-1;;;;;33433:16:0;;33425:65;;;;-1:-1:-1;;;33425:65:0;;11307:2:1;33425:65:0;;;11289:21:1;11346:2;11326:18;;;11319:30;11385:34;11365:18;;;11358:62;-1:-1:-1;;;11436:18:1;;;11429:34;11480:19;;33425:65:0;11105:400:1;33425:65:0;33503:39;33524:4;33530:2;33534:7;33503:20;:39::i;:::-;33607:29;33624:1;33628:7;33607:8;:29::i;:::-;-1:-1:-1;;;;;33649:15:0;;;;;;:9;:15;;;;;:20;;33668:1;;33649:15;:20;;33668:1;;33649:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33680:13:0;;;;;;:9;:13;;;;;:18;;33697:1;;33680:13;:18;;33697:1;;33680:18;:::i;:::-;;;;-1:-1:-1;;33709:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33709:21:0;-1:-1:-1;;;;;33709:21:0;;;;;;;;;33748:27;;33709:16;;33748:27;;;;;;;33205:578;;;:::o;30903:110::-;30979:26;30989:2;30993:7;30979:26;;;;;;;;;;;;:9;:26::i;5114:173::-;5189:6;;;-1:-1:-1;;;;;5206:17:0;;;-1:-1:-1;;;;;;5206:17:0;;;;;;;5239:40;;5189:6;;;5206:17;5189:6;;5239:40;;5170:16;;5239:40;5159:128;5114:173;:::o;29291:315::-;29448:28;29458:4;29464:2;29468:7;29448:9;:28::i;:::-;29495:48;29518:4;29524:2;29528:7;29537:5;29495:22;:48::i;:::-;29487:111;;;;-1:-1:-1;;;29487:111:0;;;;;;;:::i;418:723::-;474:13;695:10;691:53;;-1:-1:-1;;722:10:0;;;;;;;;;;;;-1:-1:-1;;;722:10:0;;;;;418:723::o;691:53::-;769:5;754:12;810:78;817:9;;810:78;;843:8;;;;:::i;:::-;;-1:-1:-1;866:10:0;;-1:-1:-1;874:2:0;866:10;;:::i;:::-;;;810:78;;;898:19;930:6;920:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;920:17:0;;898:39;;948:154;955:10;;948:154;;982:11;992:1;982:11;;:::i;:::-;;-1:-1:-1;1051:10:0;1059:2;1051:5;:10;:::i;:::-;1038:24;;:2;:24;:::i;:::-;1025:39;;1008:6;1015;1008:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1008:56:0;;;;;;;;-1:-1:-1;1079:11:0;1088:2;1079:11;;:::i;:::-;;;948:154;;43960:102;44020:13;44049:7;44042:14;;;;;:::i;38750:589::-;-1:-1:-1;;;;;38956:18:0;;38952:187;;38991:40;39023:7;40166:10;:17;;40139:24;;;;:15;:24;;;;;:44;;;40194:24;;;;;;;;;;;;40062:164;38991:40;38952:187;;;39061:2;-1:-1:-1;;;;;39053:10:0;:4;-1:-1:-1;;;;;39053:10:0;;39049:90;;39080:47;39113:4;39119:7;39080:32;:47::i;:::-;-1:-1:-1;;;;;39153:16:0;;39149:183;;39186:45;39223:7;39186:36;:45::i;39149:183::-;39259:4;-1:-1:-1;;;;;39253:10:0;:2;-1:-1:-1;;;;;39253:10:0;;39249:83;;39280:40;39308:2;39312:7;39280:27;:40::i;31240:321::-;31370:18;31376:2;31380:7;31370:5;:18::i;:::-;31421:54;31452:1;31456:2;31460:7;31469:5;31421:22;:54::i;:::-;31399:154;;;;-1:-1:-1;;;31399:154:0;;;;;;;:::i;34640:799::-;34795:4;-1:-1:-1;;;;;34816:13:0;;6383:20;6431:8;34812:620;;34852:72;;-1:-1:-1;;;34852:72:0;;-1:-1:-1;;;;;34852:36:0;;;;;:72;;2882:10;;34903:4;;34909:7;;34918:5;;34852:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34852:72:0;;;;;;;;-1:-1:-1;;34852:72:0;;;;;;;;;;;;:::i;:::-;;;34848:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35094:13:0;;35090:272;;35137:60;;-1:-1:-1;;;35137:60:0;;;;;;;:::i;35090:272::-;35312:6;35306:13;35297:6;35293:2;35289:15;35282:38;34848:529;-1:-1:-1;;;;;;34975:51:0;-1:-1:-1;;;34975:51:0;;-1:-1:-1;34968:58:0;;34812:620;-1:-1:-1;35416:4:0;34640:799;;;;;;:::o;40853:988::-;41119:22;41169:1;41144:22;41161:4;41144:16;:22::i;:::-;:26;;;;:::i;:::-;41181:18;41202:26;;;:17;:26;;;;;;41119:51;;-1:-1:-1;41335:28:0;;;41331:328;;-1:-1:-1;;;;;41402:18:0;;41380:19;41402:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41453:30;;;;;;:44;;;41570:30;;:17;:30;;;;;:43;;;41331:328;-1:-1:-1;41755:26:0;;;;:17;:26;;;;;;;;41748:33;;;-1:-1:-1;;;;;41799:18:0;;;;;:12;:18;;;;;:34;;;;;;;41792:41;40853:988::o;42136:1079::-;42414:10;:17;42389:22;;42414:21;;42434:1;;42414:21;:::i;:::-;42446:18;42467:24;;;:15;:24;;;;;;42840:10;:26;;42389:46;;-1:-1:-1;42467:24:0;;42389:46;;42840:26;;;;;;:::i;:::-;;;;;;;;;42818:48;;42904:11;42879:10;42890;42879:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42984:28;;;:15;:28;;;;;;;:41;;;43156:24;;;;;43149:31;43191:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42207:1008;;;42136:1079;:::o;39640:221::-;39725:14;39742:20;39759:2;39742:16;:20::i;:::-;-1:-1:-1;;;;;39773:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39818:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39640:221:0:o;31897:382::-;-1:-1:-1;;;;;31977:16:0;;31969:61;;;;-1:-1:-1;;;31969:61:0;;13725:2:1;31969:61:0;;;13707:21:1;;;13744:18;;;13737:30;13803:34;13783:18;;;13776:62;13855:18;;31969:61:0;13523:356:1;31969:61:0;29984:4;30008:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30008:16:0;:30;32041:58;;;;-1:-1:-1;;;32041:58:0;;10950:2:1;32041:58:0;;;10932:21:1;10989:2;10969:18;;;10962:30;11028;11008:18;;;11001:58;11076:18;;32041:58:0;10748:352:1;32041:58:0;32112:45;32141:1;32145:2;32149:7;32112:20;:45::i;:::-;-1:-1:-1;;;;;32170:13:0;;;;;;:9;:13;;;;;:18;;32187:1;;32170:13;:18;;32187:1;;32170:18;:::i;:::-;;;;-1:-1:-1;;32199:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32199:21:0;-1:-1:-1;;;;;32199:21:0;;;;;;;;32238:33;;32199:16;;;32238:33;;32199:16;;32238:33;31897:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:957::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:163;3524:2;3521:1;3518:9;3510:163;;;3581:17;;3569:30;;3542:1;3535:9;;;;;3619:12;;;;3651;;3510:163;;;-1:-1:-1;3692:5:1;2746:957;-1:-1:-1;;;;;;;;2746:957:1:o;3708:180::-;3764:6;3817:2;3805:9;3796:7;3792:23;3788:32;3785:52;;;3833:1;3830;3823:12;3785:52;3856:26;3872:9;3856:26;:::i;3893:245::-;3951:6;4004:2;3992:9;3983:7;3979:23;3975:32;3972:52;;;4020:1;4017;4010:12;3972:52;4059:9;4046:23;4078:30;4102:5;4078:30;:::i;4143:249::-;4212:6;4265:2;4253:9;4244:7;4240:23;4236:32;4233:52;;;4281:1;4278;4271:12;4233:52;4313:9;4307:16;4332:30;4356:5;4332:30;:::i;4397:450::-;4466:6;4519:2;4507:9;4498:7;4494:23;4490:32;4487:52;;;4535:1;4532;4525:12;4487:52;4575:9;4562:23;4608:18;4600:6;4597:30;4594:50;;;4640:1;4637;4630:12;4594:50;4663:22;;4716:4;4708:13;;4704:27;-1:-1:-1;4694:55:1;;4745:1;4742;4735:12;4694:55;4768:73;4833:7;4828:2;4815:16;4810:2;4806;4802:11;4768:73;:::i;4852:180::-;4911:6;4964:2;4952:9;4943:7;4939:23;4935:32;4932:52;;;4980:1;4977;4970:12;4932:52;-1:-1:-1;5003:23:1;;4852:180;-1:-1:-1;4852:180:1:o;5037:248::-;5105:6;5113;5166:2;5154:9;5145:7;5141:23;5137:32;5134:52;;;5182:1;5179;5172:12;5134:52;-1:-1:-1;;5205:23:1;;;5275:2;5260:18;;;5247:32;;-1:-1:-1;5037:248:1:o;5290:257::-;5331:3;5369:5;5363:12;5396:6;5391:3;5384:19;5412:63;5468:6;5461:4;5456:3;5452:14;5445:4;5438:5;5434:16;5412:63;:::i;:::-;5529:2;5508:15;-1:-1:-1;;5504:29:1;5495:39;;;;5536:4;5491:50;;5290:257;-1:-1:-1;;5290:257:1:o;5552:973::-;5637:12;;5602:3;;5692:1;5712:18;;;;5765;;;;5792:61;;5846:4;5838:6;5834:17;5824:27;;5792:61;5872:2;5920;5912:6;5909:14;5889:18;5886:38;5883:161;;;5966:10;5961:3;5957:20;5954:1;5947:31;6001:4;5998:1;5991:15;6029:4;6026:1;6019:15;5883:161;6060:18;6087:104;;;;6205:1;6200:319;;;;6053:466;;6087:104;-1:-1:-1;;6120:24:1;;6108:37;;6165:16;;;;-1:-1:-1;6087:104:1;;6200:319;17252:1;17245:14;;;17289:4;17276:18;;6294:1;6308:165;6322:6;6319:1;6316:13;6308:165;;;6400:14;;6387:11;;;6380:35;6443:16;;;;6337:10;;6308:165;;;6312:3;;6502:6;6497:3;6493:16;6486:23;;6053:466;;;;;;;5552:973;;;;:::o;6530:550::-;6754:3;6792:6;6786:13;6808:53;6854:6;6849:3;6842:4;6834:6;6830:17;6808:53;:::i;:::-;6924:13;;6883:16;;;;6946:57;6924:13;6883:16;6980:4;6968:17;;6946:57;:::i;:::-;7019:55;7064:8;7057:5;7053:20;7045:6;7019:55;:::i;:::-;7012:62;6530:550;-1:-1:-1;;;;;;;6530:550:1:o;7085:456::-;7306:3;7334:38;7368:3;7360:6;7334:38;:::i;:::-;7401:6;7395:13;7417:52;7462:6;7458:2;7451:4;7443:6;7439:17;7417:52;:::i;7964:488::-;-1:-1:-1;;;;;8233:15:1;;;8215:34;;8285:15;;8280:2;8265:18;;8258:43;8332:2;8317:18;;8310:34;;;8380:3;8375:2;8360:18;;8353:31;;;8158:4;;8401:45;;8426:19;;8418:6;8401:45;:::i;:::-;8393:53;7964:488;-1:-1:-1;;;;;;7964:488:1:o;8457:632::-;8628:2;8680:21;;;8750:13;;8653:18;;;8772:22;;;8599:4;;8628:2;8851:15;;;;8825:2;8810:18;;;8599:4;8894:169;8908:6;8905:1;8902:13;8894:169;;;8969:13;;8957:26;;9038:15;;;;9003:12;;;;8930:1;8923:9;8894:169;;;-1:-1:-1;9080:3:1;;8457:632;-1:-1:-1;;;;;;8457:632:1:o;9286:219::-;9435:2;9424:9;9417:21;9398:4;9455:44;9495:2;9484:9;9480:18;9472:6;9455:44;:::i;9922:414::-;10124:2;10106:21;;;10163:2;10143:18;;;10136:30;10202:34;10197:2;10182:18;;10175:62;-1:-1:-1;;;10268:2:1;10253:18;;10246:48;10326:3;10311:19;;9922:414::o;14297:356::-;14499:2;14481:21;;;14518:18;;;14511:30;14577:34;14572:2;14557:18;;14550:62;14644:2;14629:18;;14297:356::o;15886:413::-;16088:2;16070:21;;;16127:2;16107:18;;;16100:30;16166:34;16161:2;16146:18;;16139:62;-1:-1:-1;;;16232:2:1;16217:18;;16210:47;16289:3;16274:19;;15886:413::o;16899:275::-;16970:2;16964:9;17035:2;17016:13;;-1:-1:-1;;17012:27:1;17000:40;;17070:18;17055:34;;17091:22;;;17052:62;17049:88;;;17117:18;;:::i;:::-;17153:2;17146:22;16899:275;;-1:-1:-1;16899:275:1:o;17305:128::-;17345:3;17376:1;17372:6;17369:1;17366:13;17363:39;;;17382:18;;:::i;:::-;-1:-1:-1;17418:9:1;;17305:128::o;17438:120::-;17478:1;17504;17494:35;;17509:18;;:::i;:::-;-1:-1:-1;17543:9:1;;17438:120::o;17563:168::-;17603:7;17669:1;17665;17661:6;17657:14;17654:1;17651:21;17646:1;17639:9;17632:17;17628:45;17625:71;;;17676:18;;:::i;:::-;-1:-1:-1;17716:9:1;;17563:168::o;17736:125::-;17776:4;17804:1;17801;17798:8;17795:34;;;17809:18;;:::i;:::-;-1:-1:-1;17846:9:1;;17736:125::o;17866:258::-;17938:1;17948:113;17962:6;17959:1;17956:13;17948:113;;;18038:11;;;18032:18;18019:11;;;18012:39;17984:2;17977:10;17948:113;;;18079:6;18076:1;18073:13;18070:48;;;-1:-1:-1;;18114:1:1;18096:16;;18089:27;17866:258::o;18129:380::-;18208:1;18204:12;;;;18251;;;18272:61;;18326:4;18318:6;18314:17;18304:27;;18272:61;18379:2;18371:6;18368:14;18348:18;18345:38;18342:161;;;18425:10;18420:3;18416:20;18413:1;18406:31;18460:4;18457:1;18450:15;18488:4;18485:1;18478:15;18342:161;;18129:380;;;:::o;18514:135::-;18553:3;-1:-1:-1;;18574:17:1;;18571:43;;;18594:18;;:::i;:::-;-1:-1:-1;18641:1:1;18630:13;;18514:135::o;18654:112::-;18686:1;18712;18702:35;;18717:18;;:::i;:::-;-1:-1:-1;18751:9:1;;18654:112::o;18771:127::-;18832:10;18827:3;18823:20;18820:1;18813:31;18863:4;18860:1;18853:15;18887:4;18884:1;18877:15;18903:127;18964:10;18959:3;18955:20;18952:1;18945:31;18995:4;18992:1;18985:15;19019:4;19016:1;19009:15;19035:127;19096:10;19091:3;19087:20;19084:1;19077:31;19127:4;19124:1;19117:15;19151:4;19148:1;19141:15;19167:127;19228:10;19223:3;19219:20;19216:1;19209:31;19259:4;19256:1;19249:15;19283:4;19280:1;19273:15;19299:127;19360:10;19355:3;19351:20;19348:1;19341:31;19391:4;19388:1;19381:15;19415:4;19412:1;19405:15;19431:131;-1:-1:-1;;;;;;19505:32:1;;19495:43;;19485:71;;19552:1;19549;19542:12

Swarm Source

ipfs://85c05d2be9cf319f412d9db53ff2cbedaab17ff30c3262135e0a0c550f527032
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.