ETH Price: $3,438.98 (-1.30%)

UpcomingNFT (UpcomingNFT)
 

Overview

TokenID

1081

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
UpcomingNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-26
*/

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.3) (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) {
        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.
            /// @solidity memory-safe-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 {
            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/Context.sol



pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/UpcomingNFTNew.sol



pragma solidity >= 0.0.5 < 0.8.16;





contract UpcomingNFT is ERC721A, Ownable {
    using Strings for uint256;
    bytes32 public root = "";
    uint256 public MAX_SUPPLY = 10000;
    uint256 public MINT_PER_WALLET = 5;
    uint256 public WL_MINT_PRICE = 0.09 ether;
    uint256 public PUBLIC_MINT_PRICE = 0.15 ether;
    uint256 public OWNER_MINT_PRICE = 0.00 ether;
    uint256 public stage = 0;
    address public constant receivingWallet = 0x5c7fcE16Aef068CC7d35CB8D9a880dd36809bf72;
    
    string public tokenBaseUrl = "https://ipfs.io/ipfs/bafybeic7wpynnie42hts4cwf4mwxccdrgskxdvll7m5fviw64eypnan2iu/assets/";
    string public tokenUrlSuffix = ".json";

    constructor () ERC721A("UpcomingNFT", "UpcomingNFT") {
    }

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

    function isValid(bytes32[] memory _proof, bytes32 _leaf) public view returns (bool) {
        return MerkleProof.verify(_proof, root, _leaf);
    }

    function _suffix() internal view virtual returns (string memory) {
        return tokenUrlSuffix;
    }

    function setRoot(bytes32 _root) external onlyOwner {
        root = _root;
    }

    function setPerWallet(uint256 _wallets) external onlyOwner {
        MINT_PER_WALLET = _wallets;
    }

    function setStage(uint256 _stage) external onlyOwner {
        stage = _stage;
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        PUBLIC_MINT_PRICE = _mintPrice;
    }

    function setWLPrice(uint256 _mintPrice) external onlyOwner {
        WL_MINT_PRICE = _mintPrice;
    }

    function setOPPrice(uint256 _mintPrice) external onlyOwner {
        OWNER_MINT_PRICE = _mintPrice;
    }
    
    function setmaxSupply(uint256 _maxSupply) external onlyOwner {
        MAX_SUPPLY = _maxSupply;
    }
    
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        if (!_exists(_tokenId)) revert URIQueryForNonexistentToken();
        
        string memory baseURI = _baseURI();
        string memory suffix = _suffix();
        
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(_tokenId), suffix)) : '';
    }

    function mint(uint256 _numTokens) external payable onlyOrigin mintCompliance(_numTokens) {
        _safeMint(msg.sender, _numTokens);
        (bool os, ) = receivingWallet.call{value: msg.value}("");
        require(os);
    }

    function WhitelistMint(uint256 _numTokens, bytes32[] memory _proof) external payable onlyOrigin wlmintCompliance(_numTokens) {
        require(isValid(_proof , keccak256(abi.encodePacked(msg.sender))), "Not a valid Allowist.");
        _safeMint(msg.sender, _numTokens);
        (bool os, ) = receivingWallet.call{value: msg.value}("");
        require(os);
    }

    function ownerMint(address _to, uint256 _numTokens) external payable onlyOrigin ownermintCompliance(_numTokens, _to) onlyOwner {
        _safeMint(_to, _numTokens);
        (bool os, ) = receivingWallet.call{value: msg.value}("");
        require(os);
    }

    function setTokenBaseUrl(string memory _tokenBaseUrl) public onlyOwner {
        tokenBaseUrl = _tokenBaseUrl;
    }

    function setTokenSuffix(string memory _tokenUrlSuffix) public onlyOwner {
        tokenUrlSuffix = _tokenUrlSuffix;
    }
    
    function transferETH(address payable _to) external onlyOwner {
        _to.transfer(address(this).balance);
    }

    // - modifiers

    modifier onlyOrigin() {
        // disallow access from contracts
        require(msg.sender == tx.origin, "Come on!!!");
        _;
    }

    modifier wlmintCompliance(uint256 _numTokens) {
        require(stage == 1, "Whitelist is paused.");
        require(_numTokens > 0, "You must mint at least one token.");
        require(msg.value == (PUBLIC_MINT_PRICE * _numTokens), "Value supplied is incorrect");
        require(totalSupply() + _numTokens < MAX_SUPPLY, "Max supply exceeded!");
        require(_numberMinted(msg.sender) + _numTokens < MINT_PER_WALLET + 1,"You are exceeding your minting limit");
        _;
    }

    modifier mintCompliance(uint256 _numTokens) {
        require(stage == 2, "Public Minting is paused.");
        require(_numTokens > 0, "You must mint at least one token.");
        require(msg.value == (PUBLIC_MINT_PRICE * _numTokens), "Value supplied is incorrect");
        require(totalSupply() + _numTokens < MAX_SUPPLY, "Max supply exceeded!");
        require(_numberMinted(msg.sender) + _numTokens < MINT_PER_WALLET + 1,"You are exceeding your minting limit");
        _;
    }

    modifier ownermintCompliance(uint256 _numTokens, address to) {
        require(stage > 0, "Minting is paused.");
        require(_numTokens > 0, "You must mint at least one token.");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"WhitelistMint","outputs":[],"stateMutability":"payable","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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"bytes32","name":"_leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_numTokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receivingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setOPPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wallets","type":"uint256"}],"name":"setPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stage","type":"uint256"}],"name":"setStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseUrl","type":"string"}],"name":"setTokenBaseUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenUrlSuffix","type":"string"}],"name":"setTokenSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setWLPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"tokenBaseUrl","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":"tokenUrlSuffix","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 payable","name":"_to","type":"address"}],"name":"transferETH","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600955612710600a556005600b5567013fbe85edc90000600c55670214e8348c4f0000600d556000600e556000600f556040518060800160405280605881526020016200442360589139601090805190602001906200006792919062000273565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060119080519060200190620000b592919062000273565b50348015620000c357600080fd5b506040518060400160405280600b81526020017f5570636f6d696e674e46540000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f5570636f6d696e674e465400000000000000000000000000000000000000000081525081600290805190602001906200014892919062000273565b5080600390805190602001906200016192919062000273565b5062000172620001a060201b60201c565b60008190555050506200019a6200018e620001a560201b60201c565b620001ad60201b60201c565b62000388565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002819062000323565b90600052602060002090601f016020900481019282620002a55760008555620002f1565b82601f10620002c057805160ff1916838001178555620002f1565b82800160010185558215620002f1579182015b82811115620002f0578251825591602001919060010190620002d3565b5b50905062000300919062000304565b5090565b5b808211156200031f57600081600090555060010162000305565b5090565b600060028204905060018216806200033c57607f821691505b6020821081141562000353576200035262000359565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61408b80620003986000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063bc8ffe95116100b6578063dab5f3401161007a578063dab5f3401461083f578063e985e9c514610868578063ebf0c717146108a5578063f2fde38b146108d0578063f4a0a528146108f9578063f6a5b8e61461092257610246565b8063bc8ffe951461075c578063c040e6b814610785578063c87b56dd146107b0578063cf00b563146107ed578063d50f6bf01461081657610246565b806395d89b41116100fd57806395d89b4114610686578063a0712d68146106b1578063a22cb465146106cd578063b88d4fde146106f6578063b8a20ed01461071f57610246565b806370a08231146105b1578063715018a6146105ee578063738170a41461060557806388089f0b146106305780638da5cb5b1461065b57610246565b806332cb6b0c116101c75780634fff968a1161018b5780634fff968a146104ca578063594d3a50146104f55780636352211e146105205780636bde26271461055d5780636ea0061b1461058857610246565b806332cb6b0c146104065780633eb1d7771461043157806342842e0e1461045a57806346419b1614610483578063484b973c146104ae57610246565b8063095ea7b31161020e578063095ea7b3146103375780630ef6a94b1461036057806318160ddd14610389578063228025e8146103b457806323b872dd146103dd57610246565b806301ffc9a71461024b578063041e4680146102885780630528a65b146102b357806306fdde03146102cf578063081812fc146102fa575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906132ec565b61094b565b60405161027f919061377a565b60405180910390f35b34801561029457600080fd5b5061029d6109dd565b6040516102aa91906137b0565b60405180910390f35b6102cd60048036038101906102c891906133bc565b610a6b565b005b3480156102db57600080fd5b506102e4610d73565b6040516102f191906137b0565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c919061338f565b610e05565b60405161032e9190613713565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190613223565b610e84565b005b34801561036c57600080fd5b5061038760048036038101906103829190613346565b610fc8565b005b34801561039557600080fd5b5061039e61105e565b6040516103ab9190613932565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d6919061338f565b611075565b005b3480156103e957600080fd5b5061040460048036038101906103ff919061310d565b6110fb565b005b34801561041257600080fd5b5061041b611420565b6040516104289190613932565b60405180910390f35b34801561043d57600080fd5b506104586004803603810190610453919061338f565b611426565b005b34801561046657600080fd5b50610481600480360381019061047c919061310d565b6114ac565b005b34801561048f57600080fd5b506104986114cc565b6040516104a591906137b0565b60405180910390f35b6104c860048036038101906104c39190613223565b61155a565b005b3480156104d657600080fd5b506104df611769565b6040516104ec9190613932565b60405180910390f35b34801561050157600080fd5b5061050a61176f565b6040516105179190613932565b60405180910390f35b34801561052c57600080fd5b506105476004803603810190610542919061338f565b611775565b6040516105549190613713565b60405180910390f35b34801561056957600080fd5b50610572611787565b60405161057f9190613932565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613346565b61178d565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613073565b611823565b6040516105e59190613932565b60405180910390f35b3480156105fa57600080fd5b506106036118dc565b005b34801561061157600080fd5b5061061a611964565b6040516106279190613713565b60405180910390f35b34801561063c57600080fd5b5061064561197c565b6040516106529190613932565b60405180910390f35b34801561066757600080fd5b50610670611982565b60405161067d9190613713565b60405180910390f35b34801561069257600080fd5b5061069b6119ac565b6040516106a891906137b0565b60405180910390f35b6106cb60048036038101906106c6919061338f565b611a3e565b005b3480156106d957600080fd5b506106f460048036038101906106ef91906131e3565b611cd6565b005b34801561070257600080fd5b5061071d60048036038101906107189190613160565b611e4e565b005b34801561072b57600080fd5b5061074660048036038101906107419190613263565b611ec1565b604051610753919061377a565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e919061338f565b611ed8565b005b34801561079157600080fd5b5061079a611f5e565b6040516107a79190613932565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d2919061338f565b611f64565b6040516107e491906137b0565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f919061338f565b612012565b005b34801561082257600080fd5b5061083d600480360381019061083891906130a0565b612098565b005b34801561084b57600080fd5b50610866600480360381019061086191906132bf565b61215e565b005b34801561087457600080fd5b5061088f600480360381019061088a91906130cd565b6121e4565b60405161089c919061377a565b60405180910390f35b3480156108b157600080fd5b506108ba612278565b6040516108c79190613795565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f29190613073565b61227e565b005b34801561090557600080fd5b50610920600480360381019061091b919061338f565b612376565b005b34801561092e57600080fd5b506109496004803603810190610944919061338f565b6123fc565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b601080546109ea90613bd0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1690613bd0565b8015610a635780601f10610a3857610100808354040283529160200191610a63565b820191906000526020600020905b815481529060010190602001808311610a4657829003601f168201915b505050505081565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906138d2565b60405180910390fd5b816001600f5414610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690613852565b60405180910390fd5b60008111610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b59906138f2565b60405180910390fd5b80600d54610b709190613aa4565b3414610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890613892565b60405180910390fd5b600a5481610bbd61105e565b610bc79190613a4e565b10610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906138b2565b60405180910390fd5b6001600b54610c169190613a4e565b81610c2033612482565b610c2a9190613a4e565b10610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6190613912565b60405180910390fd5b610c9a8233604051602001610c7f91906136b2565b60405160208183030381529060405280519060200120611ec1565b610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090613832565b60405180910390fd5b610ce333846124d9565b6000735c7fce16aef068cc7d35cb8d9a880dd36809bf7273ffffffffffffffffffffffffffffffffffffffff1634604051610d1d906136fe565b60006040518083038185875af1925050503d8060008114610d5a576040519150601f19603f3d011682016040523d82523d6000602084013e610d5f565b606091505b5050905080610d6d57600080fd5b50505050565b606060028054610d8290613bd0565b80601f0160208091040260200160405190810160405280929190818152602001828054610dae90613bd0565b8015610dfb5780601f10610dd057610100808354040283529160200191610dfb565b820191906000526020600020905b815481529060010190602001808311610dde57829003601f168201915b5050505050905090565b6000610e10826124f7565b610e46576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e8f82611775565b90508073ffffffffffffffffffffffffffffffffffffffff16610eb0612556565b73ffffffffffffffffffffffffffffffffffffffff1614610f1357610edc81610ed7612556565b6121e4565b610f12576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610fd061255e565b73ffffffffffffffffffffffffffffffffffffffff16610fee611982565b73ffffffffffffffffffffffffffffffffffffffff1614611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b90613872565b60405180910390fd5b806011908051906020019061105a929190612dbf565b5050565b6000611068612566565b6001546000540303905090565b61107d61255e565b73ffffffffffffffffffffffffffffffffffffffff1661109b611982565b73ffffffffffffffffffffffffffffffffffffffff16146110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890613872565b60405180910390fd5b80600a8190555050565b60006111068261256b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461116d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061117984612639565b9150915061118f818761118a612556565b612660565b6111db576111a48661119f612556565b6121e4565b6111da576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611242576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61124f86868660016126a4565b801561125a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611328856113048888876126aa565b7c0200000000000000000000000000000000000000000000000000000000176126d2565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156113b05760006001850190506000600460008381526020019081526020016000205414156113ae5760005481146113ad578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461141886868660016126fd565b505050505050565b600a5481565b61142e61255e565b73ffffffffffffffffffffffffffffffffffffffff1661144c611982565b73ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990613872565b60405180910390fd5b80600f8190555050565b6114c783838360405180602001604052806000815250611e4e565b505050565b601180546114d990613bd0565b80601f016020809104026020016040519081016040528092919081815260200182805461150590613bd0565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b505050505081565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf906138d2565b60405180910390fd5b80826000600f541161160f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611606906137d2565b60405180910390fd5b60008211611652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611649906138f2565b60405180910390fd5b61165a61255e565b73ffffffffffffffffffffffffffffffffffffffff16611678611982565b73ffffffffffffffffffffffffffffffffffffffff16146116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613872565b60405180910390fd5b6116d884846124d9565b6000735c7fce16aef068cc7d35cb8d9a880dd36809bf7273ffffffffffffffffffffffffffffffffffffffff1634604051611712906136fe565b60006040518083038185875af1925050503d806000811461174f576040519150601f19603f3d011682016040523d82523d6000602084013e611754565b606091505b505090508061176257600080fd5b5050505050565b600b5481565b600e5481565b60006117808261256b565b9050919050565b600d5481565b61179561255e565b73ffffffffffffffffffffffffffffffffffffffff166117b3611982565b73ffffffffffffffffffffffffffffffffffffffff1614611809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180090613872565b60405180910390fd5b806010908051906020019061181f929190612dbf565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561188b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118e461255e565b73ffffffffffffffffffffffffffffffffffffffff16611902611982565b73ffffffffffffffffffffffffffffffffffffffff1614611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90613872565b60405180910390fd5b6119626000612703565b565b735c7fce16aef068cc7d35cb8d9a880dd36809bf7281565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546119bb90613bd0565b80601f01602080910402602001604051908101604052809291908181526020018280546119e790613bd0565b8015611a345780601f10611a0957610100808354040283529160200191611a34565b820191906000526020600020905b815481529060010190602001808311611a1757829003601f168201915b5050505050905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa3906138d2565b60405180910390fd5b806002600f5414611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906137f2565b60405180910390fd5b60008111611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c906138f2565b60405180910390fd5b80600d54611b439190613aa4565b3414611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b90613892565b60405180910390fd5b600a5481611b9061105e565b611b9a9190613a4e565b10611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd1906138b2565b60405180910390fd5b6001600b54611be99190613a4e565b81611bf333612482565b611bfd9190613a4e565b10611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613912565b60405180910390fd5b611c4733836124d9565b6000735c7fce16aef068cc7d35cb8d9a880dd36809bf7273ffffffffffffffffffffffffffffffffffffffff1634604051611c81906136fe565b60006040518083038185875af1925050503d8060008114611cbe576040519150601f19603f3d011682016040523d82523d6000602084013e611cc3565b606091505b5050905080611cd157600080fd5b505050565b611cde612556565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d43576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d50612556565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dfd612556565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e42919061377a565b60405180910390a35050565b611e598484846110fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ebb57611e84848484846127c9565b611eba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000611ed08360095484612929565b905092915050565b611ee061255e565b73ffffffffffffffffffffffffffffffffffffffff16611efe611982565b73ffffffffffffffffffffffffffffffffffffffff1614611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b90613872565b60405180910390fd5b80600e8190555050565b600f5481565b6060611f6f826124f7565b611fa5576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611faf612940565b90506000611fbb6129d2565b9050600082511415611fdc5760405180602001604052806000815250612009565b81611fe685612a64565b82604051602001611ff9939291906136cd565b6040516020818303038152906040525b92505050919050565b61201a61255e565b73ffffffffffffffffffffffffffffffffffffffff16612038611982565b73ffffffffffffffffffffffffffffffffffffffff161461208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590613872565b60405180910390fd5b80600b8190555050565b6120a061255e565b73ffffffffffffffffffffffffffffffffffffffff166120be611982565b73ffffffffffffffffffffffffffffffffffffffff1614612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b90613872565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561215a573d6000803e3d6000fd5b5050565b61216661255e565b73ffffffffffffffffffffffffffffffffffffffff16612184611982565b73ffffffffffffffffffffffffffffffffffffffff16146121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d190613872565b60405180910390fd5b8060098190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60095481565b61228661255e565b73ffffffffffffffffffffffffffffffffffffffff166122a4611982565b73ffffffffffffffffffffffffffffffffffffffff16146122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190613872565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561236a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236190613812565b60405180910390fd5b61237381612703565b50565b61237e61255e565b73ffffffffffffffffffffffffffffffffffffffff1661239c611982565b73ffffffffffffffffffffffffffffffffffffffff16146123f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e990613872565b60405180910390fd5b80600d8190555050565b61240461255e565b73ffffffffffffffffffffffffffffffffffffffff16612422611982565b73ffffffffffffffffffffffffffffffffffffffff1614612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246f90613872565b60405180910390fd5b80600c8190555050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6124f3828260405180602001604052806000815250612ab4565b5050565b600081612502612566565b11158015612511575060005482105b801561254f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b6000808290508061257a612566565b11612602576000548110156126015760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156125ff575b60008114156125f55760046000836001900393508381526020019081526020016000205490506125ca565b8092505050612634565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86126c1868684612b51565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ef612556565b8786866040518563ffffffff1660e01b8152600401612811949392919061372e565b602060405180830381600087803b15801561282b57600080fd5b505af192505050801561285c57506040513d601f19601f820116820180604052508101906128599190613319565b60015b6128d6573d806000811461288c576040519150601f19603f3d011682016040523d82523d6000602084013e612891565b606091505b506000815114156128ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000826129368584612b5a565b1490509392505050565b60606010805461294f90613bd0565b80601f016020809104026020016040519081016040528092919081815260200182805461297b90613bd0565b80156129c85780601f1061299d576101008083540402835291602001916129c8565b820191906000526020600020905b8154815290600101906020018083116129ab57829003601f168201915b5050505050905090565b6060601180546129e190613bd0565b80601f0160208091040260200160405190810160405280929190818152602001828054612a0d90613bd0565b8015612a5a5780601f10612a2f57610100808354040283529160200191612a5a565b820191906000526020600020905b815481529060010190602001808311612a3d57829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115612aa057600183039250600a81066030018353600a8104905080612a9b57612aa0565b612a75565b508181036020830392508083525050919050565b612abe8383612bb0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b4c57600080549050600083820390505b612afe60008683806001019450866127c9565b612b34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612aeb578160005414612b4957600080fd5b50505b505050565b60009392505050565b60008082905060005b8451811015612ba557612b9082868381518110612b8357612b82613cfe565b5b6020026020010151612d6d565b91508080612b9d90613c33565b915050612b63565b508091505092915050565b6000805490506000821415612bf1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bfe60008483856126a4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612c7583612c6660008660006126aa565b612c6f85612d98565b176126d2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612d1657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612cdb565b506000821415612d52576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612d6860008483856126fd565b505050565b6000818310612d8557612d808284612da8565b612d90565b612d8f8383612da8565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612dcb90613bd0565b90600052602060002090601f016020900481019282612ded5760008555612e34565b82601f10612e0657805160ff1916838001178555612e34565b82800160010185558215612e34579182015b82811115612e33578251825591602001919060010190612e18565b5b509050612e419190612e45565b5090565b5b80821115612e5e576000816000905550600101612e46565b5090565b6000612e75612e7084613972565b61394d565b90508083825260208201905082856020860282011115612e9857612e97613d61565b5b60005b85811015612ec85781612eae8882612fc3565b845260208401935060208301925050600181019050612e9b565b5050509392505050565b6000612ee5612ee08461399e565b61394d565b905082815260208101848484011115612f0157612f00613d66565b5b612f0c848285613b8e565b509392505050565b6000612f27612f22846139cf565b61394d565b905082815260208101848484011115612f4357612f42613d66565b5b612f4e848285613b8e565b509392505050565b600081359050612f6581613fcb565b92915050565b600081359050612f7a81613fe2565b92915050565b600082601f830112612f9557612f94613d5c565b5b8135612fa5848260208601612e62565b91505092915050565b600081359050612fbd81613ff9565b92915050565b600081359050612fd281614010565b92915050565b600081359050612fe781614027565b92915050565b600081519050612ffc81614027565b92915050565b600082601f83011261301757613016613d5c565b5b8135613027848260208601612ed2565b91505092915050565b600082601f83011261304557613044613d5c565b5b8135613055848260208601612f14565b91505092915050565b60008135905061306d8161403e565b92915050565b60006020828403121561308957613088613d70565b5b600061309784828501612f56565b91505092915050565b6000602082840312156130b6576130b5613d70565b5b60006130c484828501612f6b565b91505092915050565b600080604083850312156130e4576130e3613d70565b5b60006130f285828601612f56565b925050602061310385828601612f56565b9150509250929050565b60008060006060848603121561312657613125613d70565b5b600061313486828701612f56565b935050602061314586828701612f56565b92505060406131568682870161305e565b9150509250925092565b6000806000806080858703121561317a57613179613d70565b5b600061318887828801612f56565b945050602061319987828801612f56565b93505060406131aa8782880161305e565b925050606085013567ffffffffffffffff8111156131cb576131ca613d6b565b5b6131d787828801613002565b91505092959194509250565b600080604083850312156131fa576131f9613d70565b5b600061320885828601612f56565b925050602061321985828601612fae565b9150509250929050565b6000806040838503121561323a57613239613d70565b5b600061324885828601612f56565b92505060206132598582860161305e565b9150509250929050565b6000806040838503121561327a57613279613d70565b5b600083013567ffffffffffffffff81111561329857613297613d6b565b5b6132a485828601612f80565b92505060206132b585828601612fc3565b9150509250929050565b6000602082840312156132d5576132d4613d70565b5b60006132e384828501612fc3565b91505092915050565b60006020828403121561330257613301613d70565b5b600061331084828501612fd8565b91505092915050565b60006020828403121561332f5761332e613d70565b5b600061333d84828501612fed565b91505092915050565b60006020828403121561335c5761335b613d70565b5b600082013567ffffffffffffffff81111561337a57613379613d6b565b5b61338684828501613030565b91505092915050565b6000602082840312156133a5576133a4613d70565b5b60006133b38482850161305e565b91505092915050565b600080604083850312156133d3576133d2613d70565b5b60006133e18582860161305e565b925050602083013567ffffffffffffffff81111561340257613401613d6b565b5b61340e85828601612f80565b9150509250929050565b61342181613afe565b82525050565b61343861343382613afe565b613c7c565b82525050565b61344781613b22565b82525050565b61345681613b2e565b82525050565b600061346782613a00565b6134718185613a16565b9350613481818560208601613b9d565b61348a81613d75565b840191505092915050565b60006134a082613a0b565b6134aa8185613a32565b93506134ba818560208601613b9d565b6134c381613d75565b840191505092915050565b60006134d982613a0b565b6134e38185613a43565b93506134f3818560208601613b9d565b80840191505092915050565b600061350c601283613a32565b915061351782613d93565b602082019050919050565b600061352f601983613a32565b915061353a82613dbc565b602082019050919050565b6000613552602683613a32565b915061355d82613de5565b604082019050919050565b6000613575601583613a32565b915061358082613e34565b602082019050919050565b6000613598601483613a32565b91506135a382613e5d565b602082019050919050565b60006135bb602083613a32565b91506135c682613e86565b602082019050919050565b60006135de601b83613a32565b91506135e982613eaf565b602082019050919050565b6000613601600083613a27565b915061360c82613ed8565b600082019050919050565b6000613624601483613a32565b915061362f82613edb565b602082019050919050565b6000613647600a83613a32565b915061365282613f04565b602082019050919050565b600061366a602183613a32565b915061367582613f2d565b604082019050919050565b600061368d602483613a32565b915061369882613f7c565b604082019050919050565b6136ac81613b84565b82525050565b60006136be8284613427565b60148201915081905092915050565b60006136d982866134ce565b91506136e582856134ce565b91506136f182846134ce565b9150819050949350505050565b6000613709826135f4565b9150819050919050565b60006020820190506137286000830184613418565b92915050565b60006080820190506137436000830187613418565b6137506020830186613418565b61375d60408301856136a3565b818103606083015261376f818461345c565b905095945050505050565b600060208201905061378f600083018461343e565b92915050565b60006020820190506137aa600083018461344d565b92915050565b600060208201905081810360008301526137ca8184613495565b905092915050565b600060208201905081810360008301526137eb816134ff565b9050919050565b6000602082019050818103600083015261380b81613522565b9050919050565b6000602082019050818103600083015261382b81613545565b9050919050565b6000602082019050818103600083015261384b81613568565b9050919050565b6000602082019050818103600083015261386b8161358b565b9050919050565b6000602082019050818103600083015261388b816135ae565b9050919050565b600060208201905081810360008301526138ab816135d1565b9050919050565b600060208201905081810360008301526138cb81613617565b9050919050565b600060208201905081810360008301526138eb8161363a565b9050919050565b6000602082019050818103600083015261390b8161365d565b9050919050565b6000602082019050818103600083015261392b81613680565b9050919050565b600060208201905061394760008301846136a3565b92915050565b6000613957613968565b90506139638282613c02565b919050565b6000604051905090565b600067ffffffffffffffff82111561398d5761398c613d2d565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139b9576139b8613d2d565b5b6139c282613d75565b9050602081019050919050565b600067ffffffffffffffff8211156139ea576139e9613d2d565b5b6139f382613d75565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5982613b84565b9150613a6483613b84565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9957613a98613ca0565b5b828201905092915050565b6000613aaf82613b84565b9150613aba83613b84565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613af357613af2613ca0565b5b828202905092915050565b6000613b0982613b64565b9050919050565b6000613b1b82613b64565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613bbb578082015181840152602081019050613ba0565b83811115613bca576000848401525b50505050565b60006002820490506001821680613be857607f821691505b60208210811415613bfc57613bfb613ccf565b5b50919050565b613c0b82613d75565b810181811067ffffffffffffffff82111715613c2a57613c29613d2d565b5b80604052505050565b6000613c3e82613b84565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c7157613c70613ca0565b5b600182019050919050565b6000613c8782613c8e565b9050919050565b6000613c9982613d86565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b7f5075626c6963204d696e74696e67206973207061757365642e00000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420612076616c696420416c6c6f776973742e0000000000000000000000600082015250565b7f57686974656c697374206973207061757365642e000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c756520737570706c69656420697320696e636f72726563740000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f436f6d65206f6e21212100000000000000000000000000000000000000000000600082015250565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752061726520657863656564696e6720796f7572206d696e74696e67206c60008201527f696d697400000000000000000000000000000000000000000000000000000000602082015250565b613fd481613afe565b8114613fdf57600080fd5b50565b613feb81613b10565b8114613ff657600080fd5b50565b61400281613b22565b811461400d57600080fd5b50565b61401981613b2e565b811461402457600080fd5b50565b61403081613b38565b811461403b57600080fd5b50565b61404781613b84565b811461405257600080fd5b5056fea26469706673582212204b1e748e20ab345fd9ab97a07479c68c3b602e641f21b96724987ddab57b312764736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f6261667962656963377770796e6e6965343268747334637766346d77786363647267736b7864766c6c376d356676697736346579706e616e3269752f6173736574732f

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063bc8ffe95116100b6578063dab5f3401161007a578063dab5f3401461083f578063e985e9c514610868578063ebf0c717146108a5578063f2fde38b146108d0578063f4a0a528146108f9578063f6a5b8e61461092257610246565b8063bc8ffe951461075c578063c040e6b814610785578063c87b56dd146107b0578063cf00b563146107ed578063d50f6bf01461081657610246565b806395d89b41116100fd57806395d89b4114610686578063a0712d68146106b1578063a22cb465146106cd578063b88d4fde146106f6578063b8a20ed01461071f57610246565b806370a08231146105b1578063715018a6146105ee578063738170a41461060557806388089f0b146106305780638da5cb5b1461065b57610246565b806332cb6b0c116101c75780634fff968a1161018b5780634fff968a146104ca578063594d3a50146104f55780636352211e146105205780636bde26271461055d5780636ea0061b1461058857610246565b806332cb6b0c146104065780633eb1d7771461043157806342842e0e1461045a57806346419b1614610483578063484b973c146104ae57610246565b8063095ea7b31161020e578063095ea7b3146103375780630ef6a94b1461036057806318160ddd14610389578063228025e8146103b457806323b872dd146103dd57610246565b806301ffc9a71461024b578063041e4680146102885780630528a65b146102b357806306fdde03146102cf578063081812fc146102fa575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906132ec565b61094b565b60405161027f919061377a565b60405180910390f35b34801561029457600080fd5b5061029d6109dd565b6040516102aa91906137b0565b60405180910390f35b6102cd60048036038101906102c891906133bc565b610a6b565b005b3480156102db57600080fd5b506102e4610d73565b6040516102f191906137b0565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c919061338f565b610e05565b60405161032e9190613713565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190613223565b610e84565b005b34801561036c57600080fd5b5061038760048036038101906103829190613346565b610fc8565b005b34801561039557600080fd5b5061039e61105e565b6040516103ab9190613932565b60405180910390f35b3480156103c057600080fd5b506103db60048036038101906103d6919061338f565b611075565b005b3480156103e957600080fd5b5061040460048036038101906103ff919061310d565b6110fb565b005b34801561041257600080fd5b5061041b611420565b6040516104289190613932565b60405180910390f35b34801561043d57600080fd5b506104586004803603810190610453919061338f565b611426565b005b34801561046657600080fd5b50610481600480360381019061047c919061310d565b6114ac565b005b34801561048f57600080fd5b506104986114cc565b6040516104a591906137b0565b60405180910390f35b6104c860048036038101906104c39190613223565b61155a565b005b3480156104d657600080fd5b506104df611769565b6040516104ec9190613932565b60405180910390f35b34801561050157600080fd5b5061050a61176f565b6040516105179190613932565b60405180910390f35b34801561052c57600080fd5b506105476004803603810190610542919061338f565b611775565b6040516105549190613713565b60405180910390f35b34801561056957600080fd5b50610572611787565b60405161057f9190613932565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613346565b61178d565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613073565b611823565b6040516105e59190613932565b60405180910390f35b3480156105fa57600080fd5b506106036118dc565b005b34801561061157600080fd5b5061061a611964565b6040516106279190613713565b60405180910390f35b34801561063c57600080fd5b5061064561197c565b6040516106529190613932565b60405180910390f35b34801561066757600080fd5b50610670611982565b60405161067d9190613713565b60405180910390f35b34801561069257600080fd5b5061069b6119ac565b6040516106a891906137b0565b60405180910390f35b6106cb60048036038101906106c6919061338f565b611a3e565b005b3480156106d957600080fd5b506106f460048036038101906106ef91906131e3565b611cd6565b005b34801561070257600080fd5b5061071d60048036038101906107189190613160565b611e4e565b005b34801561072b57600080fd5b5061074660048036038101906107419190613263565b611ec1565b604051610753919061377a565b60405180910390f35b34801561076857600080fd5b50610783600480360381019061077e919061338f565b611ed8565b005b34801561079157600080fd5b5061079a611f5e565b6040516107a79190613932565b60405180910390f35b3480156107bc57600080fd5b506107d760048036038101906107d2919061338f565b611f64565b6040516107e491906137b0565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f919061338f565b612012565b005b34801561082257600080fd5b5061083d600480360381019061083891906130a0565b612098565b005b34801561084b57600080fd5b50610866600480360381019061086191906132bf565b61215e565b005b34801561087457600080fd5b5061088f600480360381019061088a91906130cd565b6121e4565b60405161089c919061377a565b60405180910390f35b3480156108b157600080fd5b506108ba612278565b6040516108c79190613795565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f29190613073565b61227e565b005b34801561090557600080fd5b50610920600480360381019061091b919061338f565b612376565b005b34801561092e57600080fd5b506109496004803603810190610944919061338f565b6123fc565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b601080546109ea90613bd0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1690613bd0565b8015610a635780601f10610a3857610100808354040283529160200191610a63565b820191906000526020600020905b815481529060010190602001808311610a4657829003601f168201915b505050505081565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad0906138d2565b60405180910390fd5b816001600f5414610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1690613852565b60405180910390fd5b60008111610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b59906138f2565b60405180910390fd5b80600d54610b709190613aa4565b3414610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890613892565b60405180910390fd5b600a5481610bbd61105e565b610bc79190613a4e565b10610c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfe906138b2565b60405180910390fd5b6001600b54610c169190613a4e565b81610c2033612482565b610c2a9190613a4e565b10610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6190613912565b60405180910390fd5b610c9a8233604051602001610c7f91906136b2565b60405160208183030381529060405280519060200120611ec1565b610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090613832565b60405180910390fd5b610ce333846124d9565b6000735c7fce16aef068cc7d35cb8d9a880dd36809bf7273ffffffffffffffffffffffffffffffffffffffff1634604051610d1d906136fe565b60006040518083038185875af1925050503d8060008114610d5a576040519150601f19603f3d011682016040523d82523d6000602084013e610d5f565b606091505b5050905080610d6d57600080fd5b50505050565b606060028054610d8290613bd0565b80601f0160208091040260200160405190810160405280929190818152602001828054610dae90613bd0565b8015610dfb5780601f10610dd057610100808354040283529160200191610dfb565b820191906000526020600020905b815481529060010190602001808311610dde57829003601f168201915b5050505050905090565b6000610e10826124f7565b610e46576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e8f82611775565b90508073ffffffffffffffffffffffffffffffffffffffff16610eb0612556565b73ffffffffffffffffffffffffffffffffffffffff1614610f1357610edc81610ed7612556565b6121e4565b610f12576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610fd061255e565b73ffffffffffffffffffffffffffffffffffffffff16610fee611982565b73ffffffffffffffffffffffffffffffffffffffff1614611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b90613872565b60405180910390fd5b806011908051906020019061105a929190612dbf565b5050565b6000611068612566565b6001546000540303905090565b61107d61255e565b73ffffffffffffffffffffffffffffffffffffffff1661109b611982565b73ffffffffffffffffffffffffffffffffffffffff16146110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890613872565b60405180910390fd5b80600a8190555050565b60006111068261256b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461116d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061117984612639565b9150915061118f818761118a612556565b612660565b6111db576111a48661119f612556565b6121e4565b6111da576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611242576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61124f86868660016126a4565b801561125a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611328856113048888876126aa565b7c0200000000000000000000000000000000000000000000000000000000176126d2565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156113b05760006001850190506000600460008381526020019081526020016000205414156113ae5760005481146113ad578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461141886868660016126fd565b505050505050565b600a5481565b61142e61255e565b73ffffffffffffffffffffffffffffffffffffffff1661144c611982565b73ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990613872565b60405180910390fd5b80600f8190555050565b6114c783838360405180602001604052806000815250611e4e565b505050565b601180546114d990613bd0565b80601f016020809104026020016040519081016040528092919081815260200182805461150590613bd0565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b505050505081565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf906138d2565b60405180910390fd5b80826000600f541161160f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611606906137d2565b60405180910390fd5b60008211611652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611649906138f2565b60405180910390fd5b61165a61255e565b73ffffffffffffffffffffffffffffffffffffffff16611678611982565b73ffffffffffffffffffffffffffffffffffffffff16146116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613872565b60405180910390fd5b6116d884846124d9565b6000735c7fce16aef068cc7d35cb8d9a880dd36809bf7273ffffffffffffffffffffffffffffffffffffffff1634604051611712906136fe565b60006040518083038185875af1925050503d806000811461174f576040519150601f19603f3d011682016040523d82523d6000602084013e611754565b606091505b505090508061176257600080fd5b5050505050565b600b5481565b600e5481565b60006117808261256b565b9050919050565b600d5481565b61179561255e565b73ffffffffffffffffffffffffffffffffffffffff166117b3611982565b73ffffffffffffffffffffffffffffffffffffffff1614611809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180090613872565b60405180910390fd5b806010908051906020019061181f929190612dbf565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561188b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6118e461255e565b73ffffffffffffffffffffffffffffffffffffffff16611902611982565b73ffffffffffffffffffffffffffffffffffffffff1614611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90613872565b60405180910390fd5b6119626000612703565b565b735c7fce16aef068cc7d35cb8d9a880dd36809bf7281565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546119bb90613bd0565b80601f01602080910402602001604051908101604052809291908181526020018280546119e790613bd0565b8015611a345780601f10611a0957610100808354040283529160200191611a34565b820191906000526020600020905b815481529060010190602001808311611a1757829003601f168201915b5050505050905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa3906138d2565b60405180910390fd5b806002600f5414611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906137f2565b60405180910390fd5b60008111611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c906138f2565b60405180910390fd5b80600d54611b439190613aa4565b3414611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b90613892565b60405180910390fd5b600a5481611b9061105e565b611b9a9190613a4e565b10611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd1906138b2565b60405180910390fd5b6001600b54611be99190613a4e565b81611bf333612482565b611bfd9190613a4e565b10611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613912565b60405180910390fd5b611c4733836124d9565b6000735c7fce16aef068cc7d35cb8d9a880dd36809bf7273ffffffffffffffffffffffffffffffffffffffff1634604051611c81906136fe565b60006040518083038185875af1925050503d8060008114611cbe576040519150601f19603f3d011682016040523d82523d6000602084013e611cc3565b606091505b5050905080611cd157600080fd5b505050565b611cde612556565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d43576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d50612556565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dfd612556565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e42919061377a565b60405180910390a35050565b611e598484846110fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ebb57611e84848484846127c9565b611eba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6000611ed08360095484612929565b905092915050565b611ee061255e565b73ffffffffffffffffffffffffffffffffffffffff16611efe611982565b73ffffffffffffffffffffffffffffffffffffffff1614611f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4b90613872565b60405180910390fd5b80600e8190555050565b600f5481565b6060611f6f826124f7565b611fa5576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611faf612940565b90506000611fbb6129d2565b9050600082511415611fdc5760405180602001604052806000815250612009565b81611fe685612a64565b82604051602001611ff9939291906136cd565b6040516020818303038152906040525b92505050919050565b61201a61255e565b73ffffffffffffffffffffffffffffffffffffffff16612038611982565b73ffffffffffffffffffffffffffffffffffffffff161461208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590613872565b60405180910390fd5b80600b8190555050565b6120a061255e565b73ffffffffffffffffffffffffffffffffffffffff166120be611982565b73ffffffffffffffffffffffffffffffffffffffff1614612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b90613872565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561215a573d6000803e3d6000fd5b5050565b61216661255e565b73ffffffffffffffffffffffffffffffffffffffff16612184611982565b73ffffffffffffffffffffffffffffffffffffffff16146121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d190613872565b60405180910390fd5b8060098190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60095481565b61228661255e565b73ffffffffffffffffffffffffffffffffffffffff166122a4611982565b73ffffffffffffffffffffffffffffffffffffffff16146122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190613872565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561236a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236190613812565b60405180910390fd5b61237381612703565b50565b61237e61255e565b73ffffffffffffffffffffffffffffffffffffffff1661239c611982565b73ffffffffffffffffffffffffffffffffffffffff16146123f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e990613872565b60405180910390fd5b80600d8190555050565b61240461255e565b73ffffffffffffffffffffffffffffffffffffffff16612422611982565b73ffffffffffffffffffffffffffffffffffffffff1614612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246f90613872565b60405180910390fd5b80600c8190555050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6124f3828260405180602001604052806000815250612ab4565b5050565b600081612502612566565b11158015612511575060005482105b801561254f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b6000808290508061257a612566565b11612602576000548110156126015760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156125ff575b60008114156125f55760046000836001900393508381526020019081526020016000205490506125ca565b8092505050612634565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86126c1868684612b51565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ef612556565b8786866040518563ffffffff1660e01b8152600401612811949392919061372e565b602060405180830381600087803b15801561282b57600080fd5b505af192505050801561285c57506040513d601f19601f820116820180604052508101906128599190613319565b60015b6128d6573d806000811461288c576040519150601f19603f3d011682016040523d82523d6000602084013e612891565b606091505b506000815114156128ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000826129368584612b5a565b1490509392505050565b60606010805461294f90613bd0565b80601f016020809104026020016040519081016040528092919081815260200182805461297b90613bd0565b80156129c85780601f1061299d576101008083540402835291602001916129c8565b820191906000526020600020905b8154815290600101906020018083116129ab57829003601f168201915b5050505050905090565b6060601180546129e190613bd0565b80601f0160208091040260200160405190810160405280929190818152602001828054612a0d90613bd0565b8015612a5a5780601f10612a2f57610100808354040283529160200191612a5a565b820191906000526020600020905b815481529060010190602001808311612a3d57829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115612aa057600183039250600a81066030018353600a8104905080612a9b57612aa0565b612a75565b508181036020830392508083525050919050565b612abe8383612bb0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612b4c57600080549050600083820390505b612afe60008683806001019450866127c9565b612b34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612aeb578160005414612b4957600080fd5b50505b505050565b60009392505050565b60008082905060005b8451811015612ba557612b9082868381518110612b8357612b82613cfe565b5b6020026020010151612d6d565b91508080612b9d90613c33565b915050612b63565b508091505092915050565b6000805490506000821415612bf1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bfe60008483856126a4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612c7583612c6660008660006126aa565b612c6f85612d98565b176126d2565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612d1657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612cdb565b506000821415612d52576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612d6860008483856126fd565b505050565b6000818310612d8557612d808284612da8565b612d90565b612d8f8383612da8565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b828054612dcb90613bd0565b90600052602060002090601f016020900481019282612ded5760008555612e34565b82601f10612e0657805160ff1916838001178555612e34565b82800160010185558215612e34579182015b82811115612e33578251825591602001919060010190612e18565b5b509050612e419190612e45565b5090565b5b80821115612e5e576000816000905550600101612e46565b5090565b6000612e75612e7084613972565b61394d565b90508083825260208201905082856020860282011115612e9857612e97613d61565b5b60005b85811015612ec85781612eae8882612fc3565b845260208401935060208301925050600181019050612e9b565b5050509392505050565b6000612ee5612ee08461399e565b61394d565b905082815260208101848484011115612f0157612f00613d66565b5b612f0c848285613b8e565b509392505050565b6000612f27612f22846139cf565b61394d565b905082815260208101848484011115612f4357612f42613d66565b5b612f4e848285613b8e565b509392505050565b600081359050612f6581613fcb565b92915050565b600081359050612f7a81613fe2565b92915050565b600082601f830112612f9557612f94613d5c565b5b8135612fa5848260208601612e62565b91505092915050565b600081359050612fbd81613ff9565b92915050565b600081359050612fd281614010565b92915050565b600081359050612fe781614027565b92915050565b600081519050612ffc81614027565b92915050565b600082601f83011261301757613016613d5c565b5b8135613027848260208601612ed2565b91505092915050565b600082601f83011261304557613044613d5c565b5b8135613055848260208601612f14565b91505092915050565b60008135905061306d8161403e565b92915050565b60006020828403121561308957613088613d70565b5b600061309784828501612f56565b91505092915050565b6000602082840312156130b6576130b5613d70565b5b60006130c484828501612f6b565b91505092915050565b600080604083850312156130e4576130e3613d70565b5b60006130f285828601612f56565b925050602061310385828601612f56565b9150509250929050565b60008060006060848603121561312657613125613d70565b5b600061313486828701612f56565b935050602061314586828701612f56565b92505060406131568682870161305e565b9150509250925092565b6000806000806080858703121561317a57613179613d70565b5b600061318887828801612f56565b945050602061319987828801612f56565b93505060406131aa8782880161305e565b925050606085013567ffffffffffffffff8111156131cb576131ca613d6b565b5b6131d787828801613002565b91505092959194509250565b600080604083850312156131fa576131f9613d70565b5b600061320885828601612f56565b925050602061321985828601612fae565b9150509250929050565b6000806040838503121561323a57613239613d70565b5b600061324885828601612f56565b92505060206132598582860161305e565b9150509250929050565b6000806040838503121561327a57613279613d70565b5b600083013567ffffffffffffffff81111561329857613297613d6b565b5b6132a485828601612f80565b92505060206132b585828601612fc3565b9150509250929050565b6000602082840312156132d5576132d4613d70565b5b60006132e384828501612fc3565b91505092915050565b60006020828403121561330257613301613d70565b5b600061331084828501612fd8565b91505092915050565b60006020828403121561332f5761332e613d70565b5b600061333d84828501612fed565b91505092915050565b60006020828403121561335c5761335b613d70565b5b600082013567ffffffffffffffff81111561337a57613379613d6b565b5b61338684828501613030565b91505092915050565b6000602082840312156133a5576133a4613d70565b5b60006133b38482850161305e565b91505092915050565b600080604083850312156133d3576133d2613d70565b5b60006133e18582860161305e565b925050602083013567ffffffffffffffff81111561340257613401613d6b565b5b61340e85828601612f80565b9150509250929050565b61342181613afe565b82525050565b61343861343382613afe565b613c7c565b82525050565b61344781613b22565b82525050565b61345681613b2e565b82525050565b600061346782613a00565b6134718185613a16565b9350613481818560208601613b9d565b61348a81613d75565b840191505092915050565b60006134a082613a0b565b6134aa8185613a32565b93506134ba818560208601613b9d565b6134c381613d75565b840191505092915050565b60006134d982613a0b565b6134e38185613a43565b93506134f3818560208601613b9d565b80840191505092915050565b600061350c601283613a32565b915061351782613d93565b602082019050919050565b600061352f601983613a32565b915061353a82613dbc565b602082019050919050565b6000613552602683613a32565b915061355d82613de5565b604082019050919050565b6000613575601583613a32565b915061358082613e34565b602082019050919050565b6000613598601483613a32565b91506135a382613e5d565b602082019050919050565b60006135bb602083613a32565b91506135c682613e86565b602082019050919050565b60006135de601b83613a32565b91506135e982613eaf565b602082019050919050565b6000613601600083613a27565b915061360c82613ed8565b600082019050919050565b6000613624601483613a32565b915061362f82613edb565b602082019050919050565b6000613647600a83613a32565b915061365282613f04565b602082019050919050565b600061366a602183613a32565b915061367582613f2d565b604082019050919050565b600061368d602483613a32565b915061369882613f7c565b604082019050919050565b6136ac81613b84565b82525050565b60006136be8284613427565b60148201915081905092915050565b60006136d982866134ce565b91506136e582856134ce565b91506136f182846134ce565b9150819050949350505050565b6000613709826135f4565b9150819050919050565b60006020820190506137286000830184613418565b92915050565b60006080820190506137436000830187613418565b6137506020830186613418565b61375d60408301856136a3565b818103606083015261376f818461345c565b905095945050505050565b600060208201905061378f600083018461343e565b92915050565b60006020820190506137aa600083018461344d565b92915050565b600060208201905081810360008301526137ca8184613495565b905092915050565b600060208201905081810360008301526137eb816134ff565b9050919050565b6000602082019050818103600083015261380b81613522565b9050919050565b6000602082019050818103600083015261382b81613545565b9050919050565b6000602082019050818103600083015261384b81613568565b9050919050565b6000602082019050818103600083015261386b8161358b565b9050919050565b6000602082019050818103600083015261388b816135ae565b9050919050565b600060208201905081810360008301526138ab816135d1565b9050919050565b600060208201905081810360008301526138cb81613617565b9050919050565b600060208201905081810360008301526138eb8161363a565b9050919050565b6000602082019050818103600083015261390b8161365d565b9050919050565b6000602082019050818103600083015261392b81613680565b9050919050565b600060208201905061394760008301846136a3565b92915050565b6000613957613968565b90506139638282613c02565b919050565b6000604051905090565b600067ffffffffffffffff82111561398d5761398c613d2d565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139b9576139b8613d2d565b5b6139c282613d75565b9050602081019050919050565b600067ffffffffffffffff8211156139ea576139e9613d2d565b5b6139f382613d75565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5982613b84565b9150613a6483613b84565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9957613a98613ca0565b5b828201905092915050565b6000613aaf82613b84565b9150613aba83613b84565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613af357613af2613ca0565b5b828202905092915050565b6000613b0982613b64565b9050919050565b6000613b1b82613b64565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613bbb578082015181840152602081019050613ba0565b83811115613bca576000848401525b50505050565b60006002820490506001821680613be857607f821691505b60208210811415613bfc57613bfb613ccf565b5b50919050565b613c0b82613d75565b810181811067ffffffffffffffff82111715613c2a57613c29613d2d565b5b80604052505050565b6000613c3e82613b84565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c7157613c70613ca0565b5b600182019050919050565b6000613c8782613c8e565b9050919050565b6000613c9982613d86565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b7f5075626c6963204d696e74696e67206973207061757365642e00000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420612076616c696420416c6c6f776973742e0000000000000000000000600082015250565b7f57686974656c697374206973207061757365642e000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c756520737570706c69656420697320696e636f72726563740000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f436f6d65206f6e21212100000000000000000000000000000000000000000000600082015250565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752061726520657863656564696e6720796f7572206d696e74696e67206c60008201527f696d697400000000000000000000000000000000000000000000000000000000602082015250565b613fd481613afe565b8114613fdf57600080fd5b50565b613feb81613b10565b8114613ff657600080fd5b50565b61400281613b22565b811461400d57600080fd5b50565b61401981613b2e565b811461402457600080fd5b50565b61403081613b38565b811461403b57600080fd5b50565b61404781613b84565b811461405257600080fd5b5056fea26469706673582212204b1e748e20ab345fd9ab97a07479c68c3b602e641f21b96724987ddab57b312764736f6c63430008070033

Deployed Bytecode Sourcemap

73837:4904:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41355:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74308:119;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76337:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42257:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48740:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48181:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77108:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38008:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75586:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52447:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73948:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75143:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55360:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74434:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76713:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73988:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74129:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43650:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74077:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76982:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39192:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22291:94;;;;;;;;;;;;;:::i;:::-;;74211:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74029:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21640:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42433:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76099:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49298:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56143:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74671:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75467:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74180:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75701:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75031:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77243:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74941:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49763:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73917:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22540:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75237:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75355:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41355:639;41440:4;41779:10;41764:25;;:11;:25;;;;:102;;;;41856:10;41841:25;;:11;:25;;;;41764:102;:179;;;;41933:10;41918:25;;:11;:25;;;;41764:179;41744:199;;41355:639;;;:::o;74308:119::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76337:368::-;77486:9;77472:23;;:10;:23;;;77464:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;76450:10:::1;77612:1;77603:5;;:10;77595:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;77670:1;77657:10;:14;77649:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;77762:10;77742:17;;:30;;;;:::i;:::-;77728:9;:45;77720:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;77853:10;;77840;77824:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:39;77816:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;77966:1;77948:15;;:19;;;;:::i;:::-;77935:10;77907:25;77921:10;77907:13;:25::i;:::-;:38;;;;:::i;:::-;:60;77899:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;76481:57:::2;76489:6;76525:10;76508:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;76498:39;;;;;;76481:7;:57::i;:::-;76473:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;76575:33;76585:10;76597;76575:9;:33::i;:::-;76620:7;74253:42;76633:20;;76661:9;76633:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76619:56;;;76694:2;76686:11;;;::::0;::::2;;76462:243;77521:1:::1;76337:368:::0;;:::o;42257:100::-;42311:13;42344:5;42337:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42257:100;:::o;48740:218::-;48816:7;48841:16;48849:7;48841;:16::i;:::-;48836:64;;48866:34;;;;;;;;;;;;;;48836:64;48920:15;:24;48936:7;48920:24;;;;;;;;;;;:30;;;;;;;;;;;;48913:37;;48740:218;;;:::o;48181:400::-;48262:13;48278:16;48286:7;48278;:16::i;:::-;48262:32;;48334:5;48311:28;;:19;:17;:19::i;:::-;:28;;;48307:175;;48359:44;48376:5;48383:19;:17;:19::i;:::-;48359:16;:44::i;:::-;48354:128;;48431:35;;;;;;;;;;;;;;48354:128;48307:175;48527:2;48494:15;:24;48510:7;48494:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;48565:7;48561:2;48545:28;;48554:5;48545:28;;;;;;;;;;;;48251:330;48181:400;;:::o;77108:123::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77208:15:::1;77191:14;:32;;;;;;;;;;;;:::i;:::-;;77108:123:::0;:::o;38008:323::-;38069:7;38297:15;:13;:15::i;:::-;38282:12;;38266:13;;:28;:46;38259:53;;38008:323;:::o;75586:103::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75671:10:::1;75658;:23;;;;75586:103:::0;:::o;52447:2817::-;52581:27;52611;52630:7;52611:18;:27::i;:::-;52581:57;;52696:4;52655:45;;52671:19;52655:45;;;52651:86;;52709:28;;;;;;;;;;;;;;52651:86;52751:27;52780:23;52807:35;52834:7;52807:26;:35::i;:::-;52750:92;;;;52942:68;52967:15;52984:4;52990:19;:17;:19::i;:::-;52942:24;:68::i;:::-;52937:180;;53030:43;53047:4;53053:19;:17;:19::i;:::-;53030:16;:43::i;:::-;53025:92;;53082:35;;;;;;;;;;;;;;53025:92;52937:180;53148:1;53134:16;;:2;:16;;;53130:52;;;53159:23;;;;;;;;;;;;;;53130:52;53195:43;53217:4;53223:2;53227:7;53236:1;53195:21;:43::i;:::-;53331:15;53328:160;;;53471:1;53450:19;53443:30;53328:160;53868:18;:24;53887:4;53868:24;;;;;;;;;;;;;;;;53866:26;;;;;;;;;;;;53937:18;:22;53956:2;53937:22;;;;;;;;;;;;;;;;53935:24;;;;;;;;;;;54259:146;54296:2;54345:45;54360:4;54366:2;54370:19;54345:14;:45::i;:::-;34407:8;54317:73;54259:18;:146::i;:::-;54230:17;:26;54248:7;54230:26;;;;;;;;;;;:175;;;;54576:1;34407:8;54525:19;:47;:52;54521:627;;;54598:19;54630:1;54620:7;:11;54598:33;;54787:1;54753:17;:30;54771:11;54753:30;;;;;;;;;;;;:35;54749:384;;;54891:13;;54876:11;:28;54872:242;;55071:19;55038:17;:30;55056:11;55038:30;;;;;;;;;;;:52;;;;54872:242;54749:384;54579:569;54521:627;55195:7;55191:2;55176:27;;55185:4;55176:27;;;;;;;;;;;;55214:42;55235:4;55241:2;55245:7;55254:1;55214:20;:42::i;:::-;52570:2694;;;52447:2817;;;:::o;73948:33::-;;;;:::o;75143:86::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75215:6:::1;75207:5;:14;;;;75143:86:::0;:::o;55360:185::-;55498:39;55515:4;55521:2;55525:7;55498:39;;;;;;;;;;;;:16;:39::i;:::-;55360:185;;;:::o;74434:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76713:261::-;77486:9;77472:23;;:10;:23;;;77464:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;76813:10:::1;76825:3;78623:1;78615:5;;:9;78607:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;78679:1;78666:10;:14;78658:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;21871:12:::2;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76851:26:::3;76861:3;76866:10;76851:9;:26::i;:::-;76889:7;74253:42;76902:20;;76930:9;76902:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76888:56;;;76963:2;76955:11;;;::::0;::::3;;76840:134;77521:1:::1;;76713:261:::0;;:::o;73988:34::-;;;;:::o;74129:44::-;;;;:::o;43650:152::-;43722:7;43765:27;43784:7;43765:18;:27::i;:::-;43742:52;;43650:152;;;:::o;74077:45::-;;;;:::o;76982:118::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77079:13:::1;77064:12;:28;;;;;;;;;;;;:::i;:::-;;76982:118:::0;:::o;39192:233::-;39264:7;39305:1;39288:19;;:5;:19;;;39284:60;;;39316:28;;;;;;;;;;;;;;39284:60;33351:13;39362:18;:25;39381:5;39362:25;;;;;;;;;;;;;;;;:55;39355:62;;39192:233;;;:::o;22291:94::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22356:21:::1;22374:1;22356:9;:21::i;:::-;22291:94::o:0;74211:84::-;74253:42;74211:84;:::o;74029:41::-;;;;:::o;21640:87::-;21686:7;21713:6;;;;;;;;;;;21706:13;;21640:87;:::o;42433:104::-;42489:13;42522:7;42515:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42433:104;:::o;76099:230::-;77486:9;77472:23;;:10;:23;;;77464:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;76176:10:::1;78107:1;78098:5;;:10;78090:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;78170:1;78157:10;:14;78149:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;78262:10;78242:17;;:30;;;;:::i;:::-;78228:9;:45;78220:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;78353:10;;78340;78324:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:39;78316:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;78466:1;78448:15;;:19;;;;:::i;:::-;78435:10;78407:25;78421:10;78407:13;:25::i;:::-;:38;;;;:::i;:::-;:60;78399:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;76199:33:::2;76209:10;76221;76199:9;:33::i;:::-;76244:7;74253:42;76257:20;;76285:9;76257:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76243:56;;;76318:2;76310:11;;;::::0;::::2;;76188:141;77521:1:::1;76099:230:::0;:::o;49298:308::-;49409:19;:17;:19::i;:::-;49397:31;;:8;:31;;;49393:61;;;49437:17;;;;;;;;;;;;;;49393:61;49519:8;49467:18;:39;49486:19;:17;:19::i;:::-;49467:39;;;;;;;;;;;;;;;:49;49507:8;49467:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;49579:8;49543:55;;49558:19;:17;:19::i;:::-;49543:55;;;49589:8;49543:55;;;;;;:::i;:::-;;;;;;;;49298:308;;:::o;56143:399::-;56310:31;56323:4;56329:2;56333:7;56310:12;:31::i;:::-;56374:1;56356:2;:14;;;:19;56352:183;;56395:56;56426:4;56432:2;56436:7;56445:5;56395:30;:56::i;:::-;56390:145;;56479:40;;;;;;;;;;;;;;56390:145;56352:183;56143:399;;;;:::o;74671:149::-;74749:4;74773:39;74792:6;74800:4;;74806:5;74773:18;:39::i;:::-;74766:46;;74671:149;;;;:::o;75467:107::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75556:10:::1;75537:16;:29;;;;75467:107:::0;:::o;74180:24::-;;;;:::o;75701:390::-;75775:13;75806:17;75814:8;75806:7;:17::i;:::-;75801:60;;75832:29;;;;;;;;;;;;;;75801:60;75882:21;75906:10;:8;:10::i;:::-;75882:34;;75927:20;75950:9;:7;:9::i;:::-;75927:32;;76012:1;75993:7;75987:21;:26;;:96;;;;;;;;;;;;;;;;;76040:7;76049:19;76059:8;76049:9;:19::i;:::-;76070:6;76023:54;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75987:96;75980:103;;;;75701:390;;;:::o;75031:104::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75119:8:::1;75101:15;:26;;;;75031:104:::0;:::o;77243:115::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77315:3:::1;:12;;:35;77328:21;77315:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77243:115:::0;:::o;74941:82::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75010:5:::1;75003:4;:12;;;;74941:82:::0;:::o;49763:164::-;49860:4;49884:18;:25;49903:5;49884:25;;;;;;;;;;;;;;;:35;49910:8;49884:35;;;;;;;;;;;;;;;;;;;;;;;;;49877:42;;49763:164;;;;:::o;73917:24::-;;;;:::o;22540:192::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22649:1:::1;22629:22;;:8;:22;;;;22621:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22705:19;22715:8;22705:9;:19::i;:::-;22540:192:::0;:::o;75237:110::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75329:10:::1;75309:17;:30;;;;75237:110:::0;:::o;75355:104::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75441:10:::1;75425:13;:26;;;;75355:104:::0;:::o;39507:178::-;39568:7;33351:13;33489:2;39596:18;:25;39615:5;39596:25;;;;;;;;;;;;;;;;:50;;39595:82;39588:89;;39507:178;;;:::o;65783:112::-;65860:27;65870:2;65874:8;65860:27;;;;;;;;;;;;:9;:27::i;:::-;65783:112;;:::o;50185:282::-;50250:4;50306:7;50287:15;:13;:15::i;:::-;:26;;:66;;;;;50340:13;;50330:7;:23;50287:66;:153;;;;;50439:1;34127:8;50391:17;:26;50409:7;50391:26;;;;;;;;;;;;:44;:49;50287:153;50267:173;;50185:282;;;:::o;71951:105::-;72011:7;72038:10;72031:17;;71951:105;:::o;20428:98::-;20481:7;20508:10;20501:17;;20428:98;:::o;37524:92::-;37580:7;37524:92;:::o;44805:1275::-;44872:7;44892:12;44907:7;44892:22;;44975:4;44956:15;:13;:15::i;:::-;:23;44952:1061;;45009:13;;45002:4;:20;44998:1015;;;45047:14;45064:17;:23;45082:4;45064:23;;;;;;;;;;;;45047:40;;45181:1;34127:8;45153:6;:24;:29;45149:845;;;45818:113;45835:1;45825:6;:11;45818:113;;;45878:17;:25;45896:6;;;;;;;45878:25;;;;;;;;;;;;45869:34;;45818:113;;;45964:6;45957:13;;;;;;45149:845;45024:989;44998:1015;44952:1061;46041:31;;;;;;;;;;;;;;44805:1275;;;;:::o;51348:479::-;51450:27;51479:23;51520:38;51561:15;:24;51577:7;51561:24;;;;;;;;;;;51520:65;;51732:18;51709:41;;51789:19;51783:26;51764:45;;51694:126;51348:479;;;:::o;50576:659::-;50725:11;50890:16;50883:5;50879:28;50870:37;;51050:16;51039:9;51035:32;51022:45;;51200:15;51189:9;51186:30;51178:5;51167:9;51164:20;51161:56;51151:66;;50576:659;;;;;:::o;57204:159::-;;;;;:::o;71260:311::-;71395:7;71415:16;34531:3;71441:19;:41;;71415:68;;34531:3;71509:31;71520:4;71526:2;71530:9;71509:10;:31::i;:::-;71501:40;;:62;;71494:69;;;71260:311;;;;;:::o;46628:450::-;46708:14;46876:16;46869:5;46865:28;46856:37;;47053:5;47039:11;47014:23;47010:41;47007:52;47000:5;46997:63;46987:73;;46628:450;;;;:::o;58028:158::-;;;;;:::o;22740:173::-;22796:16;22815:6;;;;;;;;;;;22796:25;;22841:8;22832:6;;:17;;;;;;;;;;;;;;;;;;22896:8;22865:40;;22886:8;22865:40;;;;;;;;;;;;22785:128;22740:173;:::o;58626:716::-;58789:4;58835:2;58810:45;;;58856:19;:17;:19::i;:::-;58877:4;58883:7;58892:5;58810:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58806:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59110:1;59093:6;:13;:18;59089:235;;;59139:40;;;;;;;;;;;;;;59089:235;59282:6;59276:13;59267:6;59263:2;59259:15;59252:38;58806:529;58979:54;;;58969:64;;;:6;:64;;;;58962:71;;;58626:716;;;;;;:::o;1254:190::-;1379:4;1432;1403:25;1416:5;1423:4;1403:12;:25::i;:::-;:33;1396:40;;1254:190;;;;;:::o;74550:113::-;74610:13;74643:12;74636:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74550:113;:::o;74828:105::-;74878:13;74911:14;74904:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74828:105;:::o;72158:1581::-;72223:17;72648:4;72641;72635:11;72631:22;72624:29;;72740:3;72734:4;72727:17;72846:3;73085:5;73067:428;73093:1;73067:428;;;73133:1;73128:3;73124:11;73117:18;;73304:2;73298:4;73294:13;73290:2;73286:22;73281:3;73273:36;73398:2;73392:4;73388:13;73380:21;;73465:4;73455:25;;73473:5;;73455:25;73067:428;;;73071:21;73534:3;73529;73525:13;73649:4;73644:3;73640:14;73633:21;;73714:6;73709:3;73702:19;72262:1470;;72158:1581;;;:::o;65010:689::-;65141:19;65147:2;65151:8;65141:5;:19::i;:::-;65220:1;65202:2;:14;;;:19;65198:483;;65242:11;65256:13;;65242:27;;65288:13;65310:8;65304:3;:14;65288:30;;65337:233;65368:62;65407:1;65411:2;65415:7;;;;;;65424:5;65368:30;:62::i;:::-;65363:167;;65466:40;;;;;;;;;;;;;;65363:167;65565:3;65557:5;:11;65337:233;;65652:3;65635:13;;:20;65631:34;;65657:8;;;65631:34;65223:458;;65198:483;65010:689;;;:::o;70961:147::-;71098:6;70961:147;;;;;:::o;2121:296::-;2204:7;2224:20;2247:4;2224:27;;2267:9;2262:118;2286:5;:12;2282:1;:16;2262:118;;;2335:33;2345:12;2359:5;2365:1;2359:8;;;;;;;;:::i;:::-;;;;;;;;2335:9;:33::i;:::-;2320:48;;2300:3;;;;;:::i;:::-;;;;2262:118;;;;2397:12;2390:19;;;2121:296;;;;:::o;59804:2454::-;59877:20;59900:13;;59877:36;;59940:1;59928:8;:13;59924:44;;;59950:18;;;;;;;;;;;;;;59924:44;59981:61;60011:1;60015:2;60019:12;60033:8;59981:21;:61::i;:::-;60525:1;33489:2;60495:1;:26;;60494:32;60482:8;:45;60456:18;:22;60475:2;60456:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;60804:139;60841:2;60895:33;60918:1;60922:2;60926:1;60895:14;:33::i;:::-;60862:30;60883:8;60862:20;:30::i;:::-;:66;60804:18;:139::i;:::-;60770:17;:31;60788:12;60770:31;;;;;;;;;;;:173;;;;60960:16;60991:11;61020:8;61005:12;:23;60991:37;;61275:16;61271:2;61267:25;61255:37;;61647:12;61607:8;61566:1;61504:25;61445:1;61384;61357:335;61772:1;61758:12;61754:20;61712:346;61813:3;61804:7;61801:16;61712:346;;62031:7;62021:8;62018:1;61991:25;61988:1;61985;61980:59;61866:1;61857:7;61853:15;61842:26;;61712:346;;;61716:77;62103:1;62091:8;:13;62087:45;;;62113:19;;;;;;;;;;;;;;62087:45;62165:3;62149:13;:19;;;;60230:1950;;62190:60;62219:1;62223:2;62227:12;62241:8;62190:20;:60::i;:::-;59866:2392;59804:2454;;:::o;8328:149::-;8391:7;8422:1;8418;:5;:51;;8449:20;8464:1;8467;8449:14;:20::i;:::-;8418:51;;;8426:20;8441:1;8444;8426:14;:20::i;:::-;8418:51;8411:58;;8328:149;;;;:::o;47180:324::-;47250:14;47483:1;47473:8;47470:15;47444:24;47440:46;47430:56;;47180:324;;;:::o;8485:268::-;8553:13;8660:1;8654:4;8647:15;8689:1;8683:4;8676:15;8730:4;8724;8714:21;8705:30;;8485:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1731:155::-;1785:5;1823:6;1810:20;1801:29;;1839:41;1874:5;1839:41;:::i;:::-;1731:155;;;;:::o;1909:370::-;1980:5;2029:3;2022:4;2014:6;2010:17;2006:27;1996:122;;2037:79;;:::i;:::-;1996:122;2154:6;2141:20;2179:94;2269:3;2261:6;2254:4;2246:6;2242:17;2179:94;:::i;:::-;2170:103;;1986:293;1909:370;;;;:::o;2285:133::-;2328:5;2366:6;2353:20;2344:29;;2382:30;2406:5;2382:30;:::i;:::-;2285:133;;;;:::o;2424:139::-;2470:5;2508:6;2495:20;2486:29;;2524:33;2551:5;2524:33;:::i;:::-;2424:139;;;;:::o;2569:137::-;2614:5;2652:6;2639:20;2630:29;;2668:32;2694:5;2668:32;:::i;:::-;2569:137;;;;:::o;2712:141::-;2768:5;2799:6;2793:13;2784:22;;2815:32;2841:5;2815:32;:::i;:::-;2712:141;;;;:::o;2872:338::-;2927:5;2976:3;2969:4;2961:6;2957:17;2953:27;2943:122;;2984:79;;:::i;:::-;2943:122;3101:6;3088:20;3126:78;3200:3;3192:6;3185:4;3177:6;3173:17;3126:78;:::i;:::-;3117:87;;2933:277;2872:338;;;;:::o;3230:340::-;3286:5;3335:3;3328:4;3320:6;3316:17;3312:27;3302:122;;3343:79;;:::i;:::-;3302:122;3460:6;3447:20;3485:79;3560:3;3552:6;3545:4;3537:6;3533:17;3485:79;:::i;:::-;3476:88;;3292:278;3230:340;;;;:::o;3576:139::-;3622:5;3660:6;3647:20;3638:29;;3676:33;3703:5;3676:33;:::i;:::-;3576:139;;;;:::o;3721:329::-;3780:6;3829:2;3817:9;3808:7;3804:23;3800:32;3797:119;;;3835:79;;:::i;:::-;3797:119;3955:1;3980:53;4025:7;4016:6;4005:9;4001:22;3980:53;:::i;:::-;3970:63;;3926:117;3721:329;;;;:::o;4056:345::-;4123:6;4172:2;4160:9;4151:7;4147:23;4143:32;4140:119;;;4178:79;;:::i;:::-;4140:119;4298:1;4323:61;4376:7;4367:6;4356:9;4352:22;4323:61;:::i;:::-;4313:71;;4269:125;4056:345;;;;:::o;4407:474::-;4475:6;4483;4532:2;4520:9;4511:7;4507:23;4503:32;4500:119;;;4538:79;;:::i;:::-;4500:119;4658:1;4683:53;4728:7;4719:6;4708:9;4704:22;4683:53;:::i;:::-;4673:63;;4629:117;4785:2;4811:53;4856:7;4847:6;4836:9;4832:22;4811:53;:::i;:::-;4801:63;;4756:118;4407:474;;;;;:::o;4887:619::-;4964:6;4972;4980;5029:2;5017:9;5008:7;5004:23;5000:32;4997:119;;;5035:79;;:::i;:::-;4997:119;5155:1;5180:53;5225:7;5216:6;5205:9;5201:22;5180:53;:::i;:::-;5170:63;;5126:117;5282:2;5308:53;5353:7;5344:6;5333:9;5329:22;5308:53;:::i;:::-;5298:63;;5253:118;5410:2;5436:53;5481:7;5472:6;5461:9;5457:22;5436:53;:::i;:::-;5426:63;;5381:118;4887:619;;;;;:::o;5512:943::-;5607:6;5615;5623;5631;5680:3;5668:9;5659:7;5655:23;5651:33;5648:120;;;5687:79;;:::i;:::-;5648:120;5807:1;5832:53;5877:7;5868:6;5857:9;5853:22;5832:53;:::i;:::-;5822:63;;5778:117;5934:2;5960:53;6005:7;5996:6;5985:9;5981:22;5960:53;:::i;:::-;5950:63;;5905:118;6062:2;6088:53;6133:7;6124:6;6113:9;6109:22;6088:53;:::i;:::-;6078:63;;6033:118;6218:2;6207:9;6203:18;6190:32;6249:18;6241:6;6238:30;6235:117;;;6271:79;;:::i;:::-;6235:117;6376:62;6430:7;6421:6;6410:9;6406:22;6376:62;:::i;:::-;6366:72;;6161:287;5512:943;;;;;;;:::o;6461:468::-;6526:6;6534;6583:2;6571:9;6562:7;6558:23;6554:32;6551:119;;;6589:79;;:::i;:::-;6551:119;6709:1;6734:53;6779:7;6770:6;6759:9;6755:22;6734:53;:::i;:::-;6724:63;;6680:117;6836:2;6862:50;6904:7;6895:6;6884:9;6880:22;6862:50;:::i;:::-;6852:60;;6807:115;6461:468;;;;;:::o;6935:474::-;7003:6;7011;7060:2;7048:9;7039:7;7035:23;7031:32;7028:119;;;7066:79;;:::i;:::-;7028:119;7186:1;7211:53;7256:7;7247:6;7236:9;7232:22;7211:53;:::i;:::-;7201:63;;7157:117;7313:2;7339:53;7384:7;7375:6;7364:9;7360:22;7339:53;:::i;:::-;7329:63;;7284:118;6935:474;;;;;:::o;7415:684::-;7508:6;7516;7565:2;7553:9;7544:7;7540:23;7536:32;7533:119;;;7571:79;;:::i;:::-;7533:119;7719:1;7708:9;7704:17;7691:31;7749:18;7741:6;7738:30;7735:117;;;7771:79;;:::i;:::-;7735:117;7876:78;7946:7;7937:6;7926:9;7922:22;7876:78;:::i;:::-;7866:88;;7662:302;8003:2;8029:53;8074:7;8065:6;8054:9;8050:22;8029:53;:::i;:::-;8019:63;;7974:118;7415:684;;;;;:::o;8105:329::-;8164:6;8213:2;8201:9;8192:7;8188:23;8184:32;8181:119;;;8219:79;;:::i;:::-;8181:119;8339:1;8364:53;8409:7;8400:6;8389:9;8385:22;8364:53;:::i;:::-;8354:63;;8310:117;8105:329;;;;:::o;8440:327::-;8498:6;8547:2;8535:9;8526:7;8522:23;8518:32;8515:119;;;8553:79;;:::i;:::-;8515:119;8673:1;8698:52;8742:7;8733:6;8722:9;8718:22;8698:52;:::i;:::-;8688:62;;8644:116;8440:327;;;;:::o;8773:349::-;8842:6;8891:2;8879:9;8870:7;8866:23;8862:32;8859:119;;;8897:79;;:::i;:::-;8859:119;9017:1;9042:63;9097:7;9088:6;9077:9;9073:22;9042:63;:::i;:::-;9032:73;;8988:127;8773:349;;;;:::o;9128:509::-;9197:6;9246:2;9234:9;9225:7;9221:23;9217:32;9214:119;;;9252:79;;:::i;:::-;9214:119;9400:1;9389:9;9385:17;9372:31;9430:18;9422:6;9419:30;9416:117;;;9452:79;;:::i;:::-;9416:117;9557:63;9612:7;9603:6;9592:9;9588:22;9557:63;:::i;:::-;9547:73;;9343:287;9128:509;;;;:::o;9643:329::-;9702:6;9751:2;9739:9;9730:7;9726:23;9722:32;9719:119;;;9757:79;;:::i;:::-;9719:119;9877:1;9902:53;9947:7;9938:6;9927:9;9923:22;9902:53;:::i;:::-;9892:63;;9848:117;9643:329;;;;:::o;9978:684::-;10071:6;10079;10128:2;10116:9;10107:7;10103:23;10099:32;10096:119;;;10134:79;;:::i;:::-;10096:119;10254:1;10279:53;10324:7;10315:6;10304:9;10300:22;10279:53;:::i;:::-;10269:63;;10225:117;10409:2;10398:9;10394:18;10381:32;10440:18;10432:6;10429:30;10426:117;;;10462:79;;:::i;:::-;10426:117;10567:78;10637:7;10628:6;10617:9;10613:22;10567:78;:::i;:::-;10557:88;;10352:303;9978:684;;;;;:::o;10668:118::-;10755:24;10773:5;10755:24;:::i;:::-;10750:3;10743:37;10668:118;;:::o;10792:157::-;10897:45;10917:24;10935:5;10917:24;:::i;:::-;10897:45;:::i;:::-;10892:3;10885:58;10792:157;;:::o;10955:109::-;11036:21;11051:5;11036:21;:::i;:::-;11031:3;11024:34;10955:109;;:::o;11070:118::-;11157:24;11175:5;11157:24;:::i;:::-;11152:3;11145:37;11070:118;;:::o;11194:360::-;11280:3;11308:38;11340:5;11308:38;:::i;:::-;11362:70;11425:6;11420:3;11362:70;:::i;:::-;11355:77;;11441:52;11486:6;11481:3;11474:4;11467:5;11463:16;11441:52;:::i;:::-;11518:29;11540:6;11518:29;:::i;:::-;11513:3;11509:39;11502:46;;11284:270;11194:360;;;;:::o;11560:364::-;11648:3;11676:39;11709:5;11676:39;:::i;:::-;11731:71;11795:6;11790:3;11731:71;:::i;:::-;11724:78;;11811:52;11856:6;11851:3;11844:4;11837:5;11833:16;11811:52;:::i;:::-;11888:29;11910:6;11888:29;:::i;:::-;11883:3;11879:39;11872:46;;11652:272;11560:364;;;;:::o;11930:377::-;12036:3;12064:39;12097:5;12064:39;:::i;:::-;12119:89;12201:6;12196:3;12119:89;:::i;:::-;12112:96;;12217:52;12262:6;12257:3;12250:4;12243:5;12239:16;12217:52;:::i;:::-;12294:6;12289:3;12285:16;12278:23;;12040:267;11930:377;;;;:::o;12313:366::-;12455:3;12476:67;12540:2;12535:3;12476:67;:::i;:::-;12469:74;;12552:93;12641:3;12552:93;:::i;:::-;12670:2;12665:3;12661:12;12654:19;;12313:366;;;:::o;12685:::-;12827:3;12848:67;12912:2;12907:3;12848:67;:::i;:::-;12841:74;;12924:93;13013:3;12924:93;:::i;:::-;13042:2;13037:3;13033:12;13026:19;;12685:366;;;:::o;13057:::-;13199:3;13220:67;13284:2;13279:3;13220:67;:::i;:::-;13213:74;;13296:93;13385:3;13296:93;:::i;:::-;13414:2;13409:3;13405:12;13398:19;;13057:366;;;:::o;13429:::-;13571:3;13592:67;13656:2;13651:3;13592:67;:::i;:::-;13585:74;;13668:93;13757:3;13668:93;:::i;:::-;13786:2;13781:3;13777:12;13770:19;;13429:366;;;:::o;13801:::-;13943:3;13964:67;14028:2;14023:3;13964:67;:::i;:::-;13957:74;;14040:93;14129:3;14040:93;:::i;:::-;14158:2;14153:3;14149:12;14142:19;;13801:366;;;:::o;14173:::-;14315:3;14336:67;14400:2;14395:3;14336:67;:::i;:::-;14329:74;;14412:93;14501:3;14412:93;:::i;:::-;14530:2;14525:3;14521:12;14514:19;;14173:366;;;:::o;14545:::-;14687:3;14708:67;14772:2;14767:3;14708:67;:::i;:::-;14701:74;;14784:93;14873:3;14784:93;:::i;:::-;14902:2;14897:3;14893:12;14886:19;;14545:366;;;:::o;14917:398::-;15076:3;15097:83;15178:1;15173:3;15097:83;:::i;:::-;15090:90;;15189:93;15278:3;15189:93;:::i;:::-;15307:1;15302:3;15298:11;15291:18;;14917:398;;;:::o;15321:366::-;15463:3;15484:67;15548:2;15543:3;15484:67;:::i;:::-;15477:74;;15560:93;15649:3;15560:93;:::i;:::-;15678:2;15673:3;15669:12;15662:19;;15321:366;;;:::o;15693:::-;15835:3;15856:67;15920:2;15915:3;15856:67;:::i;:::-;15849:74;;15932:93;16021:3;15932:93;:::i;:::-;16050:2;16045:3;16041:12;16034:19;;15693:366;;;:::o;16065:::-;16207:3;16228:67;16292:2;16287:3;16228:67;:::i;:::-;16221:74;;16304:93;16393:3;16304:93;:::i;:::-;16422:2;16417:3;16413:12;16406:19;;16065:366;;;:::o;16437:::-;16579:3;16600:67;16664:2;16659:3;16600:67;:::i;:::-;16593:74;;16676:93;16765:3;16676:93;:::i;:::-;16794:2;16789:3;16785:12;16778:19;;16437:366;;;:::o;16809:118::-;16896:24;16914:5;16896:24;:::i;:::-;16891:3;16884:37;16809:118;;:::o;16933:256::-;17045:3;17060:75;17131:3;17122:6;17060:75;:::i;:::-;17160:2;17155:3;17151:12;17144:19;;17180:3;17173:10;;16933:256;;;;:::o;17195:595::-;17423:3;17445:95;17536:3;17527:6;17445:95;:::i;:::-;17438:102;;17557:95;17648:3;17639:6;17557:95;:::i;:::-;17550:102;;17669:95;17760:3;17751:6;17669:95;:::i;:::-;17662:102;;17781:3;17774:10;;17195:595;;;;;;:::o;17796:379::-;17980:3;18002:147;18145:3;18002:147;:::i;:::-;17995:154;;18166:3;18159:10;;17796:379;;;:::o;18181:222::-;18274:4;18312:2;18301:9;18297:18;18289:26;;18325:71;18393:1;18382:9;18378:17;18369:6;18325:71;:::i;:::-;18181:222;;;;:::o;18409:640::-;18604:4;18642:3;18631:9;18627:19;18619:27;;18656:71;18724:1;18713:9;18709:17;18700:6;18656:71;:::i;:::-;18737:72;18805:2;18794:9;18790:18;18781:6;18737:72;:::i;:::-;18819;18887:2;18876:9;18872:18;18863:6;18819:72;:::i;:::-;18938:9;18932:4;18928:20;18923:2;18912:9;18908:18;18901:48;18966:76;19037:4;19028:6;18966:76;:::i;:::-;18958:84;;18409:640;;;;;;;:::o;19055:210::-;19142:4;19180:2;19169:9;19165:18;19157:26;;19193:65;19255:1;19244:9;19240:17;19231:6;19193:65;:::i;:::-;19055:210;;;;:::o;19271:222::-;19364:4;19402:2;19391:9;19387:18;19379:26;;19415:71;19483:1;19472:9;19468:17;19459:6;19415:71;:::i;:::-;19271:222;;;;:::o;19499:313::-;19612:4;19650:2;19639:9;19635:18;19627:26;;19699:9;19693:4;19689:20;19685:1;19674:9;19670:17;19663:47;19727:78;19800:4;19791:6;19727:78;:::i;:::-;19719:86;;19499:313;;;;:::o;19818:419::-;19984:4;20022:2;20011:9;20007:18;19999:26;;20071:9;20065:4;20061:20;20057:1;20046:9;20042:17;20035:47;20099:131;20225:4;20099:131;:::i;:::-;20091:139;;19818:419;;;:::o;20243:::-;20409:4;20447:2;20436:9;20432:18;20424:26;;20496:9;20490:4;20486:20;20482:1;20471:9;20467:17;20460:47;20524:131;20650:4;20524:131;:::i;:::-;20516:139;;20243:419;;;:::o;20668:::-;20834:4;20872:2;20861:9;20857:18;20849:26;;20921:9;20915:4;20911:20;20907:1;20896:9;20892:17;20885:47;20949:131;21075:4;20949:131;:::i;:::-;20941:139;;20668:419;;;:::o;21093:::-;21259:4;21297:2;21286:9;21282:18;21274:26;;21346:9;21340:4;21336:20;21332:1;21321:9;21317:17;21310:47;21374:131;21500:4;21374:131;:::i;:::-;21366:139;;21093:419;;;:::o;21518:::-;21684:4;21722:2;21711:9;21707:18;21699:26;;21771:9;21765:4;21761:20;21757:1;21746:9;21742:17;21735:47;21799:131;21925:4;21799:131;:::i;:::-;21791:139;;21518:419;;;:::o;21943:::-;22109:4;22147:2;22136:9;22132:18;22124:26;;22196:9;22190:4;22186:20;22182:1;22171:9;22167:17;22160:47;22224:131;22350:4;22224:131;:::i;:::-;22216:139;;21943:419;;;:::o;22368:::-;22534:4;22572:2;22561:9;22557:18;22549:26;;22621:9;22615:4;22611:20;22607:1;22596:9;22592:17;22585:47;22649:131;22775:4;22649:131;:::i;:::-;22641:139;;22368:419;;;:::o;22793:::-;22959:4;22997:2;22986:9;22982:18;22974:26;;23046:9;23040:4;23036:20;23032:1;23021:9;23017:17;23010:47;23074:131;23200:4;23074:131;:::i;:::-;23066:139;;22793:419;;;:::o;23218:::-;23384:4;23422:2;23411:9;23407:18;23399:26;;23471:9;23465:4;23461:20;23457:1;23446:9;23442:17;23435:47;23499:131;23625:4;23499:131;:::i;:::-;23491:139;;23218:419;;;:::o;23643:::-;23809:4;23847:2;23836:9;23832:18;23824:26;;23896:9;23890:4;23886:20;23882:1;23871:9;23867:17;23860:47;23924:131;24050:4;23924:131;:::i;:::-;23916:139;;23643:419;;;:::o;24068:::-;24234:4;24272:2;24261:9;24257:18;24249:26;;24321:9;24315:4;24311:20;24307:1;24296:9;24292:17;24285:47;24349:131;24475:4;24349:131;:::i;:::-;24341:139;;24068:419;;;:::o;24493:222::-;24586:4;24624:2;24613:9;24609:18;24601:26;;24637:71;24705:1;24694:9;24690:17;24681:6;24637:71;:::i;:::-;24493:222;;;;:::o;24721:129::-;24755:6;24782:20;;:::i;:::-;24772:30;;24811:33;24839:4;24831:6;24811:33;:::i;:::-;24721:129;;;:::o;24856:75::-;24889:6;24922:2;24916:9;24906:19;;24856:75;:::o;24937:311::-;25014:4;25104:18;25096:6;25093:30;25090:56;;;25126:18;;:::i;:::-;25090:56;25176:4;25168:6;25164:17;25156:25;;25236:4;25230;25226:15;25218:23;;24937:311;;;:::o;25254:307::-;25315:4;25405:18;25397:6;25394:30;25391:56;;;25427:18;;:::i;:::-;25391:56;25465:29;25487:6;25465:29;:::i;:::-;25457:37;;25549:4;25543;25539:15;25531:23;;25254:307;;;:::o;25567:308::-;25629:4;25719:18;25711:6;25708:30;25705:56;;;25741:18;;:::i;:::-;25705:56;25779:29;25801:6;25779:29;:::i;:::-;25771:37;;25863:4;25857;25853:15;25845:23;;25567:308;;;:::o;25881:98::-;25932:6;25966:5;25960:12;25950:22;;25881:98;;;:::o;25985:99::-;26037:6;26071:5;26065:12;26055:22;;25985:99;;;:::o;26090:168::-;26173:11;26207:6;26202:3;26195:19;26247:4;26242:3;26238:14;26223:29;;26090:168;;;;:::o;26264:147::-;26365:11;26402:3;26387:18;;26264:147;;;;:::o;26417:169::-;26501:11;26535:6;26530:3;26523:19;26575:4;26570:3;26566:14;26551:29;;26417:169;;;;:::o;26592:148::-;26694:11;26731:3;26716:18;;26592:148;;;;:::o;26746:305::-;26786:3;26805:20;26823:1;26805:20;:::i;:::-;26800:25;;26839:20;26857:1;26839:20;:::i;:::-;26834:25;;26993:1;26925:66;26921:74;26918:1;26915:81;26912:107;;;26999:18;;:::i;:::-;26912:107;27043:1;27040;27036:9;27029:16;;26746:305;;;;:::o;27057:348::-;27097:7;27120:20;27138:1;27120:20;:::i;:::-;27115:25;;27154:20;27172:1;27154:20;:::i;:::-;27149:25;;27342:1;27274:66;27270:74;27267:1;27264:81;27259:1;27252:9;27245:17;27241:105;27238:131;;;27349:18;;:::i;:::-;27238:131;27397:1;27394;27390:9;27379:20;;27057:348;;;;:::o;27411:96::-;27448:7;27477:24;27495:5;27477:24;:::i;:::-;27466:35;;27411:96;;;:::o;27513:104::-;27558:7;27587:24;27605:5;27587:24;:::i;:::-;27576:35;;27513:104;;;:::o;27623:90::-;27657:7;27700:5;27693:13;27686:21;27675:32;;27623:90;;;:::o;27719:77::-;27756:7;27785:5;27774:16;;27719:77;;;:::o;27802:149::-;27838:7;27878:66;27871:5;27867:78;27856:89;;27802:149;;;:::o;27957:126::-;27994:7;28034:42;28027:5;28023:54;28012:65;;27957:126;;;:::o;28089:77::-;28126:7;28155:5;28144:16;;28089:77;;;:::o;28172:154::-;28256:6;28251:3;28246;28233:30;28318:1;28309:6;28304:3;28300:16;28293:27;28172:154;;;:::o;28332:307::-;28400:1;28410:113;28424:6;28421:1;28418:13;28410:113;;;28509:1;28504:3;28500:11;28494:18;28490:1;28485:3;28481:11;28474:39;28446:2;28443:1;28439:10;28434:15;;28410:113;;;28541:6;28538:1;28535:13;28532:101;;;28621:1;28612:6;28607:3;28603:16;28596:27;28532:101;28381:258;28332:307;;;:::o;28645:320::-;28689:6;28726:1;28720:4;28716:12;28706:22;;28773:1;28767:4;28763:12;28794:18;28784:81;;28850:4;28842:6;28838:17;28828:27;;28784:81;28912:2;28904:6;28901:14;28881:18;28878:38;28875:84;;;28931:18;;:::i;:::-;28875:84;28696:269;28645:320;;;:::o;28971:281::-;29054:27;29076:4;29054:27;:::i;:::-;29046:6;29042:40;29184:6;29172:10;29169:22;29148:18;29136:10;29133:34;29130:62;29127:88;;;29195:18;;:::i;:::-;29127:88;29235:10;29231:2;29224:22;29014:238;28971:281;;:::o;29258:233::-;29297:3;29320:24;29338:5;29320:24;:::i;:::-;29311:33;;29366:66;29359:5;29356:77;29353:103;;;29436:18;;:::i;:::-;29353:103;29483:1;29476:5;29472:13;29465:20;;29258:233;;;:::o;29497:100::-;29536:7;29565:26;29585:5;29565:26;:::i;:::-;29554:37;;29497:100;;;:::o;29603:94::-;29642:7;29671:20;29685:5;29671:20;:::i;:::-;29660:31;;29603:94;;;:::o;29703:180::-;29751:77;29748:1;29741:88;29848:4;29845:1;29838:15;29872:4;29869:1;29862:15;29889:180;29937:77;29934:1;29927:88;30034:4;30031:1;30024:15;30058:4;30055:1;30048:15;30075:180;30123:77;30120:1;30113:88;30220:4;30217:1;30210:15;30244:4;30241:1;30234:15;30261:180;30309:77;30306:1;30299:88;30406:4;30403:1;30396:15;30430:4;30427:1;30420:15;30447:117;30556:1;30553;30546:12;30570:117;30679:1;30676;30669:12;30693:117;30802:1;30799;30792:12;30816:117;30925:1;30922;30915:12;30939:117;31048:1;31045;31038:12;31062:102;31103:6;31154:2;31150:7;31145:2;31138:5;31134:14;31130:28;31120:38;;31062:102;;;:::o;31170:94::-;31203:8;31251:5;31247:2;31243:14;31222:35;;31170:94;;;:::o;31270:168::-;31410:20;31406:1;31398:6;31394:14;31387:44;31270:168;:::o;31444:175::-;31584:27;31580:1;31572:6;31568:14;31561:51;31444:175;:::o;31625:225::-;31765:34;31761:1;31753:6;31749:14;31742:58;31834:8;31829:2;31821:6;31817:15;31810:33;31625:225;:::o;31856:171::-;31996:23;31992:1;31984:6;31980:14;31973:47;31856:171;:::o;32033:170::-;32173:22;32169:1;32161:6;32157:14;32150:46;32033:170;:::o;32209:182::-;32349:34;32345:1;32337:6;32333:14;32326:58;32209:182;:::o;32397:177::-;32537:29;32533:1;32525:6;32521:14;32514:53;32397:177;:::o;32580:114::-;;:::o;32700:170::-;32840:22;32836:1;32828:6;32824:14;32817:46;32700:170;:::o;32876:160::-;33016:12;33012:1;33004:6;33000:14;32993:36;32876:160;:::o;33042:220::-;33182:34;33178:1;33170:6;33166:14;33159:58;33251:3;33246:2;33238:6;33234:15;33227:28;33042:220;:::o;33268:223::-;33408:34;33404:1;33396:6;33392:14;33385:58;33477:6;33472:2;33464:6;33460:15;33453:31;33268:223;:::o;33497:122::-;33570:24;33588:5;33570:24;:::i;:::-;33563:5;33560:35;33550:63;;33609:1;33606;33599:12;33550:63;33497:122;:::o;33625:138::-;33706:32;33732:5;33706:32;:::i;:::-;33699:5;33696:43;33686:71;;33753:1;33750;33743:12;33686:71;33625:138;:::o;33769:116::-;33839:21;33854:5;33839:21;:::i;:::-;33832:5;33829:32;33819:60;;33875:1;33872;33865:12;33819:60;33769:116;:::o;33891:122::-;33964:24;33982:5;33964:24;:::i;:::-;33957:5;33954:35;33944:63;;34003:1;34000;33993:12;33944:63;33891:122;:::o;34019:120::-;34091:23;34108:5;34091:23;:::i;:::-;34084:5;34081:34;34071:62;;34129:1;34126;34119:12;34071:62;34019:120;:::o;34145:122::-;34218:24;34236:5;34218:24;:::i;:::-;34211:5;34208:35;34198:63;;34257:1;34254;34247:12;34198:63;34145:122;:::o

Swarm Source

ipfs://4b1e748e20ab345fd9ab97a07479c68c3b602e641f21b96724987ddab57b3127
Loading...
Loading
Loading...
Loading
[ 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.