ETH Price: $3,105.94 (+1.21%)
Gas: 6 Gwei

Token

CYBER LEGENDS (CLEGENDS)
 

Overview

Max Total Supply

3,367 CLEGENDS

Holders

971

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CLEGENDS
0xccd7c3cc2bea0ee7addc131a8fa0ee4ba5015691
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:
CyberLegends

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-19
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts v4.4.1 (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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: CyberLegends.sol


//   ___  _  _  ____  ____  ____  __    ____  ___  ____  __ _  ____  ____
//  / __)( \/ )(  _ \(  __)(  _ \(  )  (  __)/ __)(  __)(  ( \(    \/ ___)
// ( (__  )  /  ) _ ( ) _)  )   // (_/\ ) _)( (_ \ ) _) /    / ) D (\___ \
//  \___)(__/  (____/(____)(__\_)\____/(____)\___/(____)\_)__)(____/(____/

pragma solidity ^0.8.9;




contract CyberLegends is ERC721Enumerable, Ownable {
    using Strings for uint256;
    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.25 ether;
    uint256 public whitelistCost = 0.22 ether;
    uint256 public goldlistCost = 0.18 ether;
    uint256 public maxSupply = 8888;
    uint256 public maxPerWallet = 5;
    uint256 public minted = 0;
    bool public paused = false;
    bool public revealed = false;
    string public notRevealedURI;
    bytes32 public wlMerkleRoot;
    bytes32 public glMerkleRoot;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedURI,
        bytes32 _wlMerkleRoot,
        bytes32 _glMerkleRoot
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setMerkleRoots(_wlMerkleRoot, _glMerkleRoot);
        setNotRevealedURI(_initNotRevealedURI);
        mint(88);
        pause(true);
    }

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

    // public sale
    function mint(uint256 _mintAmount) public payable {
        require(!paused, "Contract is paused");
        require(_mintAmount > 0, "Mint amount cannot be null");
        uint256 supply = totalSupply();

        if (msg.sender != owner()) {
            uint256 nftCount = balanceOf(msg.sender) + _mintAmount;
            require(supply + _mintAmount <= maxSupply, "Mint amount exceed max supply");
            require(nftCount <= maxPerWallet, "Max per wallet reached");
            require(msg.value >= cost * _mintAmount, "Not enough ether sent");
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
            minted += 1;
        }
    }
    
    // Multi level mint using _list - 1 = whitelist, 2 = goldlist
    function privilegedMint(uint256 _mintAmount, bytes32[] calldata _merkleProof, uint256 _list) public payable {
        require(!paused, "Contract is paused");
        require(_mintAmount > 0, "Mint amount cannot be null");
        require(_list == 1 || _list == 2, "Unknown list");
        uint256 nftCount = balanceOf(msg.sender) + _mintAmount;
        uint256 supply = totalSupply();
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(supply + _mintAmount <= maxSupply, "Mint amount exceeds max supply");
        require(nftCount <= maxPerWallet, "You cannot mint that much");
        if (_list == 1) {
          require(MerkleProof.verify(_merkleProof, wlMerkleRoot, leaf), "Not in whitelist");
          require(msg.value >= whitelistCost * _mintAmount, "Not enough ether sent");
        }
        if (_list == 2) {
          require(MerkleProof.verify(_merkleProof, glMerkleRoot, leaf), "Not in goldlist");
          require(msg.value >= goldlistCost * _mintAmount, "Not enough ether sent");
        }
        
        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msg.sender, supply + i);
            minted += 1;
        }
    }

    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
                    )
                )
                : "";
    }

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

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

    function setGoldlistCost(uint256 _newCost) public onlyOwner {
        goldlistCost = _newCost;
    }

    function setMaxPerWallet(uint256 _newMaxPerWallet) public onlyOwner {
        maxPerWallet = _newMaxPerWallet;
    }

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

    function setNotRevealedURI(string memory _newNotRevealedURI) public onlyOwner {
        notRevealedURI = _newNotRevealedURI;
    }

    function setMerkleRoots(bytes32 _wlMerkleRoot, bytes32 _glMerkleRoot) public onlyOwner {
        wlMerkleRoot = _wlMerkleRoot;
        glMerkleRoot = _glMerkleRoot;
    }

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

    function reveal(bool _state) public onlyOwner {
        revealed = _state;
    }

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

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

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"},{"internalType":"bytes32","name":"_wlMerkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"_glMerkleRoot","type":"bytes32"}],"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":"baseURI","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":"glMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goldlistCost","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":"maxPerWallet","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":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_list","type":"uint256"}],"name":"privilegedMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"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":"_newCost","type":"uint256"}],"name":"setGoldlistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_wlMerkleRoot","type":"bytes32"},{"internalType":"bytes32","name":"_glMerkleRoot","type":"bytes32"}],"name":"setMerkleRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newNotRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistCost","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000bd3565b506703782dace9d90000600d5567030d98d59a960000600e5567027f7d0bdb920000600f556122b8601055600560115560006012556013805461ffff191690553480156200007557600080fd5b5060405162003c6e38038062003c6e833981016040819052620000989162000d53565b855186908690620000b190600090602085019062000bd3565b508051620000c790600190602084019062000bd3565b505050620000e4620000de6200012a60201b60201c565b6200012e565b620000ef8462000180565b620000fb8282620001e8565b62000106836200023e565b6200011260586200029e565b6200011e6001620004fe565b50505050505062000f9b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001cf5760405162461bcd60e51b8152602060048201819052602482015260008051602062003c4e83398151915260448201526064015b60405180910390fd5b8051620001e490600b90602084019062000bd3565b5050565b600a546001600160a01b03163314620002335760405162461bcd60e51b8152602060048201819052602482015260008051602062003c4e8339815191526044820152606401620001c6565b601591909155601655565b600a546001600160a01b03163314620002895760405162461bcd60e51b8152602060048201819052602482015260008051602062003c4e8339815191526044820152606401620001c6565b8051620001e490601490602084019062000bd3565b60135460ff1615620002e85760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401620001c6565b600081116200033a5760405162461bcd60e51b815260206004820152601a60248201527f4d696e7420616d6f756e742063616e6e6f74206265206e756c6c0000000000006044820152606401620001c6565b60006200034660085490565b90506200035b600a546001600160a01b031690565b6001600160a01b0316336001600160a01b031614620004a75760008262000382336200055c565b6200038e919062000e34565b601054909150620003a0848462000e34565b1115620003f05760405162461bcd60e51b815260206004820152601d60248201527f4d696e7420616d6f756e7420657863656564206d617820737570706c790000006044820152606401620001c6565b601154811115620004445760405162461bcd60e51b815260206004820152601660248201527f4d6178207065722077616c6c65742072656163686564000000000000000000006044820152606401620001c6565b82600d5462000454919062000e4f565b341015620004a55760405162461bcd60e51b815260206004820152601560248201527f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006044820152606401620001c6565b505b60015b828111620004f957620004c933620004c3838562000e34565b620005e5565b600160126000828254620004de919062000e34565b90915550819050620004f08162000e71565b915050620004aa565b505050565b600a546001600160a01b03163314620005495760405162461bcd60e51b8152602060048201819052602482015260008051602062003c4e8339815191526044820152606401620001c6565b6013805460ff1916911515919091179055565b60006001600160a01b038216620005c95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620001c6565b506001600160a01b031660009081526003602052604090205490565b620001e48282604051806020016040528060008152506200060760201b60201c565b6200061383836200067a565b620006226000848484620007d0565b620004f95760405162461bcd60e51b8152602060048201526032602482015260008051602062003c2e83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001c6565b6001600160a01b038216620006d25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001c6565b6000818152600260205260409020546001600160a01b031615620007395760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001c6565b620007476000838362000939565b6001600160a01b03821660009081526003602052604081208054600192906200077290849062000e34565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620007f1846001600160a01b031662000a1560201b620018e21760201c565b156200092d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200082b90339089908890889060040162000e8f565b602060405180830381600087803b1580156200084657600080fd5b505af192505050801562000879575060408051601f3d908101601f19168201909252620008769181019062000ee5565b60015b62000912573d808015620008aa576040519150601f19603f3d011682016040523d82523d6000602084013e620008af565b606091505b5080516200090a5760405162461bcd60e51b8152602060048201526032602482015260008051602062003c2e83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001c6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000931565b5060015b949350505050565b62000951838383620004f960201b62000a931760201c565b6001600160a01b038316620009af57620009a981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620009d5565b816001600160a01b0316836001600160a01b031614620009d557620009d5838262000a1b565b6001600160a01b038216620009ef57620004f98162000ac8565b826001600160a01b0316826001600160a01b031614620004f957620004f9828262000b82565b3b151590565b6000600162000a35846200055c60201b620012211760201c565b62000a41919062000f18565b60008381526007602052604090205490915080821462000a95576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000adc9060019062000f18565b6000838152600960205260408120546008805493945090928490811062000b075762000b0762000f32565b90600052602060002001549050806008838154811062000b2b5762000b2b62000f32565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000b665762000b6662000f48565b6001900381819060005260206000200160009055905550505050565b600062000b9a836200055c60201b620012211760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805462000be19062000f5e565b90600052602060002090601f01602090048101928262000c05576000855562000c50565b82601f1062000c2057805160ff191683800117855562000c50565b8280016001018555821562000c50579182015b8281111562000c5057825182559160200191906001019062000c33565b5062000c5e92915062000c62565b5090565b5b8082111562000c5e576000815560010162000c63565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000cac57818101518382015260200162000c92565b8381111562000cbc576000848401525b50505050565b600082601f83011262000cd457600080fd5b81516001600160401b038082111562000cf15762000cf162000c79565b604051601f8301601f19908116603f0116810190828211818310171562000d1c5762000d1c62000c79565b8160405283815286602085880101111562000d3657600080fd5b62000d4984602083016020890162000c8f565b9695505050505050565b60008060008060008060c0878903121562000d6d57600080fd5b86516001600160401b038082111562000d8557600080fd5b62000d938a838b0162000cc2565b9750602089015191508082111562000daa57600080fd5b62000db88a838b0162000cc2565b9650604089015191508082111562000dcf57600080fd5b62000ddd8a838b0162000cc2565b9550606089015191508082111562000df457600080fd5b5062000e0389828a0162000cc2565b9350506080870151915060a087015190509295509295509295565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000e4a5762000e4a62000e1e565b500190565b600081600019048311821515161562000e6c5762000e6c62000e1e565b500290565b600060001982141562000e885762000e8862000e1e565b5060010190565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000ece8160a085016020870162000c8f565b601f01601f19169190910160a00195945050505050565b60006020828403121562000ef857600080fd5b81516001600160e01b03198116811462000f1157600080fd5b9392505050565b60008282101562000f2d5762000f2d62000e1e565b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b600181811c9082168062000f7357607f821691505b6020821081141562000f9557634e487b7160e01b600052602260045260246000fd5b50919050565b612c838062000fab6000396000f3fe60806040526004361061027d5760003560e01c806363b468ce1161014f578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f1461070b578063e268e4d31461072b578063e7b99ec71461074b578063e985e9c514610761578063f2c4ce1e146107aa578063f2fde38b146107ca57600080fd5b8063b88d4fde14610660578063be9f5dbc14610680578063c6682862146106a0578063c87b56dd146106b5578063d49479eb146106d5578063d5abeb01146106f557600080fd5b80638da5cb5b116101135780638da5cb5b146105ba578063940cd05b146105d857806395d89b41146105f85780639a48eb511461060d578063a0712d681461062d578063a22cb4651461064057600080fd5b806363b468ce146105455780636c0360eb1461055b57806370a0823114610570578063715018a61461059057806372250380146105a557600080fd5b80633ccfd60b116101f35780634f6ccce7116101ac5780634f6ccce71461049657806351830227146104b657806354c06aee146104d557806355f804b3146104eb5780635c975abb1461050b5780636352211e1461052557600080fd5b80633ccfd60b146103f557806342842e0e146103fd578063438b63001461041d57806344a0d68a1461044a578063453c23101461046a5780634f02c4201461048057600080fd5b80630bb6dba7116102455780630bb6dba71461035357806313faede61461037757806318160ddd1461038d578063234da15c146103a257806323b872dd146103b55780632f745c59146103d557600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb578063095ea7b314610333575b600080fd5b34801561028e57600080fd5b506102a261029d366004612502565b6107ea565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d2366004612534565b610815565b005b3480156102e557600080fd5b506102ee61085b565b6040516102ae91906125a7565b34801561030757600080fd5b5061031b6103163660046125ba565b6108ed565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102d761034e3660046125ea565b610982565b34801561035f57600080fd5b50610369600f5481565b6040519081526020016102ae565b34801561038357600080fd5b50610369600d5481565b34801561039957600080fd5b50600854610369565b6102d76103b0366004612614565b610a98565b3480156103c157600080fd5b506102d76103d0366004612699565b610e45565b3480156103e157600080fd5b506103696103f03660046125ea565b610e76565b6102d7610f0c565b34801561040957600080fd5b506102d7610418366004612699565b610f5c565b34801561042957600080fd5b5061043d6104383660046126d5565b610f77565b6040516102ae91906126f0565b34801561045657600080fd5b506102d76104653660046125ba565b611019565b34801561047657600080fd5b5061036960115481565b34801561048c57600080fd5b5061036960125481565b3480156104a257600080fd5b506103696104b13660046125ba565b611048565b3480156104c257600080fd5b506013546102a290610100900460ff1681565b3480156104e157600080fd5b5061036960155481565b3480156104f757600080fd5b506102d76105063660046127c0565b6110db565b34801561051757600080fd5b506013546102a29060ff1681565b34801561053157600080fd5b5061031b6105403660046125ba565b61111c565b34801561055157600080fd5b5061036960165481565b34801561056757600080fd5b506102ee611193565b34801561057c57600080fd5b5061036961058b3660046126d5565b611221565b34801561059c57600080fd5b506102d76112a8565b3480156105b157600080fd5b506102ee6112dc565b3480156105c657600080fd5b50600a546001600160a01b031661031b565b3480156105e457600080fd5b506102d76105f3366004612534565b6112e9565b34801561060457600080fd5b506102ee61132d565b34801561061957600080fd5b506102d7610628366004612809565b61133c565b6102d761063b3660046125ba565b611371565b34801561064c57600080fd5b506102d761065b36600461282b565b611571565b34801561066c57600080fd5b506102d761067b36600461285e565b61157c565b34801561068c57600080fd5b506102d761069b3660046125ba565b6115b4565b3480156106ac57600080fd5b506102ee6115e3565b3480156106c157600080fd5b506102ee6106d03660046125ba565b6115f0565b3480156106e157600080fd5b506102d76106f03660046125ba565b61176f565b34801561070157600080fd5b5061036960105481565b34801561071757600080fd5b506102d76107263660046127c0565b61179e565b34801561073757600080fd5b506102d76107463660046125ba565b6117db565b34801561075757600080fd5b50610369600e5481565b34801561076d57600080fd5b506102a261077c3660046128da565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107b657600080fd5b506102d76107c53660046127c0565b61180a565b3480156107d657600080fd5b506102d76107e53660046126d5565b611847565b60006001600160e01b0319821663780e9d6360e01b148061080f575061080f826118e8565b92915050565b600a546001600160a01b031633146108485760405162461bcd60e51b815260040161083f90612904565b60405180910390fd5b6013805460ff1916911515919091179055565b60606000805461086a90612939565b80601f016020809104026020016040519081016040528092919081815260200182805461089690612939565b80156108e35780601f106108b8576101008083540402835291602001916108e3565b820191906000526020600020905b8154815290600101906020018083116108c657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083f565b506000908152600460205260409020546001600160a01b031690565b600061098d8261111c565b9050806001600160a01b0316836001600160a01b031614156109fb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161083f565b336001600160a01b0382161480610a175750610a17813361077c565b610a895760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161083f565b610a938383611938565b505050565b60135460ff1615610ae05760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161083f565b60008411610b305760405162461bcd60e51b815260206004820152601a60248201527f4d696e7420616d6f756e742063616e6e6f74206265206e756c6c000000000000604482015260640161083f565b8060011480610b3f5750806002145b610b7a5760405162461bcd60e51b815260206004820152600c60248201526b155b9adb9bdddb881b1a5cdd60a21b604482015260640161083f565b600084610b8633611221565b610b90919061298a565b90506000610b9d60085490565b6040516bffffffffffffffffffffffff193360601b1660208201529091506000906034016040516020818303038152906040528051906020012090506010548783610be8919061298a565b1115610c365760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420616d6f756e742065786365656473206d617820737570706c790000604482015260640161083f565b601154831115610c885760405162461bcd60e51b815260206004820152601960248201527f596f752063616e6e6f74206d696e742074686174206d75636800000000000000604482015260640161083f565b8360011415610d3e57610cd28686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060155491508490506119a6565b610d115760405162461bcd60e51b815260206004820152601060248201526f139bdd081a5b881dda1a5d195b1a5cdd60821b604482015260640161083f565b86600e54610d1f91906129a2565b341015610d3e5760405162461bcd60e51b815260040161083f906129c1565b8360021415610df357610d888686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060165491508490506119a6565b610dc65760405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b8819dbdb191b1a5cdd608a1b604482015260640161083f565b86600f54610dd491906129a2565b341015610df35760405162461bcd60e51b815260040161083f906129c1565b60015b878111610e3b57610e1033610e0b838661298a565b6119bc565b600160126000828254610e23919061298a565b90915550819050610e33816129f0565b915050610df6565b5050505050505050565b610e4f33826119d6565b610e6b5760405162461bcd60e51b815260040161083f90612a0b565b610a93838383611acd565b6000610e8183611221565b8210610ee35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161083f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f365760405162461bcd60e51b815260040161083f90612904565b60405133904780156108fc02916000818181858888f19350505050610f5a57600080fd5b565b610a938383836040518060200160405280600081525061157c565b60606000610f8483611221565b905060008167ffffffffffffffff811115610fa157610fa1612734565b604051908082528060200260200182016040528015610fca578160200160208202803683370190505b50905060005b8281101561101157610fe28582610e76565b828281518110610ff457610ff4612a5c565b602090810291909101015280611009816129f0565b915050610fd0565b509392505050565b600a546001600160a01b031633146110435760405162461bcd60e51b815260040161083f90612904565b600d55565b600061105360085490565b82106110b65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161083f565b600882815481106110c9576110c9612a5c565b90600052602060002001549050919050565b600a546001600160a01b031633146111055760405162461bcd60e51b815260040161083f90612904565b805161111890600b906020840190612453565b5050565b6000818152600260205260408120546001600160a01b03168061080f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161083f565b600b80546111a090612939565b80601f01602080910402602001604051908101604052809291908181526020018280546111cc90612939565b80156112195780601f106111ee57610100808354040283529160200191611219565b820191906000526020600020905b8154815290600101906020018083116111fc57829003601f168201915b505050505081565b60006001600160a01b03821661128c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161083f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112d25760405162461bcd60e51b815260040161083f90612904565b610f5a6000611c78565b601480546111a090612939565b600a546001600160a01b031633146113135760405162461bcd60e51b815260040161083f90612904565b601380549115156101000261ff0019909216919091179055565b60606001805461086a90612939565b600a546001600160a01b031633146113665760405162461bcd60e51b815260040161083f90612904565b601591909155601655565b60135460ff16156113b95760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161083f565b600081116114095760405162461bcd60e51b815260206004820152601a60248201527f4d696e7420616d6f756e742063616e6e6f74206265206e756c6c000000000000604482015260640161083f565b600061141460085490565b9050611428600a546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461152e5760008261144c33611221565b611456919061298a565b601054909150611466848461298a565b11156114b45760405162461bcd60e51b815260206004820152601d60248201527f4d696e7420616d6f756e7420657863656564206d617820737570706c79000000604482015260640161083f565b6011548111156114ff5760405162461bcd60e51b815260206004820152601660248201527513585e081c195c881dd85b1b195d081c995858da195960521b604482015260640161083f565b82600d5461150d91906129a2565b34101561152c5760405162461bcd60e51b815260040161083f906129c1565b505b60015b828111610a935761154633610e0b838561298a565b600160126000828254611559919061298a565b90915550819050611569816129f0565b915050611531565b611118338383611cca565b61158633836119d6565b6115a25760405162461bcd60e51b815260040161083f90612a0b565b6115ae84848484611d99565b50505050565b600a546001600160a01b031633146115de5760405162461bcd60e51b815260040161083f90612904565b600f55565b600c80546111a090612939565b6000818152600260205260409020546060906001600160a01b031661166f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161083f565b601354610100900460ff16611710576014805461168b90612939565b80601f01602080910402602001604051908101604052809291908181526020018280546116b790612939565b80156117045780601f106116d957610100808354040283529160200191611704565b820191906000526020600020905b8154815290600101906020018083116116e757829003601f168201915b50505050509050919050565b600061171a611dcc565b9050600081511161173a5760405180602001604052806000815250611768565b8061174484611ddb565b600c60405160200161175893929190612a72565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117995760405162461bcd60e51b815260040161083f90612904565b600e55565b600a546001600160a01b031633146117c85760405162461bcd60e51b815260040161083f90612904565b805161111890600c906020840190612453565b600a546001600160a01b031633146118055760405162461bcd60e51b815260040161083f90612904565b601155565b600a546001600160a01b031633146118345760405162461bcd60e51b815260040161083f90612904565b8051611118906014906020840190612453565b600a546001600160a01b031633146118715760405162461bcd60e51b815260040161083f90612904565b6001600160a01b0381166118d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083f565b6118df81611c78565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061191957506001600160e01b03198216635b5e139f60e01b145b8061080f57506301ffc9a760e01b6001600160e01b031983161461080f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061196d8261111c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000826119b38584611ed9565b14949350505050565b611118828260405180602001604052806000815250611f7d565b6000818152600260205260408120546001600160a01b0316611a4f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083f565b6000611a5a8361111c565b9050806001600160a01b0316846001600160a01b03161480611a955750836001600160a01b0316611a8a846108ed565b6001600160a01b0316145b80611ac557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ae08261111c565b6001600160a01b031614611b485760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161083f565b6001600160a01b038216611baa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161083f565b611bb5838383611fb0565b611bc0600082611938565b6001600160a01b0383166000908152600360205260408120805460019290611be9908490612b36565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c1790849061298a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611d2c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161083f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611da4848484611acd565b611db084848484612068565b6115ae5760405162461bcd60e51b815260040161083f90612b4d565b6060600b805461086a90612939565b606081611dff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e295780611e13816129f0565b9150611e229050600a83612bb5565b9150611e03565b60008167ffffffffffffffff811115611e4457611e44612734565b6040519080825280601f01601f191660200182016040528015611e6e576020820181803683370190505b5090505b8415611ac557611e83600183612b36565b9150611e90600a86612bc9565b611e9b90603061298a565b60f81b818381518110611eb057611eb0612a5c565b60200101906001600160f81b031916908160001a905350611ed2600a86612bb5565b9450611e72565b600081815b8451811015611011576000858281518110611efb57611efb612a5c565b60200260200101519050808311611f3d576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611f6a565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611f75816129f0565b915050611ede565b611f878383612175565b611f946000848484612068565b610a935760405162461bcd60e51b815260040161083f90612b4d565b6001600160a01b03831661200b5761200681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61202e565b816001600160a01b0316836001600160a01b03161461202e5761202e83826122c3565b6001600160a01b03821661204557610a9381612360565b826001600160a01b0316826001600160a01b031614610a9357610a93828261240f565b60006001600160a01b0384163b1561216a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120ac903390899088908890600401612bdd565b602060405180830381600087803b1580156120c657600080fd5b505af19250505080156120f6575060408051601f3d908101601f191682019092526120f391810190612c1a565b60015b612150573d808015612124576040519150601f19603f3d011682016040523d82523d6000602084013e612129565b606091505b5080516121485760405162461bcd60e51b815260040161083f90612b4d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ac5565b506001949350505050565b6001600160a01b0382166121cb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161083f565b6000818152600260205260409020546001600160a01b0316156122305760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161083f565b61223c60008383611fb0565b6001600160a01b038216600090815260036020526040812080546001929061226590849061298a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016122d084611221565b6122da9190612b36565b60008381526007602052604090205490915080821461232d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061237290600190612b36565b6000838152600960205260408120546008805493945090928490811061239a5761239a612a5c565b9060005260206000200154905080600883815481106123bb576123bb612a5c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123f3576123f3612c37565b6001900381819060005260206000200160009055905550505050565b600061241a83611221565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461245f90612939565b90600052602060002090601f01602090048101928261248157600085556124c7565b82601f1061249a57805160ff19168380011785556124c7565b828001600101855582156124c7579182015b828111156124c75782518255916020019190600101906124ac565b506124d39291506124d7565b5090565b5b808211156124d357600081556001016124d8565b6001600160e01b0319811681146118df57600080fd5b60006020828403121561251457600080fd5b8135611768816124ec565b8035801515811461252f57600080fd5b919050565b60006020828403121561254657600080fd5b6117688261251f565b60005b8381101561256a578181015183820152602001612552565b838111156115ae5750506000910152565b6000815180845261259381602086016020860161254f565b601f01601f19169290920160200192915050565b602081526000611768602083018461257b565b6000602082840312156125cc57600080fd5b5035919050565b80356001600160a01b038116811461252f57600080fd5b600080604083850312156125fd57600080fd5b612606836125d3565b946020939093013593505050565b6000806000806060858703121561262a57600080fd5b84359350602085013567ffffffffffffffff8082111561264957600080fd5b818701915087601f83011261265d57600080fd5b81358181111561266c57600080fd5b8860208260051b850101111561268157600080fd5b95986020929092019750949560400135945092505050565b6000806000606084860312156126ae57600080fd5b6126b7846125d3565b92506126c5602085016125d3565b9150604084013590509250925092565b6000602082840312156126e757600080fd5b611768826125d3565b6020808252825182820181905260009190848201906040850190845b818110156127285783518352928401929184019160010161270c565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561276557612765612734565b604051601f8501601f19908116603f0116810190828211818310171561278d5761278d612734565b816040528093508581528686860111156127a657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156127d257600080fd5b813567ffffffffffffffff8111156127e957600080fd5b8201601f810184136127fa57600080fd5b611ac58482356020840161274a565b6000806040838503121561281c57600080fd5b50508035926020909101359150565b6000806040838503121561283e57600080fd5b612847836125d3565b91506128556020840161251f565b90509250929050565b6000806000806080858703121561287457600080fd5b61287d856125d3565b935061288b602086016125d3565b925060408501359150606085013567ffffffffffffffff8111156128ae57600080fd5b8501601f810187136128bf57600080fd5b6128ce8782356020840161274a565b91505092959194509250565b600080604083850312156128ed57600080fd5b6128f6836125d3565b9150612855602084016125d3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061294d57607f821691505b6020821081141561296e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561299d5761299d612974565b500190565b60008160001904831182151516156129bc576129bc612974565b500290565b602080825260159082015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604082015260600190565b6000600019821415612a0457612a04612974565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600084516020612a858285838a0161254f565b855191840191612a988184848a0161254f565b8554920191600090600181811c9080831680612ab557607f831692505b858310811415612ad357634e487b7160e01b85526022600452602485fd5b808015612ae75760018114612af857612b25565b60ff19851688528388019550612b25565b60008b81526020902060005b85811015612b1d5781548a820152908401908801612b04565b505083880195505b50939b9a5050505050505050505050565b600082821015612b4857612b48612974565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612bc457612bc4612b9f565b500490565b600082612bd857612bd8612b9f565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c109083018461257b565b9695505050505050565b600060208284031215612c2c57600080fd5b8151611768816124ec565b634e487b7160e01b600052603160045260246000fdfea26469706673582212202792b49c94bc9b25d2a89c9cd113d523bb281172416a54a667962e6eea93f97b64736f6c634300080900334552433732313a207472616e7366657220746f206e6f6e2045524337323152654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c0fb95c8cff5b6270a99a39730a9a6f27a5acacca0a1f45c1ecccfda6fc90076ca268d996db1871c720347ff3d07f1dd44a8d3c05743203d70845f6f5edb587189000000000000000000000000000000000000000000000000000000000000000d4359424552204c4547454e4453000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434c4547454e4453000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f6d7970696e6174612e636c6f75642f697066732f516d5965415238753937753348697465373561374547696d3870616e73634268716464426f6f52355558565a5a7400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f6d7970696e6174612e636c6f75642f697066732f516d5965415238753937753348697465373561374547696d3870616e73634268716464426f6f52355558565a5a7400000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806363b468ce1161014f578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f1461070b578063e268e4d31461072b578063e7b99ec71461074b578063e985e9c514610761578063f2c4ce1e146107aa578063f2fde38b146107ca57600080fd5b8063b88d4fde14610660578063be9f5dbc14610680578063c6682862146106a0578063c87b56dd146106b5578063d49479eb146106d5578063d5abeb01146106f557600080fd5b80638da5cb5b116101135780638da5cb5b146105ba578063940cd05b146105d857806395d89b41146105f85780639a48eb511461060d578063a0712d681461062d578063a22cb4651461064057600080fd5b806363b468ce146105455780636c0360eb1461055b57806370a0823114610570578063715018a61461059057806372250380146105a557600080fd5b80633ccfd60b116101f35780634f6ccce7116101ac5780634f6ccce71461049657806351830227146104b657806354c06aee146104d557806355f804b3146104eb5780635c975abb1461050b5780636352211e1461052557600080fd5b80633ccfd60b146103f557806342842e0e146103fd578063438b63001461041d57806344a0d68a1461044a578063453c23101461046a5780634f02c4201461048057600080fd5b80630bb6dba7116102455780630bb6dba71461035357806313faede61461037757806318160ddd1461038d578063234da15c146103a257806323b872dd146103b55780632f745c59146103d557600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb578063095ea7b314610333575b600080fd5b34801561028e57600080fd5b506102a261029d366004612502565b6107ea565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d2366004612534565b610815565b005b3480156102e557600080fd5b506102ee61085b565b6040516102ae91906125a7565b34801561030757600080fd5b5061031b6103163660046125ba565b6108ed565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102d761034e3660046125ea565b610982565b34801561035f57600080fd5b50610369600f5481565b6040519081526020016102ae565b34801561038357600080fd5b50610369600d5481565b34801561039957600080fd5b50600854610369565b6102d76103b0366004612614565b610a98565b3480156103c157600080fd5b506102d76103d0366004612699565b610e45565b3480156103e157600080fd5b506103696103f03660046125ea565b610e76565b6102d7610f0c565b34801561040957600080fd5b506102d7610418366004612699565b610f5c565b34801561042957600080fd5b5061043d6104383660046126d5565b610f77565b6040516102ae91906126f0565b34801561045657600080fd5b506102d76104653660046125ba565b611019565b34801561047657600080fd5b5061036960115481565b34801561048c57600080fd5b5061036960125481565b3480156104a257600080fd5b506103696104b13660046125ba565b611048565b3480156104c257600080fd5b506013546102a290610100900460ff1681565b3480156104e157600080fd5b5061036960155481565b3480156104f757600080fd5b506102d76105063660046127c0565b6110db565b34801561051757600080fd5b506013546102a29060ff1681565b34801561053157600080fd5b5061031b6105403660046125ba565b61111c565b34801561055157600080fd5b5061036960165481565b34801561056757600080fd5b506102ee611193565b34801561057c57600080fd5b5061036961058b3660046126d5565b611221565b34801561059c57600080fd5b506102d76112a8565b3480156105b157600080fd5b506102ee6112dc565b3480156105c657600080fd5b50600a546001600160a01b031661031b565b3480156105e457600080fd5b506102d76105f3366004612534565b6112e9565b34801561060457600080fd5b506102ee61132d565b34801561061957600080fd5b506102d7610628366004612809565b61133c565b6102d761063b3660046125ba565b611371565b34801561064c57600080fd5b506102d761065b36600461282b565b611571565b34801561066c57600080fd5b506102d761067b36600461285e565b61157c565b34801561068c57600080fd5b506102d761069b3660046125ba565b6115b4565b3480156106ac57600080fd5b506102ee6115e3565b3480156106c157600080fd5b506102ee6106d03660046125ba565b6115f0565b3480156106e157600080fd5b506102d76106f03660046125ba565b61176f565b34801561070157600080fd5b5061036960105481565b34801561071757600080fd5b506102d76107263660046127c0565b61179e565b34801561073757600080fd5b506102d76107463660046125ba565b6117db565b34801561075757600080fd5b50610369600e5481565b34801561076d57600080fd5b506102a261077c3660046128da565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107b657600080fd5b506102d76107c53660046127c0565b61180a565b3480156107d657600080fd5b506102d76107e53660046126d5565b611847565b60006001600160e01b0319821663780e9d6360e01b148061080f575061080f826118e8565b92915050565b600a546001600160a01b031633146108485760405162461bcd60e51b815260040161083f90612904565b60405180910390fd5b6013805460ff1916911515919091179055565b60606000805461086a90612939565b80601f016020809104026020016040519081016040528092919081815260200182805461089690612939565b80156108e35780601f106108b8576101008083540402835291602001916108e3565b820191906000526020600020905b8154815290600101906020018083116108c657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083f565b506000908152600460205260409020546001600160a01b031690565b600061098d8261111c565b9050806001600160a01b0316836001600160a01b031614156109fb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161083f565b336001600160a01b0382161480610a175750610a17813361077c565b610a895760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161083f565b610a938383611938565b505050565b60135460ff1615610ae05760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161083f565b60008411610b305760405162461bcd60e51b815260206004820152601a60248201527f4d696e7420616d6f756e742063616e6e6f74206265206e756c6c000000000000604482015260640161083f565b8060011480610b3f5750806002145b610b7a5760405162461bcd60e51b815260206004820152600c60248201526b155b9adb9bdddb881b1a5cdd60a21b604482015260640161083f565b600084610b8633611221565b610b90919061298a565b90506000610b9d60085490565b6040516bffffffffffffffffffffffff193360601b1660208201529091506000906034016040516020818303038152906040528051906020012090506010548783610be8919061298a565b1115610c365760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420616d6f756e742065786365656473206d617820737570706c790000604482015260640161083f565b601154831115610c885760405162461bcd60e51b815260206004820152601960248201527f596f752063616e6e6f74206d696e742074686174206d75636800000000000000604482015260640161083f565b8360011415610d3e57610cd28686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060155491508490506119a6565b610d115760405162461bcd60e51b815260206004820152601060248201526f139bdd081a5b881dda1a5d195b1a5cdd60821b604482015260640161083f565b86600e54610d1f91906129a2565b341015610d3e5760405162461bcd60e51b815260040161083f906129c1565b8360021415610df357610d888686808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060165491508490506119a6565b610dc65760405162461bcd60e51b815260206004820152600f60248201526e139bdd081a5b8819dbdb191b1a5cdd608a1b604482015260640161083f565b86600f54610dd491906129a2565b341015610df35760405162461bcd60e51b815260040161083f906129c1565b60015b878111610e3b57610e1033610e0b838661298a565b6119bc565b600160126000828254610e23919061298a565b90915550819050610e33816129f0565b915050610df6565b5050505050505050565b610e4f33826119d6565b610e6b5760405162461bcd60e51b815260040161083f90612a0b565b610a93838383611acd565b6000610e8183611221565b8210610ee35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161083f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610f365760405162461bcd60e51b815260040161083f90612904565b60405133904780156108fc02916000818181858888f19350505050610f5a57600080fd5b565b610a938383836040518060200160405280600081525061157c565b60606000610f8483611221565b905060008167ffffffffffffffff811115610fa157610fa1612734565b604051908082528060200260200182016040528015610fca578160200160208202803683370190505b50905060005b8281101561101157610fe28582610e76565b828281518110610ff457610ff4612a5c565b602090810291909101015280611009816129f0565b915050610fd0565b509392505050565b600a546001600160a01b031633146110435760405162461bcd60e51b815260040161083f90612904565b600d55565b600061105360085490565b82106110b65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161083f565b600882815481106110c9576110c9612a5c565b90600052602060002001549050919050565b600a546001600160a01b031633146111055760405162461bcd60e51b815260040161083f90612904565b805161111890600b906020840190612453565b5050565b6000818152600260205260408120546001600160a01b03168061080f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161083f565b600b80546111a090612939565b80601f01602080910402602001604051908101604052809291908181526020018280546111cc90612939565b80156112195780601f106111ee57610100808354040283529160200191611219565b820191906000526020600020905b8154815290600101906020018083116111fc57829003601f168201915b505050505081565b60006001600160a01b03821661128c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161083f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112d25760405162461bcd60e51b815260040161083f90612904565b610f5a6000611c78565b601480546111a090612939565b600a546001600160a01b031633146113135760405162461bcd60e51b815260040161083f90612904565b601380549115156101000261ff0019909216919091179055565b60606001805461086a90612939565b600a546001600160a01b031633146113665760405162461bcd60e51b815260040161083f90612904565b601591909155601655565b60135460ff16156113b95760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161083f565b600081116114095760405162461bcd60e51b815260206004820152601a60248201527f4d696e7420616d6f756e742063616e6e6f74206265206e756c6c000000000000604482015260640161083f565b600061141460085490565b9050611428600a546001600160a01b031690565b6001600160a01b0316336001600160a01b03161461152e5760008261144c33611221565b611456919061298a565b601054909150611466848461298a565b11156114b45760405162461bcd60e51b815260206004820152601d60248201527f4d696e7420616d6f756e7420657863656564206d617820737570706c79000000604482015260640161083f565b6011548111156114ff5760405162461bcd60e51b815260206004820152601660248201527513585e081c195c881dd85b1b195d081c995858da195960521b604482015260640161083f565b82600d5461150d91906129a2565b34101561152c5760405162461bcd60e51b815260040161083f906129c1565b505b60015b828111610a935761154633610e0b838561298a565b600160126000828254611559919061298a565b90915550819050611569816129f0565b915050611531565b611118338383611cca565b61158633836119d6565b6115a25760405162461bcd60e51b815260040161083f90612a0b565b6115ae84848484611d99565b50505050565b600a546001600160a01b031633146115de5760405162461bcd60e51b815260040161083f90612904565b600f55565b600c80546111a090612939565b6000818152600260205260409020546060906001600160a01b031661166f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161083f565b601354610100900460ff16611710576014805461168b90612939565b80601f01602080910402602001604051908101604052809291908181526020018280546116b790612939565b80156117045780601f106116d957610100808354040283529160200191611704565b820191906000526020600020905b8154815290600101906020018083116116e757829003601f168201915b50505050509050919050565b600061171a611dcc565b9050600081511161173a5760405180602001604052806000815250611768565b8061174484611ddb565b600c60405160200161175893929190612a72565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117995760405162461bcd60e51b815260040161083f90612904565b600e55565b600a546001600160a01b031633146117c85760405162461bcd60e51b815260040161083f90612904565b805161111890600c906020840190612453565b600a546001600160a01b031633146118055760405162461bcd60e51b815260040161083f90612904565b601155565b600a546001600160a01b031633146118345760405162461bcd60e51b815260040161083f90612904565b8051611118906014906020840190612453565b600a546001600160a01b031633146118715760405162461bcd60e51b815260040161083f90612904565b6001600160a01b0381166118d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083f565b6118df81611c78565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061191957506001600160e01b03198216635b5e139f60e01b145b8061080f57506301ffc9a760e01b6001600160e01b031983161461080f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061196d8261111c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000826119b38584611ed9565b14949350505050565b611118828260405180602001604052806000815250611f7d565b6000818152600260205260408120546001600160a01b0316611a4f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083f565b6000611a5a8361111c565b9050806001600160a01b0316846001600160a01b03161480611a955750836001600160a01b0316611a8a846108ed565b6001600160a01b0316145b80611ac557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ae08261111c565b6001600160a01b031614611b485760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161083f565b6001600160a01b038216611baa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161083f565b611bb5838383611fb0565b611bc0600082611938565b6001600160a01b0383166000908152600360205260408120805460019290611be9908490612b36565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c1790849061298a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611d2c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161083f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611da4848484611acd565b611db084848484612068565b6115ae5760405162461bcd60e51b815260040161083f90612b4d565b6060600b805461086a90612939565b606081611dff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e295780611e13816129f0565b9150611e229050600a83612bb5565b9150611e03565b60008167ffffffffffffffff811115611e4457611e44612734565b6040519080825280601f01601f191660200182016040528015611e6e576020820181803683370190505b5090505b8415611ac557611e83600183612b36565b9150611e90600a86612bc9565b611e9b90603061298a565b60f81b818381518110611eb057611eb0612a5c565b60200101906001600160f81b031916908160001a905350611ed2600a86612bb5565b9450611e72565b600081815b8451811015611011576000858281518110611efb57611efb612a5c565b60200260200101519050808311611f3d576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611f6a565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611f75816129f0565b915050611ede565b611f878383612175565b611f946000848484612068565b610a935760405162461bcd60e51b815260040161083f90612b4d565b6001600160a01b03831661200b5761200681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61202e565b816001600160a01b0316836001600160a01b03161461202e5761202e83826122c3565b6001600160a01b03821661204557610a9381612360565b826001600160a01b0316826001600160a01b031614610a9357610a93828261240f565b60006001600160a01b0384163b1561216a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120ac903390899088908890600401612bdd565b602060405180830381600087803b1580156120c657600080fd5b505af19250505080156120f6575060408051601f3d908101601f191682019092526120f391810190612c1a565b60015b612150573d808015612124576040519150601f19603f3d011682016040523d82523d6000602084013e612129565b606091505b5080516121485760405162461bcd60e51b815260040161083f90612b4d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ac5565b506001949350505050565b6001600160a01b0382166121cb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161083f565b6000818152600260205260409020546001600160a01b0316156122305760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161083f565b61223c60008383611fb0565b6001600160a01b038216600090815260036020526040812080546001929061226590849061298a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016122d084611221565b6122da9190612b36565b60008381526007602052604090205490915080821461232d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061237290600190612b36565b6000838152600960205260408120546008805493945090928490811061239a5761239a612a5c565b9060005260206000200154905080600883815481106123bb576123bb612a5c565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123f3576123f3612c37565b6001900381819060005260206000200160009055905550505050565b600061241a83611221565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461245f90612939565b90600052602060002090601f01602090048101928261248157600085556124c7565b82601f1061249a57805160ff19168380011785556124c7565b828001600101855582156124c7579182015b828111156124c75782518255916020019190600101906124ac565b506124d39291506124d7565b5090565b5b808211156124d357600081556001016124d8565b6001600160e01b0319811681146118df57600080fd5b60006020828403121561251457600080fd5b8135611768816124ec565b8035801515811461252f57600080fd5b919050565b60006020828403121561254657600080fd5b6117688261251f565b60005b8381101561256a578181015183820152602001612552565b838111156115ae5750506000910152565b6000815180845261259381602086016020860161254f565b601f01601f19169290920160200192915050565b602081526000611768602083018461257b565b6000602082840312156125cc57600080fd5b5035919050565b80356001600160a01b038116811461252f57600080fd5b600080604083850312156125fd57600080fd5b612606836125d3565b946020939093013593505050565b6000806000806060858703121561262a57600080fd5b84359350602085013567ffffffffffffffff8082111561264957600080fd5b818701915087601f83011261265d57600080fd5b81358181111561266c57600080fd5b8860208260051b850101111561268157600080fd5b95986020929092019750949560400135945092505050565b6000806000606084860312156126ae57600080fd5b6126b7846125d3565b92506126c5602085016125d3565b9150604084013590509250925092565b6000602082840312156126e757600080fd5b611768826125d3565b6020808252825182820181905260009190848201906040850190845b818110156127285783518352928401929184019160010161270c565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561276557612765612734565b604051601f8501601f19908116603f0116810190828211818310171561278d5761278d612734565b816040528093508581528686860111156127a657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156127d257600080fd5b813567ffffffffffffffff8111156127e957600080fd5b8201601f810184136127fa57600080fd5b611ac58482356020840161274a565b6000806040838503121561281c57600080fd5b50508035926020909101359150565b6000806040838503121561283e57600080fd5b612847836125d3565b91506128556020840161251f565b90509250929050565b6000806000806080858703121561287457600080fd5b61287d856125d3565b935061288b602086016125d3565b925060408501359150606085013567ffffffffffffffff8111156128ae57600080fd5b8501601f810187136128bf57600080fd5b6128ce8782356020840161274a565b91505092959194509250565b600080604083850312156128ed57600080fd5b6128f6836125d3565b9150612855602084016125d3565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061294d57607f821691505b6020821081141561296e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561299d5761299d612974565b500190565b60008160001904831182151516156129bc576129bc612974565b500290565b602080825260159082015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604082015260600190565b6000600019821415612a0457612a04612974565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600084516020612a858285838a0161254f565b855191840191612a988184848a0161254f565b8554920191600090600181811c9080831680612ab557607f831692505b858310811415612ad357634e487b7160e01b85526022600452602485fd5b808015612ae75760018114612af857612b25565b60ff19851688528388019550612b25565b60008b81526020902060005b85811015612b1d5781548a820152908401908801612b04565b505083880195505b50939b9a5050505050505050505050565b600082821015612b4857612b48612974565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612bc457612bc4612b9f565b500490565b600082612bd857612bd8612b9f565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c109083018461257b565b9695505050505050565b600060208284031215612c2c57600080fd5b8151611768816124ec565b634e487b7160e01b600052603160045260246000fdfea26469706673582212202792b49c94bc9b25d2a89c9cd113d523bb281172416a54a667962e6eea93f97b64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c0fb95c8cff5b6270a99a39730a9a6f27a5acacca0a1f45c1ecccfda6fc90076ca268d996db1871c720347ff3d07f1dd44a8d3c05743203d70845f6f5edb587189000000000000000000000000000000000000000000000000000000000000000d4359424552204c4547454e4453000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008434c4547454e4453000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f6d7970696e6174612e636c6f75642f697066732f516d5965415238753937753348697465373561374547696d3870616e73634268716464426f6f52355558565a5a7400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004a68747470733a2f2f6d7970696e6174612e636c6f75642f697066732f516d5965415238753937753348697465373561374547696d3870616e73634268716464426f6f52355558565a5a7400000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CYBER LEGENDS
Arg [1] : _symbol (string): CLEGENDS
Arg [2] : _initBaseURI (string): https://mypinata.cloud/ipfs/QmYeAR8u97u3Hite75a7EGim8panscBhqddBooR5UXVZZt
Arg [3] : _initNotRevealedURI (string): https://mypinata.cloud/ipfs/QmYeAR8u97u3Hite75a7EGim8panscBhqddBooR5UXVZZt
Arg [4] : _wlMerkleRoot (bytes32): 0xfb95c8cff5b6270a99a39730a9a6f27a5acacca0a1f45c1ecccfda6fc90076ca
Arg [5] : _glMerkleRoot (bytes32): 0x268d996db1871c720347ff3d07f1dd44a8d3c05743203d70845f6f5edb587189

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : fb95c8cff5b6270a99a39730a9a6f27a5acacca0a1f45c1ecccfda6fc90076ca
Arg [5] : 268d996db1871c720347ff3d07f1dd44a8d3c05743203d70845f6f5edb587189
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [7] : 4359424552204c4547454e445300000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 434c4547454e4453000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000004a
Arg [11] : 68747470733a2f2f6d7970696e6174612e636c6f75642f697066732f516d5965
Arg [12] : 415238753937753348697465373561374547696d3870616e7363426871646442
Arg [13] : 6f6f52355558565a5a7400000000000000000000000000000000000000000000
Arg [14] : 000000000000000000000000000000000000000000000000000000000000004a
Arg [15] : 68747470733a2f2f6d7970696e6174612e636c6f75642f697066732f516d5965
Arg [16] : 415238753937753348697465373561374547696d3870616e7363426871646442
Arg [17] : 6f6f52355558565a5a7400000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46951:5509:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40434:224;;;;;;;;;;-1:-1:-1;40434:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;40434:224:0;;;;;;;;52250:79;;;;;;;;;;-1:-1:-1;52250:79:0;;;;;:::i;:::-;;:::i;:::-;;27928:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29487:221::-;;;;;;;;;;-1:-1:-1;29487:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;29487:221:0;1878:203:1;29010:411:0;;;;;;;;;;-1:-1:-1;29010:411:0;;;;;:::i;:::-;;:::i;47200:40::-;;;;;;;;;;;;;;;;;;;2669:25:1;;;2657:2;2642:18;47200:40:0;2523:177:1;47113:32:0;;;;;;;;;;;;;;;;41074:113;;;;;;;;;;-1:-1:-1;41162:10:0;:17;41074:113;;48923:1206;;;;;;:::i;:::-;;:::i;30237:339::-;;;;;;;;;;-1:-1:-1;30237:339:0;;;;;:::i;:::-;;:::i;40742:256::-;;;;;;;;;;-1:-1:-1;40742:256:0;;;;;:::i;:::-;;:::i;52337:120::-;;;:::i;30647:185::-;;;;;;;;;;-1:-1:-1;30647:185:0;;;;;:::i;:::-;;:::i;50137:358::-;;;;;;;;;;-1:-1:-1;50137:358:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51149:86::-;;;;;;;;;;-1:-1:-1;51149:86:0;;;;;:::i;:::-;;:::i;47285:31::-;;;;;;;;;;;;;;;;47323:25;;;;;;;;;;;;;;;;41264:233;;;;;;;;;;-1:-1:-1;41264:233:0;;;;;:::i;:::-;;:::i;47388:28::-;;;;;;;;;;-1:-1:-1;47388:28:0;;;;;;;;;;;47458:27;;;;;;;;;;;;;;;;51591:104;;;;;;;;;;-1:-1:-1;51591:104:0;;;;;:::i;:::-;;:::i;47355:26::-;;;;;;;;;;-1:-1:-1;47355:26:0;;;;;;;;27622:239;;;;;;;;;;-1:-1:-1;27622:239:0;;;;;:::i;:::-;;:::i;47492:27::-;;;;;;;;;;;;;;;;47041:21;;;;;;;;;;;;;:::i;27352:208::-;;;;;;;;;;-1:-1:-1;27352:208:0;;;;;:::i;:::-;;:::i;6898:103::-;;;;;;;;;;;;;:::i;47423:28::-;;;;;;;;;;;;;:::i;6247:87::-;;;;;;;;;;-1:-1:-1;6320:6:0;;-1:-1:-1;;;;;6320:6:0;6247:87;;52160:82;;;;;;;;;;-1:-1:-1;52160:82:0;;;;;:::i;:::-;;:::i;28097:104::-;;;;;;;;;;;;;:::i;51843:173::-;;;;;;;;;;-1:-1:-1;51843:173:0;;;;;:::i;:::-;;:::i;48126:718::-;;;;;;:::i;:::-;;:::i;29780:155::-;;;;;;;;;;-1:-1:-1;29780:155:0;;;;;:::i;:::-;;:::i;30903:328::-;;;;;;;;;;-1:-1:-1;30903:328:0;;;;;:::i;:::-;;:::i;51355:102::-;;;;;;;;;;-1:-1:-1;51355:102:0;;;;;:::i;:::-;;:::i;47069:37::-;;;;;;;;;;;;;:::i;50503:638::-;;;;;;;;;;-1:-1:-1;50503:638:0;;;;;:::i;:::-;;:::i;51243:104::-;;;;;;;;;;-1:-1:-1;51243:104:0;;;;;:::i;:::-;;:::i;47247:31::-;;;;;;;;;;;;;;;;52024:128;;;;;;;;;;-1:-1:-1;52024:128:0;;;;;:::i;:::-;;:::i;51465:118::-;;;;;;;;;;-1:-1:-1;51465:118:0;;;;;:::i;:::-;;:::i;47152:41::-;;;;;;;;;;;;;;;;30006:164;;;;;;;;;;-1:-1:-1;30006:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30127:25:0;;;30103:4;30127:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30006:164;51703:132;;;;;;;;;;-1:-1:-1;51703:132:0;;;;;:::i;:::-;;:::i;7156:201::-;;;;;;;;;;-1:-1:-1;7156:201:0;;;;;:::i;:::-;;:::i;40434:224::-;40536:4;-1:-1:-1;;;;;;40560:50:0;;-1:-1:-1;;;40560:50:0;;:90;;;40614:36;40638:11;40614:23;:36::i;:::-;40553:97;40434:224;-1:-1:-1;;40434:224:0:o;52250:79::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;;;;;;;;;52306:6:::1;:15:::0;;-1:-1:-1;;52306:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52250:79::o;27928:100::-;27982:13;28015:5;28008:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27928:100;:::o;29487:221::-;29563:7;32830:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32830:16:0;29583:73;;;;-1:-1:-1;;;29583:73:0;;8426:2:1;29583:73:0;;;8408:21:1;8465:2;8445:18;;;8438:30;8504:34;8484:18;;;8477:62;-1:-1:-1;;;8555:18:1;;;8548:42;8607:19;;29583:73:0;8224:408:1;29583:73:0;-1:-1:-1;29676:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29676:24:0;;29487:221::o;29010:411::-;29091:13;29107:23;29122:7;29107:14;:23::i;:::-;29091:39;;29155:5;-1:-1:-1;;;;;29149:11:0;:2;-1:-1:-1;;;;;29149:11:0;;;29141:57;;;;-1:-1:-1;;;29141:57:0;;8839:2:1;29141:57:0;;;8821:21:1;8878:2;8858:18;;;8851:30;8917:34;8897:18;;;8890:62;-1:-1:-1;;;8968:18:1;;;8961:31;9009:19;;29141:57:0;8637:397:1;29141:57:0;5051:10;-1:-1:-1;;;;;29233:21:0;;;;:62;;-1:-1:-1;29258:37:0;29275:5;5051:10;30006:164;:::i;29258:37::-;29211:168;;;;-1:-1:-1;;;29211:168:0;;9241:2:1;29211:168:0;;;9223:21:1;9280:2;9260:18;;;9253:30;9319:34;9299:18;;;9292:62;9390:26;9370:18;;;9363:54;9434:19;;29211:168:0;9039:420:1;29211:168:0;29392:21;29401:2;29405:7;29392:8;:21::i;:::-;29080:341;29010:411;;:::o;48923:1206::-;49051:6;;;;49050:7;49042:38;;;;-1:-1:-1;;;49042:38:0;;9666:2:1;49042:38:0;;;9648:21:1;9705:2;9685:18;;;9678:30;-1:-1:-1;;;9724:18:1;;;9717:48;9782:18;;49042:38:0;9464:342:1;49042:38:0;49113:1;49099:11;:15;49091:54;;;;-1:-1:-1;;;49091:54:0;;10013:2:1;49091:54:0;;;9995:21:1;10052:2;10032:18;;;10025:30;10091:28;10071:18;;;10064:56;10137:18;;49091:54:0;9811:350:1;49091:54:0;49164:5;49173:1;49164:10;:24;;;;49178:5;49187:1;49178:10;49164:24;49156:49;;;;-1:-1:-1;;;49156:49:0;;10368:2:1;49156:49:0;;;10350:21:1;10407:2;10387:18;;;10380:30;-1:-1:-1;;;10426:18:1;;;10419:42;10478:18;;49156:49:0;10166:336:1;49156:49:0;49216:16;49259:11;49235:21;49245:10;49235:9;:21::i;:::-;:35;;;;:::i;:::-;49216:54;;49281:14;49298:13;41162:10;:17;;41074:113;49298:13;49347:28;;-1:-1:-1;;49364:10:0;10921:2:1;10917:15;10913:53;49347:28:0;;;10901:66:1;49281:30:0;;-1:-1:-1;49322:12:0;;10983::1;;49347:28:0;;;;;;;;;;;;49337:39;;;;;;49322:54;;49419:9;;49404:11;49395:6;:20;;;;:::i;:::-;:33;;49387:76;;;;-1:-1:-1;;;49387:76:0;;11208:2:1;49387:76:0;;;11190:21:1;11247:2;11227:18;;;11220:30;11286:32;11266:18;;;11259:60;11336:18;;49387:76:0;11006:354:1;49387:76:0;49494:12;;49482:8;:24;;49474:62;;;;-1:-1:-1;;;49474:62:0;;11567:2:1;49474:62:0;;;11549:21:1;11606:2;11586:18;;;11579:30;11645:27;11625:18;;;11618:55;11690:18;;49474:62:0;11365:349:1;49474:62:0;49551:5;49560:1;49551:10;49547:209;;;49584:52;49603:12;;49584:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49617:12:0;;;-1:-1:-1;49631:4:0;;-1:-1:-1;49584:18:0;:52::i;:::-;49576:81;;;;-1:-1:-1;;;49576:81:0;;11921:2:1;49576:81:0;;;11903:21:1;11960:2;11940:18;;;11933:30;-1:-1:-1;;;11979:18:1;;;11972:46;12035:18;;49576:81:0;11719:340:1;49576:81:0;49707:11;49691:13;;:27;;;;:::i;:::-;49678:9;:40;;49670:74;;;;-1:-1:-1;;;49670:74:0;;;;;;;:::i;:::-;49770:5;49779:1;49770:10;49766:207;;;49803:52;49822:12;;49803:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49836:12:0;;;-1:-1:-1;49850:4:0;;-1:-1:-1;49803:18:0;:52::i;:::-;49795:80;;;;-1:-1:-1;;;49795:80:0;;12789:2:1;49795:80:0;;;12771:21:1;12828:2;12808:18;;;12801:30;-1:-1:-1;;;12847:18:1;;;12840:45;12902:18;;49795:80:0;12587:339:1;49795:80:0;49924:11;49909:12;;:26;;;;:::i;:::-;49896:9;:39;;49888:73;;;;-1:-1:-1;;;49888:73:0;;;;;;;:::i;:::-;50010:1;49993:129;50018:11;50013:1;:16;49993:129;;50051:33;50061:10;50073;50082:1;50073:6;:10;:::i;:::-;50051:9;:33::i;:::-;50109:1;50099:6;;:11;;;;;;;:::i;:::-;;;;-1:-1:-1;50031:3:0;;-1:-1:-1;50031:3:0;;;:::i;:::-;;;;49993:129;;;;49031:1098;;;48923:1206;;;;:::o;30237:339::-;30432:41;5051:10;30465:7;30432:18;:41::i;:::-;30424:103;;;;-1:-1:-1;;;30424:103:0;;;;;;;:::i;:::-;30540:28;30550:4;30556:2;30560:7;30540:9;:28::i;40742:256::-;40839:7;40875:23;40892:5;40875:16;:23::i;:::-;40867:5;:31;40859:87;;;;-1:-1:-1;;;40859:87:0;;13691:2:1;40859:87:0;;;13673:21:1;13730:2;13710:18;;;13703:30;13769:34;13749:18;;;13742:62;-1:-1:-1;;;13820:18:1;;;13813:41;13871:19;;40859:87:0;13489:407:1;40859:87:0;-1:-1:-1;;;;;;40964:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40742:256::o;52337:120::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;52401:47:::1;::::0;52409:10:::1;::::0;52426:21:::1;52401:47:::0;::::1;;;::::0;::::1;::::0;;;52426:21;52409:10;52401:47;::::1;;;;;;52393:56;;;::::0;::::1;;52337:120::o:0;30647:185::-;30785:39;30802:4;30808:2;30812:7;30785:39;;;;;;;;;;;;:16;:39::i;50137:358::-;50197:16;50226:23;50252:17;50262:6;50252:9;:17::i;:::-;50226:43;;50280:25;50322:15;50308:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50308:30:0;;50280:58;;50354:9;50349:113;50369:15;50365:1;:19;50349:113;;;50420:30;50440:6;50448:1;50420:19;:30::i;:::-;50406:8;50415:1;50406:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;50386:3;;;;:::i;:::-;;;;50349:113;;;-1:-1:-1;50479:8:0;50137:358;-1:-1:-1;;;50137:358:0:o;51149:86::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;51212:4:::1;:15:::0;51149:86::o;41264:233::-;41339:7;41375:30;41162:10;:17;;41074:113;41375:30;41367:5;:38;41359:95;;;;-1:-1:-1;;;41359:95:0;;14235:2:1;41359:95:0;;;14217:21:1;14274:2;14254:18;;;14247:30;14313:34;14293:18;;;14286:62;-1:-1:-1;;;14364:18:1;;;14357:42;14416:19;;41359:95:0;14033:408:1;41359:95:0;41472:10;41483:5;41472:17;;;;;;;;:::i;:::-;;;;;;;;;41465:24;;41264:233;;;:::o;51591:104::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;51666:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51591:104:::0;:::o;27622:239::-;27694:7;27730:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27730:16:0;27765:19;27757:73;;;;-1:-1:-1;;;27757:73:0;;14648:2:1;27757:73:0;;;14630:21:1;14687:2;14667:18;;;14660:30;14726:34;14706:18;;;14699:62;-1:-1:-1;;;14777:18:1;;;14770:39;14826:19;;27757:73:0;14446:405:1;47041:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27352:208::-;27424:7;-1:-1:-1;;;;;27452:19:0;;27444:74;;;;-1:-1:-1;;;27444:74:0;;15058:2:1;27444:74:0;;;15040:21:1;15097:2;15077:18;;;15070:30;15136:34;15116:18;;;15109:62;-1:-1:-1;;;15187:18:1;;;15180:40;15237:19;;27444:74:0;14856:406:1;27444:74:0;-1:-1:-1;;;;;;27536:16:0;;;;;:9;:16;;;;;;;27352:208::o;6898:103::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;6963:30:::1;6990:1;6963:18;:30::i;47423:28::-:0;;;;;;;:::i;52160:82::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;52217:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;52217:17:0;;::::1;::::0;;;::::1;::::0;;52160:82::o;28097:104::-;28153:13;28186:7;28179:14;;;;;:::i;51843:173::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;51941:12:::1;:28:::0;;;;51980:12:::1;:28:::0;51843:173::o;48126:718::-;48196:6;;;;48195:7;48187:38;;;;-1:-1:-1;;;48187:38:0;;9666:2:1;48187:38:0;;;9648:21:1;9705:2;9685:18;;;9678:30;-1:-1:-1;;;9724:18:1;;;9717:48;9782:18;;48187:38:0;9464:342:1;48187:38:0;48258:1;48244:11;:15;48236:54;;;;-1:-1:-1;;;48236:54:0;;10013:2:1;48236:54:0;;;9995:21:1;10052:2;10032:18;;;10025:30;10091:28;10071:18;;;10064:56;10137:18;;48236:54:0;9811:350:1;48236:54:0;48301:14;48318:13;41162:10;:17;;41074:113;48318:13;48301:30;;48362:7;6320:6;;-1:-1:-1;;;;;6320:6:0;;6247:87;48362:7;-1:-1:-1;;;;;48348:21:0;:10;-1:-1:-1;;;;;48348:21:0;;48344:352;;48386:16;48429:11;48405:21;48415:10;48405:9;:21::i;:::-;:35;;;;:::i;:::-;48487:9;;48386:54;;-1:-1:-1;48463:20:0;48472:11;48463:6;:20;:::i;:::-;:33;;48455:75;;;;-1:-1:-1;;;48455:75:0;;15469:2:1;48455:75:0;;;15451:21:1;15508:2;15488:18;;;15481:30;15547:31;15527:18;;;15520:59;15596:18;;48455:75:0;15267:353:1;48455:75:0;48565:12;;48553:8;:24;;48545:59;;;;-1:-1:-1;;;48545:59:0;;15827:2:1;48545:59:0;;;15809:21:1;15866:2;15846:18;;;15839:30;-1:-1:-1;;;15885:18:1;;;15878:52;15947:18;;48545:59:0;15625:346:1;48545:59:0;48647:11;48640:4;;:18;;;;:::i;:::-;48627:9;:31;;48619:65;;;;-1:-1:-1;;;48619:65:0;;;;;;;:::i;:::-;48371:325;48344:352;48725:1;48708:129;48733:11;48728:1;:16;48708:129;;48766:33;48776:10;48788;48797:1;48788:6;:10;:::i;48766:33::-;48824:1;48814:6;;:11;;;;;;;:::i;:::-;;;;-1:-1:-1;48746:3:0;;-1:-1:-1;48746:3:0;;;:::i;:::-;;;;48708:129;;29780:155;29875:52;5051:10;29908:8;29918;29875:18;:52::i;30903:328::-;31078:41;5051:10;31111:7;31078:18;:41::i;:::-;31070:103;;;;-1:-1:-1;;;31070:103:0;;;;;;;:::i;:::-;31184:39;31198:4;31204:2;31208:7;31217:5;31184:13;:39::i;:::-;30903:328;;;;:::o;51355:102::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;51426:12:::1;:23:::0;51355:102::o;47069:37::-;;;;;;;:::i;50503:638::-;32806:4;32830:16;;;:7;:16;;;;;;50576:13;;-1:-1:-1;;;;;32830:16:0;50602:76;;;;-1:-1:-1;;;50602:76:0;;16178:2:1;50602:76:0;;;16160:21:1;16217:2;16197:18;;;16190:30;16256:34;16236:18;;;16229:62;-1:-1:-1;;;16307:18:1;;;16300:45;16362:19;;50602:76:0;15976:411:1;50602:76:0;50695:8;;;;;;;50691:71;;50736:14;50729:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50503:638;;;:::o;50691:71::-;50774:28;50805:10;:8;:10::i;:::-;50774:41;;50877:1;50852:14;50846:28;:32;:287;;;;;;;;;;;;;;;;;50970:14;51011:18;:7;:16;:18::i;:::-;51056:13;50927:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50846:287;50826:307;50503:638;-1:-1:-1;;;50503:638:0:o;51243:104::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;51315:13:::1;:24:::0;51243:104::o;52024:128::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;52111:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;51465:118::-:0;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;51544:12:::1;:31:::0;51465:118::o;51703:132::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;51792:35;;::::1;::::0;:14:::1;::::0;:35:::1;::::0;::::1;::::0;::::1;:::i;7156:201::-:0;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7245:22:0;::::1;7237:73;;;::::0;-1:-1:-1;;;7237:73:0;;18252:2:1;7237:73:0::1;::::0;::::1;18234:21:1::0;18291:2;18271:18;;;18264:30;18330:34;18310:18;;;18303:62;-1:-1:-1;;;18381:18:1;;;18374:36;18427:19;;7237:73:0::1;18050:402:1::0;7237:73:0::1;7321:28;7340:8;7321:18;:28::i;:::-;7156:201:::0;:::o;8535:387::-;8858:20;8906:8;;;8535:387::o;26983:305::-;27085:4;-1:-1:-1;;;;;;27122:40:0;;-1:-1:-1;;;27122:40:0;;:105;;-1:-1:-1;;;;;;;27179:48:0;;-1:-1:-1;;;27179:48:0;27122:105;:158;;;-1:-1:-1;;;;;;;;;;18788:40:0;;;27244:36;18679:157;36723:174;36798:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36798:29:0;-1:-1:-1;;;;;36798:29:0;;;;;;;;:24;;36852:23;36798:24;36852:14;:23::i;:::-;-1:-1:-1;;;;;36843:46:0;;;;;;;;;;;36723:174;;:::o;908:190::-;1033:4;1086;1057:25;1070:5;1077:4;1057:12;:25::i;:::-;:33;;908:190;-1:-1:-1;;;;908:190:0:o;33725:110::-;33801:26;33811:2;33815:7;33801:26;;;;;;;;;;;;:9;:26::i;33035:348::-;33128:4;32830:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32830:16:0;33145:73;;;;-1:-1:-1;;;33145:73:0;;18659:2:1;33145:73:0;;;18641:21:1;18698:2;18678:18;;;18671:30;18737:34;18717:18;;;18710:62;-1:-1:-1;;;18788:18:1;;;18781:42;18840:19;;33145:73:0;18457:408:1;33145:73:0;33229:13;33245:23;33260:7;33245:14;:23::i;:::-;33229:39;;33298:5;-1:-1:-1;;;;;33287:16:0;:7;-1:-1:-1;;;;;33287:16:0;;:51;;;;33331:7;-1:-1:-1;;;;;33307:31:0;:20;33319:7;33307:11;:20::i;:::-;-1:-1:-1;;;;;33307:31:0;;33287:51;:87;;;-1:-1:-1;;;;;;30127:25:0;;;30103:4;30127:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33342:32;33279:96;33035:348;-1:-1:-1;;;;33035:348:0:o;36027:578::-;36186:4;-1:-1:-1;;;;;36159:31:0;:23;36174:7;36159:14;:23::i;:::-;-1:-1:-1;;;;;36159:31:0;;36151:85;;;;-1:-1:-1;;;36151:85:0;;19072:2:1;36151:85:0;;;19054:21:1;19111:2;19091:18;;;19084:30;19150:34;19130:18;;;19123:62;-1:-1:-1;;;19201:18:1;;;19194:39;19250:19;;36151:85:0;18870:405:1;36151:85:0;-1:-1:-1;;;;;36255:16:0;;36247:65;;;;-1:-1:-1;;;36247:65:0;;19482:2:1;36247:65:0;;;19464:21:1;19521:2;19501:18;;;19494:30;19560:34;19540:18;;;19533:62;-1:-1:-1;;;19611:18:1;;;19604:34;19655:19;;36247:65:0;19280:400:1;36247:65:0;36325:39;36346:4;36352:2;36356:7;36325:20;:39::i;:::-;36429:29;36446:1;36450:7;36429:8;:29::i;:::-;-1:-1:-1;;;;;36471:15:0;;;;;;:9;:15;;;;;:20;;36490:1;;36471:15;:20;;36490:1;;36471:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36502:13:0;;;;;;:9;:13;;;;;:18;;36519:1;;36502:13;:18;;36519:1;;36502:18;:::i;:::-;;;;-1:-1:-1;;36531:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36531:21:0;-1:-1:-1;;;;;36531:21:0;;;;;;;;;36570:27;;36531:16;;36570:27;;;;;;;36027:578;;;:::o;7517:191::-;7610:6;;;-1:-1:-1;;;;;7627:17:0;;;-1:-1:-1;;;;;;7627:17:0;;;;;;;7660:40;;7610:6;;;7627:17;7610:6;;7660:40;;7591:16;;7660:40;7580:128;7517:191;:::o;37039:315::-;37194:8;-1:-1:-1;;;;;37185:17:0;:5;-1:-1:-1;;;;;37185:17:0;;;37177:55;;;;-1:-1:-1;;;37177:55:0;;20017:2:1;37177:55:0;;;19999:21:1;20056:2;20036:18;;;20029:30;20095:27;20075:18;;;20068:55;20140:18;;37177:55:0;19815:349:1;37177:55:0;-1:-1:-1;;;;;37243:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37243:46:0;;;;;;;;;;37305:41;;540::1;;;37305::0;;513:18:1;37305:41:0;;;;;;;37039:315;;;:::o;32113:::-;32270:28;32280:4;32286:2;32290:7;32270:9;:28::i;:::-;32317:48;32340:4;32346:2;32350:7;32359:5;32317:22;:48::i;:::-;32309:111;;;;-1:-1:-1;;;32309:111:0;;;;;;;:::i;47990:108::-;48050:13;48083:7;48076:14;;;;;:::i;2533:723::-;2589:13;2810:10;2806:53;;-1:-1:-1;;2837:10:0;;;;;;;;;;;;-1:-1:-1;;;2837:10:0;;;;;2533:723::o;2806:53::-;2884:5;2869:12;2925:78;2932:9;;2925:78;;2958:8;;;;:::i;:::-;;-1:-1:-1;2981:10:0;;-1:-1:-1;2989:2:0;2981:10;;:::i;:::-;;;2925:78;;;3013:19;3045:6;3035:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3035:17:0;;3013:39;;3063:154;3070:10;;3063:154;;3097:11;3107:1;3097:11;;:::i;:::-;;-1:-1:-1;3166:10:0;3174:2;3166:5;:10;:::i;:::-;3153:24;;:2;:24;:::i;:::-;3140:39;;3123:6;3130;3123:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3123:56:0;;;;;;;;-1:-1:-1;3194:11:0;3203:2;3194:11;;:::i;:::-;;;3063:154;;1460:701;1543:7;1586:4;1543:7;1601:523;1625:5;:12;1621:1;:16;1601:523;;;1659:20;1682:5;1688:1;1682:8;;;;;;;;:::i;:::-;;;;;;;1659:31;;1725:12;1709;:28;1705:408;;1862:44;;;;;;21119:19:1;;;21154:12;;;21147:28;;;21191:12;;1862:44:0;;;;;;;;;;;;1852:55;;;;;;1837:70;;1705:408;;;2052:44;;;;;;21119:19:1;;;21154:12;;;21147:28;;;21191:12;;2052:44:0;;;;;;;;;;;;2042:55;;;;;;2027:70;;1705:408;-1:-1:-1;1639:3:0;;;;:::i;:::-;;;;1601:523;;34062:321;34192:18;34198:2;34202:7;34192:5;:18::i;:::-;34243:54;34274:1;34278:2;34282:7;34291:5;34243:22;:54::i;:::-;34221:154;;;;-1:-1:-1;;;34221:154:0;;;;;;;:::i;42110:589::-;-1:-1:-1;;;;;42316:18:0;;42312:187;;42351:40;42383:7;43526:10;:17;;43499:24;;;;:15;:24;;;;;:44;;;43554:24;;;;;;;;;;;;43422:164;42351:40;42312:187;;;42421:2;-1:-1:-1;;;;;42413:10:0;:4;-1:-1:-1;;;;;42413:10:0;;42409:90;;42440:47;42473:4;42479:7;42440:32;:47::i;:::-;-1:-1:-1;;;;;42513:16:0;;42509:183;;42546:45;42583:7;42546:36;:45::i;42509:183::-;42619:4;-1:-1:-1;;;;;42613:10:0;:2;-1:-1:-1;;;;;42613:10:0;;42609:83;;42640:40;42668:2;42672:7;42640:27;:40::i;37919:799::-;38074:4;-1:-1:-1;;;;;38095:13:0;;8858:20;8906:8;38091:620;;38131:72;;-1:-1:-1;;;38131:72:0;;-1:-1:-1;;;;;38131:36:0;;;;;:72;;5051:10;;38182:4;;38188:7;;38197:5;;38131:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38131:72:0;;;;;;;;-1:-1:-1;;38131:72:0;;;;;;;;;;;;:::i;:::-;;;38127:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38373:13:0;;38369:272;;38416:60;;-1:-1:-1;;;38416:60:0;;;;;;;:::i;38369:272::-;38591:6;38585:13;38576:6;38572:2;38568:15;38561:38;38127:529;-1:-1:-1;;;;;;38254:51:0;-1:-1:-1;;;38254:51:0;;-1:-1:-1;38247:58:0;;38091:620;-1:-1:-1;38695:4:0;37919:799;;;;;;:::o;34719:382::-;-1:-1:-1;;;;;34799:16:0;;34791:61;;;;-1:-1:-1;;;34791:61:0;;22164:2:1;34791:61:0;;;22146:21:1;;;22183:18;;;22176:30;22242:34;22222:18;;;22215:62;22294:18;;34791:61:0;21962:356:1;34791:61:0;32806:4;32830:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32830:16:0;:30;34863:58;;;;-1:-1:-1;;;34863:58:0;;22525:2:1;34863:58:0;;;22507:21:1;22564:2;22544:18;;;22537:30;22603;22583:18;;;22576:58;22651:18;;34863:58:0;22323:352:1;34863:58:0;34934:45;34963:1;34967:2;34971:7;34934:20;:45::i;:::-;-1:-1:-1;;;;;34992:13:0;;;;;;:9;:13;;;;;:18;;35009:1;;34992:13;:18;;35009:1;;34992:18;:::i;:::-;;;;-1:-1:-1;;35021:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35021:21:0;-1:-1:-1;;;;;35021:21:0;;;;;;;;35060:33;;35021:16;;;35060:33;;35021:16;;35060:33;34719:382;;:::o;44213:988::-;44479:22;44529:1;44504:22;44521:4;44504:16;:22::i;:::-;:26;;;;:::i;:::-;44541:18;44562:26;;;:17;:26;;;;;;44479:51;;-1:-1:-1;44695:28:0;;;44691:328;;-1:-1:-1;;;;;44762:18:0;;44740:19;44762:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44813:30;;;;;;:44;;;44930:30;;:17;:30;;;;;:43;;;44691:328;-1:-1:-1;45115:26:0;;;;:17;:26;;;;;;;;45108:33;;;-1:-1:-1;;;;;45159:18:0;;;;;:12;:18;;;;;:34;;;;;;;45152:41;44213:988::o;45496:1079::-;45774:10;:17;45749:22;;45774:21;;45794:1;;45774:21;:::i;:::-;45806:18;45827:24;;;:15;:24;;;;;;46200:10;:26;;45749:46;;-1:-1:-1;45827:24:0;;45749:46;;46200:26;;;;;;:::i;:::-;;;;;;;;;46178:48;;46264:11;46239:10;46250;46239:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46344:28;;;:15;:28;;;;;;;:41;;;46516:24;;;;;46509:31;46551:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45567:1008;;;45496:1079;:::o;43000:221::-;43085:14;43102:20;43119:2;43102:16;:20::i;:::-;-1:-1:-1;;;;;43133:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43178:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43000:221:0: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:751::-;2809:6;2817;2825;2833;2886:2;2874:9;2865:7;2861:23;2857:32;2854:52;;;2902:1;2899;2892:12;2854:52;2938:9;2925:23;2915:33;;2999:2;2988:9;2984:18;2971:32;3022:18;3063:2;3055:6;3052:14;3049:34;;;3079:1;3076;3069:12;3049:34;3117:6;3106:9;3102:22;3092:32;;3162:7;3155:4;3151:2;3147:13;3143:27;3133:55;;3184:1;3181;3174:12;3133:55;3224:2;3211:16;3250:2;3242:6;3239:14;3236:34;;;3266:1;3263;3256:12;3236:34;3319:7;3314:2;3304:6;3301:1;3297:14;3293:2;3289:23;3285:32;3282:45;3279:65;;;3340:1;3337;3330:12;3279:65;2705:751;;3371:2;3363:11;;;;;-1:-1:-1;3393:6:1;;3446:2;3431:18;3418:32;;-1:-1:-1;2705:751:1;-1:-1:-1;;;2705:751:1:o;3461:328::-;3538:6;3546;3554;3607:2;3595:9;3586:7;3582:23;3578:32;3575:52;;;3623:1;3620;3613:12;3575:52;3646:29;3665:9;3646:29;:::i;:::-;3636:39;;3694:38;3728:2;3717:9;3713:18;3694:38;:::i;:::-;3684:48;;3779:2;3768:9;3764:18;3751:32;3741:42;;3461:328;;;;;:::o;3794:186::-;3853:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:52;;;3922:1;3919;3912:12;3874:52;3945:29;3964:9;3945:29;:::i;3985:632::-;4156:2;4208:21;;;4278:13;;4181:18;;;4300:22;;;4127:4;;4156:2;4379:15;;;;4353:2;4338:18;;;4127:4;4422:169;4436:6;4433:1;4430:13;4422:169;;;4497:13;;4485:26;;4566:15;;;;4531:12;;;;4458:1;4451:9;4422:169;;;-1:-1:-1;4608:3:1;;3985:632;-1:-1:-1;;;;;;3985:632:1:o;4804:127::-;4865:10;4860:3;4856:20;4853:1;4846:31;4896:4;4893:1;4886:15;4920:4;4917:1;4910:15;4936:632;5001:5;5031:18;5072:2;5064:6;5061:14;5058:40;;;5078:18;;:::i;:::-;5153:2;5147:9;5121:2;5207:15;;-1:-1:-1;;5203:24:1;;;5229:2;5199:33;5195:42;5183:55;;;5253:18;;;5273:22;;;5250:46;5247:72;;;5299:18;;:::i;:::-;5339:10;5335:2;5328:22;5368:6;5359:15;;5398:6;5390;5383:22;5438:3;5429:6;5424:3;5420:16;5417:25;5414:45;;;5455:1;5452;5445:12;5414:45;5505:6;5500:3;5493:4;5485:6;5481:17;5468:44;5560:1;5553:4;5544:6;5536;5532:19;5528:30;5521:41;;;;4936:632;;;;;:::o;5573:451::-;5642:6;5695:2;5683:9;5674:7;5670:23;5666:32;5663:52;;;5711:1;5708;5701:12;5663:52;5751:9;5738:23;5784:18;5776:6;5773:30;5770:50;;;5816:1;5813;5806:12;5770:50;5839:22;;5892:4;5884:13;;5880:27;-1:-1:-1;5870:55:1;;5921:1;5918;5911:12;5870:55;5944:74;6010:7;6005:2;5992:16;5987:2;5983;5979:11;5944:74;:::i;6029:248::-;6097:6;6105;6158:2;6146:9;6137:7;6133:23;6129:32;6126:52;;;6174:1;6171;6164:12;6126:52;-1:-1:-1;;6197:23:1;;;6267:2;6252:18;;;6239:32;;-1:-1:-1;6029:248:1:o;6282:254::-;6347:6;6355;6408:2;6396:9;6387:7;6383:23;6379:32;6376:52;;;6424:1;6421;6414:12;6376:52;6447:29;6466:9;6447:29;:::i;:::-;6437:39;;6495:35;6526:2;6515:9;6511:18;6495:35;:::i;:::-;6485:45;;6282:254;;;;;:::o;6541:667::-;6636:6;6644;6652;6660;6713:3;6701:9;6692:7;6688:23;6684:33;6681:53;;;6730:1;6727;6720:12;6681:53;6753:29;6772:9;6753:29;:::i;:::-;6743:39;;6801:38;6835:2;6824:9;6820:18;6801:38;:::i;:::-;6791:48;;6886:2;6875:9;6871:18;6858:32;6848:42;;6941:2;6930:9;6926:18;6913:32;6968:18;6960:6;6957:30;6954:50;;;7000:1;6997;6990:12;6954:50;7023:22;;7076:4;7068:13;;7064:27;-1:-1:-1;7054:55:1;;7105:1;7102;7095:12;7054:55;7128:74;7194:7;7189:2;7176:16;7171:2;7167;7163:11;7128:74;:::i;:::-;7118:84;;;6541:667;;;;;;;:::o;7213:260::-;7281:6;7289;7342:2;7330:9;7321:7;7317:23;7313:32;7310:52;;;7358:1;7355;7348:12;7310:52;7381:29;7400:9;7381:29;:::i;:::-;7371:39;;7429:38;7463:2;7452:9;7448:18;7429:38;:::i;7478:356::-;7680:2;7662:21;;;7699:18;;;7692:30;7758:34;7753:2;7738:18;;7731:62;7825:2;7810:18;;7478:356::o;7839:380::-;7918:1;7914:12;;;;7961;;;7982:61;;8036:4;8028:6;8024:17;8014:27;;7982:61;8089:2;8081:6;8078:14;8058:18;8055:38;8052:161;;;8135:10;8130:3;8126:20;8123:1;8116:31;8170:4;8167:1;8160:15;8198:4;8195:1;8188:15;8052:161;;7839:380;;;:::o;10507:127::-;10568:10;10563:3;10559:20;10556:1;10549:31;10599:4;10596:1;10589:15;10623:4;10620:1;10613:15;10639:128;10679:3;10710:1;10706:6;10703:1;10700:13;10697:39;;;10716:18;;:::i;:::-;-1:-1:-1;10752:9:1;;10639:128::o;12064:168::-;12104:7;12170:1;12166;12162:6;12158:14;12155:1;12152:21;12147:1;12140:9;12133:17;12129:45;12126:71;;;12177:18;;:::i;:::-;-1:-1:-1;12217:9:1;;12064:168::o;12237:345::-;12439:2;12421:21;;;12478:2;12458:18;;;12451:30;-1:-1:-1;;;12512:2:1;12497:18;;12490:51;12573:2;12558:18;;12237:345::o;12931:135::-;12970:3;-1:-1:-1;;12991:17:1;;12988:43;;;13011:18;;:::i;:::-;-1:-1:-1;13058:1:1;13047:13;;12931:135::o;13071:413::-;13273:2;13255:21;;;13312:2;13292:18;;;13285:30;13351:34;13346:2;13331:18;;13324:62;-1:-1:-1;;;13417:2:1;13402:18;;13395:47;13474:3;13459:19;;13071:413::o;13901:127::-;13962:10;13957:3;13953:20;13950:1;13943:31;13993:4;13990:1;13983:15;14017:4;14014:1;14007:15;16518:1527;16742:3;16780:6;16774:13;16806:4;16819:51;16863:6;16858:3;16853:2;16845:6;16841:15;16819:51;:::i;:::-;16933:13;;16892:16;;;;16955:55;16933:13;16892:16;16977:15;;;16955:55;:::i;:::-;17099:13;;17032:20;;;17072:1;;17159;17181:18;;;;17234;;;;17261:93;;17339:4;17329:8;17325:19;17313:31;;17261:93;17402:2;17392:8;17389:16;17369:18;17366:40;17363:167;;;-1:-1:-1;;;17429:33:1;;17485:4;17482:1;17475:15;17515:4;17436:3;17503:17;17363:167;17546:18;17573:110;;;;17697:1;17692:328;;;;17539:481;;17573:110;-1:-1:-1;;17608:24:1;;17594:39;;17653:20;;;;-1:-1:-1;17573:110:1;;17692:328;16465:1;16458:14;;;16502:4;16489:18;;17787:1;17801:169;17815:8;17812:1;17809:15;17801:169;;;17897:14;;17882:13;;;17875:37;17940:16;;;;17832:10;;17801:169;;;17805:3;;18001:8;17994:5;17990:20;17983:27;;17539:481;-1:-1:-1;18036:3:1;;16518:1527;-1:-1:-1;;;;;;;;;;;16518:1527:1:o;19685:125::-;19725:4;19753:1;19750;19747:8;19744:34;;;19758:18;;:::i;:::-;-1:-1:-1;19795:9:1;;19685:125::o;20169:414::-;20371:2;20353:21;;;20410:2;20390:18;;;20383:30;20449:34;20444:2;20429:18;;20422:62;-1:-1:-1;;;20515:2:1;20500:18;;20493:48;20573:3;20558:19;;20169:414::o;20588:127::-;20649:10;20644:3;20640:20;20637:1;20630:31;20680:4;20677:1;20670:15;20704:4;20701:1;20694:15;20720:120;20760:1;20786;20776:35;;20791:18;;:::i;:::-;-1:-1:-1;20825:9:1;;20720:120::o;20845:112::-;20877:1;20903;20893:35;;20908:18;;:::i;:::-;-1:-1:-1;20942:9:1;;20845:112::o;21214:489::-;-1:-1:-1;;;;;21483:15:1;;;21465:34;;21535:15;;21530:2;21515:18;;21508:43;21582:2;21567:18;;21560:34;;;21630:3;21625:2;21610:18;;21603:31;;;21408:4;;21651:46;;21677:19;;21669:6;21651:46;:::i;:::-;21643:54;21214:489;-1:-1:-1;;;;;;21214:489:1:o;21708:249::-;21777:6;21830:2;21818:9;21809:7;21805:23;21801:32;21798:52;;;21846:1;21843;21836:12;21798:52;21878:9;21872:16;21897:30;21921:5;21897:30;:::i;22680:127::-;22741:10;22736:3;22732:20;22729:1;22722:31;22772:4;22769:1;22762:15;22796:4;22793:1;22786:15

Swarm Source

ipfs://2792b49c94bc9b25d2a89c9cd113d523bb281172416a54a667962e6eea93f97b
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.