ETH Price: $3,515.75 (+2.77%)
Gas: 5 Gwei

Token

Tao (TAO)
 

Overview

Max Total Supply

809 TAO

Holders

515

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wildplayer.eth
Balance
1 TAO
0x205da42bd401d06be40a846d28d72740e8c2c775
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:
Tao

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-16
*/

// 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/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 v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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


// OpenZeppelin Contracts (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/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/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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) internal _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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn 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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `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: contracts/Tao.sol


pragma solidity ^0.8.4;





contract Tao is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;
    struct Identity {
        bytes32 r;
        bytes32 s;
        uint8 v;
    }
    enum IdentityType {
        SuperOG,
        OG,
        FreeMintWL,
        PreSaleWL
    }
    enum Status {
        Pending,
        FreeMint,
        PreSaleMint,
        PublicSale,
        Finished
    }
    Status public status;
    address private _Signer;
    address private _publicSigner;
    string public _baseTokenURI;
    uint256 public immutable maxSupply;
    uint8 public  MAX_SUPEROG_FREEMINTS_PER_ADDRESS = 3;
    uint8 public  MAX_OG_FREEMINTS_PER_ADDRESS = 2;
    uint8 public  MAX_WL_FREEMINTS_PER_ADDRESS = 1;
    uint8 public  MAX_PRESALEWL_MINTS_PER_ADDRESS = 2;
    uint8 public  MAX_PUBLICSALE_MINTS_PER_ADDRESS = 3;
    uint256 public FreeMintSupply = 1088;
    uint256 public PreSaleSupply = 3000;
    uint256 public PublicSaleSupply = 1800;
    uint256 public FreeMinted = 0;
    uint256 public PreSaleMinted = 0;
    uint256 public PublicSaleMinted = 0;
    uint256 public constant PRICEPRESALE = 0.0266 ether;
    uint256 public constant PRICEPUBILCSALE = 0.0388 ether;

    event StatusChanged(Status status);

    //publicMinted
    mapping (address => uint256) public PublicMinted;

    constructor(
        uint256 _maxSupply,
        address  Signer,
        address PublicSigner
    ) ERC721A ("Tao","TAO") {
        maxSupply = _maxSupply;
        _Signer = Signer;
        _publicSigner = PublicSigner;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
         _;
     }
    modifier FreeMint(uint256 num) {
         require(status == Status.FreeMint, "FreeMint not Started");
         require(FreeMinted + num <= FreeMintSupply, "FreeMint Supply Exceeded");
         require(totalSupply() + num <= maxSupply, "Exceeds Total Supply");
         _;
    }
   
    function _FreeMintSuperOG(uint256 quantity, Identity memory identity) external callerIsUser FreeMint(quantity) {
        require(numberMinted(msg.sender) + quantity <= MAX_SUPEROG_FREEMINTS_PER_ADDRESS, "Max mint amount per wallet exceeded.");
        bytes32 digest = keccak256(abi.encode(IdentityType.SuperOG, msg.sender));
        require(_isVerifiedIdentity(digest, identity), "address is not allowlisted");
        _safeMint(msg.sender, quantity);
        FreeMinted += quantity;
    }

    function _FreeMintOG(uint256 quantity, Identity memory identity) external callerIsUser FreeMint(quantity) {
        require(numberMinted(msg.sender) + quantity <= MAX_OG_FREEMINTS_PER_ADDRESS, "Max mint amount per wallet exceeded.");
        bytes32 digest = keccak256(abi.encode(IdentityType.OG, msg.sender));
        require(_isVerifiedIdentity(digest, identity), "address is not allowlisted");
        _safeMint(msg.sender, quantity);
        FreeMinted += quantity;
    }

    function _FreeMintWL(uint256 quantity, Identity memory identity) external callerIsUser FreeMint(quantity) {
        require(numberMinted(msg.sender) + quantity <= MAX_WL_FREEMINTS_PER_ADDRESS, "Max mint amount per wallet exceeded.");
        bytes32 digest = keccak256(abi.encode(IdentityType.FreeMintWL, msg.sender));
        require(_isVerifiedIdentity(digest, identity), "address is not allowlisted");
        _safeMint(msg.sender, quantity);
        FreeMinted += quantity;
    }
    
    function _PreSaleMint(uint256 quantity, Identity memory identity) external payable callerIsUser {
        require(status == Status.PreSaleMint, "PreSaleMint not started");
        require(msg.value >= PRICEPRESALE * quantity, "need more eth");
        require(numberMinted(msg.sender) + quantity <= MAX_PRESALEWL_MINTS_PER_ADDRESS, "Max mint amount per wallet exceeded.");
        require(PreSaleMinted + quantity <= PreSaleSupply, "PreSaleSupply Exceeded");
        require(totalSupply() + quantity <= maxSupply, "Exceeds total supply");
        bytes32 digest = keccak256(abi.encode(IdentityType.PreSaleWL, msg.sender));
        require(_isVerifiedIdentity(digest, identity), "address is not allowlisted");
         _safeMint(msg.sender, quantity);
        PreSaleMinted += quantity;
    }

    function _PublicSaleMint(uint256 quantity, bytes32 hash, bytes memory signature) external payable callerIsUser {
        require(status == Status.PublicSale, "PublicSale not started");
        require(PublicSaleMinted + quantity <= PublicSaleSupply, "PublicSaleSupply Exceeded");
        require(PublicMinted[msg.sender] + quantity <= MAX_PUBLICSALE_MINTS_PER_ADDRESS, "Max mint amount per wallet exceeded");
        require(msg.value >= PRICEPUBILCSALE * quantity, "need more eth");
        require(recoverSigner(hash, signature) == _publicSigner, "This address is not allowed");
        require(totalSupply() + quantity <= maxSupply, "Exceeds total supply");
         _safeMint(msg.sender, quantity);
        PublicSaleMinted += quantity;
        PublicMinted[msg.sender] += quantity;
    }
    
    function _isVerifiedIdentity(bytes32 digest, Identity memory identity) internal view returns(bool) {
        address signer = ecrecover(digest, identity.v, identity.r, identity.s);
        require(signer != address(0), "ECDSA: invalid signature");
        return signer == _Signer;
    }
    
    function recoverSigner(bytes32 hash, bytes memory signature) internal pure returns(address) {
        bytes32 messageDigest = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
        return ECDSA.recover(messageDigest, signature);
    }
    
    function _setStatus(Status _status) external onlyOwner {
        status = _status;
        emit StatusChanged(status);
    }
    
    function numberMinted(address owner) public view returns(uint256) {
        return _numberMinted(owner);
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
            return string(abi.encodePacked(
                _baseTokenURI, 
                tokenId.toString(),
                ".json"
                ));
    }

    function setBaseTokenURI(string memory baseTokenURI) public onlyOwner {
        _baseTokenURI = baseTokenURI;
    }

    function getStatus() public view returns(Status) {
        return status;
    }

    function devMint(uint256 quantity) external onlyOwner {
        require(status == Status.Finished);
        require(totalSupply() + quantity <= maxSupply);
         _safeMint(msg.sender, quantity);
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"address","name":"Signer","type":"address"},{"internalType":"address","name":"PublicSigner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum Tao.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"},{"inputs":[],"name":"FreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_OG_FREEMINTS_PER_ADDRESS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALEWL_MINTS_PER_ADDRESS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLICSALE_MINTS_PER_ADDRESS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPEROG_FREEMINTS_PER_ADDRESS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_FREEMINTS_PER_ADDRESS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICEPRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICEPUBILCSALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PublicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct Tao.Identity","name":"identity","type":"tuple"}],"name":"_FreeMintOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct Tao.Identity","name":"identity","type":"tuple"}],"name":"_FreeMintSuperOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct Tao.Identity","name":"identity","type":"tuple"}],"name":"_FreeMintWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"components":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"internalType":"struct Tao.Identity","name":"identity","type":"tuple"}],"name":"_PreSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"_PublicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"enum Tao.Status","name":"_status","type":"uint8"}],"name":"_setStatus","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStatus","outputs":[{"internalType":"enum Tao.Status","name":"","type":"uint8"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":[],"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":"baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum Tao.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":"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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052600d805464ffffffffff1916640302010203179055610440600e55610bb8600f556107086010556000601181905560128190556013553480156200004757600080fd5b5060405162003257380380620032578339810160408190526200006a916200023e565b6040518060400160405280600381526020016254616f60e81b8152506040518060400160405280600381526020016254414f60e81b8152508160029080519060200190620000ba9291906200017b565b508051620000d09060039060208401906200017b565b50506000805550620000e23362000129565b6001600955608092909252600a8054610100600160a81b0319166101006001600160a01b0393841602179055600b80546001600160a01b03191691909216179055620002bb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000189906200027e565b90600052602060002090601f016020900481019282620001ad5760008555620001f8565b82601f10620001c857805160ff1916838001178555620001f8565b82800160010185558215620001f8579182015b82811115620001f8578251825591602001919060010190620001db565b50620002069291506200020a565b5090565b5b808211156200020657600081556001016200020b565b80516001600160a01b03811681146200023957600080fd5b919050565b60008060006060848603121562000253578283fd5b83519250620002656020850162000221565b9150620002756040850162000221565b90509250925092565b600181811c908216806200029357607f821691505b60208210811415620002b557634e487b7160e01b600052602260045260246000fd5b50919050565b608051612f56620003016000396000818161071d01528181610b1a01528181610d9601528181610f6001528181611361015281816115c701526118230152612f566000f3fe6080604052600436106102725760003560e01c8063904c24dd1161014f578063b88d4fde116100c1578063dc33e6811161007a578063dc33e6811461073f578063e970baec1461075f578063e985e9c51461077f578063f1eb6fec146107c8578063f2fde38b146107de578063f37c4d6c146107fe57600080fd5b8063b88d4fde1461067a578063c38286ff1461069a578063c509163b146106bb578063c87b56dd146106d6578063cfc86f7b146106f6578063d5abeb011461070b57600080fd5b8063a0bb7acc11610113578063a0bb7acc146105e1578063a22cb465146105f7578063ab11b3b814610617578063ac4460021461062a578063b35fd0b81461063f578063b78172761461065a57600080fd5b8063904c24dd1461055357806395d89b41146105695780639b9edd411461057e5780639e20282c1461059e5780639f404eef146105b457600080fd5b806330176e13116101e85780636352211e116101ac5780636352211e146104ad5780636a94c7e9146104cd57806370a08231146104ed578063715018a61461050d5780637dfae352146105225780638da5cb5b1461053557600080fd5b806330176e131461041b578063375a069a1461043b57806342842e0e1461045b5780634e69d5601461047b5780635bb7ac891461049357600080fd5b80630b6daed31161023a5780630b6daed31461035c57806318160ddd1461037c57806318d111311461039f578063200d2ed2146103b557806323b872dd146103dc5780632cfcae37146103fc57600080fd5b806301ffc9a7146102775780630348a901146102ac57806306fdde03146102e0578063081812fc14610302578063095ea7b31461033a575b600080fd5b34801561028357600080fd5b5061029761029236600461295a565b610814565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600d546102ce90640100000000900460ff1681565b60405160ff90911681526020016102a3565b3480156102ec57600080fd5b506102f5610866565b6040516102a39190612c64565b34801561030e57600080fd5b5061032261031d3660046129f6565b6108f8565b6040516001600160a01b0390911681526020016102a3565b34801561034657600080fd5b5061035a610355366004612931565b61093c565b005b34801561036857600080fd5b5061035a610377366004612992565b6109ca565b34801561038857600080fd5b50600154600054035b6040519081526020016102a3565b3480156103ab57600080fd5b50610391600e5481565b3480156103c157600080fd5b50600a546103cf9060ff1681565b6040516102a39190612c4a565b3480156103e857600080fd5b5061035a6103f7366004612857565b610a71565b34801561040857600080fd5b50600d546102ce90610100900460ff1681565b34801561042757600080fd5b5061035a6104363660046129b1565b610a7c565b34801561044757600080fd5b5061035a6104563660046129f6565b610abd565b34801561046757600080fd5b5061035a610476366004612857565b610b69565b34801561048757600080fd5b50600a5460ff166103cf565b34801561049f57600080fd5b50600d546102ce9060ff1681565b3480156104b957600080fd5b506103226104c83660046129f6565b610b84565b3480156104d957600080fd5b50600d546102ce9062010000900460ff1681565b3480156104f957600080fd5b5061039161050836600461280b565b610b96565b34801561051957600080fd5b5061035a610be4565b61035a610530366004612a5b565b610c1a565b34801561054157600080fd5b506008546001600160a01b0316610322565b34801561055f57600080fd5b5061039160115481565b34801561057557600080fd5b506102f5610ebc565b34801561058a57600080fd5b5061035a610599366004612a5b565b610ecb565b3480156105aa57600080fd5b5061039160135481565b3480156105c057600080fd5b506103916105cf36600461280b565b60146020526000908152604090205481565b3480156105ed57600080fd5b50610391600f5481565b34801561060357600080fd5b5061035a6106123660046128f7565b61109d565b61035a610625366004612a0e565b611133565b34801561063657600080fd5b5061035a61141d565b34801561064b57600080fd5b50610391665e808f1f06800081565b34801561066657600080fd5b5061035a610675366004612a5b565b611532565b34801561068657600080fd5b5061035a610695366004612892565b611670565b3480156106a657600080fd5b50600d546102ce906301000000900460ff1681565b3480156106c757600080fd5b506103916689d864f949000081565b3480156106e257600080fd5b506102f56106f13660046129f6565b6116c1565b34801561070257600080fd5b506102f56116f5565b34801561071757600080fd5b506103917f000000000000000000000000000000000000000000000000000000000000000081565b34801561074b57600080fd5b5061039161075a36600461280b565b611783565b34801561076b57600080fd5b5061035a61077a366004612a5b565b61178e565b34801561078b57600080fd5b5061029761079a366004612825565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107d457600080fd5b5061039160125481565b3480156107ea57600080fd5b5061035a6107f936600461280b565b6118c5565b34801561080a57600080fd5b5061039160105481565b60006001600160e01b031982166380ac58cd60e01b148061084557506001600160e01b03198216635b5e139f60e01b145b8061086057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461087590612e48565b80601f01602080910402602001604051908101604052809291908181526020018280546108a190612e48565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b60006109038261195d565b610920576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061094782610b84565b9050806001600160a01b0316836001600160a01b0316141561097c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061099c575061099a813361079a565b155b156109ba576040516367d9dca160e11b815260040160405180910390fd5b6109c5838383611988565b505050565b6008546001600160a01b031633146109fd5760405162461bcd60e51b81526004016109f490612d85565b60405180910390fd5b600a805482919060ff19166001836004811115610a2a57634e487b7160e01b600052602160045260246000fd5b0217905550600a546040517fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e91610a669160ff90911690612c4a565b60405180910390a150565b6109c58383836119e4565b6008546001600160a01b03163314610aa65760405162461bcd60e51b81526004016109f490612d85565b8051610ab990600c9060208401906126bb565b5050565b6008546001600160a01b03163314610ae75760405162461bcd60e51b81526004016109f490612d85565b6004600a5460ff166004811115610b0e57634e487b7160e01b600052602160045260246000fd5b14610b1857600080fd5b7f000000000000000000000000000000000000000000000000000000000000000081610b476001546000540390565b610b519190612dba565b1115610b5c57600080fd5b610b663382611bf8565b50565b6109c583838360405180602001604052806000815250611670565b6000610b8f82611c12565b5192915050565b60006001600160a01b038216610bbf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c0e5760405162461bcd60e51b81526004016109f490612d85565b610c186000611d2c565b565b323314610c395760405162461bcd60e51b81526004016109f490612d17565b6002600a5460ff166004811115610c6057634e487b7160e01b600052602160045260246000fd5b14610cad5760405162461bcd60e51b815260206004820152601760248201527f50726553616c654d696e74206e6f74207374617274656400000000000000000060448201526064016109f4565b610cbe82665e808f1f068000612de6565b341015610cfd5760405162461bcd60e51b815260206004820152600d60248201526c0dccacac840dadee4ca40cae8d609b1b60448201526064016109f4565b600d546301000000900460ff1682610d1433611783565b610d1e9190612dba565b1115610d3c5760405162461bcd60e51b81526004016109f490612cd3565b600f5482601254610d4d9190612dba565b1115610d945760405162461bcd60e51b8152602060048201526016602482015275141c9954d85b1954dd5c1c1b1e48115e18d95959195960521b60448201526064016109f4565b7f000000000000000000000000000000000000000000000000000000000000000082610dc36001546000540390565b610dcd9190612dba565b1115610e125760405162461bcd60e51b81526020600482015260146024820152734578636565647320746f74616c20737570706c7960601b60448201526064016109f4565b6000600333604051602001610e28929190612c1e565b604051602081830303815290604052805190602001209050610e4a8183611d7e565b610e965760405162461bcd60e51b815260206004820152601a60248201527f61646472657373206973206e6f7420616c6c6f776c697374656400000000000060448201526064016109f4565b610ea03384611bf8565b8260126000828254610eb29190612dba565b9091555050505050565b60606003805461087590612e48565b323314610eea5760405162461bcd60e51b81526004016109f490612d17565b816001600a5460ff166004811115610f1257634e487b7160e01b600052602160045260246000fd5b14610f2f5760405162461bcd60e51b81526004016109f490612c77565b600e5481601154610f409190612dba565b1115610f5e5760405162461bcd60e51b81526004016109f490612d4e565b7f000000000000000000000000000000000000000000000000000000000000000081610f8d6001546000540390565b610f979190612dba565b1115610fb55760405162461bcd60e51b81526004016109f490612ca5565b600d54610100900460ff1683610fca33611783565b610fd49190612dba565b1115610ff25760405162461bcd60e51b81526004016109f490612cd3565b6000600133604051602001611008929190612c1e565b60405160208183030381529060405280519060200120905061102a8184611d7e565b6110765760405162461bcd60e51b815260206004820152601a60248201527f61646472657373206973206e6f7420616c6c6f776c697374656400000000000060448201526064016109f4565b6110803385611bf8565b83601160008282546110929190612dba565b909155505050505050565b6001600160a01b0382163314156110c75760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146111525760405162461bcd60e51b81526004016109f490612d17565b6003600a5460ff16600481111561117957634e487b7160e01b600052602160045260246000fd5b146111bf5760405162461bcd60e51b8152602060048201526016602482015275141d589b1a58d4d85b19481b9bdd081cdd185c9d195960521b60448201526064016109f4565b601054836013546111d09190612dba565b111561121e5760405162461bcd60e51b815260206004820152601960248201527f5075626c696353616c65537570706c792045786365656465640000000000000060448201526064016109f4565b600d543360009081526014602052604090205464010000000090910460ff1690611249908590612dba565b11156112a35760405162461bcd60e51b815260206004820152602360248201527f4d6178206d696e7420616d6f756e74207065722077616c6c657420657863656560448201526219195960ea1b60648201526084016109f4565b6112b4836689d864f9490000612de6565b3410156112f35760405162461bcd60e51b815260206004820152600d60248201526c0dccacac840dadee4ca40cae8d609b1b60448201526064016109f4565b600b546001600160a01b03166113098383611e66565b6001600160a01b03161461135f5760405162461bcd60e51b815260206004820152601b60248201527f546869732061646472657373206973206e6f7420616c6c6f776564000000000060448201526064016109f4565b7f00000000000000000000000000000000000000000000000000000000000000008361138e6001546000540390565b6113989190612dba565b11156113dd5760405162461bcd60e51b81526020600482015260146024820152734578636565647320746f74616c20737570706c7960601b60448201526064016109f4565b6113e73384611bf8565b82601360008282546113f99190612dba565b90915550503360009081526014602052604081208054859290610eb2908490612dba565b6008546001600160a01b031633146114475760405162461bcd60e51b81526004016109f490612d85565b6002600954141561149a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109f4565b6002600955604051600090339047908381818185875af1925050503d80600081146114e1576040519150601f19603f3d011682016040523d82523d6000602084013e6114e6565b606091505b505090508061152a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109f4565b506001600955565b3233146115515760405162461bcd60e51b81526004016109f490612d17565b816001600a5460ff16600481111561157957634e487b7160e01b600052602160045260246000fd5b146115965760405162461bcd60e51b81526004016109f490612c77565b600e54816011546115a79190612dba565b11156115c55760405162461bcd60e51b81526004016109f490612d4e565b7f0000000000000000000000000000000000000000000000000000000000000000816115f46001546000540390565b6115fe9190612dba565b111561161c5760405162461bcd60e51b81526004016109f490612ca5565b600d5462010000900460ff168361163233611783565b61163c9190612dba565b111561165a5760405162461bcd60e51b81526004016109f490612cd3565b6000600233604051602001611008929190612c1e565b61167b8484846119e4565b6001600160a01b0383163b1515801561169d575061169b84848484611ec8565b155b156116bb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600c6116ce83611fbf565b6040516020016116df929190612b27565b6040516020818303038152906040529050919050565b600c805461170290612e48565b80601f016020809104026020016040519081016040528092919081815260200182805461172e90612e48565b801561177b5780601f106117505761010080835404028352916020019161177b565b820191906000526020600020905b81548152906001019060200180831161175e57829003601f168201915b505050505081565b6000610860826120d8565b3233146117ad5760405162461bcd60e51b81526004016109f490612d17565b816001600a5460ff1660048111156117d557634e487b7160e01b600052602160045260246000fd5b146117f25760405162461bcd60e51b81526004016109f490612c77565b600e54816011546118039190612dba565b11156118215760405162461bcd60e51b81526004016109f490612d4e565b7f0000000000000000000000000000000000000000000000000000000000000000816118506001546000540390565b61185a9190612dba565b11156118785760405162461bcd60e51b81526004016109f490612ca5565b600d5460ff168361188833611783565b6118929190612dba565b11156118b05760405162461bcd60e51b81526004016109f490612cd3565b60008033604051602001611008929190612c1e565b6008546001600160a01b031633146118ef5760405162461bcd60e51b81526004016109f490612d85565b6001600160a01b0381166119545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f4565b610b6681611d2c565b6000805482108015610860575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119ef82611c12565b80519091506000906001600160a01b0316336001600160a01b03161480611a1d57508151611a1d903361079a565b80611a38575033611a2d846108f8565b6001600160a01b0316145b905080611a5857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a8d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611ab457604051633a954ecd60e21b815260040160405180910390fd5b611ac46000848460000151611988565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611bae57600054811015611bae57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610ab982826040518060200160405280600081525061212d565b604080516060810182526000808252602082018190529181019190915281600054811015611d1357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d115780516001600160a01b031615611ca8579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d0c579392505050565b611ca8565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060018484604001518560000151866020015160405160008152602001604052604051611dc9949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa158015611deb573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611e495760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b60448201526064016109f4565b600a5461010090046001600160a01b039081169116149392505050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c81018390526000908190605c01604051602081830303815290604052805190602001209050611ec0818461213a565b949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611efd903390899088908890600401612be1565b602060405180830381600087803b158015611f1757600080fd5b505af1925050508015611f47575060408051601f3d908101601f19168201909252611f4491810190612976565b60015b611fa2573d808015611f75576040519150601f19603f3d011682016040523d82523d6000602084013e611f7a565b606091505b508051611f9a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606081611fe35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561200d5780611ff781612e83565b91506120069050600a83612dd2565b9150611fe7565b6000816001600160401b0381111561203557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561205f576020820181803683370190505b5090505b8415611ec057612074600183612e05565b9150612081600a86612e9e565b61208c906030612dba565b60f81b8183815181106120af57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120d1600a86612dd2565b9450612063565b60006001600160a01b038216612101576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b6109c5838383600161215e565b60008060006121498585612329565b9150915061215681612399565b509392505050565b6000546001600160a01b03851661218757604051622e076360e81b815260040160405180910390fd5b836121a55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561225157506001600160a01b0387163b15155b156122da575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122a26000888480600101955088611ec8565b6122bf576040516368d2bf6b60e11b815260040160405180910390fd5b808214156122575782600054146122d557600080fd5b612320565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156122db575b50600055611bf1565b6000808251604114156123605760208301516040840151606085015160001a61235487828585612595565b94509450505050612392565b82516040141561238a576020830151604084015161237f868383612682565b935093505050612392565b506000905060025b9250929050565b60008160048111156123bb57634e487b7160e01b600052602160045260246000fd5b14156123c45750565b60018160048111156123e657634e487b7160e01b600052602160045260246000fd5b141561242f5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b60448201526064016109f4565b600281600481111561245157634e487b7160e01b600052602160045260246000fd5b141561249f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109f4565b60038160048111156124c157634e487b7160e01b600052602160045260246000fd5b141561251a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109f4565b600481600481111561253c57634e487b7160e01b600052602160045260246000fd5b1415610b665760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109f4565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156125cc5750600090506003612679565b8460ff16601b141580156125e457508460ff16601c14155b156125f55750600090506004612679565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612649573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661267257600060019250925050612679565b9150600090505b94509492505050565b6000806001600160ff1b0383168161269f60ff86901c601b612dba565b90506126ad87828885612595565b935093505050935093915050565b8280546126c790612e48565b90600052602060002090601f0160209004810192826126e9576000855561272f565b82601f1061270257805160ff191683800117855561272f565b8280016001018555821561272f579182015b8281111561272f578251825591602001919060010190612714565b5061273b92915061273f565b5090565b5b8082111561273b5760008155600101612740565b60006001600160401b038084111561276e5761276e612ef4565b604051601f8501601f19908116603f0116810190828211818310171561279657612796612ef4565b816040528093508581528686860111156127af57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146127e057600080fd5b919050565b600082601f8301126127f5578081fd5b61280483833560208501612754565b9392505050565b60006020828403121561281c578081fd5b612804826127c9565b60008060408385031215612837578081fd5b612840836127c9565b915061284e602084016127c9565b90509250929050565b60008060006060848603121561286b578081fd5b612874846127c9565b9250612882602085016127c9565b9150604084013590509250925092565b600080600080608085870312156128a7578081fd5b6128b0856127c9565b93506128be602086016127c9565b92506040850135915060608501356001600160401b038111156128df578182fd5b6128eb878288016127e5565b91505092959194509250565b60008060408385031215612909578182fd5b612912836127c9565b915060208301358015158114612926578182fd5b809150509250929050565b60008060408385031215612943578182fd5b61294c836127c9565b946020939093013593505050565b60006020828403121561296b578081fd5b813561280481612f0a565b600060208284031215612987578081fd5b815161280481612f0a565b6000602082840312156129a3578081fd5b813560058110612804578182fd5b6000602082840312156129c2578081fd5b81356001600160401b038111156129d7578182fd5b8201601f810184136129e7578182fd5b611ec084823560208401612754565b600060208284031215612a07578081fd5b5035919050565b600080600060608486031215612a22578081fd5b833592506020840135915060408401356001600160401b03811115612a45578182fd5b612a51868287016127e5565b9150509250925092565b6000808284036080811215612a6e578283fd5b833592506060601f1982011215612a83578182fd5b50604051606081018181106001600160401b0382111715612aa657612aa6612ef4565b80604052506020840135815260408401356020820152606084013560ff81168114612acf578283fd5b6040820152919491935090915050565b60008151808452612af7816020860160208601612e1c565b601f01601f19169290920160200192915050565b60008151612b1d818560208601612e1c565b9290920192915050565b600080845482600182811c915080831680612b4357607f831692505b6020808410821415612b6357634e487b7160e01b87526022600452602487fd5b818015612b775760018114612b8857612bb4565b60ff19861689528489019650612bb4565b60008b815260209020885b86811015612bac5781548b820152908501908301612b93565b505084890196505b505050505050612bd8612bc78286612b0b565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c1490830184612adf565b9695505050505050565b6040810160048410612c3257612c32612ede565b9281526001600160a01b039190911660209091015290565b6020810160058310612c5e57612c5e612ede565b91905290565b6020815260006128046020830184612adf565b602080825260149082015273119c9959535a5b9d081b9bdd0814dd185c9d195960621b604082015260600190565b6020808252601490820152734578636565647320546f74616c20537570706c7960601b604082015260600190565b60208082526024908201527f4d6178206d696e7420616d6f756e74207065722077616c6c65742065786365656040820152633232b21760e11b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526018908201527f467265654d696e7420537570706c792045786365656465640000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612dcd57612dcd612eb2565b500190565b600082612de157612de1612ec8565b500490565b6000816000190483118215151615612e0057612e00612eb2565b500290565b600082821015612e1757612e17612eb2565b500390565b60005b83811015612e37578181015183820152602001612e1f565b838111156116bb5750506000910152565b600181811c90821680612e5c57607f821691505b60208210811415612e7d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e9757612e97612eb2565b5060010190565b600082612ead57612ead612ec8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b6657600080fdfea264697066735822122000d250f0142c94daa59859781543a5f1ee375c4a64ae47a7148add5de30236d764736f6c6343000804003300000000000000000000000000000000000000000000000000000000000017000000000000000000000000004f12f4c8d37298b3b313dc163ba7fce819e8aa9300000000000000000000000005cf5fef74f322abd355e0e8da0ed4725a38dbe4

Deployed Bytecode

0x6080604052600436106102725760003560e01c8063904c24dd1161014f578063b88d4fde116100c1578063dc33e6811161007a578063dc33e6811461073f578063e970baec1461075f578063e985e9c51461077f578063f1eb6fec146107c8578063f2fde38b146107de578063f37c4d6c146107fe57600080fd5b8063b88d4fde1461067a578063c38286ff1461069a578063c509163b146106bb578063c87b56dd146106d6578063cfc86f7b146106f6578063d5abeb011461070b57600080fd5b8063a0bb7acc11610113578063a0bb7acc146105e1578063a22cb465146105f7578063ab11b3b814610617578063ac4460021461062a578063b35fd0b81461063f578063b78172761461065a57600080fd5b8063904c24dd1461055357806395d89b41146105695780639b9edd411461057e5780639e20282c1461059e5780639f404eef146105b457600080fd5b806330176e13116101e85780636352211e116101ac5780636352211e146104ad5780636a94c7e9146104cd57806370a08231146104ed578063715018a61461050d5780637dfae352146105225780638da5cb5b1461053557600080fd5b806330176e131461041b578063375a069a1461043b57806342842e0e1461045b5780634e69d5601461047b5780635bb7ac891461049357600080fd5b80630b6daed31161023a5780630b6daed31461035c57806318160ddd1461037c57806318d111311461039f578063200d2ed2146103b557806323b872dd146103dc5780632cfcae37146103fc57600080fd5b806301ffc9a7146102775780630348a901146102ac57806306fdde03146102e0578063081812fc14610302578063095ea7b31461033a575b600080fd5b34801561028357600080fd5b5061029761029236600461295a565b610814565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b50600d546102ce90640100000000900460ff1681565b60405160ff90911681526020016102a3565b3480156102ec57600080fd5b506102f5610866565b6040516102a39190612c64565b34801561030e57600080fd5b5061032261031d3660046129f6565b6108f8565b6040516001600160a01b0390911681526020016102a3565b34801561034657600080fd5b5061035a610355366004612931565b61093c565b005b34801561036857600080fd5b5061035a610377366004612992565b6109ca565b34801561038857600080fd5b50600154600054035b6040519081526020016102a3565b3480156103ab57600080fd5b50610391600e5481565b3480156103c157600080fd5b50600a546103cf9060ff1681565b6040516102a39190612c4a565b3480156103e857600080fd5b5061035a6103f7366004612857565b610a71565b34801561040857600080fd5b50600d546102ce90610100900460ff1681565b34801561042757600080fd5b5061035a6104363660046129b1565b610a7c565b34801561044757600080fd5b5061035a6104563660046129f6565b610abd565b34801561046757600080fd5b5061035a610476366004612857565b610b69565b34801561048757600080fd5b50600a5460ff166103cf565b34801561049f57600080fd5b50600d546102ce9060ff1681565b3480156104b957600080fd5b506103226104c83660046129f6565b610b84565b3480156104d957600080fd5b50600d546102ce9062010000900460ff1681565b3480156104f957600080fd5b5061039161050836600461280b565b610b96565b34801561051957600080fd5b5061035a610be4565b61035a610530366004612a5b565b610c1a565b34801561054157600080fd5b506008546001600160a01b0316610322565b34801561055f57600080fd5b5061039160115481565b34801561057557600080fd5b506102f5610ebc565b34801561058a57600080fd5b5061035a610599366004612a5b565b610ecb565b3480156105aa57600080fd5b5061039160135481565b3480156105c057600080fd5b506103916105cf36600461280b565b60146020526000908152604090205481565b3480156105ed57600080fd5b50610391600f5481565b34801561060357600080fd5b5061035a6106123660046128f7565b61109d565b61035a610625366004612a0e565b611133565b34801561063657600080fd5b5061035a61141d565b34801561064b57600080fd5b50610391665e808f1f06800081565b34801561066657600080fd5b5061035a610675366004612a5b565b611532565b34801561068657600080fd5b5061035a610695366004612892565b611670565b3480156106a657600080fd5b50600d546102ce906301000000900460ff1681565b3480156106c757600080fd5b506103916689d864f949000081565b3480156106e257600080fd5b506102f56106f13660046129f6565b6116c1565b34801561070257600080fd5b506102f56116f5565b34801561071757600080fd5b506103917f000000000000000000000000000000000000000000000000000000000000170081565b34801561074b57600080fd5b5061039161075a36600461280b565b611783565b34801561076b57600080fd5b5061035a61077a366004612a5b565b61178e565b34801561078b57600080fd5b5061029761079a366004612825565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107d457600080fd5b5061039160125481565b3480156107ea57600080fd5b5061035a6107f936600461280b565b6118c5565b34801561080a57600080fd5b5061039160105481565b60006001600160e01b031982166380ac58cd60e01b148061084557506001600160e01b03198216635b5e139f60e01b145b8061086057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461087590612e48565b80601f01602080910402602001604051908101604052809291908181526020018280546108a190612e48565b80156108ee5780601f106108c3576101008083540402835291602001916108ee565b820191906000526020600020905b8154815290600101906020018083116108d157829003601f168201915b5050505050905090565b60006109038261195d565b610920576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061094782610b84565b9050806001600160a01b0316836001600160a01b0316141561097c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061099c575061099a813361079a565b155b156109ba576040516367d9dca160e11b815260040160405180910390fd5b6109c5838383611988565b505050565b6008546001600160a01b031633146109fd5760405162461bcd60e51b81526004016109f490612d85565b60405180910390fd5b600a805482919060ff19166001836004811115610a2a57634e487b7160e01b600052602160045260246000fd5b0217905550600a546040517fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e91610a669160ff90911690612c4a565b60405180910390a150565b6109c58383836119e4565b6008546001600160a01b03163314610aa65760405162461bcd60e51b81526004016109f490612d85565b8051610ab990600c9060208401906126bb565b5050565b6008546001600160a01b03163314610ae75760405162461bcd60e51b81526004016109f490612d85565b6004600a5460ff166004811115610b0e57634e487b7160e01b600052602160045260246000fd5b14610b1857600080fd5b7f000000000000000000000000000000000000000000000000000000000000170081610b476001546000540390565b610b519190612dba565b1115610b5c57600080fd5b610b663382611bf8565b50565b6109c583838360405180602001604052806000815250611670565b6000610b8f82611c12565b5192915050565b60006001600160a01b038216610bbf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c0e5760405162461bcd60e51b81526004016109f490612d85565b610c186000611d2c565b565b323314610c395760405162461bcd60e51b81526004016109f490612d17565b6002600a5460ff166004811115610c6057634e487b7160e01b600052602160045260246000fd5b14610cad5760405162461bcd60e51b815260206004820152601760248201527f50726553616c654d696e74206e6f74207374617274656400000000000000000060448201526064016109f4565b610cbe82665e808f1f068000612de6565b341015610cfd5760405162461bcd60e51b815260206004820152600d60248201526c0dccacac840dadee4ca40cae8d609b1b60448201526064016109f4565b600d546301000000900460ff1682610d1433611783565b610d1e9190612dba565b1115610d3c5760405162461bcd60e51b81526004016109f490612cd3565b600f5482601254610d4d9190612dba565b1115610d945760405162461bcd60e51b8152602060048201526016602482015275141c9954d85b1954dd5c1c1b1e48115e18d95959195960521b60448201526064016109f4565b7f000000000000000000000000000000000000000000000000000000000000170082610dc36001546000540390565b610dcd9190612dba565b1115610e125760405162461bcd60e51b81526020600482015260146024820152734578636565647320746f74616c20737570706c7960601b60448201526064016109f4565b6000600333604051602001610e28929190612c1e565b604051602081830303815290604052805190602001209050610e4a8183611d7e565b610e965760405162461bcd60e51b815260206004820152601a60248201527f61646472657373206973206e6f7420616c6c6f776c697374656400000000000060448201526064016109f4565b610ea03384611bf8565b8260126000828254610eb29190612dba565b9091555050505050565b60606003805461087590612e48565b323314610eea5760405162461bcd60e51b81526004016109f490612d17565b816001600a5460ff166004811115610f1257634e487b7160e01b600052602160045260246000fd5b14610f2f5760405162461bcd60e51b81526004016109f490612c77565b600e5481601154610f409190612dba565b1115610f5e5760405162461bcd60e51b81526004016109f490612d4e565b7f000000000000000000000000000000000000000000000000000000000000170081610f8d6001546000540390565b610f979190612dba565b1115610fb55760405162461bcd60e51b81526004016109f490612ca5565b600d54610100900460ff1683610fca33611783565b610fd49190612dba565b1115610ff25760405162461bcd60e51b81526004016109f490612cd3565b6000600133604051602001611008929190612c1e565b60405160208183030381529060405280519060200120905061102a8184611d7e565b6110765760405162461bcd60e51b815260206004820152601a60248201527f61646472657373206973206e6f7420616c6c6f776c697374656400000000000060448201526064016109f4565b6110803385611bf8565b83601160008282546110929190612dba565b909155505050505050565b6001600160a01b0382163314156110c75760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146111525760405162461bcd60e51b81526004016109f490612d17565b6003600a5460ff16600481111561117957634e487b7160e01b600052602160045260246000fd5b146111bf5760405162461bcd60e51b8152602060048201526016602482015275141d589b1a58d4d85b19481b9bdd081cdd185c9d195960521b60448201526064016109f4565b601054836013546111d09190612dba565b111561121e5760405162461bcd60e51b815260206004820152601960248201527f5075626c696353616c65537570706c792045786365656465640000000000000060448201526064016109f4565b600d543360009081526014602052604090205464010000000090910460ff1690611249908590612dba565b11156112a35760405162461bcd60e51b815260206004820152602360248201527f4d6178206d696e7420616d6f756e74207065722077616c6c657420657863656560448201526219195960ea1b60648201526084016109f4565b6112b4836689d864f9490000612de6565b3410156112f35760405162461bcd60e51b815260206004820152600d60248201526c0dccacac840dadee4ca40cae8d609b1b60448201526064016109f4565b600b546001600160a01b03166113098383611e66565b6001600160a01b03161461135f5760405162461bcd60e51b815260206004820152601b60248201527f546869732061646472657373206973206e6f7420616c6c6f776564000000000060448201526064016109f4565b7f00000000000000000000000000000000000000000000000000000000000017008361138e6001546000540390565b6113989190612dba565b11156113dd5760405162461bcd60e51b81526020600482015260146024820152734578636565647320746f74616c20737570706c7960601b60448201526064016109f4565b6113e73384611bf8565b82601360008282546113f99190612dba565b90915550503360009081526014602052604081208054859290610eb2908490612dba565b6008546001600160a01b031633146114475760405162461bcd60e51b81526004016109f490612d85565b6002600954141561149a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109f4565b6002600955604051600090339047908381818185875af1925050503d80600081146114e1576040519150601f19603f3d011682016040523d82523d6000602084013e6114e6565b606091505b505090508061152a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109f4565b506001600955565b3233146115515760405162461bcd60e51b81526004016109f490612d17565b816001600a5460ff16600481111561157957634e487b7160e01b600052602160045260246000fd5b146115965760405162461bcd60e51b81526004016109f490612c77565b600e54816011546115a79190612dba565b11156115c55760405162461bcd60e51b81526004016109f490612d4e565b7f0000000000000000000000000000000000000000000000000000000000001700816115f46001546000540390565b6115fe9190612dba565b111561161c5760405162461bcd60e51b81526004016109f490612ca5565b600d5462010000900460ff168361163233611783565b61163c9190612dba565b111561165a5760405162461bcd60e51b81526004016109f490612cd3565b6000600233604051602001611008929190612c1e565b61167b8484846119e4565b6001600160a01b0383163b1515801561169d575061169b84848484611ec8565b155b156116bb576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600c6116ce83611fbf565b6040516020016116df929190612b27565b6040516020818303038152906040529050919050565b600c805461170290612e48565b80601f016020809104026020016040519081016040528092919081815260200182805461172e90612e48565b801561177b5780601f106117505761010080835404028352916020019161177b565b820191906000526020600020905b81548152906001019060200180831161175e57829003601f168201915b505050505081565b6000610860826120d8565b3233146117ad5760405162461bcd60e51b81526004016109f490612d17565b816001600a5460ff1660048111156117d557634e487b7160e01b600052602160045260246000fd5b146117f25760405162461bcd60e51b81526004016109f490612c77565b600e54816011546118039190612dba565b11156118215760405162461bcd60e51b81526004016109f490612d4e565b7f0000000000000000000000000000000000000000000000000000000000001700816118506001546000540390565b61185a9190612dba565b11156118785760405162461bcd60e51b81526004016109f490612ca5565b600d5460ff168361188833611783565b6118929190612dba565b11156118b05760405162461bcd60e51b81526004016109f490612cd3565b60008033604051602001611008929190612c1e565b6008546001600160a01b031633146118ef5760405162461bcd60e51b81526004016109f490612d85565b6001600160a01b0381166119545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f4565b610b6681611d2c565b6000805482108015610860575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006119ef82611c12565b80519091506000906001600160a01b0316336001600160a01b03161480611a1d57508151611a1d903361079a565b80611a38575033611a2d846108f8565b6001600160a01b0316145b905080611a5857604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611a8d5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611ab457604051633a954ecd60e21b815260040160405180910390fd5b611ac46000848460000151611988565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611bae57600054811015611bae57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610ab982826040518060200160405280600081525061212d565b604080516060810182526000808252602082018190529181019190915281600054811015611d1357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611d115780516001600160a01b031615611ca8579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611d0c579392505050565b611ca8565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008060018484604001518560000151866020015160405160008152602001604052604051611dc9949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa158015611deb573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611e495760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b60448201526064016109f4565b600a5461010090046001600160a01b039081169116149392505050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c81018390526000908190605c01604051602081830303815290604052805190602001209050611ec0818461213a565b949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611efd903390899088908890600401612be1565b602060405180830381600087803b158015611f1757600080fd5b505af1925050508015611f47575060408051601f3d908101601f19168201909252611f4491810190612976565b60015b611fa2573d808015611f75576040519150601f19603f3d011682016040523d82523d6000602084013e611f7a565b606091505b508051611f9a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606081611fe35750506040805180820190915260018152600360fc1b602082015290565b8160005b811561200d5780611ff781612e83565b91506120069050600a83612dd2565b9150611fe7565b6000816001600160401b0381111561203557634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561205f576020820181803683370190505b5090505b8415611ec057612074600183612e05565b9150612081600a86612e9e565b61208c906030612dba565b60f81b8183815181106120af57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120d1600a86612dd2565b9450612063565b60006001600160a01b038216612101576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b6109c5838383600161215e565b60008060006121498585612329565b9150915061215681612399565b509392505050565b6000546001600160a01b03851661218757604051622e076360e81b815260040160405180910390fd5b836121a55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561225157506001600160a01b0387163b15155b156122da575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122a26000888480600101955088611ec8565b6122bf576040516368d2bf6b60e11b815260040160405180910390fd5b808214156122575782600054146122d557600080fd5b612320565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156122db575b50600055611bf1565b6000808251604114156123605760208301516040840151606085015160001a61235487828585612595565b94509450505050612392565b82516040141561238a576020830151604084015161237f868383612682565b935093505050612392565b506000905060025b9250929050565b60008160048111156123bb57634e487b7160e01b600052602160045260246000fd5b14156123c45750565b60018160048111156123e657634e487b7160e01b600052602160045260246000fd5b141561242f5760405162461bcd60e51b815260206004820152601860248201527745434453413a20696e76616c6964207369676e617475726560401b60448201526064016109f4565b600281600481111561245157634e487b7160e01b600052602160045260246000fd5b141561249f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016109f4565b60038160048111156124c157634e487b7160e01b600052602160045260246000fd5b141561251a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016109f4565b600481600481111561253c57634e487b7160e01b600052602160045260246000fd5b1415610b665760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016109f4565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156125cc5750600090506003612679565b8460ff16601b141580156125e457508460ff16601c14155b156125f55750600090506004612679565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612649573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661267257600060019250925050612679565b9150600090505b94509492505050565b6000806001600160ff1b0383168161269f60ff86901c601b612dba565b90506126ad87828885612595565b935093505050935093915050565b8280546126c790612e48565b90600052602060002090601f0160209004810192826126e9576000855561272f565b82601f1061270257805160ff191683800117855561272f565b8280016001018555821561272f579182015b8281111561272f578251825591602001919060010190612714565b5061273b92915061273f565b5090565b5b8082111561273b5760008155600101612740565b60006001600160401b038084111561276e5761276e612ef4565b604051601f8501601f19908116603f0116810190828211818310171561279657612796612ef4565b816040528093508581528686860111156127af57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146127e057600080fd5b919050565b600082601f8301126127f5578081fd5b61280483833560208501612754565b9392505050565b60006020828403121561281c578081fd5b612804826127c9565b60008060408385031215612837578081fd5b612840836127c9565b915061284e602084016127c9565b90509250929050565b60008060006060848603121561286b578081fd5b612874846127c9565b9250612882602085016127c9565b9150604084013590509250925092565b600080600080608085870312156128a7578081fd5b6128b0856127c9565b93506128be602086016127c9565b92506040850135915060608501356001600160401b038111156128df578182fd5b6128eb878288016127e5565b91505092959194509250565b60008060408385031215612909578182fd5b612912836127c9565b915060208301358015158114612926578182fd5b809150509250929050565b60008060408385031215612943578182fd5b61294c836127c9565b946020939093013593505050565b60006020828403121561296b578081fd5b813561280481612f0a565b600060208284031215612987578081fd5b815161280481612f0a565b6000602082840312156129a3578081fd5b813560058110612804578182fd5b6000602082840312156129c2578081fd5b81356001600160401b038111156129d7578182fd5b8201601f810184136129e7578182fd5b611ec084823560208401612754565b600060208284031215612a07578081fd5b5035919050565b600080600060608486031215612a22578081fd5b833592506020840135915060408401356001600160401b03811115612a45578182fd5b612a51868287016127e5565b9150509250925092565b6000808284036080811215612a6e578283fd5b833592506060601f1982011215612a83578182fd5b50604051606081018181106001600160401b0382111715612aa657612aa6612ef4565b80604052506020840135815260408401356020820152606084013560ff81168114612acf578283fd5b6040820152919491935090915050565b60008151808452612af7816020860160208601612e1c565b601f01601f19169290920160200192915050565b60008151612b1d818560208601612e1c565b9290920192915050565b600080845482600182811c915080831680612b4357607f831692505b6020808410821415612b6357634e487b7160e01b87526022600452602487fd5b818015612b775760018114612b8857612bb4565b60ff19861689528489019650612bb4565b60008b815260209020885b86811015612bac5781548b820152908501908301612b93565b505084890196505b505050505050612bd8612bc78286612b0b565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c1490830184612adf565b9695505050505050565b6040810160048410612c3257612c32612ede565b9281526001600160a01b039190911660209091015290565b6020810160058310612c5e57612c5e612ede565b91905290565b6020815260006128046020830184612adf565b602080825260149082015273119c9959535a5b9d081b9bdd0814dd185c9d195960621b604082015260600190565b6020808252601490820152734578636565647320546f74616c20537570706c7960601b604082015260600190565b60208082526024908201527f4d6178206d696e7420616d6f756e74207065722077616c6c65742065786365656040820152633232b21760e11b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526018908201527f467265654d696e7420537570706c792045786365656465640000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115612dcd57612dcd612eb2565b500190565b600082612de157612de1612ec8565b500490565b6000816000190483118215151615612e0057612e00612eb2565b500290565b600082821015612e1757612e17612eb2565b500390565b60005b83811015612e37578181015183820152602001612e1f565b838111156116bb5750506000910152565b600181811c90821680612e5c57607f821691505b60208210811415612e7d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e9757612e97612eb2565b5060010190565b600082612ead57612ead612ec8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b6657600080fdfea264697066735822122000d250f0142c94daa59859781543a5f1ee375c4a64ae47a7148add5de30236d764736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000017000000000000000000000000004f12f4c8d37298b3b313dc163ba7fce819e8aa9300000000000000000000000005cf5fef74f322abd355e0e8da0ed4725a38dbe4

-----Decoded View---------------
Arg [0] : _maxSupply (uint256): 5888
Arg [1] : Signer (address): 0x4F12f4C8d37298B3b313DC163Ba7fCE819e8Aa93
Arg [2] : PublicSigner (address): 0x05cF5fef74f322abd355E0e8Da0ed4725A38dBE4

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000001700
Arg [1] : 0000000000000000000000004f12f4c8d37298b3b313dc163ba7fce819e8aa93
Arg [2] : 00000000000000000000000005cf5fef74f322abd355e0e8da0ed4725a38dbe4


Deployed Bytecode Sourcemap

58095:6835:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38035:305;;;;;;;;;;-1:-1:-1;38035:305:0;;;;;:::i;:::-;;:::i;:::-;;;9248:14:1;;9241:22;9223:41;;9211:2;9196:18;38035:305:0;;;;;;;;58887:50;;;;;;;;;;-1:-1:-1;58887:50:0;;;;;;;;;;;;;;18874:4:1;18862:17;;;18844:36;;18832:2;18817:18;58887:50:0;18799:87:1;41420:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42923:204::-;;;;;;;;;;-1:-1:-1;42923:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8546:32:1;;;8528:51;;8516:2;8501:18;42923:204:0;8483:102:1;42486:371:0;;;;;;;;;;-1:-1:-1;42486:371:0;;;;;:::i;:::-;;:::i;:::-;;63789:127;;;;;;;;;;-1:-1:-1;63789:127:0;;;;;:::i;:::-;;:::i;37284:303::-;;;;;;;;;;-1:-1:-1;37538:12:0;;37328:7;37522:13;:28;37284:303;;;18666:25:1;;;18654:2;18639:18;37284:303:0;18621:76:1;58944:36:0;;;;;;;;;;;;;;;;58499:20;;;;;;;;;;-1:-1:-1;58499:20:0;;;;;;;;;;;;;;;:::i;43780:170::-;;;;;;;;;;-1:-1:-1;43780:170:0;;;;;:::i;:::-;;:::i;58725:46::-;;;;;;;;;;-1:-1:-1;58725:46:0;;;;;;;;;;;64305:117;;;;;;;;;;-1:-1:-1;64305:117:0;;;;;:::i;:::-;;:::i;64519:207::-;;;;;;;;;;-1:-1:-1;64519:207:0;;;;;:::i;:::-;;:::i;44021:185::-;;;;;;;;;;-1:-1:-1;44021:185:0;;;;;:::i;:::-;;:::i;64430:81::-;;;;;;;;;;-1:-1:-1;64497:6:0;;;;64430:81;;58667:51;;;;;;;;;;-1:-1:-1;58667:51:0;;;;;;;;41229:124;;;;;;;;;;-1:-1:-1;41229:124:0;;;;;:::i;:::-;;:::i;58778:46::-;;;;;;;;;;-1:-1:-1;58778:46:0;;;;;;;;;;;38404:206;;;;;;;;;;-1:-1:-1;38404:206:0;;;;;:::i;:::-;;:::i;57211:103::-;;;;;;;;;;;;;:::i;61590:801::-;;;;;;:::i;:::-;;:::i;56560:87::-;;;;;;;;;;-1:-1:-1;56633:6:0;;-1:-1:-1;;;;;56633:6:0;56560:87;;59074:29;;;;;;;;;;;;;;;;41589:104;;;;;;;;;;;;;:::i;60600:481::-;;;;;;;;;;-1:-1:-1;60600:481:0;;;;;:::i;:::-;;:::i;59149:35::-;;;;;;;;;;;;;;;;59375:48;;;;;;;;;;-1:-1:-1;59375:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;58987:35;;;;;;;;;;;;;;;;43199:279;;;;;;;;;;-1:-1:-1;43199:279:0;;;;;:::i;:::-;;:::i;62399:802::-;;;;;;:::i;:::-;;:::i;64734:191::-;;;;;;;;;;;;;:::i;59191:51::-;;;;;;;;;;;;59230:12;59191:51;;61089:489;;;;;;;;;;-1:-1:-1;61089:489:0;;;;;:::i;:::-;;:::i;44277:369::-;;;;;;;;;;-1:-1:-1;44277:369:0;;;;;:::i;:::-;;:::i;58831:49::-;;;;;;;;;;-1:-1:-1;58831:49:0;;;;;;;;;;;59249:54;;;;;;;;;;;;59291:12;59249:54;;64048:249;;;;;;;;;;-1:-1:-1;64048:249:0;;;;;:::i;:::-;;:::i;58592:27::-;;;;;;;;;;;;;:::i;58626:34::-;;;;;;;;;;;;;;;63928:112;;;;;;;;;;-1:-1:-1;63928:112:0;;;;;:::i;:::-;;:::i;60096:496::-;;;;;;;;;;-1:-1:-1;60096:496:0;;;;;:::i;:::-;;:::i;43549:164::-;;;;;;;;;;-1:-1:-1;43549:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43670:25:0;;;43646:4;43670:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43549:164;59110:32;;;;;;;;;;;;;;;;57469:201;;;;;;;;;;-1:-1:-1;57469:201:0;;;;;:::i;:::-;;:::i;59029:38::-;;;;;;;;;;;;;;;;38035:305;38137:4;-1:-1:-1;;;;;;38174:40:0;;-1:-1:-1;;;38174:40:0;;:105;;-1:-1:-1;;;;;;;38231:48:0;;-1:-1:-1;;;38231:48:0;38174:105;:158;;;-1:-1:-1;;;;;;;;;;23083:40:0;;;38296:36;38154:178;38035:305;-1:-1:-1;;38035:305:0:o;41420:100::-;41474:13;41507:5;41500:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41420:100;:::o;42923:204::-;42991:7;43016:16;43024:7;43016;:16::i;:::-;43011:64;;43041:34;;-1:-1:-1;;;43041:34:0;;;;;;;;;;;43011:64;-1:-1:-1;43095:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43095:24:0;;42923:204::o;42486:371::-;42559:13;42575:24;42591:7;42575:15;:24::i;:::-;42559:40;;42620:5;-1:-1:-1;;;;;42614:11:0;:2;-1:-1:-1;;;;;42614:11:0;;42610:48;;;42634:24;;-1:-1:-1;;;42634:24:0;;;;;;;;;;;42610:48;33411:10;-1:-1:-1;;;;;42675:21:0;;;;;;:63;;-1:-1:-1;42701:37:0;42718:5;33411:10;43549:164;:::i;42701:37::-;42700:38;42675:63;42671:138;;;42762:35;;-1:-1:-1;;;42762:35:0;;;;;;;;;;;42671:138;42821:28;42830:2;42834:7;42843:5;42821:8;:28::i;:::-;42486:371;;;:::o;63789:127::-;56633:6;;-1:-1:-1;;;;;56633:6:0;33411:10;56780:23;56772:68;;;;-1:-1:-1;;;56772:68:0;;;;;;;:::i;:::-;;;;;;;;;63855:6:::1;:16:::0;;63864:7;;63855:6;-1:-1:-1;;63855:16:0::1;::::0;63864:7;63855:16:::1;::::0;::::1;;;;-1:-1:-1::0;;;63855:16:0::1;;;;;;;;;;;::::0;;-1:-1:-1;63901:6:0::1;::::0;63887:21:::1;::::0;::::1;::::0;::::1;::::0;63901:6:::1;::::0;;::::1;::::0;63887:21:::1;:::i;:::-;;;;;;;;63789:127:::0;:::o;43780:170::-;43914:28;43924:4;43930:2;43934:7;43914:9;:28::i;64305:117::-;56633:6;;-1:-1:-1;;;;;56633:6:0;33411:10;56780:23;56772:68;;;;-1:-1:-1;;;56772:68:0;;;;;;;:::i;:::-;64386:28;;::::1;::::0;:13:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;64305:117:::0;:::o;64519:207::-;56633:6;;-1:-1:-1;;;;;56633:6:0;33411:10;56780:23;56772:68;;;;-1:-1:-1;;;56772:68:0;;;;;;;:::i;:::-;64602:15:::1;64592:6;::::0;::::1;;:25;::::0;::::1;;;;-1:-1:-1::0;;;64592:25:0::1;;;;;;;;;;64584:34;;;::::0;::::1;;64665:9;64653:8;64637:13;37538:12:::0;;37328:7;37522:13;:28;;37284:303;64637:13:::1;:24;;;;:::i;:::-;:37;;64629:46;;;::::0;::::1;;64687:31;64697:10;64709:8;64687:9;:31::i;:::-;64519:207:::0;:::o;44021:185::-;44159:39;44176:4;44182:2;44186:7;44159:39;;;;;;;;;;;;:16;:39::i;41229:124::-;41293:7;41320:20;41332:7;41320:11;:20::i;:::-;:25;;41229:124;-1:-1:-1;;41229:124:0:o;38404:206::-;38468:7;-1:-1:-1;;;;;38492:19:0;;38488:60;;38520:28;;-1:-1:-1;;;38520:28:0;;;;;;;;;;;38488:60;-1:-1:-1;;;;;;38574:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38574:27:0;;38404:206::o;57211:103::-;56633:6;;-1:-1:-1;;;;;56633:6:0;33411:10;56780:23;56772:68;;;;-1:-1:-1;;;56772:68:0;;;;;;;:::i;:::-;57276:30:::1;57303:1;57276:18;:30::i;:::-;57211:103::o:0;61590:801::-;59717:9;59730:10;59717:23;59709:66;;;;-1:-1:-1;;;59709:66:0;;;;;;;:::i;:::-;61715:18:::1;61705:6;::::0;::::1;;:28;::::0;::::1;;;;-1:-1:-1::0;;;61705:28:0::1;;;;;;;;;;61697:64;;;::::0;-1:-1:-1;;;61697:64:0;;17668:2:1;61697:64:0::1;::::0;::::1;17650:21:1::0;17707:2;17687:18;;;17680:30;17746:25;17726:18;;;17719:53;17789:18;;61697:64:0::1;17640:173:1::0;61697:64:0::1;61793:23;61808:8:::0;59230:12:::1;61793:23;:::i;:::-;61780:9;:36;;61772:62;;;::::0;-1:-1:-1;;;61772:62:0;;18380:2:1;61772:62:0::1;::::0;::::1;18362:21:1::0;18419:2;18399:18;;;18392:30;-1:-1:-1;;;18438:18:1;;;18431:43;18491:18;;61772:62:0::1;18352:163:1::0;61772:62:0::1;61892:31;::::0;;;::::1;;;61880:8:::0;61853:24:::1;61866:10;61853:12;:24::i;:::-;:35;;;;:::i;:::-;:70;;61845:119;;;;-1:-1:-1::0;;;61845:119:0::1;;;;;;;:::i;:::-;62011:13;;61999:8;61983:13;;:24;;;;:::i;:::-;:41;;61975:76;;;::::0;-1:-1:-1;;;61975:76:0;;14740:2:1;61975:76:0::1;::::0;::::1;14722:21:1::0;14779:2;14759:18;;;14752:30;-1:-1:-1;;;14798:18:1;;;14791:52;14860:18;;61975:76:0::1;14712:172:1::0;61975:76:0::1;62098:9;62086:8;62070:13;37538:12:::0;;37328:7;37522:13;:28;;37284:303;62070:13:::1;:24;;;;:::i;:::-;:37;;62062:70;;;::::0;-1:-1:-1;;;62062:70:0;;14032:2:1;62062:70:0::1;::::0;::::1;14014:21:1::0;14071:2;14051:18;;;14044:30;-1:-1:-1;;;14090:18:1;;;14083:50;14150:18;;62062:70:0::1;14004:170:1::0;62062:70:0::1;62143:14;62181:22;62205:10;62170:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62160:57;;;;;;62143:74;;62236:37;62256:6;62264:8;62236:19;:37::i;:::-;62228:76;;;::::0;-1:-1:-1;;;62228:76:0;;15091:2:1;62228:76:0::1;::::0;::::1;15073:21:1::0;15130:2;15110:18;;;15103:30;15169:28;15149:18;;;15142:56;15215:18;;62228:76:0::1;15063:176:1::0;62228:76:0::1;62316:31;62326:10;62338:8;62316:9;:31::i;:::-;62375:8;62358:13;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;61590:801:0:o;41589:104::-;41645:13;41678:7;41671:14;;;;;:::i;60600:481::-;59717:9;59730:10;59717:23;59709:66;;;;-1:-1:-1;;;59709:66:0;;;;;;;:::i;:::-;60696:8;59864:15:::1;59854:6;::::0;::::1;;:25;::::0;::::1;;;;-1:-1:-1::0;;;59854:25:0::1;;;;;;;;;;59846:58;;;;-1:-1:-1::0;;;59846:58:0::1;;;;;;;:::i;:::-;59944:14;;59937:3;59924:10;;:16;;;;:::i;:::-;:34;;59916:71;;;;-1:-1:-1::0;;;59916:71:0::1;;;;;;;:::i;:::-;60030:9;60023:3;60007:13;37538:12:::0;;37328:7;37522:13;:28;;37284:303;60007:13:::1;:19;;;;:::i;:::-;:32;;59999:65;;;;-1:-1:-1::0;;;59999:65:0::1;;;;;;;:::i;:::-;60764:28:::2;::::0;::::2;::::0;::::2;;;60752:8:::0;60725:24:::2;60738:10;60725:12;:24::i;:::-;:35;;;;:::i;:::-;:67;;60717:116;;;;-1:-1:-1::0;;;60717:116:0::2;;;;;;;:::i;:::-;60844:14;60882:15;60899:10;60871:39;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60861:50;;;;;;60844:67;;60930:37;60950:6;60958:8;60930:19;:37::i;:::-;60922:76;;;::::0;-1:-1:-1;;;60922:76:0;;15091:2:1;60922:76:0::2;::::0;::::2;15073:21:1::0;15130:2;15110:18;;;15103:30;15169:28;15149:18;;;15142:56;15215:18;;60922:76:0::2;15063:176:1::0;60922:76:0::2;61009:31;61019:10;61031:8;61009:9;:31::i;:::-;61065:8;61051:10;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;60600:481:0:o;43199:279::-;-1:-1:-1;;;;;43290:24:0;;33411:10;43290:24;43286:54;;;43323:17;;-1:-1:-1;;;43323:17:0;;;;;;;;;;;43286:54;33411:10;43353:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;43353:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;43353:53:0;;;;;;;;;;43422:48;;9223:41:1;;;43353:42:0;;33411:10;43422:48;;9196:18:1;43422:48:0;;;;;;;43199:279;;:::o;62399:802::-;59717:9;59730:10;59717:23;59709:66;;;;-1:-1:-1;;;59709:66:0;;;;;;;:::i;:::-;62539:17:::1;62529:6;::::0;::::1;;:27;::::0;::::1;;;;-1:-1:-1::0;;;62529:27:0::1;;;;;;;;;;62521:62;;;::::0;-1:-1:-1;;;62521:62:0;;11403:2:1;62521:62:0::1;::::0;::::1;11385:21:1::0;11442:2;11422:18;;;11415:30;-1:-1:-1;;;11461:18:1;;;11454:52;11523:18;;62521:62:0::1;11375:172:1::0;62521:62:0::1;62633:16;;62621:8;62602:16;;:27;;;;:::i;:::-;:47;;62594:85;;;::::0;-1:-1:-1;;;62594:85:0;;12521:2:1;62594:85:0::1;::::0;::::1;12503:21:1::0;12560:2;12540:18;;;12533:30;12599:27;12579:18;;;12572:55;12644:18;;62594:85:0::1;12493:175:1::0;62594:85:0::1;62737:32;::::0;62711:10:::1;62698:24;::::0;;;:12:::1;:24;::::0;;;;;62737:32;;;::::1;;;::::0;62698:35:::1;::::0;62725:8;;62698:35:::1;:::i;:::-;:71;;62690:119;;;::::0;-1:-1:-1;;;62690:119:0;;15849:2:1;62690:119:0::1;::::0;::::1;15831:21:1::0;15888:2;15868:18;;;15861:30;15927:34;15907:18;;;15900:62;-1:-1:-1;;;15978:18:1;;;15971:33;16021:19;;62690:119:0::1;15821:225:1::0;62690:119:0::1;62841:26;62859:8:::0;59291:12:::1;62841:26;:::i;:::-;62828:9;:39;;62820:65;;;::::0;-1:-1:-1;;;62820:65:0;;18380:2:1;62820:65:0::1;::::0;::::1;18362:21:1::0;18419:2;18399:18;;;18392:30;-1:-1:-1;;;18438:18:1;;;18431:43;18491:18;;62820:65:0::1;18352:163:1::0;62820:65:0::1;62938:13;::::0;-1:-1:-1;;;;;62938:13:0::1;62904:30;62918:4:::0;62924:9;62904:13:::1;:30::i;:::-;-1:-1:-1::0;;;;;62904:47:0::1;;62896:87;;;::::0;-1:-1:-1;;;62896:87:0;;16967:2:1;62896:87:0::1;::::0;::::1;16949:21:1::0;17006:2;16986:18;;;16979:30;17045:29;17025:18;;;17018:57;17092:18;;62896:87:0::1;16939:177:1::0;62896:87:0::1;63030:9;63018:8;63002:13;37538:12:::0;;37328:7;37522:13;:28;;37284:303;63002:13:::1;:24;;;;:::i;:::-;:37;;62994:70;;;::::0;-1:-1:-1;;;62994:70:0;;14032:2:1;62994:70:0::1;::::0;::::1;14014:21:1::0;14071:2;14051:18;;;14044:30;-1:-1:-1;;;14090:18:1;;;14083:50;14150:18;;62994:70:0::1;14004:170:1::0;62994:70:0::1;63076:31;63086:10;63098:8;63076:9;:31::i;:::-;63138:8;63118:16;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;63170:10:0::1;63157:24;::::0;;;:12:::1;:24;::::0;;;;:36;;63185:8;;63157:24;:36:::1;::::0;63185:8;;63157:36:::1;:::i;64734:191::-:0;56633:6;;-1:-1:-1;;;;;56633:6:0;33411:10;56780:23;56772:68;;;;-1:-1:-1;;;56772:68:0;;;;;;;:::i;:::-;31705:1:::1;32303:7;;:19;;32295:63;;;::::0;-1:-1:-1;;;32295:63:0;;18020:2:1;32295:63:0::1;::::0;::::1;18002:21:1::0;18059:2;18039:18;;;18032:30;18098:33;18078:18;;;18071:61;18149:18;;32295:63:0::1;17992:181:1::0;32295:63:0::1;31705:1;32436:7;:18:::0;64821:49:::2;::::0;64803:12:::2;::::0;64821:10:::2;::::0;64844:21:::2;::::0;64803:12;64821:49;64803:12;64821:49;64844:21;64821:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64802:68;;;64889:7;64881:36;;;::::0;-1:-1:-1;;;64881:36:0;;17323:2:1;64881:36:0::2;::::0;::::2;17305:21:1::0;17362:2;17342:18;;;17335:30;-1:-1:-1;;;17381:18:1;;;17374:46;17437:18;;64881:36:0::2;17295:166:1::0;64881:36:0::2;-1:-1:-1::0;31661:1:0::1;32615:7;:22:::0;64734:191::o;61089:489::-;59717:9;59730:10;59717:23;59709:66;;;;-1:-1:-1;;;59709:66:0;;;;;;;:::i;:::-;61185:8;59864:15:::1;59854:6;::::0;::::1;;:25;::::0;::::1;;;;-1:-1:-1::0;;;59854:25:0::1;;;;;;;;;;59846:58;;;;-1:-1:-1::0;;;59846:58:0::1;;;;;;;:::i;:::-;59944:14;;59937:3;59924:10;;:16;;;;:::i;:::-;:34;;59916:71;;;;-1:-1:-1::0;;;59916:71:0::1;;;;;;;:::i;:::-;60030:9;60023:3;60007:13;37538:12:::0;;37328:7;37522:13;:28;;37284:303;60007:13:::1;:19;;;;:::i;:::-;:32;;59999:65;;;;-1:-1:-1::0;;;59999:65:0::1;;;;;;;:::i;:::-;61253:28:::2;::::0;;;::::2;;;61241:8:::0;61214:24:::2;61227:10;61214:12;:24::i;:::-;:35;;;;:::i;:::-;:67;;61206:116;;;;-1:-1:-1::0;;;61206:116:0::2;;;;;;;:::i;:::-;61333:14;61371:23;61396:10;61360:47;;;;;;;;;:::i;44277:369::-:0;44444:28;44454:4;44460:2;44464:7;44444:9;:28::i;:::-;-1:-1:-1;;;;;44487:13:0;;13186:19;:23;;44487:76;;;;;44507:56;44538:4;44544:2;44548:7;44557:5;44507:30;:56::i;:::-;44506:57;44487:76;44483:156;;;44587:40;;-1:-1:-1;;;44587:40:0;;;;;;;;;;;44483:156;44277:369;;;;:::o;64048:249::-;64113:13;64192;64225:18;:7;:16;:18::i;:::-;64157:131;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64143:146;;64048:249;;;:::o;58592:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63928:112::-;63985:7;64012:20;64026:5;64012:13;:20::i;60096:496::-;59717:9;59730:10;59717:23;59709:66;;;;-1:-1:-1;;;59709:66:0;;;;;;;:::i;:::-;60197:8;59864:15:::1;59854:6;::::0;::::1;;:25;::::0;::::1;;;;-1:-1:-1::0;;;59854:25:0::1;;;;;;;;;;59846:58;;;;-1:-1:-1::0;;;59846:58:0::1;;;;;;;:::i;:::-;59944:14;;59937:3;59924:10;;:16;;;;:::i;:::-;:34;;59916:71;;;;-1:-1:-1::0;;;59916:71:0::1;;;;;;;:::i;:::-;60030:9;60023:3;60007:13;37538:12:::0;;37328:7;37522:13;:28;;37284:303;60007:13:::1;:19;;;;:::i;:::-;:32;;59999:65;;;;-1:-1:-1::0;;;59999:65:0::1;;;;;;;:::i;:::-;60265:33:::2;::::0;::::2;;60253:8:::0;60226:24:::2;60239:10;60226:12;:24::i;:::-;:35;;;;:::i;:::-;:72;;60218:121;;;;-1:-1:-1::0;;;60218:121:0::2;;;;;;;:::i;:::-;60350:14;60388:20:::0;60410:10:::2;60377:44;;;;;;;;;:::i;57469:201::-:0;56633:6;;-1:-1:-1;;;;;56633:6:0;33411:10;56780:23;56772:68;;;;-1:-1:-1;;;56772:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57558:22:0;::::1;57550:73;;;::::0;-1:-1:-1;;;57550:73:0;;12114:2:1;57550:73:0::1;::::0;::::1;12096:21:1::0;12153:2;12133:18;;;12126:30;12192:34;12172:18;;;12165:62;-1:-1:-1;;;12243:18:1;;;12236:36;12289:19;;57550:73:0::1;12086:228:1::0;57550:73:0::1;57634:28;57653:8;57634:18;:28::i;44901:187::-:0;44958:4;45022:13;;45012:7;:23;44982:98;;;;-1:-1:-1;;45053:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;45053:27:0;;;;45052:28;;44901:187::o;52512:196::-;52627:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52627:29:0;-1:-1:-1;;;;;52627:29:0;;;;;;;;;52672:28;;52627:24;;52672:28;;;;;;;52512:196;;;:::o;48014:2112::-;48129:35;48167:20;48179:7;48167:11;:20::i;:::-;48242:18;;48129:58;;-1:-1:-1;48200:22:0;;-1:-1:-1;;;;;48226:34:0;33411:10;-1:-1:-1;;;;;48226:34:0;;:101;;;-1:-1:-1;48294:18:0;;48277:50;;33411:10;43549:164;:::i;48277:50::-;48226:154;;;-1:-1:-1;33411:10:0;48344:20;48356:7;48344:11;:20::i;:::-;-1:-1:-1;;;;;48344:36:0;;48226:154;48200:181;;48399:17;48394:66;;48425:35;;-1:-1:-1;;;48425:35:0;;;;;;;;;;;48394:66;48497:4;-1:-1:-1;;;;;48475:26:0;:13;:18;;;-1:-1:-1;;;;;48475:26:0;;48471:67;;48510:28;;-1:-1:-1;;;48510:28:0;;;;;;;;;;;48471:67;-1:-1:-1;;;;;48553:16:0;;48549:52;;48578:23;;-1:-1:-1;;;48578:23:0;;;;;;;;;;;48549:52;48722:49;48739:1;48743:7;48752:13;:18;;;48722:8;:49::i;:::-;-1:-1:-1;;;;;49067:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;49067:31:0;;;-1:-1:-1;;;;;49067:31:0;;;-1:-1:-1;;49067:31:0;;;;;;;49113:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;49113:29:0;;;;;;;;;;;49159:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;49204:61:0;;;;-1:-1:-1;;;49249:15:0;49204:61;;;;;;;;;;;49539:11;;;49569:24;;;;;:29;49539:11;;49569:29;49565:445;;49794:13;;49780:11;:27;49776:219;;;49864:18;;;49832:24;;;:11;:24;;;;;;;;:50;;49947:28;;;;-1:-1:-1;;;;;49905:70:0;-1:-1:-1;;;49905:70:0;-1:-1:-1;;;;;;49905:70:0;;;-1:-1:-1;;;;;49832:50:0;;;49905:70;;;;;;;49776:219;48014:2112;50057:7;50053:2;-1:-1:-1;;;;;50038:27:0;50047:4;-1:-1:-1;;;;;50038:27:0;;;;;;;;;;;50076:42;48014:2112;;;;;:::o;45096:104::-;45165:27;45175:2;45179:8;45165:27;;;;;;;;;;;;:9;:27::i;40059:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;40169:7:0;40252:13;;40245:4;:20;40214:886;;;40286:31;40320:17;;;:11;:17;;;;;;;;;40286:51;;;;;;;;;-1:-1:-1;;;;;40286:51:0;;;;-1:-1:-1;;;40286:51:0;;-1:-1:-1;;;;;40286:51:0;;;;;;;;-1:-1:-1;;;40286:51:0;;;;;;;;;;;;;;40356:729;;40406:14;;-1:-1:-1;;;;;40406:28:0;;40402:101;;40470:9;40059:1108;-1:-1:-1;;;40059:1108:0:o;40402:101::-;-1:-1:-1;;;40845:6:0;40890:17;;;;:11;:17;;;;;;;;;40878:29;;;;;;;;;-1:-1:-1;;;;;40878:29:0;;;;;-1:-1:-1;;;40878:29:0;;-1:-1:-1;;;;;40878:29:0;;;;;;;;-1:-1:-1;;;40878:29:0;;;;;;;;;;;;;40938:28;40934:109;;41006:9;40059:1108;-1:-1:-1;;;40059:1108:0:o;40934:109::-;40805:261;;;40214:886;;41128:31;;-1:-1:-1;;;41128:31:0;;;;;;;;;;;57830:191;57923:6;;;-1:-1:-1;;;;;57940:17:0;;;-1:-1:-1;;;;;;57940:17:0;;;;;;;57973:40;;57923:6;;;57940:17;57923:6;;57973:40;;57904:16;;57973:40;57830:191;;:::o;63213:291::-;63306:4;63323:14;63340:53;63350:6;63358:8;:10;;;63370:8;:10;;;63382:8;:10;;;63340:53;;;;;;;;;;;;;;;;;9502:25:1;;;9575:4;9563:17;;;;9558:2;9543:18;;9536:45;9612:2;9597:18;;9590:34;9655:2;9640:18;;9633:34;9489:3;9474:19;;9456:217;63340:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;63340:53:0;;-1:-1:-1;;63340:53:0;;;-1:-1:-1;;;;;;;63412:20:0;;63404:57;;;;-1:-1:-1;;;63404:57:0;;10701:2:1;63404:57:0;;;10683:21:1;10740:2;10720:18;;;10713:30;-1:-1:-1;;;10759:18:1;;;10752:54;10823:18;;63404:57:0;10673:174:1;63404:57:0;63489:7;;;;;-1:-1:-1;;;;;63489:7:0;;;63479:17;;;;63213:291;-1:-1:-1;;;63213:291:0:o;63516:261::-;63653:58;;8029:66:1;63653:58:0;;;8017:79:1;8112:12;;;8105:28;;;63599:7:0;;;;8149:12:1;;63653:58:0;;;;;;;;;;;;63643:69;;;;;;63619:93;;63730:39;63744:13;63759:9;63730:13;:39::i;:::-;63723:46;63516:261;-1:-1:-1;;;;63516:261:0:o;53200:667::-;53384:72;;-1:-1:-1;;;53384:72:0;;53363:4;;-1:-1:-1;;;;;53384:36:0;;;;;:72;;33411:10;;53435:4;;53441:7;;53450:5;;53384:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53384:72:0;;;;;;;;-1:-1:-1;;53384:72:0;;;;;;;;;;;;:::i;:::-;;;53380:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53618:13:0;;53614:235;;53664:40;;-1:-1:-1;;;53664:40:0;;;;;;;;;;;53614:235;53807:6;53801:13;53792:6;53788:2;53784:15;53777:38;53380:480;-1:-1:-1;;;;;;53503:55:0;-1:-1:-1;;;53503:55:0;;-1:-1:-1;53200:667:0;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;-1:-1:-1;;;;;867:17:0;;;;;-1:-1:-1;;;867:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;-1:-1:-1;;;955:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;38692:207;38753:7;-1:-1:-1;;;;;38777:19:0;;38773:59;;38805:27;;-1:-1:-1;;;38805:27:0;;;;;;;;;;;38773:59;-1:-1:-1;;;;;;38858:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;38858:32:0;;-1:-1:-1;;;;;38858:32:0;;38692:207::o;45563:163::-;45686:32;45692:2;45696:8;45706:5;45713:4;45686:5;:32::i;6541:231::-;6619:7;6640:17;6659:18;6681:27;6692:4;6698:9;6681:10;:27::i;:::-;6639:69;;;;6719:18;6731:5;6719:11;:18::i;:::-;-1:-1:-1;6755:9:0;6541:231;-1:-1:-1;;;6541:231:0:o;45985:1775::-;46124:20;46147:13;-1:-1:-1;;;;;46175:16:0;;46171:48;;46200:19;;-1:-1:-1;;;46200:19:0;;;;;;;;;;;46171:48;46234:13;46230:44;;46256:18;;-1:-1:-1;;;46256:18:0;;;;;;;;;;;46230:44;-1:-1:-1;;;;;46625:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;46684:49:0;;-1:-1:-1;;;;;46625:44:0;;;;;;;46684:49;;;-1:-1:-1;;;;;46625:44:0;;;;;;46684:49;;;;;;;;;;;;;;;;46750:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;46800:66:0;;;;-1:-1:-1;;;46850:15:0;46800:66;;;;;;;;;;46750:25;46947:23;;;46991:4;:23;;;;-1:-1:-1;;;;;;46999:13:0;;13186:19;:23;;46999:15;46987:641;;;47035:314;47066:38;;47091:12;;-1:-1:-1;;;;;47066:38:0;;;47083:1;;47066:38;;47083:1;;47066:38;47132:69;47171:1;47175:2;47179:14;;;;;;47195:5;47132:30;:69::i;:::-;47127:174;;47237:40;;-1:-1:-1;;;47237:40:0;;;;;;;;;;;47127:174;47344:3;47328:12;:19;;47035:314;;47430:12;47413:13;;:29;47409:43;;47444:8;;;47409:43;46987:641;;;47493:120;47524:40;;47549:14;;;;;-1:-1:-1;;;;;47524:40:0;;;47541:1;;47524:40;;47541:1;;47524:40;47608:3;47592:12;:19;;47493:120;;46987:641;-1:-1:-1;47642:13:0;:28;47692:60;44277:369;4431:1308;4512:7;4521:12;4746:9;:16;4766:2;4746:22;4742:990;;;5042:4;5027:20;;5021:27;5092:4;5077:20;;5071:27;5150:4;5135:20;;5129:27;4785:9;5121:36;5193:25;5204:4;5121:36;5021:27;5071;5193:10;:25::i;:::-;5186:32;;;;;;;;;4742:990;5240:9;:16;5260:2;5240:22;5236:496;;;5515:4;5500:20;;5494:27;5566:4;5551:20;;5545:27;5608:23;5619:4;5494:27;5545;5608:10;:23::i;:::-;5601:30;;;;;;;;5236:496;-1:-1:-1;5680:1:0;;-1:-1:-1;5684:35:0;5236:496;4431:1308;;;;;:::o;2702:643::-;2780:20;2771:5;:29;;;;;;-1:-1:-1;;;2771:29:0;;;;;;;;;;2767:571;;;2702:643;:::o;2767:571::-;2878:29;2869:5;:38;;;;;;-1:-1:-1;;;2869:38:0;;;;;;;;;;2865:473;;;2924:34;;-1:-1:-1;;;2924:34:0;;10701:2:1;2924:34:0;;;10683:21:1;10740:2;10720:18;;;10713:30;-1:-1:-1;;;10759:18:1;;;10752:54;10823:18;;2924:34:0;10673:174:1;2865:473:0;2989:35;2980:5;:44;;;;;;-1:-1:-1;;;2980:44:0;;;;;;;;;;2976:362;;;3041:41;;-1:-1:-1;;;3041:41:0;;11754:2:1;3041:41:0;;;11736:21:1;11793:2;11773:18;;;11766:30;11832:33;11812:18;;;11805:61;11883:18;;3041:41:0;11726:181:1;2976:362:0;3113:30;3104:5;:39;;;;;;-1:-1:-1;;;3104:39:0;;;;;;;;;;3100:238;;;3160:44;;-1:-1:-1;;;3160:44:0;;13629:2:1;3160:44:0;;;13611:21:1;13668:2;13648:18;;;13641:30;13707:34;13687:18;;;13680:62;-1:-1:-1;;;13758:18:1;;;13751:32;13800:19;;3160:44:0;13601:224:1;3100:238:0;3235:30;3226:5;:39;;;;;;-1:-1:-1;;;3226:39:0;;;;;;;;;;3222:116;;;3282:44;;-1:-1:-1;;;3282:44:0;;15446:2:1;3282:44:0;;;15428:21:1;15485:2;15465:18;;;15458:30;15524:34;15504:18;;;15497:62;-1:-1:-1;;;15575:18:1;;;15568:32;15617:19;;3282:44:0;15418:224:1;7993:1632:0;8124:7;;9058:66;9045:79;;9041:163;;;-1:-1:-1;9157:1:0;;-1:-1:-1;9161:30:0;9141:51;;9041:163;9218:1;:7;;9223:2;9218:7;;:18;;;;;9229:1;:7;;9234:2;9229:7;;9218:18;9214:102;;;-1:-1:-1;9269:1:0;;-1:-1:-1;9273:30:0;9253:51;;9214:102;9430:24;;;9413:14;9430:24;;;;;;;;;9502:25:1;;;9575:4;9563:17;;9543:18;;;9536:45;;;;9597:18;;;9590:34;;;9640:18;;;9633:34;;;9430:24:0;;9474:19:1;;9430:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9430:24:0;;-1:-1:-1;;9430:24:0;;;-1:-1:-1;;;;;;;9469:20:0;;9465:103;;9522:1;9526:29;9506:50;;;;;;;9465:103;9588:6;-1:-1:-1;9596:20:0;;-1:-1:-1;7993:1632:0;;;;;;;;:::o;7035:344::-;7149:7;;-1:-1:-1;;;;;7195:80:0;;7149:7;7302:25;7318:3;7303:18;;;7325:2;7302:25;:::i;:::-;7286:42;;7346:25;7357:4;7363:1;7366;7369;7346:10;:25::i;:::-;7339:32;;;;;;7035:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:228::-;870:5;923:3;916:4;908:6;904:17;900:27;890:2;;945:5;938;931:20;890:2;971:79;1046:3;1037:6;1024:20;1017:4;1009:6;1005:17;971:79;:::i;:::-;962:88;880:176;-1:-1:-1;;;880:176:1:o;1061:196::-;1120:6;1173:2;1161:9;1152:7;1148:23;1144:32;1141:2;;;1194:6;1186;1179:22;1141:2;1222:29;1241:9;1222:29;:::i;1262:270::-;1330:6;1338;1391:2;1379:9;1370:7;1366:23;1362:32;1359:2;;;1412:6;1404;1397:22;1359:2;1440:29;1459:9;1440:29;:::i;:::-;1430:39;;1488:38;1522:2;1511:9;1507:18;1488:38;:::i;:::-;1478:48;;1349:183;;;;;:::o;1537:338::-;1614:6;1622;1630;1683:2;1671:9;1662:7;1658:23;1654:32;1651:2;;;1704:6;1696;1689:22;1651:2;1732:29;1751:9;1732:29;:::i;:::-;1722:39;;1780:38;1814:2;1803:9;1799:18;1780:38;:::i;:::-;1770:48;;1865:2;1854:9;1850:18;1837:32;1827:42;;1641:234;;;;;:::o;1880:557::-;1975:6;1983;1991;1999;2052:3;2040:9;2031:7;2027:23;2023:33;2020:2;;;2074:6;2066;2059:22;2020:2;2102:29;2121:9;2102:29;:::i;:::-;2092:39;;2150:38;2184:2;2173:9;2169:18;2150:38;:::i;:::-;2140:48;;2235:2;2224:9;2220:18;2207:32;2197:42;;2290:2;2279:9;2275:18;2262:32;-1:-1:-1;;;;;2309:6:1;2306:30;2303:2;;;2354:6;2346;2339:22;2303:2;2382:49;2423:7;2414:6;2403:9;2399:22;2382:49;:::i;:::-;2372:59;;;2010:427;;;;;;;:::o;2442:367::-;2507:6;2515;2568:2;2556:9;2547:7;2543:23;2539:32;2536:2;;;2589:6;2581;2574:22;2536:2;2617:29;2636:9;2617:29;:::i;:::-;2607:39;;2696:2;2685:9;2681:18;2668:32;2743:5;2736:13;2729:21;2722:5;2719:32;2709:2;;2770:6;2762;2755:22;2709:2;2798:5;2788:15;;;2526:283;;;;;:::o;2814:264::-;2882:6;2890;2943:2;2931:9;2922:7;2918:23;2914:32;2911:2;;;2964:6;2956;2949:22;2911:2;2992:29;3011:9;2992:29;:::i;:::-;2982:39;3068:2;3053:18;;;;3040:32;;-1:-1:-1;;;2901:177:1:o;3083:255::-;3141:6;3194:2;3182:9;3173:7;3169:23;3165:32;3162:2;;;3215:6;3207;3200:22;3162:2;3259:9;3246:23;3278:30;3302:5;3278:30;:::i;3343:259::-;3412:6;3465:2;3453:9;3444:7;3440:23;3436:32;3433:2;;;3486:6;3478;3471:22;3433:2;3523:9;3517:16;3542:30;3566:5;3542:30;:::i;3607:287::-;3677:6;3730:2;3718:9;3709:7;3705:23;3701:32;3698:2;;;3751:6;3743;3736:22;3698:2;3795:9;3782:23;3834:1;3827:5;3824:12;3814:2;;3855:6;3847;3840:22;3899:480;3968:6;4021:2;4009:9;4000:7;3996:23;3992:32;3989:2;;;4042:6;4034;4027:22;3989:2;4087:9;4074:23;-1:-1:-1;;;;;4112:6:1;4109:30;4106:2;;;4157:6;4149;4142:22;4106:2;4185:22;;4238:4;4230:13;;4226:27;-1:-1:-1;4216:2:1;;4272:6;4264;4257:22;4216:2;4300:73;4365:7;4360:2;4347:16;4342:2;4338;4334:11;4300:73;:::i;4384:190::-;4443:6;4496:2;4484:9;4475:7;4471:23;4467:32;4464:2;;;4517:6;4509;4502:22;4464:2;-1:-1:-1;4545:23:1;;4454:120;-1:-1:-1;4454:120:1:o;4579:476::-;4665:6;4673;4681;4734:2;4722:9;4713:7;4709:23;4705:32;4702:2;;;4755:6;4747;4740:22;4702:2;4796:9;4783:23;4773:33;;4853:2;4842:9;4838:18;4825:32;4815:42;;4908:2;4897:9;4893:18;4880:32;-1:-1:-1;;;;;4927:6:1;4924:30;4921:2;;;4972:6;4964;4957:22;4921:2;5000:49;5041:7;5032:6;5021:9;5017:22;5000:49;:::i;:::-;4990:59;;;4692:363;;;;;:::o;5060:842::-;5154:6;5162;5206:9;5197:7;5193:23;5236:3;5232:2;5228:12;5225:2;;;5258:6;5250;5243:22;5225:2;5286:23;;;-1:-1:-1;5343:4:1;-1:-1:-1;;5325:16:1;;5321:27;5318:2;;;5366:6;5358;5351:22;5318:2;;5404;5398:9;5446:4;5438:6;5434:17;5517:6;5505:10;5502:22;-1:-1:-1;;;;;5469:10:1;5466:34;5463:62;5460:2;;;5528:18;;:::i;:::-;5568:10;5564:2;5557:22;;5631:2;5620:9;5616:18;5603:32;5595:6;5588:48;5697:2;5686:9;5682:18;5669:32;5664:2;5656:6;5652:15;5645:57;5752:4;5741:9;5737:20;5724:34;5798:4;5791:5;5787:16;5780:5;5777:27;5767:2;;5823:6;5815;5808:22;5767:2;5860;5848:15;;5841:30;5173:729;;5852:6;;-1:-1:-1;5173:729:1;;-1:-1:-1;;5173:729:1:o;5907:257::-;5948:3;5986:5;5980:12;6013:6;6008:3;6001:19;6029:63;6085:6;6078:4;6073:3;6069:14;6062:4;6055:5;6051:16;6029:63;:::i;:::-;6146:2;6125:15;-1:-1:-1;;6121:29:1;6112:39;;;;6153:4;6108:50;;5956:208;-1:-1:-1;;5956:208:1:o;6169:185::-;6211:3;6249:5;6243:12;6264:52;6309:6;6304:3;6297:4;6290:5;6286:16;6264:52;:::i;:::-;6332:16;;;;;6219:135;-1:-1:-1;;6219:135:1:o;6477:1305::-;6754:3;6783;6818:6;6812:13;6848:3;6870:1;6898:9;6894:2;6890:18;6880:28;;6958:2;6947:9;6943:18;6980;6970:2;;7024:4;7016:6;7012:17;7002:27;;6970:2;7050;7098;7090:6;7087:14;7067:18;7064:38;7061:2;;;-1:-1:-1;;;7125:33:1;;7181:4;7178:1;7171:15;7211:4;7132:3;7199:17;7061:2;7242:18;7269:104;;;;7387:1;7382:322;;;;7235:469;;7269:104;-1:-1:-1;;7302:24:1;;7290:37;;7347:16;;;;-1:-1:-1;7269:104:1;;7382:322;18938:4;18957:17;;;19007:4;18991:21;;7477:3;7493:165;7507:6;7504:1;7501:13;7493:165;;;7585:14;;7572:11;;;7565:35;7628:16;;;;7522:10;;7493:165;;;7497:3;;7687:6;7682:3;7678:16;7671:23;;7235:469;;;;;;;7720:56;7745:30;7771:3;7763:6;7745:30;:::i;:::-;-1:-1:-1;;;6419:20:1;;6464:1;6455:11;;6409:63;7720:56;7713:63;6762:1020;-1:-1:-1;;;;;6762:1020:1:o;8590:488::-;-1:-1:-1;;;;;8859:15:1;;;8841:34;;8911:15;;8906:2;8891:18;;8884:43;8958:2;8943:18;;8936:34;;;9006:3;9001:2;8986:18;;8979:31;;;8784:4;;9027:45;;9052:19;;9044:6;9027:45;:::i;:::-;9019:53;8793:285;-1:-1:-1;;;;;;8793:285:1:o;9678:345::-;9855:2;9840:18;;9888:1;9877:13;;9867:2;;9894:18;;:::i;:::-;9923:25;;;-1:-1:-1;;;;;9984:32:1;;;;9979:2;9964:18;;;9957:60;9822:201;:::o;10028:242::-;10171:2;10156:18;;10204:1;10193:13;;10183:2;;10210:18;;:::i;:::-;10239:25;;;10138:132;:::o;10275:219::-;10424:2;10413:9;10406:21;10387:4;10444:44;10484:2;10473:9;10469:18;10461:6;10444:44;:::i;10852:344::-;11054:2;11036:21;;;11093:2;11073:18;;;11066:30;-1:-1:-1;;;11127:2:1;11112:18;;11105:50;11187:2;11172:18;;11026:170::o;12673:344::-;12875:2;12857:21;;;12914:2;12894:18;;;12887:30;-1:-1:-1;;;12948:2:1;12933:18;;12926:50;13008:2;12993:18;;12847:170::o;13022:400::-;13224:2;13206:21;;;13263:2;13243:18;;;13236:30;13302:34;13297:2;13282:18;;13275:62;-1:-1:-1;;;13368:2:1;13353:18;;13346:34;13412:3;13397:19;;13196:226::o;14179:354::-;14381:2;14363:21;;;14420:2;14400:18;;;14393:30;14459:32;14454:2;14439:18;;14432:60;14524:2;14509:18;;14353:180::o;16051:348::-;16253:2;16235:21;;;16292:2;16272:18;;;16265:30;16331:26;16326:2;16311:18;;16304:54;16390:2;16375:18;;16225:174::o;16404:356::-;16606:2;16588:21;;;16625:18;;;16618:30;16684:34;16679:2;16664:18;;16657:62;16751:2;16736:18;;16578:182::o;19023:128::-;19063:3;19094:1;19090:6;19087:1;19084:13;19081:2;;;19100:18;;:::i;:::-;-1:-1:-1;19136:9:1;;19071:80::o;19156:120::-;19196:1;19222;19212:2;;19227:18;;:::i;:::-;-1:-1:-1;19261:9:1;;19202:74::o;19281:168::-;19321:7;19387:1;19383;19379:6;19375:14;19372:1;19369:21;19364:1;19357:9;19350:17;19346:45;19343:2;;;19394:18;;:::i;:::-;-1:-1:-1;19434:9:1;;19333:116::o;19454:125::-;19494:4;19522:1;19519;19516:8;19513:2;;;19527:18;;:::i;:::-;-1:-1:-1;19564:9:1;;19503:76::o;19584:258::-;19656:1;19666:113;19680:6;19677:1;19674:13;19666:113;;;19756:11;;;19750:18;19737:11;;;19730:39;19702:2;19695:10;19666:113;;;19797:6;19794:1;19791:13;19788:2;;;-1:-1:-1;;19832:1:1;19814:16;;19807:27;19637:205::o;19847:380::-;19926:1;19922:12;;;;19969;;;19990:2;;20044:4;20036:6;20032:17;20022:27;;19990:2;20097;20089:6;20086:14;20066:18;20063:38;20060:2;;;20143:10;20138:3;20134:20;20131:1;20124:31;20178:4;20175:1;20168:15;20206:4;20203:1;20196:15;20060:2;;19902:325;;;:::o;20232:135::-;20271:3;-1:-1:-1;;20292:17:1;;20289:2;;;20312:18;;:::i;:::-;-1:-1:-1;20359:1:1;20348:13;;20279:88::o;20372:112::-;20404:1;20430;20420:2;;20435:18;;:::i;:::-;-1:-1:-1;20469:9:1;;20410:74::o;20489:127::-;20550:10;20545:3;20541:20;20538:1;20531:31;20581:4;20578:1;20571:15;20605:4;20602:1;20595:15;20621:127;20682:10;20677:3;20673:20;20670:1;20663:31;20713:4;20710:1;20703:15;20737:4;20734:1;20727:15;20753:127;20814:10;20809:3;20805:20;20802:1;20795:31;20845:4;20842:1;20835:15;20869:4;20866:1;20859:15;20885:127;20946:10;20941:3;20937:20;20934:1;20927:31;20977:4;20974:1;20967:15;21001:4;20998:1;20991:15;21017:131;-1:-1:-1;;;;;;21091:32:1;;21081:43;;21071:2;;21138:1;21135;21128:12

Swarm Source

ipfs://00d250f0142c94daa59859781543a5f1ee375c4a64ae47a7148add5de30236d7
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.