ETH Price: $2,695.71 (-1.80%)

Token

0MC Zongzi (Zongzi)
 

Overview

Max Total Supply

300 Zongzi

Holders

298

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cryptobuild.eth
Balance
1 Zongzi
0x702724d8eaa290c4e02D7D239167727152a784A5
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:
Zongzi

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-06-03
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 1;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) private _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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
     * `maxBatchSize` refers to how much a minter can mint at a time.
     * `collectionSize_` refers to how many tokens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - there must be `quantity` tokens remaining unminted in the total collection.
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// 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: Zongzi.sol



pragma solidity ^0.8.0;






contract Zongzi is ERC721A, Ownable, ReentrancyGuard {

    using ECDSA for bytes32;

    enum Status {
        Pending,
        PublicSale,
        Finished
    }

    Status public status;
    string public baseURI;
    uint256 public PRICE = 0;

    mapping(address => uint256) public publicMinted;
    event Minted(address minter, uint256 amount);
    event StatusChanged(Status status);
    event BaseURIChanged(string newBaseURI);
    event Withdrawed(address addr, uint amount);

    constructor(
        string memory initBaseURI
    ) ERC721A("0MC Zongzi", "Zongzi", 2, 300) {
        baseURI = initBaseURI;
        status = Status.PublicSale;
    }

    function mint() external payable {
        require(status == Status.PublicSale, "Zongzi: Public sale is not active.");
        require(
            tx.origin == msg.sender,
            "Zongzi: contract is not allowed to mint."
        );
        require(
            publicMinted[msg.sender] < 1,
            "Zongzi: The wallet has already minted during public sale."
        );
        require(
            totalSupply() + 1 <= collectionSize,
            "Zongzi: Max supply exceeded."
        );

        _safeMint(msg.sender, 1);
        publicMinted[msg.sender] = 1;
        refundIfOver(PRICE);

        emit Minted(msg.sender, 1);
    }

    function withdraw() external nonReentrant onlyOwner {
        require(address(this).balance > 0, "suff balance");
        Address.sendValue(payable(owner()), address(this).balance);
        emit Withdrawed(owner(), address(this).balance);
    }

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
        emit BaseURIChanged(newBaseURI);
    }

    function setStatus(Status _status) external onlyOwner {
        status = _status;
        emit StatusChanged(_status);
    }

    function setOwnersExplicit(uint256 quantity)
    external
    onlyOwner
    nonReentrant
    {
        _setOwnersExplicit(quantity);
    }

    function maxSupply() external view returns (uint256) {
        return collectionSize;
    }

    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "Zongzi: Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","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":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum Zongzi.Status","name":"status","type":"uint8"}],"name":"StatusChanged","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawed","type":"event"},{"inputs":[],"name":"PRICE","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Zongzi.Status","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum Zongzi.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600160005560006007556000600c553480156200002057600080fd5b5060405162002d6f38038062002d6f8339810160408190526200004391620002c3565b6040518060400160405280600a815260200169304d43205a6f6e677a6960b01b815250604051806040016040528060068152602001655a6f6e677a6960d01b815250600261012c60008111620000f75760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001595760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000ee565b83516200016e9060019060208701906200021d565b508251620001849060029060208601906200021d565b5060a091909152608052506200019c905033620001cb565b60016009558051620001b690600b9060208401906200021d565b5050600a805460ff19166001179055620003f2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200022b906200039f565b90600052602060002090601f0160209004810192826200024f57600085556200029a565b82601f106200026a57805160ff19168380011785556200029a565b828001600101855582156200029a579182015b828111156200029a5782518255916020019190600101906200027d565b50620002a8929150620002ac565b5090565b5b80821115620002a85760008155600101620002ad565b60006020808385031215620002d757600080fd5b82516001600160401b0380821115620002ef57600080fd5b818501915085601f8301126200030457600080fd5b815181811115620003195762000319620003dc565b604051601f8201601f19908116603f01168101908382118183101715620003445762000344620003dc565b8160405282815288868487010111156200035d57600080fd5b600093505b8284101562000381578484018601518185018701529285019262000362565b82841115620003935760008684830101525b98975050505050505050565b600181811c90821680620003b457607f821691505b60208210811415620003d657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a0516129346200043b60003960008181611be801528181611c12015261203a01526000818161057201528181610a14015281816118d4015261190601526129346000f3fe6080604052600436106101d85760003560e01c806355f804b31161010257806395d89b4111610095578063d5abeb0111610064578063d5abeb0114610563578063d7224ba014610596578063e985e9c5146105ac578063f2fde38b146105f557600080fd5b806395d89b41146104ee578063a22cb46514610503578063b88d4fde14610523578063c87b56dd1461054357600080fd5b8063715018a6116100d1578063715018a6146104575780638d859f3e1461046c5780638da5cb5b146104825780639231ab2a146104a057600080fd5b806355f804b3146103e25780636352211e146104025780636c0360eb1461042257806370a082311461043757600080fd5b8063200d2ed21161017a5780632f745c59116101495780632f745c591461036d5780633ccfd60b1461038d57806342842e0e146103a25780634f6ccce7146103c257600080fd5b8063200d2ed2146102e657806323b872dd1461030d5780632d20fb601461032d5780632e49d78b1461034d57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c5780631015805b1461028e5780631249c58b146102c957806318160ddd146102d157600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046124d0565b610615565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610682565b60405161020991906126a5565b34801561024057600080fd5b5061025461024f36600461259d565b610714565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c6102873660046124a6565b6107a4565b005b34801561029a57600080fd5b506102bb6102a9366004612304565b600d6020526000908152604090205481565b604051908152602001610209565b61028c6108bc565b3480156102dd57600080fd5b506102bb610af9565b3480156102f257600080fd5b50600a546103009060ff1681565b604051610209919061264e565b34801561031957600080fd5b5061028c610328366004612352565b610b0f565b34801561033957600080fd5b5061028c61034836600461259d565b610b1a565b34801561035957600080fd5b5061028c61036836600461250a565b610bad565b34801561037957600080fd5b506102bb6103883660046124a6565b610c35565b34801561039957600080fd5b5061028c610dad565b3480156103ae57600080fd5b5061028c6103bd366004612352565b610ee3565b3480156103ce57600080fd5b506102bb6103dd36600461259d565b610efe565b3480156103ee57600080fd5b5061028c6103fd36600461252b565b610f66565b34801561040e57600080fd5b5061025461041d36600461259d565b610fda565b34801561042e57600080fd5b50610227610fec565b34801561044357600080fd5b506102bb610452366004612304565b61107a565b34801561046357600080fd5b5061028c61110b565b34801561047857600080fd5b506102bb600c5481565b34801561048e57600080fd5b506008546001600160a01b0316610254565b3480156104ac57600080fd5b506104c06104bb36600461259d565b611141565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610209565b3480156104fa57600080fd5b5061022761115e565b34801561050f57600080fd5b5061028c61051e36600461246a565b61116d565b34801561052f57600080fd5b5061028c61053e36600461238e565b611232565b34801561054f57600080fd5b5061022761055e36600461259d565b61126b565b34801561056f57600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006102bb565b3480156105a257600080fd5b506102bb60075481565b3480156105b857600080fd5b506101fd6105c736600461231f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561060157600080fd5b5061028c610610366004612304565b611338565b60006001600160e01b031982166380ac58cd60e01b148061064657506001600160e01b03198216635b5e139f60e01b145b8061066157506001600160e01b0319821663780e9d6360e01b145b8061067c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461069190612810565b80601f01602080910402602001604051908101604052809291908181526020018280546106bd90612810565b801561070a5780601f106106df5761010080835404028352916020019161070a565b820191906000526020600020905b8154815290600101906020018083116106ed57829003601f168201915b5050505050905090565b6000610721826000541190565b6107885760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107af82610fda565b9050806001600160a01b0316836001600160a01b0316141561081e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161077f565b336001600160a01b038216148061083a575061083a81336105c7565b6108ac5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161077f565b6108b78383836113d3565b505050565b6001600a5460ff1660028111156108d5576108d56128a6565b1461092d5760405162461bcd60e51b815260206004820152602260248201527f5a6f6e677a693a205075626c69632073616c65206973206e6f74206163746976604482015261329760f11b606482015260840161077f565b32331461098d5760405162461bcd60e51b815260206004820152602860248201527f5a6f6e677a693a20636f6e7472616374206973206e6f7420616c6c6f776564206044820152673a379036b4b73a1760c11b606482015260840161077f565b336000908152600d6020526040902054600111610a125760405162461bcd60e51b815260206004820152603960248201527f5a6f6e677a693a205468652077616c6c65742068617320616c7265616479206d60448201527f696e74656420647572696e67207075626c69632073616c652e00000000000000606482015260840161077f565b7f0000000000000000000000000000000000000000000000000000000000000000610a3b610af9565b610a46906001612762565b1115610a945760405162461bcd60e51b815260206004820152601c60248201527f5a6f6e677a693a204d617820737570706c792065786365656465642e00000000604482015260640161077f565b610a9f33600161142f565b336000908152600d6020526040902060019055600c54610abe9061144d565b60408051338152600160208201527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a1565b60006001600054610b0a91906127b6565b905090565b6108b78383836114db565b6008546001600160a01b03163314610b445760405162461bcd60e51b815260040161077f906126b8565b60026009541415610b975760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161077f565b6002600955610ba581611863565b506001600955565b6008546001600160a01b03163314610bd75760405162461bcd60e51b815260040161077f906126b8565b600a805482919060ff19166001836002811115610bf657610bf66128a6565b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610c2a919061264e565b60405180910390a150565b6000610c408361107a565b8210610c995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161077f565b6000610ca3610af9565b905060008060005b83811015610d4d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610cfe57805192505b876001600160a01b0316836001600160a01b03161415610d3a5786841415610d2c5750935061067c92505050565b83610d368161284b565b9450505b5080610d458161284b565b915050610cab565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161077f565b60026009541415610e005760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161077f565b60026009556008546001600160a01b03163314610e2f5760405162461bcd60e51b815260040161077f906126b8565b60004711610e6e5760405162461bcd60e51b815260206004820152600c60248201526b737566662062616c616e636560a01b604482015260640161077f565b610e89610e836008546001600160a01b031690565b47611a4d565b7f6cca423c6ffc06e62a0acc433965e074b11c28479b0449250ce3ff65ac9e39fe610ebc6008546001600160a01b031690565b604080516001600160a01b0390921682524760208301520160405180910390a16001600955565b6108b783838360405180602001604052806000815250611232565b6000610f08610af9565b8210610f625760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161077f565b5090565b6008546001600160a01b03163314610f905760405162461bcd60e51b815260040161077f906126b8565b610f9c600b8383612258565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610fce929190612676565b60405180910390a15050565b6000610fe582611b66565b5192915050565b600b8054610ff990612810565b80601f016020809104026020016040519081016040528092919081815260200182805461102590612810565b80156110725780601f1061104757610100808354040283529160200191611072565b820191906000526020600020905b81548152906001019060200180831161105557829003601f168201915b505050505081565b60006001600160a01b0382166110e65760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161077f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146111355760405162461bcd60e51b815260040161077f906126b8565b61113f6000611d10565b565b604080518082019091526000808252602082015261067c82611b66565b60606002805461069190612810565b6001600160a01b0382163314156111c65760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161077f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61123d8484846114db565b61124984848484611d62565b6112655760405162461bcd60e51b815260040161077f906126ed565b50505050565b6060611278826000541190565b6112dc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161077f565b60006112e6611e70565b905060008151116113065760405180602001604052806000815250611331565b8061131084611e7f565b6040516020016113219291906125e2565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113625760405162461bcd60e51b815260040161077f906126b8565b6001600160a01b0381166113c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077f565b6113d081611d10565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611449828260405180602001604052806000815250611f7d565b5050565b8034101561149d5760405162461bcd60e51b815260206004820152601e60248201527f5a6f6e677a693a204e65656420746f2073656e64206d6f7265204554482e0000604482015260640161077f565b803411156113d057336108fc6114b383346127b6565b6040518115909202916000818181858888f19350505050158015611449573d6000803e3d6000fd5b60006114e682611b66565b80519091506000906001600160a01b0316336001600160a01b0316148061151d57503361151284610714565b6001600160a01b0316145b8061152f5750815161152f90336105c7565b9050806115995760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161077f565b846001600160a01b031682600001516001600160a01b03161461160d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161077f565b6001600160a01b0384166116715760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161077f565b61168160008484600001516113d3565b6001600160a01b03851660009081526004602052604081208054600192906116b39084906001600160801b031661278e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926116ff91859116612740565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611787846001612762565b6000818152600360205260409020549091506001600160a01b0316611819576117b1816000541190565b156118195760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600754816118b35760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161077f565b600060016118c18484612762565b6118cb91906127b6565b90506118f860017f00000000000000000000000000000000000000000000000000000000000000006127b6565b81111561192d5761192a60017f00000000000000000000000000000000000000000000000000000000000000006127b6565b90505b611938816000541190565b6119935760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161077f565b815b818111611a39576000818152600360205260409020546001600160a01b0316611a275760006119c382611b66565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611a318161284b565b915050611995565b50611a45816001612762565b600755505050565b80471015611a9d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161077f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611aea576040519150601f19603f3d011682016040523d82523d6000602084013e611aef565b606091505b50509050806108b75760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161077f565b6040805180820190915260008082526020820152611b85826000541190565b611be45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161077f565b60007f00000000000000000000000000000000000000000000000000000000000000008310611c4557611c377f0000000000000000000000000000000000000000000000000000000000000000846127b6565b611c42906001612762565b90505b825b818110611caf576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c9c57949350505050565b5080611ca7816127f9565b915050611c47565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161077f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e6457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611da6903390899088908890600401612611565b602060405180830381600087803b158015611dc057600080fd5b505af1925050508015611df0575060408051601f3d908101601f19168201909252611ded918101906124ed565b60015b611e4a573d808015611e1e576040519150601f19603f3d011682016040523d82523d6000602084013e611e23565b606091505b508051611e425760405162461bcd60e51b815260040161077f906126ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e68565b5060015b949350505050565b6060600b805461069190612810565b606081611ea35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ecd5780611eb78161284b565b9150611ec69050600a8361277a565b9150611ea7565b60008167ffffffffffffffff811115611ee857611ee86128d2565b6040519080825280601f01601f191660200182016040528015611f12576020820181803683370190505b5090505b8415611e6857611f276001836127b6565b9150611f34600a86612866565b611f3f906030612762565b60f81b818381518110611f5457611f546128bc565b60200101906001600160f81b031916908160001a905350611f76600a8661277a565b9450611f16565b6000546001600160a01b038416611fe05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161077f565b611feb816000541190565b156120385760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161077f565b7f00000000000000000000000000000000000000000000000000000000000000008311156120b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161077f565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061210f908790612740565b6001600160801b0316815260200185836020015161212d9190612740565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561224d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122116000888488611d62565b61222d5760405162461bcd60e51b815260040161077f906126ed565b816122378161284b565b92505080806122459061284b565b9150506121c4565b50600081905561185b565b82805461226490612810565b90600052602060002090601f01602090048101928261228657600085556122cc565b82601f1061229f5782800160ff198235161785556122cc565b828001600101855582156122cc579182015b828111156122cc5782358255916020019190600101906122b1565b50610f629291505b80821115610f6257600081556001016122d4565b80356001600160a01b03811681146122ff57600080fd5b919050565b60006020828403121561231657600080fd5b611331826122e8565b6000806040838503121561233257600080fd5b61233b836122e8565b9150612349602084016122e8565b90509250929050565b60008060006060848603121561236757600080fd5b612370846122e8565b925061237e602085016122e8565b9150604084013590509250925092565b600080600080608085870312156123a457600080fd5b6123ad856122e8565b93506123bb602086016122e8565b925060408501359150606085013567ffffffffffffffff808211156123df57600080fd5b818701915087601f8301126123f357600080fd5b813581811115612405576124056128d2565b604051601f8201601f19908116603f0116810190838211818310171561242d5761242d6128d2565b816040528281528a602084870101111561244657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561247d57600080fd5b612486836122e8565b91506020830135801515811461249b57600080fd5b809150509250929050565b600080604083850312156124b957600080fd5b6124c2836122e8565b946020939093013593505050565b6000602082840312156124e257600080fd5b8135611331816128e8565b6000602082840312156124ff57600080fd5b8151611331816128e8565b60006020828403121561251c57600080fd5b81356003811061133157600080fd5b6000806020838503121561253e57600080fd5b823567ffffffffffffffff8082111561255657600080fd5b818501915085601f83011261256a57600080fd5b81358181111561257957600080fd5b86602082850101111561258b57600080fd5b60209290920196919550909350505050565b6000602082840312156125af57600080fd5b5035919050565b600081518084526125ce8160208601602086016127cd565b601f01601f19169290920160200192915050565b600083516125f48184602088016127cd565b8351908301906126088183602088016127cd565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612644908301846125b6565b9695505050505050565b602081016003831061267057634e487b7160e01b600052602160045260246000fd5b91905290565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208152600061133160208301846125b6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156126085761260861287a565b600082198211156127755761277561287a565b500190565b60008261278957612789612890565b500490565b60006001600160801b03838116908316818110156127ae576127ae61287a565b039392505050565b6000828210156127c8576127c861287a565b500390565b60005b838110156127e85781810151838201526020016127d0565b838111156112655750506000910152565b6000816128085761280861287a565b506000190190565b600181811c9082168061282457607f821691505b6020821081141561284557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561285f5761285f61287a565b5060010190565b60008261287557612875612890565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113d057600080fdfea26469706673582212204df610e4f5a71515a7f6380f2b4e9713540da542ce42987273275269367c7a0764736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64567a5a4b667864735153423946615056316733626f756b73565957553748446d736a6238706362465268512f00000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806355f804b31161010257806395d89b4111610095578063d5abeb0111610064578063d5abeb0114610563578063d7224ba014610596578063e985e9c5146105ac578063f2fde38b146105f557600080fd5b806395d89b41146104ee578063a22cb46514610503578063b88d4fde14610523578063c87b56dd1461054357600080fd5b8063715018a6116100d1578063715018a6146104575780638d859f3e1461046c5780638da5cb5b146104825780639231ab2a146104a057600080fd5b806355f804b3146103e25780636352211e146104025780636c0360eb1461042257806370a082311461043757600080fd5b8063200d2ed21161017a5780632f745c59116101495780632f745c591461036d5780633ccfd60b1461038d57806342842e0e146103a25780634f6ccce7146103c257600080fd5b8063200d2ed2146102e657806323b872dd1461030d5780632d20fb601461032d5780632e49d78b1461034d57600080fd5b8063095ea7b3116101b6578063095ea7b31461026c5780631015805b1461028e5780631249c58b146102c957806318160ddd146102d157600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046124d0565b610615565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610682565b60405161020991906126a5565b34801561024057600080fd5b5061025461024f36600461259d565b610714565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c6102873660046124a6565b6107a4565b005b34801561029a57600080fd5b506102bb6102a9366004612304565b600d6020526000908152604090205481565b604051908152602001610209565b61028c6108bc565b3480156102dd57600080fd5b506102bb610af9565b3480156102f257600080fd5b50600a546103009060ff1681565b604051610209919061264e565b34801561031957600080fd5b5061028c610328366004612352565b610b0f565b34801561033957600080fd5b5061028c61034836600461259d565b610b1a565b34801561035957600080fd5b5061028c61036836600461250a565b610bad565b34801561037957600080fd5b506102bb6103883660046124a6565b610c35565b34801561039957600080fd5b5061028c610dad565b3480156103ae57600080fd5b5061028c6103bd366004612352565b610ee3565b3480156103ce57600080fd5b506102bb6103dd36600461259d565b610efe565b3480156103ee57600080fd5b5061028c6103fd36600461252b565b610f66565b34801561040e57600080fd5b5061025461041d36600461259d565b610fda565b34801561042e57600080fd5b50610227610fec565b34801561044357600080fd5b506102bb610452366004612304565b61107a565b34801561046357600080fd5b5061028c61110b565b34801561047857600080fd5b506102bb600c5481565b34801561048e57600080fd5b506008546001600160a01b0316610254565b3480156104ac57600080fd5b506104c06104bb36600461259d565b611141565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610209565b3480156104fa57600080fd5b5061022761115e565b34801561050f57600080fd5b5061028c61051e36600461246a565b61116d565b34801561052f57600080fd5b5061028c61053e36600461238e565b611232565b34801561054f57600080fd5b5061022761055e36600461259d565b61126b565b34801561056f57600080fd5b507f000000000000000000000000000000000000000000000000000000000000012c6102bb565b3480156105a257600080fd5b506102bb60075481565b3480156105b857600080fd5b506101fd6105c736600461231f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561060157600080fd5b5061028c610610366004612304565b611338565b60006001600160e01b031982166380ac58cd60e01b148061064657506001600160e01b03198216635b5e139f60e01b145b8061066157506001600160e01b0319821663780e9d6360e01b145b8061067c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461069190612810565b80601f01602080910402602001604051908101604052809291908181526020018280546106bd90612810565b801561070a5780601f106106df5761010080835404028352916020019161070a565b820191906000526020600020905b8154815290600101906020018083116106ed57829003601f168201915b5050505050905090565b6000610721826000541190565b6107885760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107af82610fda565b9050806001600160a01b0316836001600160a01b0316141561081e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161077f565b336001600160a01b038216148061083a575061083a81336105c7565b6108ac5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161077f565b6108b78383836113d3565b505050565b6001600a5460ff1660028111156108d5576108d56128a6565b1461092d5760405162461bcd60e51b815260206004820152602260248201527f5a6f6e677a693a205075626c69632073616c65206973206e6f74206163746976604482015261329760f11b606482015260840161077f565b32331461098d5760405162461bcd60e51b815260206004820152602860248201527f5a6f6e677a693a20636f6e7472616374206973206e6f7420616c6c6f776564206044820152673a379036b4b73a1760c11b606482015260840161077f565b336000908152600d6020526040902054600111610a125760405162461bcd60e51b815260206004820152603960248201527f5a6f6e677a693a205468652077616c6c65742068617320616c7265616479206d60448201527f696e74656420647572696e67207075626c69632073616c652e00000000000000606482015260840161077f565b7f000000000000000000000000000000000000000000000000000000000000012c610a3b610af9565b610a46906001612762565b1115610a945760405162461bcd60e51b815260206004820152601c60248201527f5a6f6e677a693a204d617820737570706c792065786365656465642e00000000604482015260640161077f565b610a9f33600161142f565b336000908152600d6020526040902060019055600c54610abe9061144d565b60408051338152600160208201527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a1565b60006001600054610b0a91906127b6565b905090565b6108b78383836114db565b6008546001600160a01b03163314610b445760405162461bcd60e51b815260040161077f906126b8565b60026009541415610b975760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161077f565b6002600955610ba581611863565b506001600955565b6008546001600160a01b03163314610bd75760405162461bcd60e51b815260040161077f906126b8565b600a805482919060ff19166001836002811115610bf657610bf66128a6565b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610c2a919061264e565b60405180910390a150565b6000610c408361107a565b8210610c995760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161077f565b6000610ca3610af9565b905060008060005b83811015610d4d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610cfe57805192505b876001600160a01b0316836001600160a01b03161415610d3a5786841415610d2c5750935061067c92505050565b83610d368161284b565b9450505b5080610d458161284b565b915050610cab565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161077f565b60026009541415610e005760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161077f565b60026009556008546001600160a01b03163314610e2f5760405162461bcd60e51b815260040161077f906126b8565b60004711610e6e5760405162461bcd60e51b815260206004820152600c60248201526b737566662062616c616e636560a01b604482015260640161077f565b610e89610e836008546001600160a01b031690565b47611a4d565b7f6cca423c6ffc06e62a0acc433965e074b11c28479b0449250ce3ff65ac9e39fe610ebc6008546001600160a01b031690565b604080516001600160a01b0390921682524760208301520160405180910390a16001600955565b6108b783838360405180602001604052806000815250611232565b6000610f08610af9565b8210610f625760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161077f565b5090565b6008546001600160a01b03163314610f905760405162461bcd60e51b815260040161077f906126b8565b610f9c600b8383612258565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610fce929190612676565b60405180910390a15050565b6000610fe582611b66565b5192915050565b600b8054610ff990612810565b80601f016020809104026020016040519081016040528092919081815260200182805461102590612810565b80156110725780601f1061104757610100808354040283529160200191611072565b820191906000526020600020905b81548152906001019060200180831161105557829003601f168201915b505050505081565b60006001600160a01b0382166110e65760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161077f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146111355760405162461bcd60e51b815260040161077f906126b8565b61113f6000611d10565b565b604080518082019091526000808252602082015261067c82611b66565b60606002805461069190612810565b6001600160a01b0382163314156111c65760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161077f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61123d8484846114db565b61124984848484611d62565b6112655760405162461bcd60e51b815260040161077f906126ed565b50505050565b6060611278826000541190565b6112dc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161077f565b60006112e6611e70565b905060008151116113065760405180602001604052806000815250611331565b8061131084611e7f565b6040516020016113219291906125e2565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113625760405162461bcd60e51b815260040161077f906126b8565b6001600160a01b0381166113c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077f565b6113d081611d10565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611449828260405180602001604052806000815250611f7d565b5050565b8034101561149d5760405162461bcd60e51b815260206004820152601e60248201527f5a6f6e677a693a204e65656420746f2073656e64206d6f7265204554482e0000604482015260640161077f565b803411156113d057336108fc6114b383346127b6565b6040518115909202916000818181858888f19350505050158015611449573d6000803e3d6000fd5b60006114e682611b66565b80519091506000906001600160a01b0316336001600160a01b0316148061151d57503361151284610714565b6001600160a01b0316145b8061152f5750815161152f90336105c7565b9050806115995760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161077f565b846001600160a01b031682600001516001600160a01b03161461160d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161077f565b6001600160a01b0384166116715760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161077f565b61168160008484600001516113d3565b6001600160a01b03851660009081526004602052604081208054600192906116b39084906001600160801b031661278e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926116ff91859116612740565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611787846001612762565b6000818152600360205260409020549091506001600160a01b0316611819576117b1816000541190565b156118195760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600754816118b35760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161077f565b600060016118c18484612762565b6118cb91906127b6565b90506118f860017f000000000000000000000000000000000000000000000000000000000000012c6127b6565b81111561192d5761192a60017f000000000000000000000000000000000000000000000000000000000000012c6127b6565b90505b611938816000541190565b6119935760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161077f565b815b818111611a39576000818152600360205260409020546001600160a01b0316611a275760006119c382611b66565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611a318161284b565b915050611995565b50611a45816001612762565b600755505050565b80471015611a9d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161077f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611aea576040519150601f19603f3d011682016040523d82523d6000602084013e611aef565b606091505b50509050806108b75760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161077f565b6040805180820190915260008082526020820152611b85826000541190565b611be45760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161077f565b60007f00000000000000000000000000000000000000000000000000000000000000028310611c4557611c377f0000000000000000000000000000000000000000000000000000000000000002846127b6565b611c42906001612762565b90505b825b818110611caf576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c9c57949350505050565b5080611ca7816127f9565b915050611c47565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161077f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e6457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611da6903390899088908890600401612611565b602060405180830381600087803b158015611dc057600080fd5b505af1925050508015611df0575060408051601f3d908101601f19168201909252611ded918101906124ed565b60015b611e4a573d808015611e1e576040519150601f19603f3d011682016040523d82523d6000602084013e611e23565b606091505b508051611e425760405162461bcd60e51b815260040161077f906126ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e68565b5060015b949350505050565b6060600b805461069190612810565b606081611ea35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ecd5780611eb78161284b565b9150611ec69050600a8361277a565b9150611ea7565b60008167ffffffffffffffff811115611ee857611ee86128d2565b6040519080825280601f01601f191660200182016040528015611f12576020820181803683370190505b5090505b8415611e6857611f276001836127b6565b9150611f34600a86612866565b611f3f906030612762565b60f81b818381518110611f5457611f546128bc565b60200101906001600160f81b031916908160001a905350611f76600a8661277a565b9450611f16565b6000546001600160a01b038416611fe05760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161077f565b611feb816000541190565b156120385760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161077f565b7f00000000000000000000000000000000000000000000000000000000000000028311156120b35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161077f565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061210f908790612740565b6001600160801b0316815260200185836020015161212d9190612740565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561224d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122116000888488611d62565b61222d5760405162461bcd60e51b815260040161077f906126ed565b816122378161284b565b92505080806122459061284b565b9150506121c4565b50600081905561185b565b82805461226490612810565b90600052602060002090601f01602090048101928261228657600085556122cc565b82601f1061229f5782800160ff198235161785556122cc565b828001600101855582156122cc579182015b828111156122cc5782358255916020019190600101906122b1565b50610f629291505b80821115610f6257600081556001016122d4565b80356001600160a01b03811681146122ff57600080fd5b919050565b60006020828403121561231657600080fd5b611331826122e8565b6000806040838503121561233257600080fd5b61233b836122e8565b9150612349602084016122e8565b90509250929050565b60008060006060848603121561236757600080fd5b612370846122e8565b925061237e602085016122e8565b9150604084013590509250925092565b600080600080608085870312156123a457600080fd5b6123ad856122e8565b93506123bb602086016122e8565b925060408501359150606085013567ffffffffffffffff808211156123df57600080fd5b818701915087601f8301126123f357600080fd5b813581811115612405576124056128d2565b604051601f8201601f19908116603f0116810190838211818310171561242d5761242d6128d2565b816040528281528a602084870101111561244657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561247d57600080fd5b612486836122e8565b91506020830135801515811461249b57600080fd5b809150509250929050565b600080604083850312156124b957600080fd5b6124c2836122e8565b946020939093013593505050565b6000602082840312156124e257600080fd5b8135611331816128e8565b6000602082840312156124ff57600080fd5b8151611331816128e8565b60006020828403121561251c57600080fd5b81356003811061133157600080fd5b6000806020838503121561253e57600080fd5b823567ffffffffffffffff8082111561255657600080fd5b818501915085601f83011261256a57600080fd5b81358181111561257957600080fd5b86602082850101111561258b57600080fd5b60209290920196919550909350505050565b6000602082840312156125af57600080fd5b5035919050565b600081518084526125ce8160208601602086016127cd565b601f01601f19169290920160200192915050565b600083516125f48184602088016127cd565b8351908301906126088183602088016127cd565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612644908301846125b6565b9695505050505050565b602081016003831061267057634e487b7160e01b600052602160045260246000fd5b91905290565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208152600061133160208301846125b6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156126085761260861287a565b600082198211156127755761277561287a565b500190565b60008261278957612789612890565b500490565b60006001600160801b03838116908316818110156127ae576127ae61287a565b039392505050565b6000828210156127c8576127c861287a565b500390565b60005b838110156127e85781810151838201526020016127d0565b838111156112655750506000910152565b6000816128085761280861287a565b506000190190565b600181811c9082168061282457607f821691505b6020821081141561284557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561285f5761285f61287a565b5060010190565b60008261287557612875612890565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113d057600080fdfea26469706673582212204df610e4f5a71515a7f6380f2b4e9713540da542ce42987273275269367c7a0764736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64567a5a4b667864735153423946615056316733626f756b73565957553748446d736a6238706362465268512f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmdVzZKfxdsQSB9FaPV1g3bouksVYWU7HDmsjb8pcbFRhQ/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d64567a5a4b667864735153423946615056316733626f75
Arg [3] : 6b73565957553748446d736a6238706362465268512f00000000000000000000


Deployed Bytecode Sourcemap

54237:2670:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37720:422;;;;;;;;;;-1:-1:-1;37720:422:0;;;;;:::i;:::-;;:::i;:::-;;;6672:14:1;;6665:22;6647:41;;6635:2;6620:18;37720:422:0;;;;;;;;39681:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41376:292::-;;;;;;;;;;-1:-1:-1;41376:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5404:32:1;;;5386:51;;5374:2;5359:18;41376:292:0;5240:203:1;40897:413:0;;;;;;;;;;-1:-1:-1;40897:413:0;;;;;:::i;:::-;;:::i;:::-;;54504:47;;;;;;;;;;-1:-1:-1;54504:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;20433:25:1;;;20421:2;20406:18;54504:47:0;20287:177:1;54928:665:0;;;:::i;36072:104::-;;;;;;;;;;;;;:::i;54416:20::-;;;;;;;;;;-1:-1:-1;54416:20:0;;;;;;;;;;;;;;;:::i;42403:162::-;;;;;;;;;;-1:-1:-1;42403:162:0;;;;;:::i;:::-;;:::i;56148:144::-;;;;;;;;;;-1:-1:-1;56148:144:0;;;;;:::i;:::-;;:::i;56013:127::-;;;;;;;;;;-1:-1:-1;56013:127:0;;;;;:::i;:::-;;:::i;36784:864::-;;;;;;;;;;-1:-1:-1;36784:864:0;;;;;:::i;:::-;;:::i;55601:248::-;;;;;;;;;;;;;:::i;42636:177::-;;;;;;;;;;-1:-1:-1;42636:177:0;;;;;:::i;:::-;;:::i;36253:228::-;;;;;;;;;;-1:-1:-1;36253:228:0;;;;;:::i;:::-;;:::i;55857:148::-;;;;;;;;;;-1:-1:-1;55857:148:0;;;;;:::i;:::-;;:::i;39490:124::-;;;;;;;;;;-1:-1:-1;39490:124:0;;;;;:::i;:::-;;:::i;54443:21::-;;;;;;;;;;;;;:::i;38206:258::-;;;;;;;;;;-1:-1:-1;38206:258:0;;;;;:::i;:::-;;:::i;53356:103::-;;;;;;;;;;;;;:::i;54471:24::-;;;;;;;;;;;;;;;;52705:87;;;;;;;;;;-1:-1:-1;52778:6:0;;-1:-1:-1;;;;;52778:6:0;52705:87;;56401:155;;;;;;;;;;-1:-1:-1;56401:155:0;;;;;:::i;:::-;;:::i;:::-;;;;20152:13:1;;-1:-1:-1;;;;;20148:39:1;20130:58;;20248:4;20236:17;;;20230:24;20256:18;20226:49;20204:20;;;20197:79;;;;20103:18;56401:155:0;19920:362:1;39850:104:0;;;;;;;;;;;;;:::i;41740:311::-;;;;;;;;;;-1:-1:-1;41740:311:0;;;;;:::i;:::-;;:::i;42884:355::-;;;;;;;;;;-1:-1:-1;42884:355:0;;;;;:::i;:::-;;:::i;40025:468::-;;;;;;;;;;-1:-1:-1;40025:468:0;;;;;:::i;:::-;;:::i;56300:93::-;;;;;;;;;;-1:-1:-1;56371:14:0;56300:93;;47765:43;;;;;;;;;;;;;;;;42122:214;;;;;;;;;;-1:-1:-1;42122:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;42293:25:0;;;42264:4;42293:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42122:214;53614:201;;;;;;;;;;-1:-1:-1;53614:201:0;;;;;:::i;:::-;;:::i;37720:422::-;37867:4;-1:-1:-1;;;;;;37909:40:0;;-1:-1:-1;;;37909:40:0;;:105;;-1:-1:-1;;;;;;;37966:48:0;;-1:-1:-1;;;37966:48:0;37909:105;:172;;;-1:-1:-1;;;;;;;38031:50:0;;-1:-1:-1;;;38031:50:0;37909:172;:225;;;-1:-1:-1;;;;;;;;;;11481:40:0;;;38098:36;37889:245;37720:422;-1:-1:-1;;37720:422:0:o;39681:100::-;39735:13;39768:5;39761:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39681:100;:::o;41376:292::-;41480:7;41527:16;41535:7;43551:4;43585:12;-1:-1:-1;43575:22:0;43494:111;41527:16;41505:111;;;;-1:-1:-1;;;41505:111:0;;19305:2:1;41505:111:0;;;19287:21:1;19344:2;19324:18;;;19317:30;19383:34;19363:18;;;19356:62;-1:-1:-1;;;19434:18:1;;;19427:43;19487:19;;41505:111:0;;;;;;;;;-1:-1:-1;41636:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;41636:24:0;;41376:292::o;40897:413::-;40970:13;40986:24;41002:7;40986:15;:24::i;:::-;40970:40;;41035:5;-1:-1:-1;;;;;41029:11:0;:2;-1:-1:-1;;;;;41029:11:0;;;41021:58;;;;-1:-1:-1;;;41021:58:0;;16124:2:1;41021:58:0;;;16106:21:1;16163:2;16143:18;;;16136:30;16202:34;16182:18;;;16175:62;-1:-1:-1;;;16253:18:1;;;16246:32;16295:19;;41021:58:0;15922:398:1;41021:58:0;33482:10;-1:-1:-1;;;;;41114:21:0;;;;:62;;-1:-1:-1;41139:37:0;41156:5;33482:10;42122:214;:::i;41139:37::-;41092:169;;;;-1:-1:-1;;;41092:169:0;;11866:2:1;41092:169:0;;;11848:21:1;11905:2;11885:18;;;11878:30;11944:34;11924:18;;;11917:62;12015:27;11995:18;;;11988:55;12060:19;;41092:169:0;11664:421:1;41092:169:0;41274:28;41283:2;41287:7;41296:5;41274:8;:28::i;:::-;40959:351;40897:413;;:::o;54928:665::-;54990:17;54980:6;;;;:27;;;;;;;;:::i;:::-;;54972:74;;;;-1:-1:-1;;;54972:74:0;;11463:2:1;54972:74:0;;;11445:21:1;11502:2;11482:18;;;11475:30;11541:34;11521:18;;;11514:62;-1:-1:-1;;;11592:18:1;;;11585:32;11634:19;;54972:74:0;11261:398:1;54972:74:0;55079:9;55092:10;55079:23;55057:113;;;;-1:-1:-1;;;55057:113:0;;12986:2:1;55057:113:0;;;12968:21:1;13025:2;13005:18;;;12998:30;13064:34;13044:18;;;13037:62;-1:-1:-1;;;13115:18:1;;;13108:38;13163:19;;55057:113:0;12784:404:1;55057:113:0;55216:10;55203:24;;;;:12;:24;;;;;;55230:1;-1:-1:-1;55181:135:0;;;;-1:-1:-1;;;55181:135:0;;9085:2:1;55181:135:0;;;9067:21:1;9124:2;9104:18;;;9097:30;9163:34;9143:18;;;9136:62;9234:27;9214:18;;;9207:55;9279:19;;55181:135:0;8883:421:1;55181:135:0;55370:14;55349:13;:11;:13::i;:::-;:17;;55365:1;55349:17;:::i;:::-;:35;;55327:113;;;;-1:-1:-1;;;55327:113:0;;10321:2:1;55327:113:0;;;10303:21:1;10360:2;10340:18;;;10333:30;10399;10379:18;;;10372:58;10447:18;;55327:113:0;10119:352:1;55327:113:0;55453:24;55463:10;55475:1;55453:9;:24::i;:::-;55501:10;55488:24;;;;:12;:24;;;;;55515:1;55488:28;;55540:5;;55527:19;;:12;:19::i;:::-;55564:21;;;55571:10;6123:51:1;;55583:1:0;6205:2:1;6190:18;;6183:34;55564:21:0;;6096:18:1;55564:21:0;;;;;;;54928:665::o;36072:104::-;36125:7;36167:1;36152:12;;:16;;;;:::i;:::-;36145:23;;36072:104;:::o;42403:162::-;42529:28;42539:4;42545:2;42549:7;42529:9;:28::i;56148:144::-;52778:6;;-1:-1:-1;;;;;52778:6:0;33482:10;52925:23;52917:68;;;;-1:-1:-1;;;52917:68:0;;;;;;;:::i;:::-;31776:1:::1;32374:7;;:19;;32366:63;;;::::0;-1:-1:-1;;;32366:63:0;;18529:2:1;32366:63:0::1;::::0;::::1;18511:21:1::0;18568:2;18548:18;;;18541:30;18607:33;18587:18;;;18580:61;18658:18;;32366:63:0::1;18327:355:1::0;32366:63:0::1;31776:1;32507:7;:18:::0;56256:28:::2;56275:8:::0;56256:18:::2;:28::i;:::-;-1:-1:-1::0;31732:1:0::1;32686:7;:22:::0;56148:144::o;56013:127::-;52778:6;;-1:-1:-1;;;;;52778:6:0;33482:10;52925:23;52917:68;;;;-1:-1:-1;;;52917:68:0;;;;;;;:::i;:::-;56078:6:::1;:16:::0;;56087:7;;56078:6;-1:-1:-1;;56078:16:0::1;::::0;56087:7;56078:16:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;56110:22;56124:7;56110:22;;;;;;:::i;:::-;;;;;;;;56013:127:::0;:::o;36784:864::-;36909:7;36950:16;36960:5;36950:9;:16::i;:::-;36942:5;:24;36934:71;;;;-1:-1:-1;;;36934:71:0;;7864:2:1;36934:71:0;;;7846:21:1;7903:2;7883:18;;;7876:30;7942:34;7922:18;;;7915:62;-1:-1:-1;;;7993:18:1;;;7986:32;8035:19;;36934:71:0;7662:398:1;36934:71:0;37016:22;37041:13;:11;:13::i;:::-;37016:38;;37065:19;37099:25;37153:9;37148:426;37172:14;37168:1;:18;37148:426;;;37208:31;37242:14;;;:11;:14;;;;;;;;;37208:48;;;;;;;;;-1:-1:-1;;;;;37208:48:0;;;;;-1:-1:-1;;;37208:48:0;;;;;;;;;;;;37275:28;37271:103;;37344:14;;;-1:-1:-1;37271:103:0;37413:5;-1:-1:-1;;;;;37392:26:0;:17;-1:-1:-1;;;;;37392:26:0;;37388:175;;;37458:5;37443:11;:20;37439:77;;;-1:-1:-1;37495:1:0;-1:-1:-1;37488:8:0;;-1:-1:-1;;;37488:8:0;37439:77;37534:13;;;;:::i;:::-;;;;37388:175;-1:-1:-1;37188:3:0;;;;:::i;:::-;;;;37148:426;;;-1:-1:-1;37584:56:0;;-1:-1:-1;;;37584:56:0;;17707:2:1;37584:56:0;;;17689:21:1;17746:2;17726:18;;;17719:30;17785:34;17765:18;;;17758:62;-1:-1:-1;;;17836:18:1;;;17829:44;17890:19;;37584:56:0;17505:410:1;55601:248:0;31776:1;32374:7;;:19;;32366:63;;;;-1:-1:-1;;;32366:63:0;;18529:2:1;32366:63:0;;;18511:21:1;18568:2;18548:18;;;18541:30;18607:33;18587:18;;;18580:61;18658:18;;32366:63:0;18327:355:1;32366:63:0;31776:1;32507:7;:18;52778:6;;-1:-1:-1;;;;;52778:6:0;33482:10;52925:23:::1;52917:68;;;;-1:-1:-1::0;;;52917:68:0::1;;;;;;;:::i;:::-;55696:1:::2;55672:21;:25;55664:50;;;::::0;-1:-1:-1;;;55664:50:0;;12645:2:1;55664:50:0::2;::::0;::::2;12627:21:1::0;12684:2;12664:18;;;12657:30;-1:-1:-1;;;12703:18:1;;;12696:42;12755:18;;55664:50:0::2;12443:336:1::0;55664:50:0::2;55725:58;55751:7;52778:6:::0;;-1:-1:-1;;;;;52778:6:0;;52705:87;55751:7:::2;55761:21;55725:17;:58::i;:::-;55799:42;55810:7;52778:6:::0;;-1:-1:-1;;;;;52778:6:0;;52705:87;55810:7:::2;55799:42;::::0;;-1:-1:-1;;;;;6141:32:1;;;6123:51;;55819:21:0::2;6205:2:1::0;6190:18;;6183:34;6096:18;55799:42:0::2;;;;;;;31732:1:::0;32686:7;:22;55601:248::o;42636:177::-;42766:39;42783:4;42789:2;42793:7;42766:39;;;;;;;;;;;;:16;:39::i;36253:228::-;36356:7;36397:13;:11;:13::i;:::-;36389:5;:21;36381:69;;;;-1:-1:-1;;;36381:69:0;;9511:2:1;36381:69:0;;;9493:21:1;9550:2;9530:18;;;9523:30;9589:34;9569:18;;;9562:62;-1:-1:-1;;;9640:18:1;;;9633:33;9683:19;;36381:69:0;9309:399:1;36381:69:0;-1:-1:-1;36468:5:0;36253:228::o;55857:148::-;52778:6;;-1:-1:-1;;;;;52778:6:0;33482:10;52925:23;52917:68;;;;-1:-1:-1;;;52917:68:0;;;;;;;:::i;:::-;55935:20:::1;:7;55945:10:::0;;55935:20:::1;:::i;:::-;;55971:26;55986:10;;55971:26;;;;;;;:::i;:::-;;;;;;;;55857:148:::0;;:::o;39490:124::-;39554:7;39581:20;39593:7;39581:11;:20::i;:::-;:25;;39490:124;-1:-1:-1;;39490:124:0:o;54443:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38206:258::-;38270:7;-1:-1:-1;;;;;38312:19:0;;38290:112;;;;-1:-1:-1;;;38290:112:0;;13395:2:1;38290:112:0;;;13377:21:1;13434:2;13414:18;;;13407:30;13473:34;13453:18;;;13446:62;-1:-1:-1;;;13524:18:1;;;13517:41;13575:19;;38290:112:0;13193:407:1;38290:112:0;-1:-1:-1;;;;;;38428:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38428:27:0;;38206:258::o;53356:103::-;52778:6;;-1:-1:-1;;;;;52778:6:0;33482:10;52925:23;52917:68;;;;-1:-1:-1;;;52917:68:0;;;;;;;:::i;:::-;53421:30:::1;53448:1;53421:18;:30::i;:::-;53356:103::o:0;56401:155::-;-1:-1:-1;;;;;;;;;;;;;;;;;56528:20:0;56540:7;56528:11;:20::i;39850:104::-;39906:13;39939:7;39932:14;;;;;:::i;41740:311::-;-1:-1:-1;;;;;41858:24:0;;33482:10;41858:24;;41850:63;;;;-1:-1:-1;;;41850:63:0;;15350:2:1;41850:63:0;;;15332:21:1;15389:2;15369:18;;;15362:30;15428:28;15408:18;;;15401:56;15474:18;;41850:63:0;15148:350:1;41850:63:0;33482:10;41926:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;41926:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;41926:53:0;;;;;;;;;;41995:48;;6647:41:1;;;41926:42:0;;33482:10;41995:48;;6620:18:1;41995:48:0;;;;;;;41740:311;;:::o;42884:355::-;43043:28;43053:4;43059:2;43063:7;43043:9;:28::i;:::-;43104:48;43127:4;43133:2;43137:7;43146:5;43104:22;:48::i;:::-;43082:149;;;;-1:-1:-1;;;43082:149:0;;;;;;;:::i;:::-;42884:355;;;;:::o;40025:468::-;40143:13;40196:16;40204:7;43551:4;43585:12;-1:-1:-1;43575:22:0;43494:111;40196:16;40174:113;;;;-1:-1:-1;;;40174:113:0;;14934:2:1;40174:113:0;;;14916:21:1;14973:2;14953:18;;;14946:30;15012:34;14992:18;;;14985:62;-1:-1:-1;;;15063:18:1;;;15056:45;15118:19;;40174:113:0;14732:411:1;40174:113:0;40300:21;40324:10;:8;:10::i;:::-;40300:34;;40389:1;40371:7;40365:21;:25;:120;;;;;;;;;;;;;;;;;40434:7;40443:18;:7;:16;:18::i;:::-;40417:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40365:120;40345:140;40025:468;-1:-1:-1;;;40025:468:0:o;53614:201::-;52778:6;;-1:-1:-1;;;;;52778:6:0;33482:10;52925:23;52917:68;;;;-1:-1:-1;;;52917:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53703:22:0;::::1;53695:73;;;::::0;-1:-1:-1;;;53695:73:0;;8267:2:1;53695:73:0::1;::::0;::::1;8249:21:1::0;8306:2;8286:18;;;8279:30;8345:34;8325:18;;;8318:62;-1:-1:-1;;;8396:18:1;;;8389:36;8442:19;;53695:73:0::1;8065:402:1::0;53695:73:0::1;53779:28;53798:8;53779:18;:28::i;:::-;53614:201:::0;:::o;47561:196::-;47676:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47676:29:0;-1:-1:-1;;;;;47676:29:0;;;;;;;;;47721:28;;47676:24;;47721:28;;;;;;;47561:196;;;:::o;43613:104::-;43682:27;43692:2;43696:8;43682:27;;;;;;;;;;;;:9;:27::i;:::-;43613:104;;:::o;56564:232::-;56641:5;56628:9;:18;;56620:61;;;;-1:-1:-1;;;56620:61:0;;14575:2:1;56620:61:0;;;14557:21:1;14614:2;14594:18;;;14587:30;14653:32;14633:18;;;14626:60;14703:18;;56620:61:0;14373:354:1;56620:61:0;56708:5;56696:9;:17;56692:97;;;56738:10;56730:47;56759:17;56771:5;56759:9;:17;:::i;:::-;56730:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45734:1709;45849:35;45887:20;45899:7;45887:11;:20::i;:::-;45962:18;;45849:58;;-1:-1:-1;45920:22:0;;-1:-1:-1;;;;;45946:34:0;33482:10;-1:-1:-1;;;;;45946:34:0;;:87;;;-1:-1:-1;33482:10:0;45997:20;46009:7;45997:11;:20::i;:::-;-1:-1:-1;;;;;45997:36:0;;45946:87;:154;;;-1:-1:-1;46067:18:0;;46050:50;;33482:10;42122:214;:::i;46050:50::-;45920:181;;46136:17;46114:117;;;;-1:-1:-1;;;46114:117:0;;15705:2:1;46114:117:0;;;15687:21:1;15744:2;15724:18;;;15717:30;15783:34;15763:18;;;15756:62;-1:-1:-1;;;15834:18:1;;;15827:48;15892:19;;46114:117:0;15503:414:1;46114:117:0;46288:4;-1:-1:-1;;;;;46266:26:0;:13;:18;;;-1:-1:-1;;;;;46266:26:0;;46244:114;;;;-1:-1:-1;;;46244:114:0;;13807:2:1;46244:114:0;;;13789:21:1;13846:2;13826:18;;;13819:30;13885:34;13865:18;;;13858:62;-1:-1:-1;;;13936:18:1;;;13929:36;13982:19;;46244:114:0;13605:402:1;46244:114:0;-1:-1:-1;;;;;46377:16:0;;46369:66;;;;-1:-1:-1;;;46369:66:0;;9915:2:1;46369:66:0;;;9897:21:1;9954:2;9934:18;;;9927:30;9993:34;9973:18;;;9966:62;-1:-1:-1;;;10044:18:1;;;10037:35;10089:19;;46369:66:0;9713:401:1;46369:66:0;46556:49;46573:1;46577:7;46586:13;:18;;;46556:8;:49::i;:::-;-1:-1:-1;;;;;46618:18:0;;;;;;:12;:18;;;;;:31;;46648:1;;46618:18;:31;;46648:1;;-1:-1:-1;;;;;46618:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;46618:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46660:16:0;;-1:-1:-1;46660:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;46660:16:0;;:29;;-1:-1:-1;;46660:29:0;;:::i;:::-;;;-1:-1:-1;;;;;46660:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46723:43:0;;;;;;;;-1:-1:-1;;;;;46723:43:0;;;;;;46749:15;46723:43;;;;;;;;;-1:-1:-1;46700:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;46700:66:0;-1:-1:-1;;;;;;46700:66:0;;;;;;;;;;;47028:11;46712:7;-1:-1:-1;47028:11:0;:::i;:::-;47095:1;47054:24;;;:11;:24;;;;;:29;47006:33;;-1:-1:-1;;;;;;47054:29:0;47050:288;;47118:20;47126:11;43551:4;43585:12;-1:-1:-1;43575:22:0;43494:111;47118:20;47114:213;;;47186:125;;;;;;;;47223:18;;-1:-1:-1;;;;;47186:125:0;;;;;;47264:28;;;;47186:125;;;;;;;;;;-1:-1:-1;47159:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;47159:152:0;-1:-1:-1;;;;;;47159:152:0;;;;;;;;;;;;47114:213;47374:7;47370:2;-1:-1:-1;;;;;47355:27:0;47364:4;-1:-1:-1;;;;;47355:27:0;;;;;;;;;;;47393:42;45838:1605;;;45734:1709;;;:::o;47921:950::-;48015:24;;48058:12;48050:49;;;;-1:-1:-1;;;48050:49:0;;12292:2:1;48050:49:0;;;12274:21:1;12331:2;12311:18;;;12304:30;12370:26;12350:18;;;12343:54;12414:18;;48050:49:0;12090:348:1;48050:49:0;48110:16;48160:1;48129:28;48149:8;48129:17;:28;:::i;:::-;:32;;;;:::i;:::-;48110:51;-1:-1:-1;48187:18:0;48204:1;48187:14;:18;:::i;:::-;48176:8;:29;48172:91;;;48233:18;48250:1;48233:14;:18;:::i;:::-;48222:29;;48172:91;48386:17;48394:8;43551:4;43585:12;-1:-1:-1;43575:22:0;43494:111;48386:17;48378:68;;;;-1:-1:-1;;;48378:68:0;;18122:2:1;48378:68:0;;;18104:21:1;18161:2;18141:18;;;18134:30;18200:34;18180:18;;;18173:62;-1:-1:-1;;;18251:18:1;;;18244:36;18297:19;;48378:68:0;17920:402:1;48378:68:0;48474:17;48457:357;48498:8;48493:1;:13;48457:357;;48563:1;48532:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;48532:19:0;48528:275;;48586:31;48620:14;48632:1;48620:11;:14::i;:::-;48670:117;;;;;;;;48707:14;;-1:-1:-1;;;;;48670:117:0;;;;;;48744:24;;;;48670:117;;;;;;;;;;-1:-1:-1;48653:14:0;;;:11;:14;;;;;;;:134;;;;;;;;;-1:-1:-1;;;48653:134:0;-1:-1:-1;;;;;;48653:134:0;;;;;;;;;;;;-1:-1:-1;48528:275:0;48508:3;;;;:::i;:::-;;;;48457:357;;;-1:-1:-1;48851:12:0;:8;48862:1;48851:12;:::i;:::-;48824:24;:39;-1:-1:-1;;;47921:950:0:o;2527:317::-;2642:6;2617:21;:31;;2609:73;;;;-1:-1:-1;;;2609:73:0;;11105:2:1;2609:73:0;;;11087:21:1;11144:2;11124:18;;;11117:30;11183:31;11163:18;;;11156:59;11232:18;;2609:73:0;10903:353:1;2609:73:0;2696:12;2714:9;-1:-1:-1;;;;;2714:14:0;2736:6;2714:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2695:52;;;2766:7;2758:78;;;;-1:-1:-1;;;2758:78:0;;10678:2:1;2758:78:0;;;10660:21:1;10717:2;10697:18;;;10690:30;10756:34;10736:18;;;10729:62;10827:28;10807:18;;;10800:56;10873:19;;2758:78:0;10476:422:1;38746:682:0;-1:-1:-1;;;;;;;;;;;;;;;;;38881:16:0;38889:7;43551:4;43585:12;-1:-1:-1;43575:22:0;43494:111;38881:16;38873:71;;;;-1:-1:-1;;;38873:71:0;;8674:2:1;38873:71:0;;;8656:21:1;8713:2;8693:18;;;8686:30;8752:34;8732:18;;;8725:62;-1:-1:-1;;;8803:18:1;;;8796:40;8853:19;;38873:71:0;8472:406:1;38873:71:0;38957:26;39009:12;38998:7;:23;38994:103;;39059:22;39069:12;39059:7;:22;:::i;:::-;:26;;39084:1;39059:26;:::i;:::-;39038:47;;38994:103;39129:7;39109:242;39146:18;39138:4;:26;39109:242;;39189:31;39223:17;;;:11;:17;;;;;;;;;39189:51;;;;;;;;;-1:-1:-1;;;;;39189:51:0;;;;;-1:-1:-1;;;39189:51:0;;;;;;;;;;;;39259:28;39255:85;;39315:9;38746:682;-1:-1:-1;;;;38746:682:0:o;39255:85::-;-1:-1:-1;39166:6:0;;;;:::i;:::-;;;;39109:242;;;-1:-1:-1;39363:57:0;;-1:-1:-1;;;39363:57:0;;18889:2:1;39363:57:0;;;18871:21:1;18928:2;18908:18;;;18901:30;18967:34;18947:18;;;18940:62;-1:-1:-1;;;19018:18:1;;;19011:45;19073:19;;39363:57:0;18687:411:1;53975:191:0;54068:6;;;-1:-1:-1;;;;;54085:17:0;;;-1:-1:-1;;;;;;54085:17:0;;;;;;;54118:40;;54068:6;;;54085:17;54068:6;;54118:40;;54049:16;;54118:40;54038:128;53975:191;:::o;49436:985::-;49591:4;-1:-1:-1;;;;;49612:13:0;;1561:19;:23;49608:806;;49665:175;;-1:-1:-1;;;49665:175:0;;-1:-1:-1;;;;;49665:36:0;;;;;:175;;33482:10;;49759:4;;49786:7;;49816:5;;49665:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49665:175:0;;;;;;;;-1:-1:-1;;49665:175:0;;;;;;;;;;;;:::i;:::-;;;49644:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50027:13:0;;50023:321;;50070:109;;-1:-1:-1;;;50070:109:0;;;;;;;:::i;50023:321::-;50294:6;50288:13;50279:6;50275:2;50271:15;50264:38;49644:715;-1:-1:-1;;;;;;49904:55:0;-1:-1:-1;;;49904:55:0;;-1:-1:-1;49897:62:0;;49608:806;-1:-1:-1;50398:4:0;49608:806;49436:985;;;;;;:::o;56804:100::-;56856:13;56889:7;56882:14;;;;;:::i;18671:723::-;18727:13;18948:10;18944:53;;-1:-1:-1;;18975:10:0;;;;;;;;;;;;-1:-1:-1;;;18975:10:0;;;;;18671:723::o;18944:53::-;19022:5;19007:12;19063:78;19070:9;;19063:78;;19096:8;;;;:::i;:::-;;-1:-1:-1;19119:10:0;;-1:-1:-1;19127:2:0;19119:10;;:::i;:::-;;;19063:78;;;19151:19;19183:6;19173:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19173:17:0;;19151:39;;19201:154;19208:10;;19201:154;;19235:11;19245:1;19235:11;;:::i;:::-;;-1:-1:-1;19304:10:0;19312:2;19304:5;:10;:::i;:::-;19291:24;;:2;:24;:::i;:::-;19278:39;;19261:6;19268;19261:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19261:56:0;;;;;;;;-1:-1:-1;19332:11:0;19341:2;19332:11;;:::i;:::-;;;19201:154;;44080:1400;44203:20;44226:12;-1:-1:-1;;;;;44257:16:0;;44249:62;;;;-1:-1:-1;;;44249:62:0;;17305:2:1;44249:62:0;;;17287:21:1;17344:2;17324:18;;;17317:30;17383:34;17363:18;;;17356:62;-1:-1:-1;;;17434:18:1;;;17427:31;17475:19;;44249:62:0;17103:397:1;44249:62:0;44456:21;44464:12;43551:4;43585:12;-1:-1:-1;43575:22:0;43494:111;44456:21;44455:22;44447:64;;;;-1:-1:-1;;;44447:64:0;;16947:2:1;44447:64:0;;;16929:21:1;16986:2;16966:18;;;16959:30;17025:31;17005:18;;;16998:59;17074:18;;44447:64:0;16745:353:1;44447:64:0;44542:12;44530:8;:24;;44522:71;;;;-1:-1:-1;;;44522:71:0;;19719:2:1;44522:71:0;;;19701:21:1;19758:2;19738:18;;;19731:30;19797:34;19777:18;;;19770:62;-1:-1:-1;;;19848:18:1;;;19841:32;19890:19;;44522:71:0;19517:398:1;44522:71:0;-1:-1:-1;;;;;44713:16:0;;44680:30;44713:16;;;:12;:16;;;;;;;;;44680:49;;;;;;;;;-1:-1:-1;;;;;44680:49:0;;;;;-1:-1:-1;;;44680:49:0;;;;;;;;;;;44759:135;;;;;;;;44785:19;;44680:49;;44759:135;;;44785:39;;44815:8;;44785:39;:::i;:::-;-1:-1:-1;;;;;44759:135:0;;;;;44874:8;44839:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;44759:135:0;;;;;;-1:-1:-1;;;;;44740:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;44740:154:0;;;;;;;;;;;;44933:43;;;;;;;;;;;44959:15;44933:43;;;;;;;;44905:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;44905:71:0;-1:-1:-1;;;;;;44905:71:0;;;;;;;;;;;;;;;;;;44917:12;;45037:325;45061:8;45057:1;:12;45037:325;;;45096:38;;45121:12;;-1:-1:-1;;;;;45096:38:0;;;45113:1;;45096:38;;45113:1;;45096:38;45175:59;45206:1;45210:2;45214:12;45228:5;45175:22;:59::i;:::-;45149:172;;;;-1:-1:-1;;;45149:172:0;;;;;;;:::i;:::-;45336:14;;;;:::i;:::-;;;;45071:3;;;;;:::i;:::-;;;;45037:325;;;-1:-1:-1;45374:12:0;:27;;;45412:60;42884:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:267::-;3309:6;3362:2;3350:9;3341:7;3337:23;3333:32;3330:52;;;3378:1;3375;3368:12;3330:52;3417:9;3404:23;3456:1;3449:5;3446:12;3436:40;;3472:1;3469;3462:12;3511:592;3582:6;3590;3643:2;3631:9;3622:7;3618:23;3614:32;3611:52;;;3659:1;3656;3649:12;3611:52;3699:9;3686:23;3728:18;3769:2;3761:6;3758:14;3755:34;;;3785:1;3782;3775:12;3755:34;3823:6;3812:9;3808:22;3798:32;;3868:7;3861:4;3857:2;3853:13;3849:27;3839:55;;3890:1;3887;3880:12;3839:55;3930:2;3917:16;3956:2;3948:6;3945:14;3942:34;;;3972:1;3969;3962:12;3942:34;4017:7;4012:2;4003:6;3999:2;3995:15;3991:24;3988:37;3985:57;;;4038:1;4035;4028:12;3985:57;4069:2;4061:11;;;;;4091:6;;-1:-1:-1;3511:592:1;;-1:-1:-1;;;;3511:592:1:o;4108:180::-;4167:6;4220:2;4208:9;4199:7;4195:23;4191:32;4188:52;;;4236:1;4233;4226:12;4188:52;-1:-1:-1;4259:23:1;;4108:180;-1:-1:-1;4108:180:1:o;4293:257::-;4334:3;4372:5;4366:12;4399:6;4394:3;4387:19;4415:63;4471:6;4464:4;4459:3;4455:14;4448:4;4441:5;4437:16;4415:63;:::i;:::-;4532:2;4511:15;-1:-1:-1;;4507:29:1;4498:39;;;;4539:4;4494:50;;4293:257;-1:-1:-1;;4293:257:1:o;4555:470::-;4734:3;4772:6;4766:13;4788:53;4834:6;4829:3;4822:4;4814:6;4810:17;4788:53;:::i;:::-;4904:13;;4863:16;;;;4926:57;4904:13;4863:16;4960:4;4948:17;;4926:57;:::i;:::-;4999:20;;4555:470;-1:-1:-1;;;;4555:470:1:o;5448:488::-;-1:-1:-1;;;;;5717:15:1;;;5699:34;;5769:15;;5764:2;5749:18;;5742:43;5816:2;5801:18;;5794:34;;;5864:3;5859:2;5844:18;;5837:31;;;5642:4;;5885:45;;5910:19;;5902:6;5885:45;:::i;:::-;5877:53;5448:488;-1:-1:-1;;;;;;5448:488:1:o;6699:339::-;6842:2;6827:18;;6875:1;6864:13;;6854:144;;6920:10;6915:3;6911:20;6908:1;6901:31;6955:4;6952:1;6945:15;6983:4;6980:1;6973:15;6854:144;7007:25;;;6699:339;:::o;7043:390::-;7202:2;7191:9;7184:21;7241:6;7236:2;7225:9;7221:18;7214:34;7298:6;7290;7285:2;7274:9;7270:18;7257:48;7354:1;7325:22;;;7349:2;7321:31;;;7314:42;;;;7417:2;7396:15;;;-1:-1:-1;;7392:29:1;7377:45;7373:54;;7043:390;-1:-1:-1;7043:390:1:o;7438:219::-;7587:2;7576:9;7569:21;7550:4;7607:44;7647:2;7636:9;7632:18;7624:6;7607:44;:::i;14012:356::-;14214:2;14196:21;;;14233:18;;;14226:30;14292:34;14287:2;14272:18;;14265:62;14359:2;14344:18;;14012:356::o;16325:415::-;16527:2;16509:21;;;16566:2;16546:18;;;16539:30;16605:34;16600:2;16585:18;;16578:62;-1:-1:-1;;;16671:2:1;16656:18;;16649:49;16730:3;16715:19;;16325:415::o;20469:253::-;20509:3;-1:-1:-1;;;;;20598:2:1;20595:1;20591:10;20628:2;20625:1;20621:10;20659:3;20655:2;20651:12;20646:3;20643:21;20640:47;;;20667:18;;:::i;20727:128::-;20767:3;20798:1;20794:6;20791:1;20788:13;20785:39;;;20804:18;;:::i;:::-;-1:-1:-1;20840:9:1;;20727:128::o;20860:120::-;20900:1;20926;20916:35;;20931:18;;:::i;:::-;-1:-1:-1;20965:9:1;;20860:120::o;20985:246::-;21025:4;-1:-1:-1;;;;;21138:10:1;;;;21108;;21160:12;;;21157:38;;;21175:18;;:::i;:::-;21212:13;;20985:246;-1:-1:-1;;;20985:246:1:o;21236:125::-;21276:4;21304:1;21301;21298:8;21295:34;;;21309:18;;:::i;:::-;-1:-1:-1;21346:9:1;;21236:125::o;21366:258::-;21438:1;21448:113;21462:6;21459:1;21456:13;21448:113;;;21538:11;;;21532:18;21519:11;;;21512:39;21484:2;21477:10;21448:113;;;21579:6;21576:1;21573:13;21570:48;;;-1:-1:-1;;21614:1:1;21596:16;;21589:27;21366:258::o;21629:136::-;21668:3;21696:5;21686:39;;21705:18;;:::i;:::-;-1:-1:-1;;;21741:18:1;;21629:136::o;21770:380::-;21849:1;21845:12;;;;21892;;;21913:61;;21967:4;21959:6;21955:17;21945:27;;21913:61;22020:2;22012:6;22009:14;21989:18;21986:38;21983:161;;;22066:10;22061:3;22057:20;22054:1;22047:31;22101:4;22098:1;22091:15;22129:4;22126:1;22119:15;21983:161;;21770:380;;;:::o;22155:135::-;22194:3;-1:-1:-1;;22215:17:1;;22212:43;;;22235:18;;:::i;:::-;-1:-1:-1;22282:1:1;22271:13;;22155:135::o;22295:112::-;22327:1;22353;22343:35;;22358:18;;:::i;:::-;-1:-1:-1;22392:9:1;;22295:112::o;22412:127::-;22473:10;22468:3;22464:20;22461:1;22454:31;22504:4;22501:1;22494:15;22528:4;22525:1;22518:15;22544:127;22605:10;22600:3;22596:20;22593:1;22586:31;22636:4;22633:1;22626:15;22660:4;22657:1;22650:15;22676:127;22737:10;22732:3;22728:20;22725:1;22718:31;22768:4;22765:1;22758:15;22792:4;22789:1;22782:15;22808:127;22869:10;22864:3;22860:20;22857:1;22850:31;22900:4;22897:1;22890:15;22924:4;22921:1;22914:15;22940:127;23001:10;22996:3;22992:20;22989:1;22982:31;23032:4;23029:1;23022:15;23056:4;23053:1;23046:15;23072:131;-1:-1:-1;;;;;;23146:32:1;;23136:43;;23126:71;;23193:1;23190;23183:12

Swarm Source

ipfs://4df610e4f5a71515a7f6380f2b4e9713540da542ce42987273275269367c7a07
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.