ETH Price: $3,010.30 (+4.49%)
Gas: 2 Gwei

Token

MutantHumanClub (MHC)
 

Overview

Max Total Supply

1,637 MHC

Holders

798

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ciirocii.eth
Balance
3 MHC
0xaa30a38715df02939306d55f1541edaaaa020973
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:
MutantHumanClub

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-03
*/

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


pragma solidity >=0.7.0 <0.9.0;

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

    string baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 90000000000000000;
    uint256 public maxSupply = 6666;
    uint256 public maxMintAmount = 5;
    uint256 public reservedForTeam = 30;

    string private signature;

    bool public paused = false;
    bool public revealed = false;

    // Whitelist
    uint256 public whitelistMintAmount = 3;
    uint256 public whitelistReserved = 4500;
    uint256 public whitelistCost = 90000000000000000;

    bool private whitelistedSale = true;
    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;
    }

    function presaleMint(uint256 _mintAmount, string memory _signature)
        public
        payable
    {
        require(!paused, "Contract is paused");
        require(whitelistedSale);
        require(
            keccak256(abi.encodePacked((signature))) ==
                keccak256(abi.encodePacked((_signature))),
            "Invalid signature"
        );
        require(msg.sender != owner());

        uint256 supply = totalSupply();
        uint256 totalAmount;

        uint256 tokenCount = balanceOf(msg.sender);

        require(
            tokenCount + _mintAmount <= maxMintAmount,
            string(abi.encodePacked("Limit token ", tokenCount.toString()))
        );
        require(
            supply + _mintAmount <= maxSupply - reservedForTeam,
            "Max Supply"
        );

        // Whitelist
        require(whitelistReserved - _mintAmount >= 0);
        require(tokenCount + _mintAmount <= whitelistMintAmount);

        totalAmount = whitelistCost * _mintAmount;

        require(
            msg.value >= totalAmount,
            string(
                abi.encodePacked(
                    "Incorrect amount ",
                    totalAmount.toString(),
                    " ",
                    msg.value.toString()
                )
            )
        );

        whitelistReserved -= _mintAmount;

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

    // public
    function mint(uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        uint256 totalAmount;

        require(!paused);
        require(_mintAmount > 0);

        // Owner
        if (msg.sender == owner()) {
            require(reservedForTeam >= _mintAmount);
            reservedForTeam -= _mintAmount;
        }

        if (msg.sender != owner()) {
            require(!whitelistedSale);
            uint256 tokenCount = balanceOf(msg.sender);

            require(
                tokenCount + _mintAmount <= maxMintAmount,
                string(abi.encodePacked("Limit token ", tokenCount.toString()))
            );
            require(
                supply + _mintAmount <= maxSupply - reservedForTeam,
                "Max Supply"
            );

            totalAmount = cost * _mintAmount;

            require(
                msg.value >= totalAmount,
                string(
                    abi.encodePacked(
                        "Incorrect amount ",
                        totalAmount.toString(),
                        " ",
                        msg.value.toString()
                    )
                )
            );
        }

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

    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 notRevealedUri;
        }

        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 setReserved(uint256 _reserved) public onlyOwner {
        reservedForTeam = _reserved;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setWhitelistCost(uint256 _newCost) public onlyOwner {
        whitelistCost = _newCost;
    }

    function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setWhitelistMintAmount(uint256 _newmaxMintAmount)
        public
        onlyOwner
    {
        whitelistMintAmount = _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 whitelistSale(bool _state) public onlyOwner {
        require(whitelistReserved > 0);
        whitelistedSale = _state;
    }

    function setSignature(string memory _signature) public onlyOwner {
        signature = _signature;
    }

    function setWhitelistReserved(uint256 _count) public onlyOwner {
        uint256 totalSupply = totalSupply();
        require(_count < maxSupply - totalSupply);
        whitelistReserved = _count;
    }

    function withdraw() public payable onlyOwner {
        (bool oa, ) = payable(owner()).call{value: address(this).balance}("");
        require(oa);
    }

    function getBalance() public view onlyOwner returns (uint256) {
        return address(this).balance;
    }

    function isWhitelisted() public view returns (bool) {
        return whitelistedSale;
    }
}

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":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelisted","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":[],"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"string","name":"_signature","type":"string"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reserved","type":"uint256"}],"name":"setReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_signature","type":"string"}],"name":"setSignature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setWhitelistMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setWhitelistReserved","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":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"whitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000222565b5067013fbe85edc90000600d819055611a0a600e556005600f55601e6010556012805461ffff1916905560036013556111946014556015556016805460ff191660011790553480156200007a57600080fd5b506040516200313d3803806200313d8339810160408190526200009d9162000395565b835184908490620000b690600090602085019062000222565b508051620000cc90600190602084019062000222565b505050620000e9620000e36200010960201b60201c565b6200010d565b620000f4826200015f565b620000ff81620001c7565b505050506200048b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001ae5760405162461bcd60e51b815260206004820181905260248201526000805160206200311d83398151915260448201526064015b60405180910390fd5b8051620001c390600b90602084019062000222565b5050565b600a546001600160a01b03163314620002125760405162461bcd60e51b815260206004820181905260248201526000805160206200311d8339815191526044820152606401620001a5565b8051620001c39060179060208401905b82805462000230906200044e565b90600052602060002090601f0160209004810192826200025457600085556200029f565b82601f106200026f57805160ff19168380011785556200029f565b828001600101855582156200029f579182015b828111156200029f57825182559160200191906001019062000282565b50620002ad929150620002b1565b5090565b5b80821115620002ad5760008155600101620002b2565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002f057600080fd5b81516001600160401b03808211156200030d576200030d620002c8565b604051601f8301601f19908116603f01168101908282118183101715620003385762000338620002c8565b816040528381526020925086838588010111156200035557600080fd5b600091505b838210156200037957858201830151818301840152908201906200035a565b838211156200038b5760008385830101525b9695505050505050565b60008060008060808587031215620003ac57600080fd5b84516001600160401b0380821115620003c457600080fd5b620003d288838901620002de565b95506020870151915080821115620003e957600080fd5b620003f788838901620002de565b945060408701519150808211156200040e57600080fd5b6200041c88838901620002de565b935060608701519150808211156200043357600080fd5b506200044287828801620002de565b91505092959194509250565b600181811c908216806200046357607f821691505b602082108114156200048557634e487b7160e01b600052602260045260246000fd5b50919050565b612c82806200049b6000396000f3fe6080604052600436106102ae5760003560e01c8063611b409511610175578063b35e3b2e116100dc578063d49479eb11610095578063e7b99ec71161006f578063e7b99ec7146107d3578063e985e9c5146107e9578063f2c4ce1e14610832578063f2fde38b1461085257600080fd5b8063d49479eb1461077d578063d5abeb011461079d578063da3ef23f146107b357600080fd5b8063b35e3b2e146106d2578063b88d4fde146106f2578063c668286214610712578063c87b56dd14610727578063cc6753b614610747578063cfb89aba1461076757600080fd5b8063930079a21161012e578063930079a21461064c57806395d89b4114610662578063a0712d6814610677578063a22cb4651461068a578063a3d078a6146106aa578063a475b5dd146106bd57600080fd5b8063611b4095146105ab5780636352211e146105c357806370a08231146105e3578063715018a61461060357806388039d8f146106185780638da5cb5b1461062e57600080fd5b80632782fb2211610219578063438b6300116101d2578063438b6300146104e557806344a0d68a146105125780634f6ccce714610532578063518302271461055257806355f804b3146105715780635c975abb1461059157600080fd5b80632782fb221461043d57806329d80c841461045d5780632d6e71b61461047d5780632f745c591461049d5780633ccfd60b146104bd57806342842e0e146104c557600080fd5b8063095ea7b31161026b578063095ea7b31461039957806312065fe0146103b957806313faede6146103dc57806318160ddd146103f2578063239c70ae1461040757806323b872dd1461041d57600080fd5b806301ffc9a7146102b357806302329a29146102e857806306fdde031461030a578063081812fc1461032c578063081c8c4414610364578063088a4ed014610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce3660046124bc565b610872565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506103086103033660046124ee565b61089d565b005b34801561031657600080fd5b5061031f6108e3565b6040516102df9190612561565b34801561033857600080fd5b5061034c610347366004612574565b610975565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061031f610a0a565b34801561038557600080fd5b50610308610394366004612574565b610a98565b3480156103a557600080fd5b506103086103b43660046125a4565b610ac7565b3480156103c557600080fd5b506103ce610bdd565b6040519081526020016102df565b3480156103e857600080fd5b506103ce600d5481565b3480156103fe57600080fd5b506008546103ce565b34801561041357600080fd5b506103ce600f5481565b34801561042957600080fd5b506103086104383660046125ce565b610c0f565b34801561044957600080fd5b506103086104583660046126b6565b610c40565b34801561046957600080fd5b506103086104783660046124ee565b610c81565b34801561048957600080fd5b50610308610498366004612574565b610ccd565b3480156104a957600080fd5b506103ce6104b83660046125a4565b610cfc565b610308610d92565b3480156104d157600080fd5b506103086104e03660046125ce565b610e30565b3480156104f157600080fd5b506105056105003660046126eb565b610e4b565b6040516102df9190612706565b34801561051e57600080fd5b5061030861052d366004612574565b610eed565b34801561053e57600080fd5b506103ce61054d366004612574565b610f1c565b34801561055e57600080fd5b506012546102d390610100900460ff1681565b34801561057d57600080fd5b5061030861058c3660046126b6565b610faf565b34801561059d57600080fd5b506012546102d39060ff1681565b3480156105b757600080fd5b5060165460ff166102d3565b3480156105cf57600080fd5b5061034c6105de366004612574565b610fec565b3480156105ef57600080fd5b506103ce6105fe3660046126eb565b611063565b34801561060f57600080fd5b506103086110ea565b34801561062457600080fd5b506103ce60145481565b34801561063a57600080fd5b50600a546001600160a01b031661034c565b34801561065857600080fd5b506103ce60105481565b34801561066e57600080fd5b5061031f611120565b610308610685366004612574565b61112f565b34801561069657600080fd5b506103086106a536600461274a565b61130e565b6103086106b836600461277d565b6113d3565b3480156106c957600080fd5b5061030861167b565b3480156106de57600080fd5b506103086106ed366004612574565b6116b6565b3480156106fe57600080fd5b5061030861070d3660046127c4565b61170c565b34801561071e57600080fd5b5061031f61173e565b34801561073357600080fd5b5061031f610742366004612574565b61174b565b34801561075357600080fd5b50610308610762366004612574565b6118ca565b34801561077357600080fd5b506103ce60135481565b34801561078957600080fd5b50610308610798366004612574565b6118f9565b3480156107a957600080fd5b506103ce600e5481565b3480156107bf57600080fd5b506103086107ce3660046126b6565b611928565b3480156107df57600080fd5b506103ce60155481565b3480156107f557600080fd5b506102d3610804366004612840565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083e57600080fd5b5061030861084d3660046126b6565b611965565b34801561085e57600080fd5b5061030861086d3660046126eb565b6119a2565b60006001600160e01b0319821663780e9d6360e01b1480610897575061089782611a3a565b92915050565b600a546001600160a01b031633146108d05760405162461bcd60e51b81526004016108c79061286a565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108f29061289f565b80601f016020809104026020016040519081016040528092919081815260200182805461091e9061289f565b801561096b5780601f106109405761010080835404028352916020019161096b565b820191906000526020600020905b81548152906001019060200180831161094e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109ee5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c7565b506000908152600460205260409020546001600160a01b031690565b60178054610a179061289f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a439061289f565b8015610a905780601f10610a6557610100808354040283529160200191610a90565b820191906000526020600020905b815481529060010190602001808311610a7357829003601f168201915b505050505081565b600a546001600160a01b03163314610ac25760405162461bcd60e51b81526004016108c79061286a565b600f55565b6000610ad282610fec565b9050806001600160a01b0316836001600160a01b03161415610b405760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c7565b336001600160a01b0382161480610b5c5750610b5c8133610804565b610bce5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c7565b610bd88383611a8a565b505050565b600a546000906001600160a01b03163314610c0a5760405162461bcd60e51b81526004016108c79061286a565b504790565b610c193382611af8565b610c355760405162461bcd60e51b81526004016108c7906128da565b610bd8838383611bef565b600a546001600160a01b03163314610c6a5760405162461bcd60e51b81526004016108c79061286a565b8051610c7d90601190602084019061240d565b5050565b600a546001600160a01b03163314610cab5760405162461bcd60e51b81526004016108c79061286a565b600060145411610cba57600080fd5b6016805460ff1916911515919091179055565b600a546001600160a01b03163314610cf75760405162461bcd60e51b81526004016108c79061286a565b601055565b6000610d0783611063565b8210610d695760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108c7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dbc5760405162461bcd60e51b81526004016108c79061286a565b6000610dd0600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e1a576040519150601f19603f3d011682016040523d82523d6000602084013e610e1f565b606091505b5050905080610e2d57600080fd5b50565b610bd88383836040518060200160405280600081525061170c565b60606000610e5883611063565b905060008167ffffffffffffffff811115610e7557610e7561260a565b604051908082528060200260200182016040528015610e9e578160200160208202803683370190505b50905060005b82811015610ee557610eb68582610cfc565b828281518110610ec857610ec861292b565b602090810291909101015280610edd81612957565b915050610ea4565b509392505050565b600a546001600160a01b03163314610f175760405162461bcd60e51b81526004016108c79061286a565b600d55565b6000610f2760085490565b8210610f8a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108c7565b60088281548110610f9d57610f9d61292b565b90600052602060002001549050919050565b600a546001600160a01b03163314610fd95760405162461bcd60e51b81526004016108c79061286a565b8051610c7d90600b90602084019061240d565b6000818152600260205260408120546001600160a01b0316806108975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c7565b60006001600160a01b0382166110ce5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111145760405162461bcd60e51b81526004016108c79061286a565b61111e6000611d9a565b565b6060600180546108f29061289f565b600061113a60085490565b60125490915060009060ff161561115057600080fd5b6000831161115d57600080fd5b600a546001600160a01b03163314156111975782601054101561117f57600080fd5b82601060008282546111919190612972565b90915550505b600a546001600160a01b031633146112d95760165460ff16156111b957600080fd5b60006111c433611063565b600f549091506111d48583612989565b11156111df82611dec565b6040516020016111ef91906129a1565b6040516020818303038152906040529061121c5760405162461bcd60e51b81526004016108c79190612561565b50601054600e5461122d9190612972565b6112378585612989565b11156112725760405162461bcd60e51b815260206004820152600a6024820152694d617820537570706c7960b01b60448201526064016108c7565b83600d5461128091906129d5565b91508134101561128f83611dec565b61129834611dec565b6040516020016112a99291906129f4565b604051602081830303815290604052906112d65760405162461bcd60e51b81526004016108c79190612561565b50505b60015b838111611308576112f6336112f18386612989565b611eea565b8061130081612957565b9150506112dc565b50505050565b6001600160a01b0382163314156113675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60125460ff161561141b5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016108c7565b60165460ff1661142a57600080fd5b8060405160200161143b9190612a4d565b6040516020818303038152906040528051906020012060116040516020016114639190612b03565b60405160208183030381529060405280519060200120146114ba5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b60448201526064016108c7565b600a546001600160a01b03163314156114d257600080fd5b60006114dd60085490565b90506000806114eb33611063565b600f549091506114fb8683612989565b111561150682611dec565b60405160200161151691906129a1565b604051602081830303815290604052906115435760405162461bcd60e51b81526004016108c79190612561565b50601054600e546115549190612972565b61155e8685612989565b11156115995760405162461bcd60e51b815260206004820152600a6024820152694d617820537570706c7960b01b60448201526064016108c7565b6000856014546115a99190612972565b10156115b457600080fd5b6013546115c18683612989565b11156115cc57600080fd5b846015546115da91906129d5565b9150813410156115e983611dec565b6115f234611dec565b6040516020016116039291906129f4565b604051602081830303815290604052906116305760405162461bcd60e51b81526004016108c79190612561565b5084601460008282546116439190612972565b90915550600190505b85811161167357611661336112f18387612989565b8061166b81612957565b91505061164c565b505050505050565b600a546001600160a01b031633146116a55760405162461bcd60e51b81526004016108c79061286a565b6012805461ff001916610100179055565b600a546001600160a01b031633146116e05760405162461bcd60e51b81526004016108c79061286a565b60006116eb60085490565b905080600e546116fb9190612972565b821061170657600080fd5b50601455565b6117163383611af8565b6117325760405162461bcd60e51b81526004016108c7906128da565b61130884848484611f04565b600c8054610a179061289f565b6000818152600260205260409020546060906001600160a01b03166117ca5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c7565b601254610100900460ff1661186b57601780546117e69061289f565b80601f01602080910402602001604051908101604052809291908181526020018280546118129061289f565b801561185f5780601f106118345761010080835404028352916020019161185f565b820191906000526020600020905b81548152906001019060200180831161184257829003601f168201915b50505050509050919050565b6000611875611f37565b9050600081511161189557604051806020016040528060008152506118c3565b8061189f84611dec565b600c6040516020016118b393929190612b0f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146118f45760405162461bcd60e51b81526004016108c79061286a565b601355565b600a546001600160a01b031633146119235760405162461bcd60e51b81526004016108c79061286a565b601555565b600a546001600160a01b031633146119525760405162461bcd60e51b81526004016108c79061286a565b8051610c7d90600c90602084019061240d565b600a546001600160a01b0316331461198f5760405162461bcd60e51b81526004016108c79061286a565b8051610c7d90601790602084019061240d565b600a546001600160a01b031633146119cc5760405162461bcd60e51b81526004016108c79061286a565b6001600160a01b038116611a315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c7565b610e2d81611d9a565b60006001600160e01b031982166380ac58cd60e01b1480611a6b57506001600160e01b03198216635b5e139f60e01b145b8061089757506301ffc9a760e01b6001600160e01b0319831614610897565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611abf82610fec565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b715760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c7565b6000611b7c83610fec565b9050806001600160a01b0316846001600160a01b03161480611bb75750836001600160a01b0316611bac84610975565b6001600160a01b0316145b80611be757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c0282610fec565b6001600160a01b031614611c6a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108c7565b6001600160a01b038216611ccc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c7565b611cd7838383611f46565b611ce2600082611a8a565b6001600160a01b0383166000908152600360205260408120805460019290611d0b908490612972565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d39908490612989565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606081611e105750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e3a5780611e2481612957565b9150611e339050600a83612b62565b9150611e14565b60008167ffffffffffffffff811115611e5557611e5561260a565b6040519080825280601f01601f191660200182016040528015611e7f576020820181803683370190505b5090505b8415611be757611e94600183612972565b9150611ea1600a86612b76565b611eac906030612989565b60f81b818381518110611ec157611ec161292b565b60200101906001600160f81b031916908160001a905350611ee3600a86612b62565b9450611e83565b610c7d828260405180602001604052806000815250611ffe565b611f0f848484611bef565b611f1b84848484612031565b6113085760405162461bcd60e51b81526004016108c790612b8a565b6060600b80546108f29061289f565b6001600160a01b038316611fa157611f9c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fc4565b816001600160a01b0316836001600160a01b031614611fc457611fc4838261212f565b6001600160a01b038216611fdb57610bd8816121cc565b826001600160a01b0316826001600160a01b031614610bd857610bd8828261227b565b61200883836122bf565b6120156000848484612031565b610bd85760405162461bcd60e51b81526004016108c790612b8a565b60006001600160a01b0384163b1561212457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612075903390899088908890600401612bdc565b6020604051808303816000875af19250505080156120b0575060408051601f3d908101601f191682019092526120ad91810190612c19565b60015b61210a573d8080156120de576040519150601f19603f3d011682016040523d82523d6000602084013e6120e3565b606091505b5080516121025760405162461bcd60e51b81526004016108c790612b8a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611be7565b506001949350505050565b6000600161213c84611063565b6121469190612972565b600083815260076020526040902054909150808214612199576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121de90600190612972565b600083815260096020526040812054600880549394509092849081106122065761220661292b565b9060005260206000200154905080600883815481106122275761222761292b565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061225f5761225f612c36565b6001900381819060005260206000200160009055905550505050565b600061228683611063565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123155760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c7565b6000818152600260205260409020546001600160a01b03161561237a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c7565b61238660008383611f46565b6001600160a01b03821660009081526003602052604081208054600192906123af908490612989565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124199061289f565b90600052602060002090601f01602090048101928261243b5760008555612481565b82601f1061245457805160ff1916838001178555612481565b82800160010185558215612481579182015b82811115612481578251825591602001919060010190612466565b5061248d929150612491565b5090565b5b8082111561248d5760008155600101612492565b6001600160e01b031981168114610e2d57600080fd5b6000602082840312156124ce57600080fd5b81356118c3816124a6565b803580151581146124e957600080fd5b919050565b60006020828403121561250057600080fd5b6118c3826124d9565b60005b8381101561252457818101518382015260200161250c565b838111156113085750506000910152565b6000815180845261254d816020860160208601612509565b601f01601f19169290920160200192915050565b6020815260006118c36020830184612535565b60006020828403121561258657600080fd5b5035919050565b80356001600160a01b03811681146124e957600080fd5b600080604083850312156125b757600080fd5b6125c08361258d565b946020939093013593505050565b6000806000606084860312156125e357600080fd5b6125ec8461258d565b92506125fa6020850161258d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561263b5761263b61260a565b604051601f8501601f19908116603f011681019082821181831017156126635761266361260a565b8160405280935085815286868601111561267c57600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126126a757600080fd5b6118c383833560208501612620565b6000602082840312156126c857600080fd5b813567ffffffffffffffff8111156126df57600080fd5b611be784828501612696565b6000602082840312156126fd57600080fd5b6118c38261258d565b6020808252825182820181905260009190848201906040850190845b8181101561273e57835183529284019291840191600101612722565b50909695505050505050565b6000806040838503121561275d57600080fd5b6127668361258d565b9150612774602084016124d9565b90509250929050565b6000806040838503121561279057600080fd5b82359150602083013567ffffffffffffffff8111156127ae57600080fd5b6127ba85828601612696565b9150509250929050565b600080600080608085870312156127da57600080fd5b6127e38561258d565b93506127f16020860161258d565b925060408501359150606085013567ffffffffffffffff81111561281457600080fd5b8501601f8101871361282557600080fd5b61283487823560208401612620565b91505092959194509250565b6000806040838503121561285357600080fd5b61285c8361258d565b91506127746020840161258d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806128b357607f821691505b602082108114156128d457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561296b5761296b612941565b5060010190565b60008282101561298457612984612941565b500390565b6000821982111561299c5761299c612941565b500190565b6b02634b6b4ba103a37b5b2b7160a51b8152600082516129c881600c850160208701612509565b91909101600c0192915050565b60008160001904831182151516156129ef576129ef612941565b500290565b70024b731b7b93932b1ba1030b6b7bab73a1607d1b815260008351612a20816011850160208801612509565b600160fd1b6011918401918201528351612a41816012840160208801612509565b01601201949350505050565b60008251612a5f818460208701612509565b9190910192915050565b8054600090600181811c9080831680612a8357607f831692505b6020808410821415612aa557634e487b7160e01b600052602260045260246000fd5b818015612ab95760018114612aca57612af7565b60ff19861689528489019650612af7565b60008881526020902060005b86811015612aef5781548b820152908501908301612ad6565b505084890196505b50505050505092915050565b60006118c38284612a69565b60008451612b21818460208901612509565b845190830190612b35818360208901612509565b612b4181830186612a69565b979650505050505050565b634e487b7160e01b600052601260045260246000fd5b600082612b7157612b71612b4c565b500490565b600082612b8557612b85612b4c565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c0f90830184612535565b9695505050505050565b600060208284031215612c2b57600080fd5b81516118c3816124a6565b634e487b7160e01b600052603160045260246000fdfea264697066735822122048715e9250ff55df81edb6123b53634ada612e838a0ccecd610bb83c4f7e010d64736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000f4d7574616e7448756d616e436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d48430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d52614d446b6554537145566748587952724d453169564769473247796e4c595334746a64725770597063625900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a5a6d685666665538476d3948467a76427073746939736b696538676d5248664a593959656d786450486d6a2f68696464656e2e6a736f6e00000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c8063611b409511610175578063b35e3b2e116100dc578063d49479eb11610095578063e7b99ec71161006f578063e7b99ec7146107d3578063e985e9c5146107e9578063f2c4ce1e14610832578063f2fde38b1461085257600080fd5b8063d49479eb1461077d578063d5abeb011461079d578063da3ef23f146107b357600080fd5b8063b35e3b2e146106d2578063b88d4fde146106f2578063c668286214610712578063c87b56dd14610727578063cc6753b614610747578063cfb89aba1461076757600080fd5b8063930079a21161012e578063930079a21461064c57806395d89b4114610662578063a0712d6814610677578063a22cb4651461068a578063a3d078a6146106aa578063a475b5dd146106bd57600080fd5b8063611b4095146105ab5780636352211e146105c357806370a08231146105e3578063715018a61461060357806388039d8f146106185780638da5cb5b1461062e57600080fd5b80632782fb2211610219578063438b6300116101d2578063438b6300146104e557806344a0d68a146105125780634f6ccce714610532578063518302271461055257806355f804b3146105715780635c975abb1461059157600080fd5b80632782fb221461043d57806329d80c841461045d5780632d6e71b61461047d5780632f745c591461049d5780633ccfd60b146104bd57806342842e0e146104c557600080fd5b8063095ea7b31161026b578063095ea7b31461039957806312065fe0146103b957806313faede6146103dc57806318160ddd146103f2578063239c70ae1461040757806323b872dd1461041d57600080fd5b806301ffc9a7146102b357806302329a29146102e857806306fdde031461030a578063081812fc1461032c578063081c8c4414610364578063088a4ed014610379575b600080fd5b3480156102bf57600080fd5b506102d36102ce3660046124bc565b610872565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506103086103033660046124ee565b61089d565b005b34801561031657600080fd5b5061031f6108e3565b6040516102df9190612561565b34801561033857600080fd5b5061034c610347366004612574565b610975565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061031f610a0a565b34801561038557600080fd5b50610308610394366004612574565b610a98565b3480156103a557600080fd5b506103086103b43660046125a4565b610ac7565b3480156103c557600080fd5b506103ce610bdd565b6040519081526020016102df565b3480156103e857600080fd5b506103ce600d5481565b3480156103fe57600080fd5b506008546103ce565b34801561041357600080fd5b506103ce600f5481565b34801561042957600080fd5b506103086104383660046125ce565b610c0f565b34801561044957600080fd5b506103086104583660046126b6565b610c40565b34801561046957600080fd5b506103086104783660046124ee565b610c81565b34801561048957600080fd5b50610308610498366004612574565b610ccd565b3480156104a957600080fd5b506103ce6104b83660046125a4565b610cfc565b610308610d92565b3480156104d157600080fd5b506103086104e03660046125ce565b610e30565b3480156104f157600080fd5b506105056105003660046126eb565b610e4b565b6040516102df9190612706565b34801561051e57600080fd5b5061030861052d366004612574565b610eed565b34801561053e57600080fd5b506103ce61054d366004612574565b610f1c565b34801561055e57600080fd5b506012546102d390610100900460ff1681565b34801561057d57600080fd5b5061030861058c3660046126b6565b610faf565b34801561059d57600080fd5b506012546102d39060ff1681565b3480156105b757600080fd5b5060165460ff166102d3565b3480156105cf57600080fd5b5061034c6105de366004612574565b610fec565b3480156105ef57600080fd5b506103ce6105fe3660046126eb565b611063565b34801561060f57600080fd5b506103086110ea565b34801561062457600080fd5b506103ce60145481565b34801561063a57600080fd5b50600a546001600160a01b031661034c565b34801561065857600080fd5b506103ce60105481565b34801561066e57600080fd5b5061031f611120565b610308610685366004612574565b61112f565b34801561069657600080fd5b506103086106a536600461274a565b61130e565b6103086106b836600461277d565b6113d3565b3480156106c957600080fd5b5061030861167b565b3480156106de57600080fd5b506103086106ed366004612574565b6116b6565b3480156106fe57600080fd5b5061030861070d3660046127c4565b61170c565b34801561071e57600080fd5b5061031f61173e565b34801561073357600080fd5b5061031f610742366004612574565b61174b565b34801561075357600080fd5b50610308610762366004612574565b6118ca565b34801561077357600080fd5b506103ce60135481565b34801561078957600080fd5b50610308610798366004612574565b6118f9565b3480156107a957600080fd5b506103ce600e5481565b3480156107bf57600080fd5b506103086107ce3660046126b6565b611928565b3480156107df57600080fd5b506103ce60155481565b3480156107f557600080fd5b506102d3610804366004612840565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083e57600080fd5b5061030861084d3660046126b6565b611965565b34801561085e57600080fd5b5061030861086d3660046126eb565b6119a2565b60006001600160e01b0319821663780e9d6360e01b1480610897575061089782611a3a565b92915050565b600a546001600160a01b031633146108d05760405162461bcd60e51b81526004016108c79061286a565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108f29061289f565b80601f016020809104026020016040519081016040528092919081815260200182805461091e9061289f565b801561096b5780601f106109405761010080835404028352916020019161096b565b820191906000526020600020905b81548152906001019060200180831161094e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109ee5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c7565b506000908152600460205260409020546001600160a01b031690565b60178054610a179061289f565b80601f0160208091040260200160405190810160405280929190818152602001828054610a439061289f565b8015610a905780601f10610a6557610100808354040283529160200191610a90565b820191906000526020600020905b815481529060010190602001808311610a7357829003601f168201915b505050505081565b600a546001600160a01b03163314610ac25760405162461bcd60e51b81526004016108c79061286a565b600f55565b6000610ad282610fec565b9050806001600160a01b0316836001600160a01b03161415610b405760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c7565b336001600160a01b0382161480610b5c5750610b5c8133610804565b610bce5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c7565b610bd88383611a8a565b505050565b600a546000906001600160a01b03163314610c0a5760405162461bcd60e51b81526004016108c79061286a565b504790565b610c193382611af8565b610c355760405162461bcd60e51b81526004016108c7906128da565b610bd8838383611bef565b600a546001600160a01b03163314610c6a5760405162461bcd60e51b81526004016108c79061286a565b8051610c7d90601190602084019061240d565b5050565b600a546001600160a01b03163314610cab5760405162461bcd60e51b81526004016108c79061286a565b600060145411610cba57600080fd5b6016805460ff1916911515919091179055565b600a546001600160a01b03163314610cf75760405162461bcd60e51b81526004016108c79061286a565b601055565b6000610d0783611063565b8210610d695760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108c7565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dbc5760405162461bcd60e51b81526004016108c79061286a565b6000610dd0600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e1a576040519150601f19603f3d011682016040523d82523d6000602084013e610e1f565b606091505b5050905080610e2d57600080fd5b50565b610bd88383836040518060200160405280600081525061170c565b60606000610e5883611063565b905060008167ffffffffffffffff811115610e7557610e7561260a565b604051908082528060200260200182016040528015610e9e578160200160208202803683370190505b50905060005b82811015610ee557610eb68582610cfc565b828281518110610ec857610ec861292b565b602090810291909101015280610edd81612957565b915050610ea4565b509392505050565b600a546001600160a01b03163314610f175760405162461bcd60e51b81526004016108c79061286a565b600d55565b6000610f2760085490565b8210610f8a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108c7565b60088281548110610f9d57610f9d61292b565b90600052602060002001549050919050565b600a546001600160a01b03163314610fd95760405162461bcd60e51b81526004016108c79061286a565b8051610c7d90600b90602084019061240d565b6000818152600260205260408120546001600160a01b0316806108975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c7565b60006001600160a01b0382166110ce5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c7565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111145760405162461bcd60e51b81526004016108c79061286a565b61111e6000611d9a565b565b6060600180546108f29061289f565b600061113a60085490565b60125490915060009060ff161561115057600080fd5b6000831161115d57600080fd5b600a546001600160a01b03163314156111975782601054101561117f57600080fd5b82601060008282546111919190612972565b90915550505b600a546001600160a01b031633146112d95760165460ff16156111b957600080fd5b60006111c433611063565b600f549091506111d48583612989565b11156111df82611dec565b6040516020016111ef91906129a1565b6040516020818303038152906040529061121c5760405162461bcd60e51b81526004016108c79190612561565b50601054600e5461122d9190612972565b6112378585612989565b11156112725760405162461bcd60e51b815260206004820152600a6024820152694d617820537570706c7960b01b60448201526064016108c7565b83600d5461128091906129d5565b91508134101561128f83611dec565b61129834611dec565b6040516020016112a99291906129f4565b604051602081830303815290604052906112d65760405162461bcd60e51b81526004016108c79190612561565b50505b60015b838111611308576112f6336112f18386612989565b611eea565b8061130081612957565b9150506112dc565b50505050565b6001600160a01b0382163314156113675760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c7565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60125460ff161561141b5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b60448201526064016108c7565b60165460ff1661142a57600080fd5b8060405160200161143b9190612a4d565b6040516020818303038152906040528051906020012060116040516020016114639190612b03565b60405160208183030381529060405280519060200120146114ba5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b60448201526064016108c7565b600a546001600160a01b03163314156114d257600080fd5b60006114dd60085490565b90506000806114eb33611063565b600f549091506114fb8683612989565b111561150682611dec565b60405160200161151691906129a1565b604051602081830303815290604052906115435760405162461bcd60e51b81526004016108c79190612561565b50601054600e546115549190612972565b61155e8685612989565b11156115995760405162461bcd60e51b815260206004820152600a6024820152694d617820537570706c7960b01b60448201526064016108c7565b6000856014546115a99190612972565b10156115b457600080fd5b6013546115c18683612989565b11156115cc57600080fd5b846015546115da91906129d5565b9150813410156115e983611dec565b6115f234611dec565b6040516020016116039291906129f4565b604051602081830303815290604052906116305760405162461bcd60e51b81526004016108c79190612561565b5084601460008282546116439190612972565b90915550600190505b85811161167357611661336112f18387612989565b8061166b81612957565b91505061164c565b505050505050565b600a546001600160a01b031633146116a55760405162461bcd60e51b81526004016108c79061286a565b6012805461ff001916610100179055565b600a546001600160a01b031633146116e05760405162461bcd60e51b81526004016108c79061286a565b60006116eb60085490565b905080600e546116fb9190612972565b821061170657600080fd5b50601455565b6117163383611af8565b6117325760405162461bcd60e51b81526004016108c7906128da565b61130884848484611f04565b600c8054610a179061289f565b6000818152600260205260409020546060906001600160a01b03166117ca5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c7565b601254610100900460ff1661186b57601780546117e69061289f565b80601f01602080910402602001604051908101604052809291908181526020018280546118129061289f565b801561185f5780601f106118345761010080835404028352916020019161185f565b820191906000526020600020905b81548152906001019060200180831161184257829003601f168201915b50505050509050919050565b6000611875611f37565b9050600081511161189557604051806020016040528060008152506118c3565b8061189f84611dec565b600c6040516020016118b393929190612b0f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146118f45760405162461bcd60e51b81526004016108c79061286a565b601355565b600a546001600160a01b031633146119235760405162461bcd60e51b81526004016108c79061286a565b601555565b600a546001600160a01b031633146119525760405162461bcd60e51b81526004016108c79061286a565b8051610c7d90600c90602084019061240d565b600a546001600160a01b0316331461198f5760405162461bcd60e51b81526004016108c79061286a565b8051610c7d90601790602084019061240d565b600a546001600160a01b031633146119cc5760405162461bcd60e51b81526004016108c79061286a565b6001600160a01b038116611a315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c7565b610e2d81611d9a565b60006001600160e01b031982166380ac58cd60e01b1480611a6b57506001600160e01b03198216635b5e139f60e01b145b8061089757506301ffc9a760e01b6001600160e01b0319831614610897565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611abf82610fec565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b715760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c7565b6000611b7c83610fec565b9050806001600160a01b0316846001600160a01b03161480611bb75750836001600160a01b0316611bac84610975565b6001600160a01b0316145b80611be757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c0282610fec565b6001600160a01b031614611c6a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108c7565b6001600160a01b038216611ccc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c7565b611cd7838383611f46565b611ce2600082611a8a565b6001600160a01b0383166000908152600360205260408120805460019290611d0b908490612972565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d39908490612989565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b606081611e105750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e3a5780611e2481612957565b9150611e339050600a83612b62565b9150611e14565b60008167ffffffffffffffff811115611e5557611e5561260a565b6040519080825280601f01601f191660200182016040528015611e7f576020820181803683370190505b5090505b8415611be757611e94600183612972565b9150611ea1600a86612b76565b611eac906030612989565b60f81b818381518110611ec157611ec161292b565b60200101906001600160f81b031916908160001a905350611ee3600a86612b62565b9450611e83565b610c7d828260405180602001604052806000815250611ffe565b611f0f848484611bef565b611f1b84848484612031565b6113085760405162461bcd60e51b81526004016108c790612b8a565b6060600b80546108f29061289f565b6001600160a01b038316611fa157611f9c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fc4565b816001600160a01b0316836001600160a01b031614611fc457611fc4838261212f565b6001600160a01b038216611fdb57610bd8816121cc565b826001600160a01b0316826001600160a01b031614610bd857610bd8828261227b565b61200883836122bf565b6120156000848484612031565b610bd85760405162461bcd60e51b81526004016108c790612b8a565b60006001600160a01b0384163b1561212457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612075903390899088908890600401612bdc565b6020604051808303816000875af19250505080156120b0575060408051601f3d908101601f191682019092526120ad91810190612c19565b60015b61210a573d8080156120de576040519150601f19603f3d011682016040523d82523d6000602084013e6120e3565b606091505b5080516121025760405162461bcd60e51b81526004016108c790612b8a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611be7565b506001949350505050565b6000600161213c84611063565b6121469190612972565b600083815260076020526040902054909150808214612199576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121de90600190612972565b600083815260096020526040812054600880549394509092849081106122065761220661292b565b9060005260206000200154905080600883815481106122275761222761292b565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061225f5761225f612c36565b6001900381819060005260206000200160009055905550505050565b600061228683611063565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123155760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c7565b6000818152600260205260409020546001600160a01b03161561237a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c7565b61238660008383611f46565b6001600160a01b03821660009081526003602052604081208054600192906123af908490612989565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124199061289f565b90600052602060002090601f01602090048101928261243b5760008555612481565b82601f1061245457805160ff1916838001178555612481565b82800160010185558215612481579182015b82811115612481578251825591602001919060010190612466565b5061248d929150612491565b5090565b5b8082111561248d5760008155600101612492565b6001600160e01b031981168114610e2d57600080fd5b6000602082840312156124ce57600080fd5b81356118c3816124a6565b803580151581146124e957600080fd5b919050565b60006020828403121561250057600080fd5b6118c3826124d9565b60005b8381101561252457818101518382015260200161250c565b838111156113085750506000910152565b6000815180845261254d816020860160208601612509565b601f01601f19169290920160200192915050565b6020815260006118c36020830184612535565b60006020828403121561258657600080fd5b5035919050565b80356001600160a01b03811681146124e957600080fd5b600080604083850312156125b757600080fd5b6125c08361258d565b946020939093013593505050565b6000806000606084860312156125e357600080fd5b6125ec8461258d565b92506125fa6020850161258d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561263b5761263b61260a565b604051601f8501601f19908116603f011681019082821181831017156126635761266361260a565b8160405280935085815286868601111561267c57600080fd5b858560208301376000602087830101525050509392505050565b600082601f8301126126a757600080fd5b6118c383833560208501612620565b6000602082840312156126c857600080fd5b813567ffffffffffffffff8111156126df57600080fd5b611be784828501612696565b6000602082840312156126fd57600080fd5b6118c38261258d565b6020808252825182820181905260009190848201906040850190845b8181101561273e57835183529284019291840191600101612722565b50909695505050505050565b6000806040838503121561275d57600080fd5b6127668361258d565b9150612774602084016124d9565b90509250929050565b6000806040838503121561279057600080fd5b82359150602083013567ffffffffffffffff8111156127ae57600080fd5b6127ba85828601612696565b9150509250929050565b600080600080608085870312156127da57600080fd5b6127e38561258d565b93506127f16020860161258d565b925060408501359150606085013567ffffffffffffffff81111561281457600080fd5b8501601f8101871361282557600080fd5b61283487823560208401612620565b91505092959194509250565b6000806040838503121561285357600080fd5b61285c8361258d565b91506127746020840161258d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806128b357607f821691505b602082108114156128d457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561296b5761296b612941565b5060010190565b60008282101561298457612984612941565b500390565b6000821982111561299c5761299c612941565b500190565b6b02634b6b4ba103a37b5b2b7160a51b8152600082516129c881600c850160208701612509565b91909101600c0192915050565b60008160001904831182151516156129ef576129ef612941565b500290565b70024b731b7b93932b1ba1030b6b7bab73a1607d1b815260008351612a20816011850160208801612509565b600160fd1b6011918401918201528351612a41816012840160208801612509565b01601201949350505050565b60008251612a5f818460208701612509565b9190910192915050565b8054600090600181811c9080831680612a8357607f831692505b6020808410821415612aa557634e487b7160e01b600052602260045260246000fd5b818015612ab95760018114612aca57612af7565b60ff19861689528489019650612af7565b60008881526020902060005b86811015612aef5781548b820152908501908301612ad6565b505084890196505b50505050505092915050565b60006118c38284612a69565b60008451612b21818460208901612509565b845190830190612b35818360208901612509565b612b4181830186612a69565b979650505050505050565b634e487b7160e01b600052601260045260246000fd5b600082612b7157612b71612b4c565b500490565b600082612b8557612b85612b4c565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c0f90830184612535565b9695505050505050565b600060208284031215612c2b57600080fd5b81516118c3816124a6565b634e487b7160e01b600052603160045260246000fdfea264697066735822122048715e9250ff55df81edb6123b53634ada612e838a0ccecd610bb83c4f7e010d64736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000f4d7574616e7448756d616e436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d48430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d52614d446b6554537145566748587952724d453169564769473247796e4c595334746a64725770597063625900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a5a6d685666665538476d3948467a76427073746939736b696538676d5248664a593959656d786450486d6a2f68696464656e2e6a736f6e00000000

-----Decoded View---------------
Arg [0] : _name (string): MutantHumanClub
Arg [1] : _symbol (string): MHC
Arg [2] : _initBaseURI (string): https://gateway.pinata.cloud/ipfs/QmRaMDkeTSqEVgHXyRrME1iVGiG2GynLYS4tjdrWpYpcbY
Arg [3] : _initNotRevealedUri (string): https://gateway.pinata.cloud/ipfs/QmZZmhVffU8Gm9HFzvBpsti9skie8gmRHfJY9YemxdPHmj/hidden.json

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [5] : 4d7574616e7448756d616e436c75620000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4d48430000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [9] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [10] : 732f516d52614d446b6554537145566748587952724d45316956476947324779
Arg [11] : 6e4c595334746a64725770597063625900000000000000000000000000000000
Arg [12] : 000000000000000000000000000000000000000000000000000000000000005c
Arg [13] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [14] : 732f516d5a5a6d685666665538476d3948467a76427073746939736b69653867
Arg [15] : 6d5248664a593959656d786450486d6a2f68696464656e2e6a736f6e00000000


Deployed Bytecode Sourcemap

45131:7168:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38682:300;;;;;;;;;;-1:-1:-1;38682:300:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38682:300:0;;;;;;;;51363:79;;;;;;;;;;-1:-1:-1;51363:79:0;;;;;:::i;:::-;;:::i;:::-;;25846:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27539:308::-;;;;;;;;;;-1:-1:-1;27539:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;27539:308:0;1878:203:1;45769:28:0;;;;;;;;;;;;;:::i;50663:122::-;;;;;;;;;;-1:-1:-1;50663:122:0;;;;;:::i;:::-;;:::i;27062:411::-;;;;;;;;;;-1:-1:-1;27062:411:0;;;;;:::i;:::-;;:::i;52086:109::-;;;;;;;;;;;;;:::i;:::-;;;2669:25:1;;;2657:2;2642:18;52086:109:0;2523:177:1;45291:39:0;;;;;;;;;;;;;;;;39485:113;;;;;;;;;;-1:-1:-1;39573:10:0;:17;39485:113;;45375:32;;;;;;;;;;;;;;;;28598:376;;;;;;;;;;-1:-1:-1;28598:376:0;;;;;:::i;:::-;;:::i;51595:106::-;;;;;;;;;;-1:-1:-1;51595:106:0;;;;;:::i;:::-;;:::i;51450:137::-;;;;;;;;;;-1:-1:-1;51450:137:0;;;;;:::i;:::-;;:::i;50346:103::-;;;;;;;;;;-1:-1:-1;50346:103:0;;;;;:::i;:::-;;:::i;39066:343::-;;;;;;;;;;-1:-1:-1;39066:343:0;;;;;:::i;:::-;;:::i;51923:155::-;;;:::i;29045:185::-;;;;;;;;;;-1:-1:-1;29045:185:0;;;;;:::i;:::-;;:::i;49118:392::-;;;;;;;;;;-1:-1:-1;49118:392:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50457:86::-;;;;;;;;;;-1:-1:-1;50457:86:0;;;;;:::i;:::-;;:::i;39675:320::-;;;;;;;;;;-1:-1:-1;39675:320:0;;;;;:::i;:::-;;:::i;45524:28::-;;;;;;;;;;-1:-1:-1;45524:28:0;;;;;;;;;;;51092:104;;;;;;;;;;-1:-1:-1;51092:104:0;;;;;:::i;:::-;;:::i;45491:26::-;;;;;;;;;;-1:-1:-1;45491:26:0;;;;;;;;52203:93;;;;;;;;;;-1:-1:-1;52273:15:0;;;;52203:93;;25453:326;;;;;;;;;;-1:-1:-1;25453:326:0;;;;;:::i;:::-;;:::i;25096:295::-;;;;;;;;;;-1:-1:-1;25096:295:0;;;;;:::i;:::-;;:::i;4638:94::-;;;;;;;;;;;;;:::i;45624:39::-;;;;;;;;;;;;;;;;3987:87;;;;;;;;;;-1:-1:-1;4060:6:0;;-1:-1:-1;;;;;4060:6:0;3987:87;;45414:35;;;;;;;;;;;;;;;;26015:104;;;;;;;;;;;;;:::i;47758:1352::-;;;;;;:::i;:::-;;:::i;27919:327::-;;;;;;;;;;-1:-1:-1;27919:327:0;;;;;:::i;:::-;;:::i;46224:1511::-;;;;;;:::i;:::-;;:::i;50269:69::-;;;;;;;;;;;;;:::i;51709:206::-;;;;;;;;;;-1:-1:-1;51709:206:0;;;;;:::i;:::-;;:::i;29301:365::-;;;;;;;;;;-1:-1:-1;29301:365:0;;;;;:::i;:::-;;:::i;45247:37::-;;;;;;;;;;;;;:::i;49518:725::-;;;;;;;;;;-1:-1:-1;49518:725:0;;;;;:::i;:::-;;:::i;50793:157::-;;;;;;;;;;-1:-1:-1;50793:157:0;;;;;:::i;:::-;;:::i;45579:38::-;;;;;;;;;;;;;;;;50551:104;;;;;;;;;;-1:-1:-1;50551:104:0;;;;;:::i;:::-;;:::i;45337:31::-;;;;;;;;;;;;;;;;51204:151;;;;;;;;;;-1:-1:-1;51204:151:0;;;;;:::i;:::-;;:::i;45670:48::-;;;;;;;;;;;;;;;;28317:214;;;;;;;;;;-1:-1:-1;28317:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;28488:25:0;;;28459:4;28488:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28317:214;50958:126;;;;;;;;;;-1:-1:-1;50958:126:0;;;;;:::i;:::-;;:::i;4887:229::-;;;;;;;;;;-1:-1:-1;4887:229:0;;;;;:::i;:::-;;:::i;38682:300::-;38829:4;-1:-1:-1;;;;;;38871:50:0;;-1:-1:-1;;;38871:50:0;;:103;;;38938:36;38962:11;38938:23;:36::i;:::-;38851:123;38682:300;-1:-1:-1;;38682:300:0:o;51363:79::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;;;;;;;;;51419:6:::1;:15:::0;;-1:-1:-1;;51419:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51363:79::o;25846:100::-;25900:13;25933:5;25926:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25846:100;:::o;27539:308::-;27660:7;31302:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31302:16:0;27685:110;;;;-1:-1:-1;;;27685:110:0;;7728:2:1;27685:110:0;;;7710:21:1;7767:2;7747:18;;;7740:30;7806:34;7786:18;;;7779:62;-1:-1:-1;;;7857:18:1;;;7850:42;7909:19;;27685:110:0;7526:408:1;27685:110:0;-1:-1:-1;27815:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27815:24:0;;27539:308::o;45769:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50663:122::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;50744:13:::1;:33:::0;50663:122::o;27062:411::-;27143:13;27159:23;27174:7;27159:14;:23::i;:::-;27143:39;;27207:5;-1:-1:-1;;;;;27201:11:0;:2;-1:-1:-1;;;;;27201:11:0;;;27193:57;;;;-1:-1:-1;;;27193:57:0;;8141:2:1;27193:57:0;;;8123:21:1;8180:2;8160:18;;;8153:30;8219:34;8199:18;;;8192:62;-1:-1:-1;;;8270:18:1;;;8263:31;8311:19;;27193:57:0;7939:397:1;27193:57:0;2836:10;-1:-1:-1;;;;;27285:21:0;;;;:62;;-1:-1:-1;27310:37:0;27327:5;2836:10;28317:214;:::i;27310:37::-;27263:168;;;;-1:-1:-1;;;27263:168:0;;8543:2:1;27263:168:0;;;8525:21:1;8582:2;8562:18;;;8555:30;8621:34;8601:18;;;8594:62;8692:26;8672:18;;;8665:54;8736:19;;27263:168:0;8341:420:1;27263:168:0;27444:21;27453:2;27457:7;27444:8;:21::i;:::-;27132:341;27062:411;;:::o;52086:109::-;4060:6;;52139:7;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;-1:-1:-1;52166:21:0::1;52086:109:::0;:::o;28598:376::-;28807:41;2836:10;28840:7;28807:18;:41::i;:::-;28785:140;;;;-1:-1:-1;;;28785:140:0;;;;;;;:::i;:::-;28938:28;28948:4;28954:2;28958:7;28938:9;:28::i;51595:106::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;51671:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51595:106:::0;:::o;51450:137::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;51542:1:::1;51522:17;;:21;51514:30;;;::::0;::::1;;51555:15;:24:::0;;-1:-1:-1;;51555:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51450:137::o;50346:103::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;50414:15:::1;:27:::0;50346:103::o;39066:343::-;39208:7;39263:23;39280:5;39263:16;:23::i;:::-;39255:5;:31;39233:124;;;;-1:-1:-1;;;39233:124:0;;9386:2:1;39233:124:0;;;9368:21:1;9425:2;9405:18;;;9398:30;9464:34;9444:18;;;9437:62;-1:-1:-1;;;9515:18:1;;;9508:41;9566:19;;39233:124:0;9184:407:1;39233:124:0;-1:-1:-1;;;;;;39375:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39066:343::o;51923:155::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;51980:7:::1;52001;4060:6:::0;;-1:-1:-1;;;;;4060:6:0;;3987:87;52001:7:::1;-1:-1:-1::0;;;;;51993:21:0::1;52022;51993:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51979:69;;;52067:2;52059:11;;;::::0;::::1;;51968:110;51923:155::o:0;29045:185::-;29183:39;29200:4;29206:2;29210:7;29183:39;;;;;;;;;;;;:16;:39::i;49118:392::-;49205:16;49239:23;49265:17;49275:6;49265:9;:17::i;:::-;49239:43;;49293:25;49335:15;49321:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49321:30:0;;49293:58;;49369:9;49364:113;49384:15;49380:1;:19;49364:113;;;49435:30;49455:6;49463:1;49435:19;:30::i;:::-;49421:8;49430:1;49421:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;49401:3;;;;:::i;:::-;;;;49364:113;;;-1:-1:-1;49494:8:0;49118:392;-1:-1:-1;;;49118:392:0:o;50457:86::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;50520:4:::1;:15:::0;50457:86::o;39675:320::-;39795:7;39850:30;39573:10;:17;;39485:113;39850:30;39842:5;:38;39820:132;;;;-1:-1:-1;;;39820:132:0;;10412:2:1;39820:132:0;;;10394:21:1;10451:2;10431:18;;;10424:30;10490:34;10470:18;;;10463:62;-1:-1:-1;;;10541:18:1;;;10534:42;10593:19;;39820:132:0;10210:408:1;39820:132:0;39970:10;39981:5;39970:17;;;;;;;;:::i;:::-;;;;;;;;;39963:24;;39675:320;;;:::o;51092:104::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;51167:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;25453:326::-:0;25570:7;25611:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25611:16:0;25660:19;25638:110;;;;-1:-1:-1;;;25638:110:0;;10825:2:1;25638:110:0;;;10807:21:1;10864:2;10844:18;;;10837:30;10903:34;10883:18;;;10876:62;-1:-1:-1;;;10954:18:1;;;10947:39;11003:19;;25638:110:0;10623:405:1;25096:295:0;25213:7;-1:-1:-1;;;;;25260:19:0;;25238:111;;;;-1:-1:-1;;;25238:111:0;;11235:2:1;25238:111:0;;;11217:21:1;11274:2;11254:18;;;11247:30;11313:34;11293:18;;;11286:62;-1:-1:-1;;;11364:18:1;;;11357:40;11414:19;;25238:111:0;11033:406:1;25238:111:0;-1:-1:-1;;;;;;25367:16:0;;;;;:9;:16;;;;;;;25096:295::o;4638:94::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;4703:21:::1;4721:1;4703:9;:21::i;:::-;4638:94::o:0;26015:104::-;26071:13;26104:7;26097:14;;;;;:::i;47758:1352::-;47819:14;47836:13;39573:10;:17;;39485:113;47836:13;47901:6;;47819:30;;-1:-1:-1;47860:19:0;;47901:6;;47900:7;47892:16;;;;;;47941:1;47927:11;:15;47919:24;;;;;;4060:6;;-1:-1:-1;;;;;4060:6:0;47978:10;:21;47974:138;;;48043:11;48024:15;;:30;;48016:39;;;;;;48089:11;48070:15;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;;47974:138:0;4060:6;;-1:-1:-1;;;;;4060:6:0;48128:10;:21;48124:864;;48175:15;;;;48174:16;48166:25;;;;;;48206:18;48227:21;48237:10;48227:9;:21::i;:::-;48319:13;;48206:42;;-1:-1:-1;48291:24:0;48304:11;48206:42;48291:24;:::i;:::-;:41;;48391:21;:10;:19;:21::i;:::-;48358:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;48265:164;;;;;-1:-1:-1;;;48265:164:0;;;;;;;;:::i;:::-;;48506:15;;48494:9;;:27;;;;:::i;:::-;48470:20;48479:11;48470:6;:20;:::i;:::-;:51;;48444:123;;;;-1:-1:-1;;;48444:123:0;;12345:2:1;48444:123:0;;;12327:21:1;12384:2;12364:18;;;12357:30;-1:-1:-1;;;12403:18:1;;;12396:40;12453:18;;48444:123:0;12143:334:1;48444:123:0;48605:11;48598:4;;:18;;;;:::i;:::-;48584:32;;48672:11;48659:9;:24;;48820:22;:11;:20;:22::i;:::-;48899:20;:9;:18;:20::i;:::-;48731:211;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48633:343;;;;;-1:-1:-1;;;48633:343:0;;;;;;;;:::i;:::-;;48151:837;48124:864;49017:1;49000:103;49025:11;49020:1;:16;49000:103;;49058:33;49068:10;49080;49089:1;49080:6;:10;:::i;:::-;49058:9;:33::i;:::-;49038:3;;;;:::i;:::-;;;;49000:103;;;;47808:1302;;47758:1352;:::o;27919:327::-;-1:-1:-1;;;;;28054:24:0;;2836:10;28054:24;;28046:62;;;;-1:-1:-1;;;28046:62:0;;13626:2:1;28046:62:0;;;13608:21:1;13665:2;13645:18;;;13638:30;13704:27;13684:18;;;13677:55;13749:18;;28046:62:0;13424:349:1;28046:62:0;2836:10;28121:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28121:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28121:53:0;;;;;;;;;;28190:48;;540:41:1;;;28121:42:0;;2836:10;28190:48;;513:18:1;28190:48:0;;;;;;;27919:327;;:::o;46224:1511::-;46350:6;;;;46349:7;46341:38;;;;-1:-1:-1;;;46341:38:0;;13980:2:1;46341:38:0;;;13962:21:1;14019:2;13999:18;;;13992:30;-1:-1:-1;;;14038:18:1;;;14031:48;14096:18;;46341:38:0;13778:342:1;46341:38:0;46398:15;;;;46390:24;;;;;;46536:10;46518:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;46508:41;;;;;;46475:9;46457:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;46447:40;;;;;;:102;46425:169;;;;-1:-1:-1;;;46425:169:0;;15914:2:1;46425:169:0;;;15896:21:1;15953:2;15933:18;;;15926:30;-1:-1:-1;;;15972:18:1;;;15965:47;16029:18;;46425:169:0;15712:341:1;46425:169:0;4060:6;;-1:-1:-1;;;;;4060:6:0;46613:10;:21;;46605:30;;;;;;46648:14;46665:13;39573:10;:17;;39485:113;46665:13;46648:30;;46689:19;46721:18;46742:21;46752:10;46742:9;:21::i;:::-;46826:13;;46721:42;;-1:-1:-1;46798:24:0;46811:11;46721:42;46798:24;:::i;:::-;:41;;46894:21;:10;:19;:21::i;:::-;46861:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;46776:152;;;;;-1:-1:-1;;;46776:152:0;;;;;;;;:::i;:::-;;46997:15;;46985:9;;:27;;;;:::i;:::-;46961:20;46970:11;46961:6;:20;:::i;:::-;:51;;46939:111;;;;-1:-1:-1;;;46939:111:0;;12345:2:1;46939:111:0;;;12327:21:1;12384:2;12364:18;;;12357:30;-1:-1:-1;;;12403:18:1;;;12396:40;12453:18;;46939:111:0;12143:334:1;46939:111:0;47128:1;47113:11;47093:17;;:31;;;;:::i;:::-;:36;;47085:45;;;;;;47177:19;;47149:24;47162:11;47149:10;:24;:::i;:::-;:47;;47141:56;;;;;;47240:11;47224:13;;:27;;;;:::i;:::-;47210:41;;47299:11;47286:9;:24;;47431:22;:11;:20;:22::i;:::-;47502:20;:9;:18;:20::i;:::-;47350:191;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47264:303;;;;;-1:-1:-1;;;47264:303:0;;;;;;;;:::i;:::-;;47601:11;47580:17;;:32;;;;;;;:::i;:::-;;;;-1:-1:-1;47642:1:0;;-1:-1:-1;47625:103:0;47650:11;47645:1;:16;47625:103;;47683:33;47693:10;47705;47714:1;47705:6;:10;:::i;47683:33::-;47663:3;;;;:::i;:::-;;;;47625:103;;;;46330:1405;;;46224:1511;;:::o;50269:69::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;50315:8:::1;:15:::0;;-1:-1:-1;;50315:15:0::1;;;::::0;;50269:69::o;51709:206::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;51783:19:::1;51805:13;39573:10:::0;:17;;39485:113;51805:13:::1;51783:35;;51858:11;51846:9;;:23;;;;:::i;:::-;51837:6;:32;51829:41;;;::::0;::::1;;-1:-1:-1::0;51881:17:0::1;:26:::0;51709:206::o;29301:365::-;29490:41;2836:10;29523:7;29490:18;:41::i;:::-;29468:140;;;;-1:-1:-1;;;29468:140:0;;;;;;;:::i;:::-;29619:39;29633:4;29639:2;29643:7;29652:5;29619:13;:39::i;45247:37::-;;;;;;;:::i;49518:725::-;31278:4;31302:16;;;:7;:16;;;;;;49636:13;;-1:-1:-1;;;;;31302:16:0;49667:113;;;;-1:-1:-1;;;49667:113:0;;16260:2:1;49667:113:0;;;16242:21:1;16299:2;16279:18;;;16272:30;16338:34;16318:18;;;16311:62;-1:-1:-1;;;16389:18:1;;;16382:45;16444:19;;49667:113:0;16058:411:1;49667:113:0;49797:8;;;;;;;49793:71;;49838:14;49831:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49518:725;;;:::o;49793:71::-;49876:28;49907:10;:8;:10::i;:::-;49876:41;;49979:1;49954:14;49948:28;:32;:287;;;;;;;;;;;;;;;;;50072:14;50113:18;:7;:16;:18::i;:::-;50158:13;50029:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49948:287;49928:307;49518:725;-1:-1:-1;;;49518:725:0:o;50793:157::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;50903:19:::1;:39:::0;50793:157::o;50551:104::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;50623:13:::1;:24:::0;50551:104::o;51204:151::-;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;51314:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;50958:126::-:0;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;51044:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;4887:229::-:0;4060:6;;-1:-1:-1;;;;;4060:6:0;2836:10;4207:23;4199:68;;;;-1:-1:-1;;;4199:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4990:22:0;::::1;4968:110;;;::::0;-1:-1:-1;;;4968:110:0;;17231:2:1;4968:110:0::1;::::0;::::1;17213:21:1::0;17270:2;17250:18;;;17243:30;17309:34;17289:18;;;17282:62;-1:-1:-1;;;17360:18:1;;;17353:36;17406:19;;4968:110:0::1;17029:402:1::0;4968:110:0::1;5089:19;5099:8;5089:9;:19::i;24677:355::-:0;24824:4;-1:-1:-1;;;;;;24866:40:0;;-1:-1:-1;;;24866:40:0;;:105;;-1:-1:-1;;;;;;;24923:48:0;;-1:-1:-1;;;24923:48:0;24866:105;:158;;;-1:-1:-1;;;;;;;;;;16618:40:0;;;24988:36;16459:207;35336:174;35411:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35411:29:0;-1:-1:-1;;;;;35411:29:0;;;;;;;;:24;;35465:23;35411:24;35465:14;:23::i;:::-;-1:-1:-1;;;;;35456:46:0;;;;;;;;;;;35336:174;;:::o;31507:452::-;31636:4;31302:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31302:16:0;31658:110;;;;-1:-1:-1;;;31658:110:0;;17638:2:1;31658:110:0;;;17620:21:1;17677:2;17657:18;;;17650:30;17716:34;17696:18;;;17689:62;-1:-1:-1;;;17767:18:1;;;17760:42;17819:19;;31658:110:0;17436:408:1;31658:110:0;31779:13;31795:23;31810:7;31795:14;:23::i;:::-;31779:39;;31848:5;-1:-1:-1;;;;;31837:16:0;:7;-1:-1:-1;;;;;31837:16:0;;:64;;;;31894:7;-1:-1:-1;;;;;31870:31:0;:20;31882:7;31870:11;:20::i;:::-;-1:-1:-1;;;;;31870:31:0;;31837:64;:113;;;-1:-1:-1;;;;;;28488:25:0;;;28459:4;28488:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31918:32;31829:122;31507:452;-1:-1:-1;;;;31507:452:0:o;34603:615::-;34776:4;-1:-1:-1;;;;;34749:31:0;:23;34764:7;34749:14;:23::i;:::-;-1:-1:-1;;;;;34749:31:0;;34727:122;;;;-1:-1:-1;;;34727:122:0;;18051:2:1;34727:122:0;;;18033:21:1;18090:2;18070:18;;;18063:30;18129:34;18109:18;;;18102:62;-1:-1:-1;;;18180:18:1;;;18173:39;18229:19;;34727:122:0;17849:405:1;34727:122:0;-1:-1:-1;;;;;34868:16:0;;34860:65;;;;-1:-1:-1;;;34860:65:0;;18461:2:1;34860:65:0;;;18443:21:1;18500:2;18480:18;;;18473:30;18539:34;18519:18;;;18512:62;-1:-1:-1;;;18590:18:1;;;18583:34;18634:19;;34860:65:0;18259:400:1;34860:65:0;34938:39;34959:4;34965:2;34969:7;34938:20;:39::i;:::-;35042:29;35059:1;35063:7;35042:8;:29::i;:::-;-1:-1:-1;;;;;35084:15:0;;;;;;:9;:15;;;;;:20;;35103:1;;35084:15;:20;;35103:1;;35084:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35115:13:0;;;;;;:9;:13;;;;;:18;;35132:1;;35115:13;:18;;35132:1;;35115:18;:::i;:::-;;;;-1:-1:-1;;35144:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35144:21:0;-1:-1:-1;;;;;35144:21:0;;;;;;;;;35183:27;;35144:16;;35183:27;;;;;;;34603:615;;;:::o;5124:173::-;5199:6;;;-1:-1:-1;;;;;5216:17:0;;;-1:-1:-1;;;;;;5216:17:0;;;;;;;5249:40;;5199:6;;;5216:17;5199:6;;5249:40;;5180:16;;5249:40;5169:128;5124:173;:::o;344:723::-;400:13;621:10;617:53;;-1:-1:-1;;648:10:0;;;;;;;;;;;;-1:-1:-1;;;648:10:0;;;;;344:723::o;617:53::-;695:5;680:12;736:78;743:9;;736:78;;769:8;;;;:::i;:::-;;-1:-1:-1;792:10:0;;-1:-1:-1;800:2:0;792:10;;:::i;:::-;;;736:78;;;824:19;856:6;846:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;846:17:0;;824:39;;874:154;881:10;;874:154;;908:11;918:1;908:11;;:::i;:::-;;-1:-1:-1;977:10:0;985:2;977:5;:10;:::i;:::-;964:24;;:2;:24;:::i;:::-;951:39;;934:6;941;934:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;934:56:0;;;;;;;;-1:-1:-1;1005:11:0;1014:2;1005:11;;:::i;:::-;;;874:154;;32301:110;32377:26;32387:2;32391:7;32377:26;;;;;;;;;;;;:9;:26::i;30548:352::-;30705:28;30715:4;30721:2;30725:7;30705:9;:28::i;:::-;30766:48;30789:4;30795:2;30799:7;30808:5;30766:22;:48::i;:::-;30744:148;;;;-1:-1:-1;;;30744:148:0;;;;;;;:::i;46108:108::-;46168:13;46201:7;46194:14;;;;;:::i;40608:589::-;-1:-1:-1;;;;;40814:18:0;;40810:187;;40849:40;40881:7;42024:10;:17;;41997:24;;;;:15;:24;;;;;:44;;;42052:24;;;;;;;;;;;;41920:164;40849:40;40810:187;;;40919:2;-1:-1:-1;;;;;40911:10:0;:4;-1:-1:-1;;;;;40911:10:0;;40907:90;;40938:47;40971:4;40977:7;40938:32;:47::i;:::-;-1:-1:-1;;;;;41011:16:0;;41007:183;;41044:45;41081:7;41044:36;:45::i;41007:183::-;41117:4;-1:-1:-1;;;;;41111:10:0;:2;-1:-1:-1;;;;;41111:10:0;;41107:83;;41138:40;41166:2;41170:7;41138:27;:40::i;32638:321::-;32768:18;32774:2;32778:7;32768:5;:18::i;:::-;32819:54;32850:1;32854:2;32858:7;32867:5;32819:22;:54::i;:::-;32797:154;;;;-1:-1:-1;;;32797:154:0;;;;;;;:::i;36075:980::-;36230:4;-1:-1:-1;;;;;36251:13:0;;6389:20;6437:8;36247:801;;36304:175;;-1:-1:-1;;;36304:175:0;;-1:-1:-1;;;;;36304:36:0;;;;;:175;;2836:10;;36398:4;;36425:7;;36455:5;;36304:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36304:175:0;;;;;;;;-1:-1:-1;;36304:175:0;;;;;;;;;;;;:::i;:::-;;;36283:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36662:13:0;;36658:320;;36705:108;;-1:-1:-1;;;36705:108:0;;;;;;;:::i;36658:320::-;36928:6;36922:13;36913:6;36909:2;36905:15;36898:38;36283:710;-1:-1:-1;;;;;;36543:51:0;-1:-1:-1;;;36543:51:0;;-1:-1:-1;36536:58:0;;36247:801;-1:-1:-1;37032:4:0;36075:980;;;;;;:::o;42711:1002::-;42991:22;43041:1;43016:22;43033:4;43016:16;:22::i;:::-;:26;;;;:::i;:::-;43053:18;43074:26;;;:17;:26;;;;;;42991:51;;-1:-1:-1;43207:28:0;;;43203:328;;-1:-1:-1;;;;;43274:18:0;;43252:19;43274:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43325:30;;;;;;:44;;;43442:30;;:17;:30;;;;;:43;;;43203:328;-1:-1:-1;43627:26:0;;;;:17;:26;;;;;;;;43620:33;;;-1:-1:-1;;;;;43671:18:0;;;;;:12;:18;;;;;:34;;;;;;;43664:41;42711:1002::o;44008:1079::-;44286:10;:17;44261:22;;44286:21;;44306:1;;44286:21;:::i;:::-;44318:18;44339:24;;;:15;:24;;;;;;44712:10;:26;;44261:46;;-1:-1:-1;44339:24:0;;44261:46;;44712:26;;;;;;:::i;:::-;;;;;;;;;44690:48;;44776:11;44751:10;44762;44751:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44856:28;;;:15;:28;;;;;;;:41;;;45028:24;;;;;45021:31;45063:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44079:1008;;;44008:1079;:::o;41498:221::-;41583:14;41600:20;41617:2;41600:16;:20::i;:::-;-1:-1:-1;;;;;41631:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41676:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41498:221:0:o;33295:382::-;-1:-1:-1;;;;;33375:16:0;;33367:61;;;;-1:-1:-1;;;33367:61:0;;20539:2:1;33367:61:0;;;20521:21:1;;;20558:18;;;20551:30;20617:34;20597:18;;;20590:62;20669:18;;33367:61:0;20337:356:1;33367:61:0;31278:4;31302:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31302:16:0;:30;33439:58;;;;-1:-1:-1;;;33439:58:0;;20900:2:1;33439:58:0;;;20882:21:1;20939:2;20919:18;;;20912:30;20978;20958:18;;;20951:58;21026:18;;33439:58:0;20698:352:1;33439:58:0;33510:45;33539:1;33543:2;33547:7;33510:20;:45::i;:::-;-1:-1:-1;;;;;33568:13:0;;;;;;:9;:13;;;;;:18;;33585:1;;33568:13;:18;;33585:1;;33568:18;:::i;:::-;;;;-1:-1:-1;;33597:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33597:21:0;-1:-1:-1;;;;;33597:21:0;;;;;;;;33636:33;;33597:16;;;33636:33;;33597:16;;33636:33;33295:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:127::-;3099:10;3094:3;3090:20;3087:1;3080:31;3130:4;3127:1;3120:15;3154:4;3151:1;3144:15;3170:632;3235:5;3265:18;3306:2;3298:6;3295:14;3292:40;;;3312:18;;:::i;:::-;3387:2;3381:9;3355:2;3441:15;;-1:-1:-1;;3437:24:1;;;3463:2;3433:33;3429:42;3417:55;;;3487:18;;;3507:22;;;3484:46;3481:72;;;3533:18;;:::i;:::-;3573:10;3569:2;3562:22;3602:6;3593:15;;3632:6;3624;3617:22;3672:3;3663:6;3658:3;3654:16;3651:25;3648:45;;;3689:1;3686;3679:12;3648:45;3739:6;3734:3;3727:4;3719:6;3715:17;3702:44;3794:1;3787:4;3778:6;3770;3766:19;3762:30;3755:41;;;;3170:632;;;;;:::o;3807:222::-;3850:5;3903:3;3896:4;3888:6;3884:17;3880:27;3870:55;;3921:1;3918;3911:12;3870:55;3943:80;4019:3;4010:6;3997:20;3990:4;3982:6;3978:17;3943:80;:::i;4034:322::-;4103:6;4156:2;4144:9;4135:7;4131:23;4127:32;4124:52;;;4172:1;4169;4162:12;4124:52;4212:9;4199:23;4245:18;4237:6;4234:30;4231:50;;;4277:1;4274;4267:12;4231:50;4300;4342:7;4333:6;4322:9;4318:22;4300:50;:::i;4361:186::-;4420:6;4473:2;4461:9;4452:7;4448:23;4444:32;4441:52;;;4489:1;4486;4479:12;4441:52;4512:29;4531:9;4512:29;:::i;4552:632::-;4723:2;4775:21;;;4845:13;;4748:18;;;4867:22;;;4694:4;;4723:2;4946:15;;;;4920:2;4905:18;;;4694:4;4989:169;5003:6;5000:1;4997:13;4989:169;;;5064:13;;5052:26;;5133:15;;;;5098:12;;;;5025:1;5018:9;4989:169;;;-1:-1:-1;5175:3:1;;4552:632;-1:-1:-1;;;;;;4552:632:1:o;5189:254::-;5254:6;5262;5315:2;5303:9;5294:7;5290:23;5286:32;5283:52;;;5331:1;5328;5321:12;5283:52;5354:29;5373:9;5354:29;:::i;:::-;5344:39;;5402:35;5433:2;5422:9;5418:18;5402:35;:::i;:::-;5392:45;;5189:254;;;;;:::o;5448:390::-;5526:6;5534;5587:2;5575:9;5566:7;5562:23;5558:32;5555:52;;;5603:1;5600;5593:12;5555:52;5639:9;5626:23;5616:33;;5700:2;5689:9;5685:18;5672:32;5727:18;5719:6;5716:30;5713:50;;;5759:1;5756;5749:12;5713:50;5782;5824:7;5815:6;5804:9;5800:22;5782:50;:::i;:::-;5772:60;;;5448:390;;;;;:::o;5843:667::-;5938:6;5946;5954;5962;6015:3;6003:9;5994:7;5990:23;5986:33;5983:53;;;6032:1;6029;6022:12;5983:53;6055:29;6074:9;6055:29;:::i;:::-;6045:39;;6103:38;6137:2;6126:9;6122:18;6103:38;:::i;:::-;6093:48;;6188:2;6177:9;6173:18;6160:32;6150:42;;6243:2;6232:9;6228:18;6215:32;6270:18;6262:6;6259:30;6256:50;;;6302:1;6299;6292:12;6256:50;6325:22;;6378:4;6370:13;;6366:27;-1:-1:-1;6356:55:1;;6407:1;6404;6397:12;6356:55;6430:74;6496:7;6491:2;6478:16;6473:2;6469;6465:11;6430:74;:::i;:::-;6420:84;;;5843:667;;;;;;;:::o;6515:260::-;6583:6;6591;6644:2;6632:9;6623:7;6619:23;6615:32;6612:52;;;6660:1;6657;6650:12;6612:52;6683:29;6702:9;6683:29;:::i;:::-;6673:39;;6731:38;6765:2;6754:9;6750:18;6731:38;:::i;6780:356::-;6982:2;6964:21;;;7001:18;;;6994:30;7060:34;7055:2;7040:18;;7033:62;7127:2;7112:18;;6780:356::o;7141:380::-;7220:1;7216:12;;;;7263;;;7284:61;;7338:4;7330:6;7326:17;7316:27;;7284:61;7391:2;7383:6;7380:14;7360:18;7357:38;7354:161;;;7437:10;7432:3;7428:20;7425:1;7418:31;7472:4;7469:1;7462:15;7500:4;7497:1;7490:15;7354:161;;7141:380;;;:::o;8766:413::-;8968:2;8950:21;;;9007:2;8987:18;;;8980:30;9046:34;9041:2;9026:18;;9019:62;-1:-1:-1;;;9112:2:1;9097:18;;9090:47;9169:3;9154:19;;8766:413::o;9806:127::-;9867:10;9862:3;9858:20;9855:1;9848:31;9898:4;9895:1;9888:15;9922:4;9919:1;9912:15;9938:127;9999:10;9994:3;9990:20;9987:1;9980:31;10030:4;10027:1;10020:15;10054:4;10051:1;10044:15;10070:135;10109:3;-1:-1:-1;;10130:17:1;;10127:43;;;10150:18;;:::i;:::-;-1:-1:-1;10197:1:1;10186:13;;10070:135::o;11444:125::-;11484:4;11512:1;11509;11506:8;11503:34;;;11517:18;;:::i;:::-;-1:-1:-1;11554:9:1;;11444:125::o;11574:128::-;11614:3;11645:1;11641:6;11638:1;11635:13;11632:39;;;11651:18;;:::i;:::-;-1:-1:-1;11687:9:1;;11574:128::o;11707:431::-;-1:-1:-1;;;11964:3:1;11957:27;11939:3;12013:6;12007:13;12029:62;12084:6;12079:2;12074:3;12070:12;12063:4;12055:6;12051:17;12029:62;:::i;:::-;12111:16;;;;12129:2;12107:25;;11707:431;-1:-1:-1;;11707:431:1:o;12482:168::-;12522:7;12588:1;12584;12580:6;12576:14;12573:1;12570:21;12565:1;12558:9;12551:17;12547:45;12544:71;;;12595:18;;:::i;:::-;-1:-1:-1;12635:9:1;;12482:168::o;12655:764::-;-1:-1:-1;;;13061:3:1;13054:32;13036:3;13115:6;13109:13;13131:62;13186:6;13181:2;13176:3;13172:12;13165:4;13157:6;13153:17;13131:62;:::i;:::-;-1:-1:-1;;;13252:2:1;13212:16;;;13244:11;;;13237:24;13286:13;;13308:63;13286:13;13357:2;13349:11;;13342:4;13330:17;;13308:63;:::i;:::-;13391:17;13410:2;13387:26;;12655:764;-1:-1:-1;;;;12655:764:1:o;14125:276::-;14256:3;14294:6;14288:13;14310:53;14356:6;14351:3;14344:4;14336:6;14332:17;14310:53;:::i;:::-;14379:16;;;;;14125:276;-1:-1:-1;;14125:276:1:o;14532:973::-;14617:12;;14582:3;;14672:1;14692:18;;;;14745;;;;14772:61;;14826:4;14818:6;14814:17;14804:27;;14772:61;14852:2;14900;14892:6;14889:14;14869:18;14866:38;14863:161;;;14946:10;14941:3;14937:20;14934:1;14927:31;14981:4;14978:1;14971:15;15009:4;15006:1;14999:15;14863:161;15040:18;15067:104;;;;15185:1;15180:319;;;;15033:466;;15067:104;-1:-1:-1;;15100:24:1;;15088:37;;15145:16;;;;-1:-1:-1;15067:104:1;;15180:319;14479:1;14472:14;;;14516:4;14503:18;;15274:1;15288:165;15302:6;15299:1;15296:13;15288:165;;;15380:14;;15367:11;;;15360:35;15423:16;;;;15317:10;;15288:165;;;15292:3;;15482:6;15477:3;15473:16;15466:23;;15033:466;;;;;;;14532:973;;;;:::o;15510:197::-;15638:3;15663:38;15697:3;15689:6;15663:38;:::i;16474:550::-;16698:3;16736:6;16730:13;16752:53;16798:6;16793:3;16786:4;16778:6;16774:17;16752:53;:::i;:::-;16868:13;;16827:16;;;;16890:57;16868:13;16827:16;16924:4;16912:17;;16890:57;:::i;:::-;16963:55;17008:8;17001:5;16997:20;16989:6;16963:55;:::i;:::-;16956:62;16474:550;-1:-1:-1;;;;;;;16474:550:1:o;18664:127::-;18725:10;18720:3;18716:20;18713:1;18706:31;18756:4;18753:1;18746:15;18780:4;18777:1;18770:15;18796:120;18836:1;18862;18852:35;;18867:18;;:::i;:::-;-1:-1:-1;18901:9:1;;18796:120::o;18921:112::-;18953:1;18979;18969:35;;18984:18;;:::i;:::-;-1:-1:-1;19018:9:1;;18921:112::o;19038:414::-;19240:2;19222:21;;;19279:2;19259:18;;;19252:30;19318:34;19313:2;19298:18;;19291:62;-1:-1:-1;;;19384:2:1;19369:18;;19362:48;19442:3;19427:19;;19038:414::o;19457:489::-;-1:-1:-1;;;;;19726:15:1;;;19708:34;;19778:15;;19773:2;19758:18;;19751:43;19825:2;19810:18;;19803:34;;;19873:3;19868:2;19853:18;;19846:31;;;19651:4;;19894:46;;19920:19;;19912:6;19894:46;:::i;:::-;19886:54;19457:489;-1:-1:-1;;;;;;19457:489:1:o;19951:249::-;20020:6;20073:2;20061:9;20052:7;20048:23;20044:32;20041:52;;;20089:1;20086;20079:12;20041:52;20121:9;20115:16;20140:30;20164:5;20140:30;:::i;20205:127::-;20266:10;20261:3;20257:20;20254:1;20247:31;20297:4;20294:1;20287:15;20321:4;20318:1;20311:15

Swarm Source

ipfs://48715e9250ff55df81edb6123b53634ada612e838a0ccecd610bb83c4f7e010d
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.