ETH Price: $3,324.93 (+2.20%)

Token

Zuki Ape Club (ZUKI)
 

Overview

Max Total Supply

164 ZUKI

Holders

70

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
f00f.eth
Balance
5 ZUKI
0xd6dF883A4927C4068f017573D781A4a62dfC992D
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:
ZukiApeClub

Compiler Version
v0.8.7+commit.e28d00a7

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;
/*
███████╗██╗   ██╗██╗  ██╗██╗     █████╗ ██████╗ ███████╗     ██████╗██╗     ██╗   ██╗██████╗ 
╚══███╔╝██║   ██║██║ ██╔╝██║    ██╔══██╗██╔══██╗██╔════╝    ██╔════╝██║     ██║   ██║██╔══██╗
  ███╔╝ ██║   ██║█████╔╝ ██║    ███████║██████╔╝█████╗      ██║     ██║     ██║   ██║██████╔╝
 ███╔╝  ██║   ██║██╔═██╗ ██║    ██╔══██║██╔═══╝ ██╔══╝      ██║     ██║     ██║   ██║██╔══██╗
███████╗╚██████╔╝██║  ██╗██║    ██║  ██║██║     ███████╗    ╚██████╗███████╗╚██████╔╝██████╔╝
╚══════╝ ╚═════╝ ╚═╝  ╚═╝╚═╝    ╚═╝  ╚═╝╚═╝     ╚══════╝     ╚═════╝╚══════╝ ╚═════╝ ╚═════╝ 

made with ❤ by Team Zuki Ape Club
*/

/**
 * @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/cryptography/ECDSA.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// 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/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// 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/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: @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: ZukiApeClub.sol


//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
pragma solidity ^0.8.0;
/*

 ______     __  __     __  __     __        ______     ______   ______        ______     __         __  __     ______    
/\___  \   /\ \/\ \   /\ \/ /    /\ \      /\  __ \   /\  == \ /\  ___\      /\  ___\   /\ \       /\ \/\ \   /\  == \   
\/_/  /__  \ \ \_\ \  \ \  _"-.  \ \ \     \ \  __ \  \ \  _-/ \ \  __\      \ \ \____  \ \ \____  \ \ \_\ \  \ \  __<   
  /\_____\  \ \_____\  \ \_\ \_\  \ \_\     \ \_\ \_\  \ \_\    \ \_____\     \ \_____\  \ \_____\  \ \_____\  \ \_____\ 
  \/_____/   \/_____/   \/_/\/_/   \/_/      \/_/\/_/   \/_/     \/_____/      \/_____/   \/_____/   \/_____/   \/_____/ 
                                                                                                                         

made with ❤ by Team Zuki Ape Club
*/






contract ZukiApeClub is ERC721Enumerable, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;
    using ECDSA for bytes32;

    // Constant variables
    // ------------------------------------------------------------------------
    uint public constant PUBLIC_SUPPLY = 5000;

    // Mapping variables
    // ------------------------------------------------------------------------
    mapping(address => uint256) public publicListPurchases;
    
    // Public variables
    // ------------------------------------------------------------------------
    uint256 public cost = 0.04 ether;
    uint256 public publicMintLimit = 10;
    uint256 public publicAmountMinted;

    // URI variables
    // ------------------------------------------------------------------------
    string private baseTokenURI = "";

    // Deployer address
    // ------------------------------------------------------------------------
    address public constant creatorAddress = 0x6afCDC62a62887d33CBf86289314Ad1F55f0a8fa;

    bool public saleLive = true;
    bool public revealed = false;
    bool public paused = false;
    
    // Constructor
    // ------------------------------------------------------------------------
    constructor(string memory name, string memory symbol, string memory unrevealedBaseURI) ERC721(name, symbol) {
        setBaseURI(unrevealedBaseURI);
    }

    // Mint function
    // ------------------------------------------------------------------------
    function mintPublic(uint256 mintAmount) external payable {
        require(!saleLive, "Sale is not active");
        require(!paused, "Sale is paused");
        require(totalSupply() < PUBLIC_SUPPLY, "Out of stock");
        require(publicAmountMinted + mintAmount <= PUBLIC_SUPPLY, "Out of public stock");
        require(publicListPurchases[msg.sender] + mintAmount <= publicMintLimit, "Public mint limit exceeded");
        require(mintAmount <= publicMintLimit, "Exceeded mint limit");
        require(cost * mintAmount <= msg.value, "Ether value sent is not correct"); 
        
        for(uint256 i = 1; i <= mintAmount; i++) {
            publicAmountMinted++;
            publicListPurchases[msg.sender]++;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    // Reserved mint function (for marketing)
    // ------------------------------------------------------------------------
    function mintReserved(uint256 mintAmount) external onlyOwner {
        require(!paused, "Sale is paused");
        require(totalSupply() < PUBLIC_SUPPLY, "Out of stock");
        
        for(uint256 i = 1; i <= mintAmount; i++) {
            _safeMint(msg.sender, totalSupply() + 1);
        }
        
    }
    
    // Get base token URI
    // ------------------------------------------------------------------------
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        if (!revealed) {
            return baseTokenURI;
        }
        
        return bytes(baseTokenURI).length > 0 ? string(abi.encodePacked(baseTokenURI, "/", tokenId.toString(), ".json")): "";
    }
    
    // Owner functions
    // Toggle reveal function (True by default)
    // ------------------------------------------------------------------------
    function reveal() public onlyOwner {
        revealed = true;
    }
    
    // Toggle sale (False by default)
    // ------------------------------------------------------------------------
    function togglePublicSale() external onlyOwner {
        saleLive = !saleLive;
    }

    // Toggle paused (True by default)
    // ------------------------------------------------------------------------
    function togglePaused() external onlyOwner {
        paused = !paused;
    }

    // Set new cost
    // ------------------------------------------------------------------------
    function setCost(uint256 _newCost) public onlyOwner() {
        cost = _newCost;
    }

    // Set public purchase limit
    // ------------------------------------------------------------------------
    function setPublicMintLimit(uint256 _publicMintLimit) public onlyOwner() {
        publicMintLimit = _publicMintLimit;
    }
    
    // Set base URI
    // ------------------------------------------------------------------------
    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }
    
    // Withdrawal function
    // ------------------------------------------------------------------------
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"unrevealedBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMintLimit","type":"uint256"}],"name":"setPublicMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

668e1bc9bf040000600c55600a600d5560a06040819052600060808190526200002b91600f9162000199565b506010805462ffffff191660011790553480156200004857600080fd5b5060405162002961380380620029618339810160408190526200006b91620002f6565b8251839083906200008490600090602085019062000199565b5080516200009a90600190602084019062000199565b505050620000b7620000b1620000cb60201b60201c565b620000cf565b620000c28162000121565b505050620003da565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001805760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200019590600f90602084019062000199565b5050565b828054620001a79062000387565b90600052602060002090601f016020900481019282620001cb576000855562000216565b82601f10620001e657805160ff191683800117855562000216565b8280016001018555821562000216579182015b8281111562000216578251825591602001919060010190620001f9565b506200022492915062000228565b5090565b5b8082111562000224576000815560010162000229565b600082601f8301126200025157600080fd5b81516001600160401b03808211156200026e576200026e620003c4565b604051601f8301601f19908116603f01168101908282118183101715620002995762000299620003c4565b81604052838152602092508683858801011115620002b657600080fd5b600091505b83821015620002da5785820183015181830184015290820190620002bb565b83821115620002ec5760008385830101525b9695505050505050565b6000806000606084860312156200030c57600080fd5b83516001600160401b03808211156200032457600080fd5b62000332878388016200023f565b945060208601519150808211156200034957600080fd5b62000357878388016200023f565b935060408601519150808211156200036e57600080fd5b506200037d868287016200023f565b9150509250925092565b600181811c908216806200039c57607f821691505b60208210811415620003be57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61257780620003ea6000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063e927fc5c1161006f578063e927fc5c146105ed578063e985e9c514610615578063ef3e067c1461065e578063efd0cbf91461067e578063f2fde38b1461069157600080fd5b8063b88d4fde14610568578063bb485b8814610588578063c87b56dd1461059e578063e081b781146105be578063e222c7f9146105d857600080fd5b8063953dafe0116100f2578063953dafe0146104d157806395d89b41146104fe5780639a5d140b14610513578063a22cb46514610533578063a475b5dd1461055357600080fd5b8063715018a6146104725780638342083a146104875780638da5cb5b1461049d578063940f1ada146104bb57600080fd5b80633ccfd60b116101a6578063518302271161017557806351830227146103d357806355f804b3146103f25780635c975abb146104125780636352211e1461043257806370a082311461045257600080fd5b80633ccfd60b1461035e57806342842e0e1461037357806344a0d68a146103935780634f6ccce7146103b357600080fd5b806313faede6116101ed57806313faede6146102d057806318160ddd146102f457806323b872dd146103095780632f745c591461032957806336566f061461034957600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046120ee565b6106b1565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106dc565b60405161024b91906122da565b34801561028257600080fd5b50610296610291366004612171565b61076e565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c93660046120c4565b610808565b005b3480156102dc57600080fd5b506102e6600c5481565b60405190815260200161024b565b34801561030057600080fd5b506008546102e6565b34801561031557600080fd5b506102ce610324366004611fd0565b61091e565b34801561033557600080fd5b506102e66103443660046120c4565b61094f565b34801561035557600080fd5b506102ce6109e5565b34801561036a57600080fd5b506102ce610a2e565b34801561037f57600080fd5b506102ce61038e366004611fd0565b610abc565b34801561039f57600080fd5b506102ce6103ae366004612171565b610ad7565b3480156103bf57600080fd5b506102e66103ce366004612171565b610b06565b3480156103df57600080fd5b5060105461023f90610100900460ff1681565b3480156103fe57600080fd5b506102ce61040d366004612128565b610b99565b34801561041e57600080fd5b5060105461023f9062010000900460ff1681565b34801561043e57600080fd5b5061029661044d366004612171565b610bd6565b34801561045e57600080fd5b506102e661046d366004611f7b565b610c4d565b34801561047e57600080fd5b506102ce610cd4565b34801561049357600080fd5b506102e661138881565b3480156104a957600080fd5b50600a546001600160a01b0316610296565b3480156104c757600080fd5b506102e6600e5481565b3480156104dd57600080fd5b506102e66104ec366004611f7b565b600b6020526000908152604090205481565b34801561050a57600080fd5b50610269610d0a565b34801561051f57600080fd5b506102ce61052e366004612171565b610d19565b34801561053f57600080fd5b506102ce61054e366004612088565b610e0e565b34801561055f57600080fd5b506102ce610e19565b34801561057457600080fd5b506102ce61058336600461200c565b610e54565b34801561059457600080fd5b506102e6600d5481565b3480156105aa57600080fd5b506102696105b9366004612171565b610e8c565b3480156105ca57600080fd5b5060105461023f9060ff1681565b3480156105e457600080fd5b506102ce611008565b3480156105f957600080fd5b50610296736afcdc62a62887d33cbf86289314ad1f55f0a8fa81565b34801561062157600080fd5b5061023f610630366004611f9d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066a57600080fd5b506102ce610679366004612171565b611046565b6102ce61068c366004612171565b611075565b34801561069d57600080fd5b506102ce6106ac366004611f7b565b611313565b60006001600160e01b0319821663780e9d6360e01b14806106d657506106d6826113ae565b92915050565b6060600080546106eb90612453565b80601f016020809104026020016040519081016040528092919081815260200182805461071790612453565b80156107645780601f1061073957610100808354040283529160200191610764565b820191906000526020600020905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061081382610bd6565b9050806001600160a01b0316836001600160a01b031614156108815760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e3565b336001600160a01b038216148061089d575061089d8133610630565b61090f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e3565b61091983836113fe565b505050565b610928338261146c565b6109445760405162461bcd60e51b81526004016107e390612374565b610919838383611563565b600061095a83610c4d565b82106109bc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107e3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a0f5760405162461bcd60e51b81526004016107e39061233f565b6010805462ff0000198116620100009182900460ff1615909102179055565b600a546001600160a01b03163314610a585760405162461bcd60e51b81526004016107e39061233f565b4780610a6357600080fd5b604051600090339047908381818185875af1925050503d8060008114610aa5576040519150601f19603f3d011682016040523d82523d6000602084013e610aaa565b606091505b5050905080610ab857600080fd5b5050565b61091983838360405180602001604052806000815250610e54565b600a546001600160a01b03163314610b015760405162461bcd60e51b81526004016107e39061233f565b600c55565b6000610b1160085490565b8210610b745760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107e3565b60088281548110610b8757610b876124ff565b90600052602060002001549050919050565b600a546001600160a01b03163314610bc35760405162461bcd60e51b81526004016107e39061233f565b8051610ab890600f906020840190611e50565b6000818152600260205260408120546001600160a01b0316806106d65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e3565b60006001600160a01b038216610cb85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610cfe5760405162461bcd60e51b81526004016107e39061233f565b610d08600061170e565b565b6060600180546106eb90612453565b600a546001600160a01b03163314610d435760405162461bcd60e51b81526004016107e39061233f565b60105462010000900460ff1615610d8d5760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b60448201526064016107e3565b611388610d9960085490565b10610dd55760405162461bcd60e51b815260206004820152600c60248201526b4f7574206f662073746f636b60a01b60448201526064016107e3565b60015b818111610ab857610dfc33610dec60085490565b610df79060016123c5565b611760565b80610e068161248e565b915050610dd8565b610ab833838361177a565b600a546001600160a01b03163314610e435760405162461bcd60e51b81526004016107e39061233f565b6010805461ff001916610100179055565b610e5e338361146c565b610e7a5760405162461bcd60e51b81526004016107e390612374565b610e8684848484611849565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f0b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107e3565b601054610100900460ff16610fac57600f8054610f2790612453565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5390612453565b8015610fa05780601f10610f7557610100808354040283529160200191610fa0565b820191906000526020600020905b815481529060010190602001808311610f8357829003601f168201915b50505050509050919050565b6000600f8054610fbb90612453565b905011610fd757604051806020016040528060008152506106d6565b600f610fe28361187c565b604051602001610ff39291906121d2565b60405160208183030381529060405292915050565b600a546001600160a01b031633146110325760405162461bcd60e51b81526004016107e39061233f565b6010805460ff19811660ff90911615179055565b600a546001600160a01b031633146110705760405162461bcd60e51b81526004016107e39061233f565b600d55565b60105460ff16156110bd5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016107e3565b60105462010000900460ff16156111075760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b60448201526064016107e3565b61138861111360085490565b1061114f5760405162461bcd60e51b815260206004820152600c60248201526b4f7574206f662073746f636b60a01b60448201526064016107e3565b61138881600e5461116091906123c5565b11156111a45760405162461bcd60e51b81526020600482015260136024820152724f7574206f66207075626c69632073746f636b60681b60448201526064016107e3565b600d54336000908152600b60205260409020546111c29083906123c5565b11156112105760405162461bcd60e51b815260206004820152601a60248201527f5075626c6963206d696e74206c696d697420657863656564656400000000000060448201526064016107e3565b600d548111156112585760405162461bcd60e51b8152602060048201526013602482015272115e18d959591959081b5a5b9d081b1a5b5a5d606a1b60448201526064016107e3565b3481600c5461126791906123f1565b11156112b55760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107e3565b60015b818111610ab857600e80549060006112cf8361248e565b9091555050336000908152600b602052604081208054916112ef8361248e565b919050555061130133610dec60085490565b8061130b8161248e565b9150506112b8565b600a546001600160a01b0316331461133d5760405162461bcd60e51b81526004016107e39061233f565b6001600160a01b0381166113a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e3565b6113ab8161170e565b50565b60006001600160e01b031982166380ac58cd60e01b14806113df57506001600160e01b03198216635b5e139f60e01b145b806106d657506301ffc9a760e01b6001600160e01b03198316146106d6565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061143382610bd6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114e55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e3565b60006114f083610bd6565b9050806001600160a01b0316846001600160a01b0316148061152b5750836001600160a01b03166115208461076e565b6001600160a01b0316145b8061155b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661157682610bd6565b6001600160a01b0316146115de5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e3565b6001600160a01b0382166116405760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e3565b61164b83838361197a565b6116566000826113fe565b6001600160a01b038316600090815260036020526040812080546001929061167f908490612410565b90915550506001600160a01b03821660009081526003602052604081208054600192906116ad9084906123c5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ab8828260405180602001604052806000815250611a32565b816001600160a01b0316836001600160a01b031614156117dc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611854848484611563565b61186084848484611a65565b610e865760405162461bcd60e51b81526004016107e3906122ed565b6060816118a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118ca57806118b48161248e565b91506118c39050600a836123dd565b91506118a4565b60008167ffffffffffffffff8111156118e5576118e5612515565b6040519080825280601f01601f19166020018201604052801561190f576020820181803683370190505b5090505b841561155b57611924600183612410565b9150611931600a866124a9565b61193c9060306123c5565b60f81b818381518110611951576119516124ff565b60200101906001600160f81b031916908160001a905350611973600a866123dd565b9450611913565b6001600160a01b0383166119d5576119d081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119f8565b816001600160a01b0316836001600160a01b0316146119f8576119f88382611b72565b6001600160a01b038216611a0f5761091981611c0f565b826001600160a01b0316826001600160a01b031614610919576109198282611cbe565b611a3c8383611d02565b611a496000848484611a65565b6109195760405162461bcd60e51b81526004016107e3906122ed565b60006001600160a01b0384163b15611b6757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611aa990339089908890889060040161229d565b602060405180830381600087803b158015611ac357600080fd5b505af1925050508015611af3575060408051601f3d908101601f19168201909252611af09181019061210b565b60015b611b4d573d808015611b21576040519150601f19603f3d011682016040523d82523d6000602084013e611b26565b606091505b508051611b455760405162461bcd60e51b81526004016107e3906122ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061155b565b506001949350505050565b60006001611b7f84610c4d565b611b899190612410565b600083815260076020526040902054909150808214611bdc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c2190600190612410565b60008381526009602052604081205460088054939450909284908110611c4957611c496124ff565b906000526020600020015490508060088381548110611c6a57611c6a6124ff565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ca257611ca26124e9565b6001900381819060005260206000200160009055905550505050565b6000611cc983610c4d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d585760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e3565b6000818152600260205260409020546001600160a01b031615611dbd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e3565b611dc96000838361197a565b6001600160a01b0382166000908152600360205260408120805460019290611df29084906123c5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e5c90612453565b90600052602060002090601f016020900481019282611e7e5760008555611ec4565b82601f10611e9757805160ff1916838001178555611ec4565b82800160010185558215611ec4579182015b82811115611ec4578251825591602001919060010190611ea9565b50611ed0929150611ed4565b5090565b5b80821115611ed05760008155600101611ed5565b600067ffffffffffffffff80841115611f0457611f04612515565b604051601f8501601f19908116603f01168101908282118183101715611f2c57611f2c612515565b81604052809350858152868686011115611f4557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f7657600080fd5b919050565b600060208284031215611f8d57600080fd5b611f9682611f5f565b9392505050565b60008060408385031215611fb057600080fd5b611fb983611f5f565b9150611fc760208401611f5f565b90509250929050565b600080600060608486031215611fe557600080fd5b611fee84611f5f565b9250611ffc60208501611f5f565b9150604084013590509250925092565b6000806000806080858703121561202257600080fd5b61202b85611f5f565b935061203960208601611f5f565b925060408501359150606085013567ffffffffffffffff81111561205c57600080fd5b8501601f8101871361206d57600080fd5b61207c87823560208401611ee9565b91505092959194509250565b6000806040838503121561209b57600080fd5b6120a483611f5f565b9150602083013580151581146120b957600080fd5b809150509250929050565b600080604083850312156120d757600080fd5b6120e083611f5f565b946020939093013593505050565b60006020828403121561210057600080fd5b8135611f968161252b565b60006020828403121561211d57600080fd5b8151611f968161252b565b60006020828403121561213a57600080fd5b813567ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b61155b84823560208401611ee9565b60006020828403121561218357600080fd5b5035919050565b600081518084526121a2816020860160208601612427565b601f01601f19169290920160200192915050565b600081516121c8818560208601612427565b9290920192915050565b600080845481600182811c9150808316806121ee57607f831692505b602080841082141561220e57634e487b7160e01b86526022600452602486fd5b818015612222576001811461223357612260565b60ff19861689528489019650612260565b60008b81526020902060005b868110156122585781548b82015290850190830161223f565b505084890196505b50505050505061229461228361227d83602f60f81b815260010190565b866121b6565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122d09083018461218a565b9695505050505050565b602081526000611f96602083018461218a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156123d8576123d86124bd565b500190565b6000826123ec576123ec6124d3565b500490565b600081600019048311821515161561240b5761240b6124bd565b500290565b600082821015612422576124226124bd565b500390565b60005b8381101561244257818101518382015260200161242a565b83811115610e865750506000910152565b600181811c9082168061246757607f821691505b6020821081141561248857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124a2576124a26124bd565b5060010190565b6000826124b8576124b86124d3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113ab57600080fdfea26469706673582212202dde156971eff7332b02a2e049102ea534a9837c0927cfb158b9a9ec9fe6a4c464736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d5a756b692041706520436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045a554b4900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e697066733a2f2f68696464656e2f000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063b88d4fde116100ab578063e927fc5c1161006f578063e927fc5c146105ed578063e985e9c514610615578063ef3e067c1461065e578063efd0cbf91461067e578063f2fde38b1461069157600080fd5b8063b88d4fde14610568578063bb485b8814610588578063c87b56dd1461059e578063e081b781146105be578063e222c7f9146105d857600080fd5b8063953dafe0116100f2578063953dafe0146104d157806395d89b41146104fe5780639a5d140b14610513578063a22cb46514610533578063a475b5dd1461055357600080fd5b8063715018a6146104725780638342083a146104875780638da5cb5b1461049d578063940f1ada146104bb57600080fd5b80633ccfd60b116101a6578063518302271161017557806351830227146103d357806355f804b3146103f25780635c975abb146104125780636352211e1461043257806370a082311461045257600080fd5b80633ccfd60b1461035e57806342842e0e1461037357806344a0d68a146103935780634f6ccce7146103b357600080fd5b806313faede6116101ed57806313faede6146102d057806318160ddd146102f457806323b872dd146103095780632f745c591461032957806336566f061461034957600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a3660046120ee565b6106b1565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696106dc565b60405161024b91906122da565b34801561028257600080fd5b50610296610291366004612171565b61076e565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c93660046120c4565b610808565b005b3480156102dc57600080fd5b506102e6600c5481565b60405190815260200161024b565b34801561030057600080fd5b506008546102e6565b34801561031557600080fd5b506102ce610324366004611fd0565b61091e565b34801561033557600080fd5b506102e66103443660046120c4565b61094f565b34801561035557600080fd5b506102ce6109e5565b34801561036a57600080fd5b506102ce610a2e565b34801561037f57600080fd5b506102ce61038e366004611fd0565b610abc565b34801561039f57600080fd5b506102ce6103ae366004612171565b610ad7565b3480156103bf57600080fd5b506102e66103ce366004612171565b610b06565b3480156103df57600080fd5b5060105461023f90610100900460ff1681565b3480156103fe57600080fd5b506102ce61040d366004612128565b610b99565b34801561041e57600080fd5b5060105461023f9062010000900460ff1681565b34801561043e57600080fd5b5061029661044d366004612171565b610bd6565b34801561045e57600080fd5b506102e661046d366004611f7b565b610c4d565b34801561047e57600080fd5b506102ce610cd4565b34801561049357600080fd5b506102e661138881565b3480156104a957600080fd5b50600a546001600160a01b0316610296565b3480156104c757600080fd5b506102e6600e5481565b3480156104dd57600080fd5b506102e66104ec366004611f7b565b600b6020526000908152604090205481565b34801561050a57600080fd5b50610269610d0a565b34801561051f57600080fd5b506102ce61052e366004612171565b610d19565b34801561053f57600080fd5b506102ce61054e366004612088565b610e0e565b34801561055f57600080fd5b506102ce610e19565b34801561057457600080fd5b506102ce61058336600461200c565b610e54565b34801561059457600080fd5b506102e6600d5481565b3480156105aa57600080fd5b506102696105b9366004612171565b610e8c565b3480156105ca57600080fd5b5060105461023f9060ff1681565b3480156105e457600080fd5b506102ce611008565b3480156105f957600080fd5b50610296736afcdc62a62887d33cbf86289314ad1f55f0a8fa81565b34801561062157600080fd5b5061023f610630366004611f9d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561066a57600080fd5b506102ce610679366004612171565b611046565b6102ce61068c366004612171565b611075565b34801561069d57600080fd5b506102ce6106ac366004611f7b565b611313565b60006001600160e01b0319821663780e9d6360e01b14806106d657506106d6826113ae565b92915050565b6060600080546106eb90612453565b80601f016020809104026020016040519081016040528092919081815260200182805461071790612453565b80156107645780601f1061073957610100808354040283529160200191610764565b820191906000526020600020905b81548152906001019060200180831161074757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107ec5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061081382610bd6565b9050806001600160a01b0316836001600160a01b031614156108815760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e3565b336001600160a01b038216148061089d575061089d8133610630565b61090f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e3565b61091983836113fe565b505050565b610928338261146c565b6109445760405162461bcd60e51b81526004016107e390612374565b610919838383611563565b600061095a83610c4d565b82106109bc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107e3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a0f5760405162461bcd60e51b81526004016107e39061233f565b6010805462ff0000198116620100009182900460ff1615909102179055565b600a546001600160a01b03163314610a585760405162461bcd60e51b81526004016107e39061233f565b4780610a6357600080fd5b604051600090339047908381818185875af1925050503d8060008114610aa5576040519150601f19603f3d011682016040523d82523d6000602084013e610aaa565b606091505b5050905080610ab857600080fd5b5050565b61091983838360405180602001604052806000815250610e54565b600a546001600160a01b03163314610b015760405162461bcd60e51b81526004016107e39061233f565b600c55565b6000610b1160085490565b8210610b745760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107e3565b60088281548110610b8757610b876124ff565b90600052602060002001549050919050565b600a546001600160a01b03163314610bc35760405162461bcd60e51b81526004016107e39061233f565b8051610ab890600f906020840190611e50565b6000818152600260205260408120546001600160a01b0316806106d65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e3565b60006001600160a01b038216610cb85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610cfe5760405162461bcd60e51b81526004016107e39061233f565b610d08600061170e565b565b6060600180546106eb90612453565b600a546001600160a01b03163314610d435760405162461bcd60e51b81526004016107e39061233f565b60105462010000900460ff1615610d8d5760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b60448201526064016107e3565b611388610d9960085490565b10610dd55760405162461bcd60e51b815260206004820152600c60248201526b4f7574206f662073746f636b60a01b60448201526064016107e3565b60015b818111610ab857610dfc33610dec60085490565b610df79060016123c5565b611760565b80610e068161248e565b915050610dd8565b610ab833838361177a565b600a546001600160a01b03163314610e435760405162461bcd60e51b81526004016107e39061233f565b6010805461ff001916610100179055565b610e5e338361146c565b610e7a5760405162461bcd60e51b81526004016107e390612374565b610e8684848484611849565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f0b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107e3565b601054610100900460ff16610fac57600f8054610f2790612453565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5390612453565b8015610fa05780601f10610f7557610100808354040283529160200191610fa0565b820191906000526020600020905b815481529060010190602001808311610f8357829003601f168201915b50505050509050919050565b6000600f8054610fbb90612453565b905011610fd757604051806020016040528060008152506106d6565b600f610fe28361187c565b604051602001610ff39291906121d2565b60405160208183030381529060405292915050565b600a546001600160a01b031633146110325760405162461bcd60e51b81526004016107e39061233f565b6010805460ff19811660ff90911615179055565b600a546001600160a01b031633146110705760405162461bcd60e51b81526004016107e39061233f565b600d55565b60105460ff16156110bd5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016107e3565b60105462010000900460ff16156111075760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b60448201526064016107e3565b61138861111360085490565b1061114f5760405162461bcd60e51b815260206004820152600c60248201526b4f7574206f662073746f636b60a01b60448201526064016107e3565b61138881600e5461116091906123c5565b11156111a45760405162461bcd60e51b81526020600482015260136024820152724f7574206f66207075626c69632073746f636b60681b60448201526064016107e3565b600d54336000908152600b60205260409020546111c29083906123c5565b11156112105760405162461bcd60e51b815260206004820152601a60248201527f5075626c6963206d696e74206c696d697420657863656564656400000000000060448201526064016107e3565b600d548111156112585760405162461bcd60e51b8152602060048201526013602482015272115e18d959591959081b5a5b9d081b1a5b5a5d606a1b60448201526064016107e3565b3481600c5461126791906123f1565b11156112b55760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107e3565b60015b818111610ab857600e80549060006112cf8361248e565b9091555050336000908152600b602052604081208054916112ef8361248e565b919050555061130133610dec60085490565b8061130b8161248e565b9150506112b8565b600a546001600160a01b0316331461133d5760405162461bcd60e51b81526004016107e39061233f565b6001600160a01b0381166113a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e3565b6113ab8161170e565b50565b60006001600160e01b031982166380ac58cd60e01b14806113df57506001600160e01b03198216635b5e139f60e01b145b806106d657506301ffc9a760e01b6001600160e01b03198316146106d6565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061143382610bd6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114e55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e3565b60006114f083610bd6565b9050806001600160a01b0316846001600160a01b0316148061152b5750836001600160a01b03166115208461076e565b6001600160a01b0316145b8061155b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661157682610bd6565b6001600160a01b0316146115de5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e3565b6001600160a01b0382166116405760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e3565b61164b83838361197a565b6116566000826113fe565b6001600160a01b038316600090815260036020526040812080546001929061167f908490612410565b90915550506001600160a01b03821660009081526003602052604081208054600192906116ad9084906123c5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ab8828260405180602001604052806000815250611a32565b816001600160a01b0316836001600160a01b031614156117dc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611854848484611563565b61186084848484611a65565b610e865760405162461bcd60e51b81526004016107e3906122ed565b6060816118a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118ca57806118b48161248e565b91506118c39050600a836123dd565b91506118a4565b60008167ffffffffffffffff8111156118e5576118e5612515565b6040519080825280601f01601f19166020018201604052801561190f576020820181803683370190505b5090505b841561155b57611924600183612410565b9150611931600a866124a9565b61193c9060306123c5565b60f81b818381518110611951576119516124ff565b60200101906001600160f81b031916908160001a905350611973600a866123dd565b9450611913565b6001600160a01b0383166119d5576119d081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119f8565b816001600160a01b0316836001600160a01b0316146119f8576119f88382611b72565b6001600160a01b038216611a0f5761091981611c0f565b826001600160a01b0316826001600160a01b031614610919576109198282611cbe565b611a3c8383611d02565b611a496000848484611a65565b6109195760405162461bcd60e51b81526004016107e3906122ed565b60006001600160a01b0384163b15611b6757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611aa990339089908890889060040161229d565b602060405180830381600087803b158015611ac357600080fd5b505af1925050508015611af3575060408051601f3d908101601f19168201909252611af09181019061210b565b60015b611b4d573d808015611b21576040519150601f19603f3d011682016040523d82523d6000602084013e611b26565b606091505b508051611b455760405162461bcd60e51b81526004016107e3906122ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061155b565b506001949350505050565b60006001611b7f84610c4d565b611b899190612410565b600083815260076020526040902054909150808214611bdc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c2190600190612410565b60008381526009602052604081205460088054939450909284908110611c4957611c496124ff565b906000526020600020015490508060088381548110611c6a57611c6a6124ff565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ca257611ca26124e9565b6001900381819060005260206000200160009055905550505050565b6000611cc983610c4d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d585760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e3565b6000818152600260205260409020546001600160a01b031615611dbd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e3565b611dc96000838361197a565b6001600160a01b0382166000908152600360205260408120805460019290611df29084906123c5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e5c90612453565b90600052602060002090601f016020900481019282611e7e5760008555611ec4565b82601f10611e9757805160ff1916838001178555611ec4565b82800160010185558215611ec4579182015b82811115611ec4578251825591602001919060010190611ea9565b50611ed0929150611ed4565b5090565b5b80821115611ed05760008155600101611ed5565b600067ffffffffffffffff80841115611f0457611f04612515565b604051601f8501601f19908116603f01168101908282118183101715611f2c57611f2c612515565b81604052809350858152868686011115611f4557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f7657600080fd5b919050565b600060208284031215611f8d57600080fd5b611f9682611f5f565b9392505050565b60008060408385031215611fb057600080fd5b611fb983611f5f565b9150611fc760208401611f5f565b90509250929050565b600080600060608486031215611fe557600080fd5b611fee84611f5f565b9250611ffc60208501611f5f565b9150604084013590509250925092565b6000806000806080858703121561202257600080fd5b61202b85611f5f565b935061203960208601611f5f565b925060408501359150606085013567ffffffffffffffff81111561205c57600080fd5b8501601f8101871361206d57600080fd5b61207c87823560208401611ee9565b91505092959194509250565b6000806040838503121561209b57600080fd5b6120a483611f5f565b9150602083013580151581146120b957600080fd5b809150509250929050565b600080604083850312156120d757600080fd5b6120e083611f5f565b946020939093013593505050565b60006020828403121561210057600080fd5b8135611f968161252b565b60006020828403121561211d57600080fd5b8151611f968161252b565b60006020828403121561213a57600080fd5b813567ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b61155b84823560208401611ee9565b60006020828403121561218357600080fd5b5035919050565b600081518084526121a2816020860160208601612427565b601f01601f19169290920160200192915050565b600081516121c8818560208601612427565b9290920192915050565b600080845481600182811c9150808316806121ee57607f831692505b602080841082141561220e57634e487b7160e01b86526022600452602486fd5b818015612222576001811461223357612260565b60ff19861689528489019650612260565b60008b81526020902060005b868110156122585781548b82015290850190830161223f565b505084890196505b50505050505061229461228361227d83602f60f81b815260010190565b866121b6565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122d09083018461218a565b9695505050505050565b602081526000611f96602083018461218a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156123d8576123d86124bd565b500190565b6000826123ec576123ec6124d3565b500490565b600081600019048311821515161561240b5761240b6124bd565b500290565b600082821015612422576124226124bd565b500390565b60005b8381101561244257818101518382015260200161242a565b83811115610e865750506000910152565b600181811c9082168061246757607f821691505b6020821081141561248857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124a2576124a26124bd565b5060010190565b6000826124b8576124b86124d3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113ab57600080fdfea26469706673582212202dde156971eff7332b02a2e049102ea534a9837c0927cfb158b9a9ec9fe6a4c464736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d5a756b692041706520436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045a554b4900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e697066733a2f2f68696464656e2f000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Zuki Ape Club
Arg [1] : symbol (string): ZUKI
Arg [2] : unrevealedBaseURI (string): ipfs://hidden/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 5a756b692041706520436c756200000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5a554b4900000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [8] : 697066733a2f2f68696464656e2f000000000000000000000000000000000000


Deployed Bytecode Sourcemap

63426:4987:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53768:224;;;;;;;;;;-1:-1:-1;53768:224:0;;;;;:::i;:::-;;:::i;:::-;;;7246:14:1;;7239:22;7221:41;;7209:2;7194:18;53768:224:0;;;;;;;;41262:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42821:221::-;;;;;;;;;;-1:-1:-1;42821:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6544:32:1;;;6526:51;;6514:2;6499:18;42821:221:0;6380:203:1;42344:411:0;;;;;;;;;;-1:-1:-1;42344:411:0;;;;;:::i;:::-;;:::i;:::-;;64018:32;;;;;;;;;;;;;;;;;;;17292:25:1;;;17280:2;17265:18;64018:32:0;17146:177:1;54408:113:0;;;;;;;;;;-1:-1:-1;54496:10:0;:17;54408:113;;43571:339;;;;;;;;;;-1:-1:-1;43571:339:0;;;;;:::i;:::-;;:::i;54076:256::-;;;;;;;;;;-1:-1:-1;54076:256:0;;;;;:::i;:::-;;:::i;67306:78::-;;;;;;;;;;;;;:::i;68167:243::-;;;;;;;;;;;;;:::i;43981:185::-;;;;;;;;;;-1:-1:-1;43981:185:0;;;;;:::i;:::-;;:::i;67494:88::-;;;;;;;;;;-1:-1:-1;67494:88:0;;;;;:::i;:::-;;:::i;54598:233::-;;;;;;;;;;-1:-1:-1;54598:233:0;;;;;:::i;:::-;;:::i;64517:28::-;;;;;;;;;;-1:-1:-1;64517:28:0;;;;;;;;;;;67945:101;;;;;;;;;;-1:-1:-1;67945:101:0;;;;;:::i;:::-;;:::i;64552:26::-;;;;;;;;;;-1:-1:-1;64552:26:0;;;;;;;;;;;40956:239;;;;;;;;;;-1:-1:-1;40956:239:0;;;;;:::i;:::-;;:::i;40686:208::-;;;;;;;;;;-1:-1:-1;40686:208:0;;;;;:::i;:::-;;:::i;61629:103::-;;;;;;;;;;;;;:::i;63688:41::-;;;;;;;;;;;;63725:4;63688:41;;60978:87;;;;;;;;;;-1:-1:-1;61051:6:0;;-1:-1:-1;;;;;61051:6:0;60978:87;;64099:33;;;;;;;;;;;;;;;;63845:54;;;;;;;;;;-1:-1:-1;63845:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;41431:104;;;;;;;;;;;;;:::i;65894:317::-;;;;;;;;;;-1:-1:-1;65894:317:0;;;;;:::i;:::-;;:::i;43114:155::-;;;;;;;;;;-1:-1:-1;43114:155:0;;;;;:::i;:::-;;:::i;66890:69::-;;;;;;;;;;;;;:::i;44237:328::-;;;;;;;;;;-1:-1:-1;44237:328:0;;;;;:::i;:::-;;:::i;64057:35::-;;;;;;;;;;;;;;;;66331:393;;;;;;;;;;-1:-1:-1;66331:393:0;;;;;:::i;:::-;;:::i;64483:27::-;;;;;;;;;;-1:-1:-1;64483:27:0;;;;;;;;67091:86;;;;;;;;;;;;;:::i;64391:83::-;;;;;;;;;;;;64432:42;64391:83;;43340:164;;;;;;;;;;-1:-1:-1;43340:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43461:25:0;;;43437:4;43461:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43340:164;67705:126;;;;;;;;;;-1:-1:-1;67705:126:0;;;;;:::i;:::-;;:::i;64959:799::-;;;;;;:::i;:::-;;:::i;61887:201::-;;;;;;;;;;-1:-1:-1;61887:201:0;;;;;:::i;:::-;;:::i;53768:224::-;53870:4;-1:-1:-1;;;;;;53894:50:0;;-1:-1:-1;;;53894:50:0;;:90;;;53948:36;53972:11;53948:23;:36::i;:::-;53887:97;53768:224;-1:-1:-1;;53768:224:0:o;41262:100::-;41316:13;41349:5;41342:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41262:100;:::o;42821:221::-;42897:7;46164:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46164:16:0;42917:73;;;;-1:-1:-1;;;42917:73:0;;13817:2:1;42917:73:0;;;13799:21:1;13856:2;13836:18;;;13829:30;13895:34;13875:18;;;13868:62;-1:-1:-1;;;13946:18:1;;;13939:42;13998:19;;42917:73:0;;;;;;;;;-1:-1:-1;43010:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43010:24:0;;42821:221::o;42344:411::-;42425:13;42441:23;42456:7;42441:14;:23::i;:::-;42425:39;;42489:5;-1:-1:-1;;;;;42483:11:0;:2;-1:-1:-1;;;;;42483:11:0;;;42475:57;;;;-1:-1:-1;;;42475:57:0;;15772:2:1;42475:57:0;;;15754:21:1;15811:2;15791:18;;;15784:30;15850:34;15830:18;;;15823:62;-1:-1:-1;;;15901:18:1;;;15894:31;15942:19;;42475:57:0;15570:397:1;42475:57:0;38791:10;-1:-1:-1;;;;;42567:21:0;;;;:62;;-1:-1:-1;42592:37:0;42609:5;38791:10;43340:164;:::i;42592:37::-;42545:168;;;;-1:-1:-1;;;42545:168:0;;11862:2:1;42545:168:0;;;11844:21:1;11901:2;11881:18;;;11874:30;11940:34;11920:18;;;11913:62;12011:26;11991:18;;;11984:54;12055:19;;42545:168:0;11660:420:1;42545:168:0;42726:21;42735:2;42739:7;42726:8;:21::i;:::-;42414:341;42344:411;;:::o;43571:339::-;43766:41;38791:10;43799:7;43766:18;:41::i;:::-;43758:103;;;;-1:-1:-1;;;43758:103:0;;;;;;;:::i;:::-;43874:28;43884:4;43890:2;43894:7;43874:9;:28::i;54076:256::-;54173:7;54209:23;54226:5;54209:16;:23::i;:::-;54201:5;:31;54193:87;;;;-1:-1:-1;;;54193:87:0;;7699:2:1;54193:87:0;;;7681:21:1;7738:2;7718:18;;;7711:30;7777:34;7757:18;;;7750:62;-1:-1:-1;;;7828:18:1;;;7821:41;7879:19;;54193:87:0;7497:407:1;54193:87:0;-1:-1:-1;;;;;;54298:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;54076:256::o;67306:78::-;61051:6;;-1:-1:-1;;;;;61051:6:0;38791:10;61198:23;61190:68;;;;-1:-1:-1;;;61190:68:0;;;;;;;:::i;:::-;67370:6:::1;::::0;;-1:-1:-1;;67360:16:0;::::1;67370:6:::0;;;;::::1;;;67369:7;67360:16:::0;;::::1;;::::0;;67306:78::o;68167:243::-;61051:6;;-1:-1:-1;;;;;61051:6:0;38791:10;61198:23;61190:68;;;;-1:-1:-1;;;61190:68:0;;;;;;;:::i;:::-;68235:21:::1;68275:11:::0;68267:20:::1;;;::::0;::::1;;68317:58;::::0;68299:12:::1;::::0;68325:10:::1;::::0;68349:21:::1;::::0;68299:12;68317:58;68299:12;68317:58;68349:21;68325:10;68317:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68298:77;;;68394:7;68386:16;;;::::0;::::1;;68206:204;;68167:243::o:0;43981:185::-;44119:39;44136:4;44142:2;44146:7;44119:39;;;;;;;;;;;;:16;:39::i;67494:88::-;61051:6;;-1:-1:-1;;;;;61051:6:0;38791:10;61198:23;61190:68;;;;-1:-1:-1;;;61190:68:0;;;;;;;:::i;:::-;67559:4:::1;:15:::0;67494:88::o;54598:233::-;54673:7;54709:30;54496:10;:17;;54408:113;54709:30;54701:5;:38;54693:95;;;;-1:-1:-1;;;54693:95:0;;16592:2:1;54693:95:0;;;16574:21:1;16631:2;16611:18;;;16604:30;16670:34;16650:18;;;16643:62;-1:-1:-1;;;16721:18:1;;;16714:42;16773:19;;54693:95:0;16390:408:1;54693:95:0;54806:10;54817:5;54806:17;;;;;;;;:::i;:::-;;;;;;;;;54799:24;;54598:233;;;:::o;67945:101::-;61051:6;;-1:-1:-1;;;;;61051:6:0;38791:10;61198:23;61190:68;;;;-1:-1:-1;;;61190:68:0;;;;;;;:::i;:::-;68016:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;40956:239::-:0;41028:7;41064:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41064:16:0;41099:19;41091:73;;;;-1:-1:-1;;;41091:73:0;;12698:2:1;41091:73:0;;;12680:21:1;12737:2;12717:18;;;12710:30;12776:34;12756:18;;;12749:62;-1:-1:-1;;;12827:18:1;;;12820:39;12876:19;;41091:73:0;12496:405:1;40686:208:0;40758:7;-1:-1:-1;;;;;40786:19:0;;40778:74;;;;-1:-1:-1;;;40778:74:0;;12287:2:1;40778:74:0;;;12269:21:1;12326:2;12306:18;;;12299:30;12365:34;12345:18;;;12338:62;-1:-1:-1;;;12416:18:1;;;12409:40;12466:19;;40778:74:0;12085:406:1;40778:74:0;-1:-1:-1;;;;;;40870:16:0;;;;;:9;:16;;;;;;;40686:208::o;61629:103::-;61051:6;;-1:-1:-1;;;;;61051:6:0;38791:10;61198:23;61190:68;;;;-1:-1:-1;;;61190:68:0;;;;;;;:::i;:::-;61694:30:::1;61721:1;61694:18;:30::i;:::-;61629:103::o:0;41431:104::-;41487:13;41520:7;41513:14;;;;;:::i;65894:317::-;61051:6;;-1:-1:-1;;;;;61051:6:0;38791:10;61198:23;61190:68;;;;-1:-1:-1;;;61190:68:0;;;;;;;:::i;:::-;65975:6:::1;::::0;;;::::1;;;65974:7;65966:34;;;::::0;-1:-1:-1;;;65966:34:0;;17005:2:1;65966:34:0::1;::::0;::::1;16987:21:1::0;17044:2;17024:18;;;17017:30;-1:-1:-1;;;17063:18:1;;;17056:44;17117:18;;65966:34:0::1;16803:338:1::0;65966:34:0::1;63725:4;66019:13;54496:10:::0;:17;;54408:113;66019:13:::1;:29;66011:54;;;::::0;-1:-1:-1;;;66011:54:0;;11521:2:1;66011:54:0::1;::::0;::::1;11503:21:1::0;11560:2;11540:18;;;11533:30;-1:-1:-1;;;11579:18:1;;;11572:42;11631:18;;66011:54:0::1;11319:336:1::0;66011:54:0::1;66102:1;66086:108;66110:10;66105:1;:15;66086:108;;66142:40;66152:10;66164:13;54496:10:::0;:17;;54408:113;66164:13:::1;:17;::::0;66180:1:::1;66164:17;:::i;:::-;66142:9;:40::i;:::-;66122:3:::0;::::1;::::0;::::1;:::i;:::-;;;;66086:108;;43114:155:::0;43209:52;38791:10;43242:8;43252;43209:18;:52::i;66890:69::-;61051:6;;-1:-1:-1;;;;;61051:6:0;38791:10;61198:23;61190:68;;;;-1:-1:-1;;;61190:68:0;;;;;;;:::i;:::-;66936:8:::1;:15:::0;;-1:-1:-1;;66936:15:0::1;;;::::0;;66890:69::o;44237:328::-;44412:41;38791:10;44445:7;44412:18;:41::i;:::-;44404:103;;;;-1:-1:-1;;;44404:103:0;;;;;;;:::i;:::-;44518:39;44532:4;44538:2;44542:7;44551:5;44518:13;:39::i;:::-;44237:328;;;;:::o;66331:393::-;46140:4;46164:16;;;:7;:16;;;;;;66404:13;;-1:-1:-1;;;;;46164:16:0;66430:76;;;;-1:-1:-1;;;66430:76:0;;15001:2:1;66430:76:0;;;14983:21:1;15040:2;15020:18;;;15013:30;15079:34;15059:18;;;15052:62;-1:-1:-1;;;15130:18:1;;;15123:45;15185:19;;66430:76:0;14799:411:1;66430:76:0;66524:8;;;;;;;66519:61;;66556:12;66549:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66331:393;;;:::o;66519:61::-;66636:1;66613:12;66607:26;;;;;:::i;:::-;;;:30;:109;;;;;;;;;;;;;;;;;66664:12;66683:18;:7;:16;:18::i;:::-;66647:64;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66600:116;66331:393;-1:-1:-1;;66331:393:0:o;67091:86::-;61051:6;;-1:-1:-1;;;;;61051:6:0;38791:10;61198:23;61190:68;;;;-1:-1:-1;;;61190:68:0;;;;;;;:::i;:::-;67161:8:::1;::::0;;-1:-1:-1;;67149:20:0;::::1;67161:8;::::0;;::::1;67160:9;67149:20;::::0;;67091:86::o;67705:126::-;61051:6;;-1:-1:-1;;;;;61051:6:0;38791:10;61198:23;61190:68;;;;-1:-1:-1;;;61190:68:0;;;;;;;:::i;:::-;67789:15:::1;:34:::0;67705:126::o;64959:799::-;65036:8;;;;65035:9;65027:40;;;;-1:-1:-1;;;65027:40:0;;10401:2:1;65027:40:0;;;10383:21:1;10440:2;10420:18;;;10413:30;-1:-1:-1;;;10459:18:1;;;10452:48;10517:18;;65027:40:0;10199:342:1;65027:40:0;65087:6;;;;;;;65086:7;65078:34;;;;-1:-1:-1;;;65078:34:0;;17005:2:1;65078:34:0;;;16987:21:1;17044:2;17024:18;;;17017:30;-1:-1:-1;;;17063:18:1;;;17056:44;17117:18;;65078:34:0;16803:338:1;65078:34:0;63725:4;65131:13;54496:10;:17;;54408:113;65131:13;:29;65123:54;;;;-1:-1:-1;;;65123:54:0;;11521:2:1;65123:54:0;;;11503:21:1;11560:2;11540:18;;;11533:30;-1:-1:-1;;;11579:18:1;;;11572:42;11631:18;;65123:54:0;11319:336:1;65123:54:0;63725:4;65217:10;65196:18;;:31;;;;:::i;:::-;:48;;65188:80;;;;-1:-1:-1;;;65188:80:0;;8530:2:1;65188:80:0;;;8512:21:1;8569:2;8549:18;;;8542:30;-1:-1:-1;;;8588:18:1;;;8581:49;8647:18;;65188:80:0;8328:343:1;65188:80:0;65335:15;;65307:10;65287:31;;;;:19;:31;;;;;;:44;;65321:10;;65287:44;:::i;:::-;:63;;65279:102;;;;-1:-1:-1;;;65279:102:0;;15417:2:1;65279:102:0;;;15399:21:1;15456:2;15436:18;;;15429:30;15495:28;15475:18;;;15468:56;15541:18;;65279:102:0;15215:350:1;65279:102:0;65414:15;;65400:10;:29;;65392:61;;;;-1:-1:-1;;;65392:61:0;;13108:2:1;65392:61:0;;;13090:21:1;13147:2;13127:18;;;13120:30;-1:-1:-1;;;13166:18:1;;;13159:49;13225:18;;65392:61:0;12906:343:1;65392:61:0;65493:9;65479:10;65472:4;;:17;;;;:::i;:::-;:30;;65464:74;;;;-1:-1:-1;;;65464:74:0;;10748:2:1;65464:74:0;;;10730:21:1;10787:2;10767:18;;;10760:30;10826:33;10806:18;;;10799:61;10877:18;;65464:74:0;10546:355:1;65464:74:0;65576:1;65560:191;65584:10;65579:1;:15;65560:191;;65616:18;:20;;;:18;:20;;;:::i;:::-;;;;-1:-1:-1;;65671:10:0;65651:31;;;;:19;:31;;;;;:33;;;;;;:::i;:::-;;;;;;65699:40;65709:10;65721:13;54496:10;:17;;54408:113;65699:40;65596:3;;;;:::i;:::-;;;;65560:191;;61887:201;61051:6;;-1:-1:-1;;;;;61051:6:0;38791:10;61198:23;61190:68;;;;-1:-1:-1;;;61190:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61976:22:0;::::1;61968:73;;;::::0;-1:-1:-1;;;61968:73:0;;8878:2:1;61968:73:0::1;::::0;::::1;8860:21:1::0;8917:2;8897:18;;;8890:30;8956:34;8936:18;;;8929:62;-1:-1:-1;;;9007:18:1;;;9000:36;9053:19;;61968:73:0::1;8676:402:1::0;61968:73:0::1;62052:28;62071:8;62052:18;:28::i;:::-;61887:201:::0;:::o;40317:305::-;40419:4;-1:-1:-1;;;;;;40456:40:0;;-1:-1:-1;;;40456:40:0;;:105;;-1:-1:-1;;;;;;;40513:48:0;;-1:-1:-1;;;40513:48:0;40456:105;:158;;;-1:-1:-1;;;;;;;;;;24202:40:0;;;40578:36;24093:157;50057:174;50132:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;50132:29:0;-1:-1:-1;;;;;50132:29:0;;;;;;;;:24;;50186:23;50132:24;50186:14;:23::i;:::-;-1:-1:-1;;;;;50177:46:0;;;;;;;;;;;50057:174;;:::o;46369:348::-;46462:4;46164:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46164:16:0;46479:73;;;;-1:-1:-1;;;46479:73:0;;11108:2:1;46479:73:0;;;11090:21:1;11147:2;11127:18;;;11120:30;11186:34;11166:18;;;11159:62;-1:-1:-1;;;11237:18:1;;;11230:42;11289:19;;46479:73:0;10906:408:1;46479:73:0;46563:13;46579:23;46594:7;46579:14;:23::i;:::-;46563:39;;46632:5;-1:-1:-1;;;;;46621:16:0;:7;-1:-1:-1;;;;;46621:16:0;;:51;;;;46665:7;-1:-1:-1;;;;;46641:31:0;:20;46653:7;46641:11;:20::i;:::-;-1:-1:-1;;;;;46641:31:0;;46621:51;:87;;;-1:-1:-1;;;;;;43461:25:0;;;43437:4;43461:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46676:32;46613:96;46369:348;-1:-1:-1;;;;46369:348:0:o;49361:578::-;49520:4;-1:-1:-1;;;;;49493:31:0;:23;49508:7;49493:14;:23::i;:::-;-1:-1:-1;;;;;49493:31:0;;49485:85;;;;-1:-1:-1;;;49485:85:0;;14591:2:1;49485:85:0;;;14573:21:1;14630:2;14610:18;;;14603:30;14669:34;14649:18;;;14642:62;-1:-1:-1;;;14720:18:1;;;14713:39;14769:19;;49485:85:0;14389:405:1;49485:85:0;-1:-1:-1;;;;;49589:16:0;;49581:65;;;;-1:-1:-1;;;49581:65:0;;9642:2:1;49581:65:0;;;9624:21:1;9681:2;9661:18;;;9654:30;9720:34;9700:18;;;9693:62;-1:-1:-1;;;9771:18:1;;;9764:34;9815:19;;49581:65:0;9440:400:1;49581:65:0;49659:39;49680:4;49686:2;49690:7;49659:20;:39::i;:::-;49763:29;49780:1;49784:7;49763:8;:29::i;:::-;-1:-1:-1;;;;;49805:15:0;;;;;;:9;:15;;;;;:20;;49824:1;;49805:15;:20;;49824:1;;49805:20;:::i;:::-;;;;-1:-1:-1;;;;;;;49836:13:0;;;;;;:9;:13;;;;;:18;;49853:1;;49836:13;:18;;49853:1;;49836:18;:::i;:::-;;;;-1:-1:-1;;49865:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;49865:21:0;-1:-1:-1;;;;;49865:21:0;;;;;;;;;49904:27;;49865:16;;49904:27;;;;;;;49361:578;;;:::o;62248:191::-;62341:6;;;-1:-1:-1;;;;;62358:17:0;;;-1:-1:-1;;;;;;62358:17:0;;;;;;;62391:40;;62341:6;;;62358:17;62341:6;;62391:40;;62322:16;;62391:40;62311:128;62248:191;:::o;47059:110::-;47135:26;47145:2;47149:7;47135:26;;;;;;;;;;;;:9;:26::i;50373:315::-;50528:8;-1:-1:-1;;;;;50519:17:0;:5;-1:-1:-1;;;;;50519:17:0;;;50511:55;;;;-1:-1:-1;;;50511:55:0;;10047:2:1;50511:55:0;;;10029:21:1;10086:2;10066:18;;;10059:30;10125:27;10105:18;;;10098:55;10170:18;;50511:55:0;9845:349:1;50511:55:0;-1:-1:-1;;;;;50577:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;50577:46:0;;;;;;;;;;50639:41;;7221::1;;;50639::0;;7194:18:1;50639:41:0;;;;;;;50373:315;;;:::o;45447:::-;45604:28;45614:4;45620:2;45624:7;45604:9;:28::i;:::-;45651:48;45674:4;45680:2;45684:7;45693:5;45651:22;:48::i;:::-;45643:111;;;;-1:-1:-1;;;45643:111:0;;;;;;;:::i;1804:723::-;1860:13;2081:10;2077:53;;-1:-1:-1;;2108:10:0;;;;;;;;;;;;-1:-1:-1;;;2108:10:0;;;;;1804:723::o;2077:53::-;2155:5;2140:12;2196:78;2203:9;;2196:78;;2229:8;;;;:::i;:::-;;-1:-1:-1;2252:10:0;;-1:-1:-1;2260:2:0;2252:10;;:::i;:::-;;;2196:78;;;2284:19;2316:6;2306:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2306:17:0;;2284:39;;2334:154;2341:10;;2334:154;;2368:11;2378:1;2368:11;;:::i;:::-;;-1:-1:-1;2437:10:0;2445:2;2437:5;:10;:::i;:::-;2424:24;;:2;:24;:::i;:::-;2411:39;;2394:6;2401;2394:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2394:56:0;;;;;;;;-1:-1:-1;2465:11:0;2474:2;2465:11;;:::i;:::-;;;2334:154;;55444:589;-1:-1:-1;;;;;55650:18:0;;55646:187;;55685:40;55717:7;56860:10;:17;;56833:24;;;;:15;:24;;;;;:44;;;56888:24;;;;;;;;;;;;56756:164;55685:40;55646:187;;;55755:2;-1:-1:-1;;;;;55747:10:0;:4;-1:-1:-1;;;;;55747:10:0;;55743:90;;55774:47;55807:4;55813:7;55774:32;:47::i;:::-;-1:-1:-1;;;;;55847:16:0;;55843:183;;55880:45;55917:7;55880:36;:45::i;55843:183::-;55953:4;-1:-1:-1;;;;;55947:10:0;:2;-1:-1:-1;;;;;55947:10:0;;55943:83;;55974:40;56002:2;56006:7;55974:27;:40::i;47396:321::-;47526:18;47532:2;47536:7;47526:5;:18::i;:::-;47577:54;47608:1;47612:2;47616:7;47625:5;47577:22;:54::i;:::-;47555:154;;;;-1:-1:-1;;;47555:154:0;;;;;;;:::i;51253:799::-;51408:4;-1:-1:-1;;;;;51429:13:0;;14272:20;14320:8;51425:620;;51465:72;;-1:-1:-1;;;51465:72:0;;-1:-1:-1;;;;;51465:36:0;;;;;:72;;38791:10;;51516:4;;51522:7;;51531:5;;51465:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51465:72:0;;;;;;;;-1:-1:-1;;51465:72:0;;;;;;;;;;;;:::i;:::-;;;51461:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51707:13:0;;51703:272;;51750:60;;-1:-1:-1;;;51750:60:0;;;;;;;:::i;51703:272::-;51925:6;51919:13;51910:6;51906:2;51902:15;51895:38;51461:529;-1:-1:-1;;;;;;51588:51:0;-1:-1:-1;;;51588:51:0;;-1:-1:-1;51581:58:0;;51425:620;-1:-1:-1;52029:4:0;51253:799;;;;;;:::o;57547:988::-;57813:22;57863:1;57838:22;57855:4;57838:16;:22::i;:::-;:26;;;;:::i;:::-;57875:18;57896:26;;;:17;:26;;;;;;57813:51;;-1:-1:-1;58029:28:0;;;58025:328;;-1:-1:-1;;;;;58096:18:0;;58074:19;58096:18;;;:12;:18;;;;;;;;:34;;;;;;;;;58147:30;;;;;;:44;;;58264:30;;:17;:30;;;;;:43;;;58025:328;-1:-1:-1;58449:26:0;;;;:17;:26;;;;;;;;58442:33;;;-1:-1:-1;;;;;58493:18:0;;;;;:12;:18;;;;;:34;;;;;;;58486:41;57547:988::o;58830:1079::-;59108:10;:17;59083:22;;59108:21;;59128:1;;59108:21;:::i;:::-;59140:18;59161:24;;;:15;:24;;;;;;59534:10;:26;;59083:46;;-1:-1:-1;59161:24:0;;59083:46;;59534:26;;;;;;:::i;:::-;;;;;;;;;59512:48;;59598:11;59573:10;59584;59573:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;59678:28;;;:15;:28;;;;;;;:41;;;59850:24;;;;;59843:31;59885:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;58901:1008;;;58830:1079;:::o;56334:221::-;56419:14;56436:20;56453:2;56436:16;:20::i;:::-;-1:-1:-1;;;;;56467:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;56512:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;56334:221:0:o;48053:382::-;-1:-1:-1;;;;;48133:16:0;;48125:61;;;;-1:-1:-1;;;48125:61:0;;13456:2:1;48125:61:0;;;13438:21:1;;;13475:18;;;13468:30;13534:34;13514:18;;;13507:62;13586:18;;48125:61:0;13254:356:1;48125:61:0;46140:4;46164:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46164:16:0;:30;48197:58;;;;-1:-1:-1;;;48197:58:0;;9285:2:1;48197:58:0;;;9267:21:1;9324:2;9304:18;;;9297:30;9363;9343:18;;;9336:58;9411:18;;48197:58:0;9083:352:1;48197:58:0;48268:45;48297:1;48301:2;48305:7;48268:20;:45::i;:::-;-1:-1:-1;;;;;48326:13:0;;;;;;:9;:13;;;;;:18;;48343:1;;48326:13;:18;;48343:1;;48326:18;:::i;:::-;;;;-1:-1:-1;;48355:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48355:21:0;-1:-1:-1;;;;;48355:21:0;;;;;;;;48394:33;;48355:16;;;48394:33;;48355:16;;48394:33;48053:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4732:1433::-;5110:3;5139:1;5172:6;5166:13;5202:3;5224:1;5252:9;5248:2;5244:18;5234:28;;5312:2;5301:9;5297:18;5334;5324:61;;5378:4;5370:6;5366:17;5356:27;;5324:61;5404:2;5452;5444:6;5441:14;5421:18;5418:38;5415:165;;;-1:-1:-1;;;5479:33:1;;5535:4;5532:1;5525:15;5565:4;5486:3;5553:17;5415:165;5596:18;5623:104;;;;5741:1;5736:320;;;;5589:467;;5623:104;-1:-1:-1;;5656:24:1;;5644:37;;5701:16;;;;-1:-1:-1;5623:104:1;;5736:320;17401:1;17394:14;;;17438:4;17425:18;;5831:1;5845:165;5859:6;5856:1;5853:13;5845:165;;;5937:14;;5924:11;;;5917:35;5980:16;;;;5874:10;;5845:165;;;5849:3;;6039:6;6034:3;6030:16;6023:23;;5589:467;;;;;;;6072:87;6097:61;6123:34;6153:3;-1:-1:-1;;;4678:16:1;;4719:1;4710:11;;4613:114;6123:34;6115:6;6097:61;:::i;:::-;-1:-1:-1;;;4555:20:1;;4600:1;4591:11;;4495:113;6072:87;6065:94;4732:1433;-1:-1:-1;;;;;4732:1433:1:o;6588:488::-;-1:-1:-1;;;;;6857:15:1;;;6839:34;;6909:15;;6904:2;6889:18;;6882:43;6956:2;6941:18;;6934:34;;;7004:3;6999:2;6984:18;;6977:31;;;6782:4;;7025:45;;7050:19;;7042:6;7025:45;:::i;:::-;7017:53;6588:488;-1:-1:-1;;;;;;6588:488:1:o;7273:219::-;7422:2;7411:9;7404:21;7385:4;7442:44;7482:2;7471:9;7467:18;7459:6;7442:44;:::i;7909:414::-;8111:2;8093:21;;;8150:2;8130:18;;;8123:30;8189:34;8184:2;8169:18;;8162:62;-1:-1:-1;;;8255:2:1;8240:18;;8233:48;8313:3;8298:19;;7909:414::o;14028:356::-;14230:2;14212:21;;;14249:18;;;14242:30;14308:34;14303:2;14288:18;;14281:62;14375:2;14360:18;;14028:356::o;15972:413::-;16174:2;16156:21;;;16213:2;16193:18;;;16186:30;16252:34;16247:2;16232:18;;16225:62;-1:-1:-1;;;16318:2:1;16303:18;;16296:47;16375:3;16360:19;;15972:413::o;17454:128::-;17494:3;17525:1;17521:6;17518:1;17515:13;17512:39;;;17531:18;;:::i;:::-;-1:-1:-1;17567:9:1;;17454:128::o;17587:120::-;17627:1;17653;17643:35;;17658:18;;:::i;:::-;-1:-1:-1;17692:9:1;;17587:120::o;17712:168::-;17752:7;17818:1;17814;17810:6;17806:14;17803:1;17800:21;17795:1;17788:9;17781:17;17777:45;17774:71;;;17825:18;;:::i;:::-;-1:-1:-1;17865:9:1;;17712:168::o;17885:125::-;17925:4;17953:1;17950;17947:8;17944:34;;;17958:18;;:::i;:::-;-1:-1:-1;17995:9:1;;17885:125::o;18015:258::-;18087:1;18097:113;18111:6;18108:1;18105:13;18097:113;;;18187:11;;;18181:18;18168:11;;;18161:39;18133:2;18126:10;18097:113;;;18228:6;18225:1;18222:13;18219:48;;;-1:-1:-1;;18263:1:1;18245:16;;18238:27;18015:258::o;18278:380::-;18357:1;18353:12;;;;18400;;;18421:61;;18475:4;18467:6;18463:17;18453:27;;18421:61;18528:2;18520:6;18517:14;18497:18;18494:38;18491:161;;;18574:10;18569:3;18565:20;18562:1;18555:31;18609:4;18606:1;18599:15;18637:4;18634:1;18627:15;18491:161;;18278:380;;;:::o;18663:135::-;18702:3;-1:-1:-1;;18723:17:1;;18720:43;;;18743:18;;:::i;:::-;-1:-1:-1;18790:1:1;18779:13;;18663:135::o;18803:112::-;18835:1;18861;18851:35;;18866:18;;:::i;:::-;-1:-1:-1;18900:9:1;;18803:112::o;18920:127::-;18981:10;18976:3;18972:20;18969:1;18962:31;19012:4;19009:1;19002:15;19036:4;19033:1;19026:15;19052:127;19113:10;19108:3;19104:20;19101:1;19094:31;19144:4;19141:1;19134:15;19168:4;19165:1;19158:15;19184:127;19245:10;19240:3;19236:20;19233:1;19226:31;19276:4;19273:1;19266:15;19300:4;19297:1;19290:15;19316:127;19377:10;19372:3;19368:20;19365:1;19358:31;19408:4;19405:1;19398:15;19432:4;19429:1;19422:15;19448:127;19509:10;19504:3;19500:20;19497:1;19490:31;19540:4;19537:1;19530:15;19564:4;19561:1;19554:15;19580:131;-1:-1:-1;;;;;;19654:32:1;;19644:43;;19634:71;;19701:1;19698;19691:12

Swarm Source

ipfs://2dde156971eff7332b02a2e049102ea534a9837c0927cfb158b9a9ec9fe6a4c4
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.