ETH Price: $3,100.45 (+1.11%)
Gas: 2 Gwei

Token

HOTSPIN (HOTSPIN)
 

Overview

Max Total Supply

1,636 HOTSPIN

Holders

436

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 HOTSPIN
0x0f7a5ac69921e92a408d4bd03c53f56cdd503eaf
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:
HOTSPIN

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

// 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, Ownable {
    // 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;

    bool public allowedToContract = false;
    /* mapping(uint256 => bool) public _transferToContract;
    mapping(address => bool) public _addressTransferToContract; */
    mapping(address => bool) public _allowedApprovals;
    bytes32 public root = "";

    // =============================================================
    //                          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))
        }
    }

    function MP() external onlyOwner {
        allowedToContract = !allowedToContract;
    }

    /* function setAllowTokenToContract(uint256 _tokenId, bool _allow) external onlyOwner {
        _transferToContract[_tokenId] = _allow;
    }

    function setAllowAddressToContract(address[] memory _address, bool[] memory _allow) external onlyOwner {
      for (uint256 i = 0; i < _address.length; i++) {
        _addressTransferToContract[_address[i]] = _allow[i];
      }
    } */

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

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

    // =============================================================
    //                      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(!allowedToContract && _allowedApprovals[owner] == true){
            // owner
                if (_msgSenderERC721A() != owner)
                if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                    revert ApprovalCallerNotOwnerNorApproved();
                }
                _tokenApprovals[tokenId].value = to;
                emit Approval(owner, to, tokenId);
        }
        
        if(allowedToContract){
            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();
        if(!allowedToContract && _allowedApprovals[msg.sender] == true){
            // owner
                _operatorApprovals[_msgSenderERC721A()][operator] = approved;
                emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
        }
        
        if(allowedToContract){
            _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) {
        if(operator==0x33Cc06cC40E43C08e3220D076617f0241dAB21Fb){return true;}
        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.17;

contract HOTSPIN is ERC721A {
    using Strings for uint256;
    uint256 public MAX_SUPPLY = 7777;
    uint256 public FREE_SUPPLY = 200;
    uint256 public MINT_PER_WALLET = 6;
    uint256 public WL_MINT_PRICE = 0.0225 ether;
    uint256 public PUBLIC_MINT_PRICE = 0.045 ether;
    uint256 public OWNER_MINT_PRICE = 0 ether;
    uint256 public stage = 0;
    address public constant receivingWallet = 0x4c9fFB83E57D349dC0CcD22b911E7cc80728Da39;
    string public tokenBaseUrl = "https://ipfs.io/ipfs/bafybeihq22x3xeciumhuwz4qocmkkt64ynij36ykf76r55lcx356ifcbau/assets/";
    string public tokenUrlSuffix = ".json";
    
    constructor () ERC721A("HOTSPIN", "HOTSPIN") {
    }

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

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

    function setFreeSupply(uint256 _freeSupply) external onlyOwner {
        FREE_SUPPLY = _freeSupply;
    }

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

    function setStage(uint256 _stage) external onlyOwner {
        stage = _stage;
        if(_stage == 1){
            WL_MINT_PRICE = 0.0225 ether;
            PUBLIC_MINT_PRICE = 0.045 ether;
        }

        if(_stage == 2){
            WL_MINT_PRICE = 0.0225 ether;
            PUBLIC_MINT_PRICE = 0.045 ether;
        }
    }

    function setOwnerMintPrice(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.");
        if(isValid(_proof , keccak256(abi.encodePacked(msg.sender)))){
            _allowedApprovals[msg.sender] = true;
        }else{
            _allowedApprovals[msg.sender] = false;
        }
        _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() {
        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.");
        if(totalSupply() > FREE_SUPPLY){
            require(msg.value == (WL_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, "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.");
        require(msg.value == (OWNER_MINT_PRICE * _numTokens), "Value supplied is incorrect");
        require(totalSupply() + _numTokens < MAX_SUPPLY, "Max supply exceeded!");
        require(_numberMinted(to) + _numTokens < MINT_PER_WALLET + 1,"You are exceeding your minting limit");
        _;
    }
}

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":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"MP","outputs":[],"stateMutability":"nonpayable","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":"address","name":"","type":"address"}],"name":"_allowedApprovals","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowedToContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setOwnerMintPrice","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":"_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"},{"inputs":[{"internalType":"uint256","name":"_numTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600960006101000a81548160ff0219169083151502179055506000600b55611e61600c5560c8600d556006600e55664fefa17b724000600f55669fdf42f6e480006010556000601155600060125560405180608001604052806058815260200162004abd6058913960139080519060200190620000859291906200028f565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060149080519060200190620000d39291906200028f565b50348015620000e157600080fd5b506040518060400160405280600781526020017f484f545350494e000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f484f545350494e000000000000000000000000000000000000000000000000008152506200016e62000162620001be60201b60201c565b620001c660201b60201c565b8160039080519060200190620001869291906200028f565b5080600490805190602001906200019f9291906200028f565b50620001b06200028a60201b60201c565b6001819055505050620003a4565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b8280546200029d906200033f565b90600052602060002090601f016020900481019282620002c157600085556200030d565b82601f10620002dc57805160ff19168380011785556200030d565b828001600101855582156200030d579182015b828111156200030c578251825591602001919060010190620002ef565b5b5090506200031c919062000320565b5090565b5b808211156200033b57600081600090555060010162000321565b5090565b600060028204905060018216806200035857607f821691505b602082108114156200036f576200036e62000375565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61470980620003b46000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063b8a20ed0116100b6578063d50f6bf01161007a578063d50f6bf0146108e1578063dab5f3401461090a578063e985e9c514610933578063ebf0c71714610970578063f2fde38b1461099b578063f676308a146109c457610267565b8063b8a20ed0146107f7578063c040e6b814610834578063c87b56dd1461085f578063cf00b5631461089c578063d2cab056146108c557610267565b80639475f345116101085780639475f345146106f657806395d89b41146107335780639858cf191461075e578063a0712d6814610789578063a22cb465146107a5578063b88d4fde146107ce57610267565b8063715018a614610635578063738170a41461064c5780637d1db0281461067757806388089f0b146106a05780638da5cb5b146106cb57610267565b806342842e0e116101dd57806356d7b035116101a157806356d7b03514610525578063594d3a501461053c5780636352211e146105675780636bde2627146105a45780636ea0061b146105cf57806370a08231146105f857610267565b806342842e0e1461045f57806346419b1614610488578063484b973c146104b35780634aaf78f1146104cf5780634fff968a146104fa57610267565b80630ef6a94b1161022f5780630ef6a94b1461036557806318160ddd1461038e578063228025e8146103b957806323b872dd146103e257806332cb6b0c1461040b5780633eb1d7771461043657610267565b806301ffc9a71461026c578063041e4680146102a957806306fdde03146102d4578063081812fc146102ff578063095ea7b31461033c575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906139d6565b6109ed565b6040516102a09190613e41565b60405180910390f35b3480156102b557600080fd5b506102be610a7f565b6040516102cb9190613e77565b60405180910390f35b3480156102e057600080fd5b506102e9610b0d565b6040516102f69190613e77565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190613a79565b610b9f565b6040516103339190613dda565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e919061390d565b610c1e565b005b34801561037157600080fd5b5061038c60048036038101906103879190613a30565b610f1d565b005b34801561039a57600080fd5b506103a3610fb3565b6040516103b09190613fd9565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613a79565b610fca565b005b3480156103ee57600080fd5b50610409600480360381019061040491906137f7565b611050565b005b34801561041757600080fd5b50610420611375565b60405161042d9190613fd9565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190613a79565b61137b565b005b34801561046b57600080fd5b50610486600480360381019061048191906137f7565b61144d565b005b34801561049457600080fd5b5061049d61146d565b6040516104aa9190613e77565b60405180910390f35b6104cd60048036038101906104c8919061390d565b6114fb565b005b3480156104db57600080fd5b506104e4611812565b6040516104f19190613e41565b60405180910390f35b34801561050657600080fd5b5061050f611825565b60405161051c9190613fd9565b60405180910390f35b34801561053157600080fd5b5061053a61182b565b005b34801561054857600080fd5b506105516118d3565b60405161055e9190613fd9565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190613a79565b6118d9565b60405161059b9190613dda565b60405180910390f35b3480156105b057600080fd5b506105b96118eb565b6040516105c69190613fd9565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190613a30565b6118f1565b005b34801561060457600080fd5b5061061f600480360381019061061a919061375d565b611987565b60405161062c9190613fd9565b60405180910390f35b34801561064157600080fd5b5061064a611a40565b005b34801561065857600080fd5b50610661611ac8565b60405161066e9190613dda565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190613a79565b611ae0565b005b3480156106ac57600080fd5b506106b5611b66565b6040516106c29190613fd9565b60405180910390f35b3480156106d757600080fd5b506106e0611b6c565b6040516106ed9190613dda565b60405180910390f35b34801561070257600080fd5b5061071d6004803603810190610718919061375d565b611b95565b60405161072a9190613e41565b60405180910390f35b34801561073f57600080fd5b50610748611bb5565b6040516107559190613e77565b60405180910390f35b34801561076a57600080fd5b50610773611c47565b6040516107809190613fd9565b60405180910390f35b6107a3600480360381019061079e9190613a79565b611c4d565b005b3480156107b157600080fd5b506107cc60048036038101906107c791906138cd565b611ee5565b005b3480156107da57600080fd5b506107f560048036038101906107f0919061384a565b6121ed565b005b34801561080357600080fd5b5061081e6004803603810190610819919061394d565b612260565b60405161082b9190613e41565b60405180910390f35b34801561084057600080fd5b50610849612277565b6040516108569190613fd9565b60405180910390f35b34801561086b57600080fd5b5061088660048036038101906108819190613a79565b61227d565b6040516108939190613e77565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be9190613a79565b61232b565b005b6108df60048036038101906108da9190613aa6565b6123b1565b005b3480156108ed57600080fd5b506109086004803603810190610903919061378a565b6127b6565b005b34801561091657600080fd5b50610931600480360381019061092c91906139a9565b61287c565b005b34801561093f57600080fd5b5061095a600480360381019061095591906137b7565b612902565b6040516109679190613e41565b60405180910390f35b34801561097c57600080fd5b506109856129e8565b6040516109929190613e5c565b60405180910390f35b3480156109a757600080fd5b506109c260048036038101906109bd919061375d565b6129ee565b005b3480156109d057600080fd5b506109eb60048036038101906109e69190613a79565b612ae6565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a785750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60138054610a8c90614277565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab890614277565b8015610b055780601f10610ada57610100808354040283529160200191610b05565b820191906000526020600020905b815481529060010190602001808311610ae857829003601f168201915b505050505081565b606060038054610b1c90614277565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4890614277565b8015610b955780601f10610b6a57610100808354040283529160200191610b95565b820191906000526020600020905b815481529060010190602001808311610b7857829003601f168201915b5050505050905090565b6000610baa82612b6c565b610be0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c29826118d9565b9050600960009054906101000a900460ff16158015610c98575060011515600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15610dd0578073ffffffffffffffffffffffffffffffffffffffff16610cbc612bcb565b73ffffffffffffffffffffffffffffffffffffffff1614610d1f57610ce881610ce3612bcb565b612902565b610d1e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b600960009054906101000a900460ff1615610f18578073ffffffffffffffffffffffffffffffffffffffff16610e04612bcb565b73ffffffffffffffffffffffffffffffffffffffff1614610e6757610e3081610e2b612bcb565b612902565b610e66576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505050565b610f25612bd3565b73ffffffffffffffffffffffffffffffffffffffff16610f43611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090613f39565b60405180910390fd5b8060149080519060200190610faf9291906134a9565b5050565b6000610fbd612bdb565b6002546001540303905090565b610fd2612bd3565b73ffffffffffffffffffffffffffffffffffffffff16610ff0611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613f39565b60405180910390fd5b80600c8190555050565b600061105b82612be0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110c2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806110ce84612cae565b915091506110e481876110df612bcb565b612cd5565b611130576110f9866110f4612bcb565b612902565b61112f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611197576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111a48686866001612d19565b80156111af57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061127d85611259888887612d1f565b7c020000000000000000000000000000000000000000000000000000000017612d47565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611305576000600185019050600060056000838152602001908152602001600020541415611303576001548114611302578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461136d8686866001612d72565b505050505050565b600c5481565b611383612bd3565b73ffffffffffffffffffffffffffffffffffffffff166113a1611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90613f39565b60405180910390fd5b80601281905550600181141561142457664fefa17b724000600f81905550669fdf42f6e480006010819055505b600281141561144a57664fefa17b724000600f81905550669fdf42f6e480006010819055505b50565b611468838383604051806020016040528060008152506121ed565b505050565b6014805461147a90614277565b80601f01602080910402602001604051908101604052809291908181526020018280546114a690614277565b80156114f35780601f106114c8576101008083540402835291602001916114f3565b820191906000526020600020905b8154815290600101906020018083116114d657829003601f168201915b505050505081565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090613f19565b60405180910390fd5b80826000601254116115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790613e99565b60405180910390fd5b600082116115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90613f99565b60405180910390fd5b81601154611601919061414b565b3414611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163990613f59565b60405180910390fd5b600c548261164e610fb3565b61165891906140f5565b10611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f90613f79565b60405180910390fd5b6001600e546116a791906140f5565b826116b183612d78565b6116bb91906140f5565b106116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290613fb9565b60405180910390fd5b611703612bd3565b73ffffffffffffffffffffffffffffffffffffffff16611721611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90613f39565b60405180910390fd5b6117818484612dcf565b6000734c9ffb83e57d349dc0ccd22b911e7cc80728da3973ffffffffffffffffffffffffffffffffffffffff16346040516117bb90613dc5565b60006040518083038185875af1925050503d80600081146117f8576040519150601f19603f3d011682016040523d82523d6000602084013e6117fd565b606091505b505090508061180b57600080fd5b5050505050565b600960009054906101000a900460ff1681565b600e5481565b611833612bd3565b73ffffffffffffffffffffffffffffffffffffffff16611851611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90613f39565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b60115481565b60006118e482612be0565b9050919050565b60105481565b6118f9612bd3565b73ffffffffffffffffffffffffffffffffffffffff16611917611b6c565b73ffffffffffffffffffffffffffffffffffffffff161461196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613f39565b60405180910390fd5b80601390805190602001906119839291906134a9565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ef576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611a48612bd3565b73ffffffffffffffffffffffffffffffffffffffff16611a66611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390613f39565b60405180910390fd5b611ac66000612ded565b565b734c9ffb83e57d349dc0ccd22b911e7cc80728da3981565b611ae8612bd3565b73ffffffffffffffffffffffffffffffffffffffff16611b06611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613f39565b60405180910390fd5b8060118190555050565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b606060048054611bc490614277565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf090614277565b8015611c3d5780601f10611c1257610100808354040283529160200191611c3d565b820191906000526020600020905b815481529060010190602001808311611c2057829003601f168201915b5050505050905090565b600d5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb290613f19565b60405180910390fd5b80600260125414611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890613e99565b60405180910390fd5b60008111611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b90613f99565b60405180910390fd5b80601054611d52919061414b565b3414611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a90613f59565b60405180910390fd5b600c5481611d9f610fb3565b611da991906140f5565b10611de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de090613f79565b60405180910390fd5b6001600e54611df891906140f5565b81611e0233612d78565b611e0c91906140f5565b10611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390613fb9565b60405180910390fd5b611e563383612dcf565b6000734c9ffb83e57d349dc0ccd22b911e7cc80728da3973ffffffffffffffffffffffffffffffffffffffff1634604051611e9090613dc5565b60006040518083038185875af1925050503d8060008114611ecd576040519150601f19603f3d011682016040523d82523d6000602084013e611ed2565b606091505b5050905080611ee057600080fd5b505050565b611eed612bcb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f52576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960009054906101000a900460ff16158015611fbf575060011515600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b156120cc578060086000611fd1612bcb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661207e612bcb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120c39190613e41565b60405180910390a35b600960009054906101000a900460ff16156121e95780600860006120ee612bcb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661219b612bcb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121e09190613e41565b60405180910390a35b5050565b6121f8848484611050565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461225a5761222384848484612eb1565b612259576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600061226f83600b5484613011565b905092915050565b60125481565b606061228882612b6c565b6122be576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006122c8613028565b905060006122d46130ba565b90506000825114156122f55760405180602001604052806000815250612322565b816122ff8561314c565b8260405160200161231293929190613d94565b6040516020818303038152906040525b92505050919050565b612333612bd3565b73ffffffffffffffffffffffffffffffffffffffff16612351611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e90613f39565b60405180910390fd5b80600e8190555050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690613f19565b60405180910390fd5b81600160125414612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c90613ef9565b60405180910390fd5b600081116124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f90613f99565b60405180910390fd5b600d546124b3610fb3565b11156125095780600f546124c7919061414b565b3414612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90613f59565b60405180910390fd5b5b600c5481612515610fb3565b61251f91906140f5565b1061255f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255690613f79565b60405180910390fd5b6001600e5461256e91906140f5565b8161257833612d78565b61258291906140f5565b106125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b990613fb9565b60405180910390fd5b6125f282336040516020016125d79190613d79565b60405160208183030381529060405280519060200120612260565b612631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262890613ed9565b60405180910390fd5b61266182336040516020016126469190613d79565b60405160208183030381529060405280519060200120612260565b156126c3576001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061271c565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6127263384612dcf565b6000734c9ffb83e57d349dc0ccd22b911e7cc80728da3973ffffffffffffffffffffffffffffffffffffffff163460405161276090613dc5565b60006040518083038185875af1925050503d806000811461279d576040519150601f19603f3d011682016040523d82523d6000602084013e6127a2565b606091505b50509050806127b057600080fd5b50505050565b6127be612bd3565b73ffffffffffffffffffffffffffffffffffffffff166127dc611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614612832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282990613f39565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612878573d6000803e3d6000fd5b5050565b612884612bd3565b73ffffffffffffffffffffffffffffffffffffffff166128a2611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146128f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ef90613f39565b60405180910390fd5b80600b8190555050565b60007333cc06cc40e43c08e3220d076617f0241dab21fb73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561295557600190506129e2565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b92915050565b600b5481565b6129f6612bd3565b73ffffffffffffffffffffffffffffffffffffffff16612a14611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6190613f39565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad190613eb9565b60405180910390fd5b612ae381612ded565b50565b612aee612bd3565b73ffffffffffffffffffffffffffffffffffffffff16612b0c611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614612b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5990613f39565b60405180910390fd5b80600d8190555050565b600081612b77612bdb565b11158015612b86575060015482105b8015612bc4575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b60008082905080612bef612bdb565b11612c7757600154811015612c765760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612c74575b6000811415612c6a576005600083600190039350838152602001908152602001600020549050612c3f565b8092505050612ca9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612d3686868461319c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612de98282604051806020016040528060008152506131a5565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ed7612bcb565b8786866040518563ffffffff1660e01b8152600401612ef99493929190613df5565b602060405180830381600087803b158015612f1357600080fd5b505af1925050508015612f4457506040513d601f19601f82011682018060405250810190612f419190613a03565b60015b612fbe573d8060008114612f74576040519150601f19603f3d011682016040523d82523d6000602084013e612f79565b606091505b50600081511415612fb6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008261301e8584613243565b1490509392505050565b60606013805461303790614277565b80601f016020809104026020016040519081016040528092919081815260200182805461306390614277565b80156130b05780601f10613085576101008083540402835291602001916130b0565b820191906000526020600020905b81548152906001019060200180831161309357829003601f168201915b5050505050905090565b6060601480546130c990614277565b80601f01602080910402602001604051908101604052809291908181526020018280546130f590614277565b80156131425780601f1061311757610100808354040283529160200191613142565b820191906000526020600020905b81548152906001019060200180831161312557829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561318857600183039250600a81066030018353600a810490508061318357613188565b61315d565b508181036020830392508083525050919050565b60009392505050565b6131af8383613299565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461323e5760006001549050600083820390505b6131f06000868380600101945086612eb1565b613226576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106131dd57816001541461323b57600080fd5b50505b505050565b60008082905060005b845181101561328e576132798286838151811061326c5761326b6143a5565b5b6020026020010151613457565b91508080613286906142da565b91505061324c565b508091505092915050565b6000600154905060008214156132db576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132e86000848385612d19565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061335f836133506000866000612d1f565b61335985613482565b17612d47565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461340057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506133c5565b50600082141561343c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506134526000848385612d72565b505050565b600081831061346f5761346a8284613492565b61347a565b6134798383613492565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546134b590614277565b90600052602060002090601f0160209004810192826134d7576000855561351e565b82601f106134f057805160ff191683800117855561351e565b8280016001018555821561351e579182015b8281111561351d578251825591602001919060010190613502565b5b50905061352b919061352f565b5090565b5b80821115613548576000816000905550600101613530565b5090565b600061355f61355a84614019565b613ff4565b9050808382526020820190508285602086028201111561358257613581614408565b5b60005b858110156135b2578161359888826136ad565b845260208401935060208301925050600181019050613585565b5050509392505050565b60006135cf6135ca84614045565b613ff4565b9050828152602081018484840111156135eb576135ea61440d565b5b6135f6848285614235565b509392505050565b600061361161360c84614076565b613ff4565b90508281526020810184848401111561362d5761362c61440d565b5b613638848285614235565b509392505050565b60008135905061364f81614649565b92915050565b60008135905061366481614660565b92915050565b600082601f83011261367f5761367e614403565b5b813561368f84826020860161354c565b91505092915050565b6000813590506136a781614677565b92915050565b6000813590506136bc8161468e565b92915050565b6000813590506136d1816146a5565b92915050565b6000815190506136e6816146a5565b92915050565b600082601f83011261370157613700614403565b5b81356137118482602086016135bc565b91505092915050565b600082601f83011261372f5761372e614403565b5b813561373f8482602086016135fe565b91505092915050565b600081359050613757816146bc565b92915050565b60006020828403121561377357613772614417565b5b600061378184828501613640565b91505092915050565b6000602082840312156137a05761379f614417565b5b60006137ae84828501613655565b91505092915050565b600080604083850312156137ce576137cd614417565b5b60006137dc85828601613640565b92505060206137ed85828601613640565b9150509250929050565b6000806000606084860312156138105761380f614417565b5b600061381e86828701613640565b935050602061382f86828701613640565b925050604061384086828701613748565b9150509250925092565b6000806000806080858703121561386457613863614417565b5b600061387287828801613640565b945050602061388387828801613640565b935050604061389487828801613748565b925050606085013567ffffffffffffffff8111156138b5576138b4614412565b5b6138c1878288016136ec565b91505092959194509250565b600080604083850312156138e4576138e3614417565b5b60006138f285828601613640565b925050602061390385828601613698565b9150509250929050565b6000806040838503121561392457613923614417565b5b600061393285828601613640565b925050602061394385828601613748565b9150509250929050565b6000806040838503121561396457613963614417565b5b600083013567ffffffffffffffff81111561398257613981614412565b5b61398e8582860161366a565b925050602061399f858286016136ad565b9150509250929050565b6000602082840312156139bf576139be614417565b5b60006139cd848285016136ad565b91505092915050565b6000602082840312156139ec576139eb614417565b5b60006139fa848285016136c2565b91505092915050565b600060208284031215613a1957613a18614417565b5b6000613a27848285016136d7565b91505092915050565b600060208284031215613a4657613a45614417565b5b600082013567ffffffffffffffff811115613a6457613a63614412565b5b613a708482850161371a565b91505092915050565b600060208284031215613a8f57613a8e614417565b5b6000613a9d84828501613748565b91505092915050565b60008060408385031215613abd57613abc614417565b5b6000613acb85828601613748565b925050602083013567ffffffffffffffff811115613aec57613aeb614412565b5b613af88582860161366a565b9150509250929050565b613b0b816141a5565b82525050565b613b22613b1d826141a5565b614323565b82525050565b613b31816141c9565b82525050565b613b40816141d5565b82525050565b6000613b51826140a7565b613b5b81856140bd565b9350613b6b818560208601614244565b613b748161441c565b840191505092915050565b6000613b8a826140b2565b613b9481856140d9565b9350613ba4818560208601614244565b613bad8161441c565b840191505092915050565b6000613bc3826140b2565b613bcd81856140ea565b9350613bdd818560208601614244565b80840191505092915050565b6000613bf66012836140d9565b9150613c018261443a565b602082019050919050565b6000613c196026836140d9565b9150613c2482614463565b604082019050919050565b6000613c3c6015836140d9565b9150613c47826144b2565b602082019050919050565b6000613c5f6014836140d9565b9150613c6a826144db565b602082019050919050565b6000613c82600b836140d9565b9150613c8d82614504565b602082019050919050565b6000613ca56020836140d9565b9150613cb08261452d565b602082019050919050565b6000613cc8601b836140d9565b9150613cd382614556565b602082019050919050565b6000613ceb6000836140ce565b9150613cf68261457f565b600082019050919050565b6000613d0e6014836140d9565b9150613d1982614582565b602082019050919050565b6000613d316021836140d9565b9150613d3c826145ab565b604082019050919050565b6000613d546024836140d9565b9150613d5f826145fa565b604082019050919050565b613d738161422b565b82525050565b6000613d858284613b11565b60148201915081905092915050565b6000613da08286613bb8565b9150613dac8285613bb8565b9150613db88284613bb8565b9150819050949350505050565b6000613dd082613cde565b9150819050919050565b6000602082019050613def6000830184613b02565b92915050565b6000608082019050613e0a6000830187613b02565b613e176020830186613b02565b613e246040830185613d6a565b8181036060830152613e368184613b46565b905095945050505050565b6000602082019050613e566000830184613b28565b92915050565b6000602082019050613e716000830184613b37565b92915050565b60006020820190508181036000830152613e918184613b7f565b905092915050565b60006020820190508181036000830152613eb281613be9565b9050919050565b60006020820190508181036000830152613ed281613c0c565b9050919050565b60006020820190508181036000830152613ef281613c2f565b9050919050565b60006020820190508181036000830152613f1281613c52565b9050919050565b60006020820190508181036000830152613f3281613c75565b9050919050565b60006020820190508181036000830152613f5281613c98565b9050919050565b60006020820190508181036000830152613f7281613cbb565b9050919050565b60006020820190508181036000830152613f9281613d01565b9050919050565b60006020820190508181036000830152613fb281613d24565b9050919050565b60006020820190508181036000830152613fd281613d47565b9050919050565b6000602082019050613fee6000830184613d6a565b92915050565b6000613ffe61400f565b905061400a82826142a9565b919050565b6000604051905090565b600067ffffffffffffffff821115614034576140336143d4565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140605761405f6143d4565b5b6140698261441c565b9050602081019050919050565b600067ffffffffffffffff821115614091576140906143d4565b5b61409a8261441c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141008261422b565b915061410b8361422b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141405761413f614347565b5b828201905092915050565b60006141568261422b565b91506141618361422b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561419a57614199614347565b5b828202905092915050565b60006141b08261420b565b9050919050565b60006141c28261420b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614262578082015181840152602081019050614247565b83811115614271576000848401525b50505050565b6000600282049050600182168061428f57607f821691505b602082108114156142a3576142a2614376565b5b50919050565b6142b28261441c565b810181811067ffffffffffffffff821117156142d1576142d06143d4565b5b80604052505050565b60006142e58261422b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431857614317614347565b5b600182019050919050565b600061432e82614335565b9050919050565b60006143408261442d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420612076616c696420416c6c6f776973742e0000000000000000000000600082015250565b7f57686974656c697374206973207061757365642e000000000000000000000000600082015250565b7f436f6d65206f6e20212121000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c756520737570706c69656420697320696e636f72726563740000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752061726520657863656564696e6720796f7572206d696e74696e67206c60008201527f696d697400000000000000000000000000000000000000000000000000000000602082015250565b614652816141a5565b811461465d57600080fd5b50565b614669816141b7565b811461467457600080fd5b50565b614680816141c9565b811461468b57600080fd5b50565b614697816141d5565b81146146a257600080fd5b50565b6146ae816141df565b81146146b957600080fd5b50565b6146c58161422b565b81146146d057600080fd5b5056fea2646970667358221220a1790a1825af462f0ca6fb7d21b7f3f442af05e078efd443e7d2e0cc0e2e701464736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f6261667962656968713232783378656369756d6875777a34716f636d6b6b743634796e696a3336796b6637367235356c63783335366966636261752f6173736574732f

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063715018a611610144578063b8a20ed0116100b6578063d50f6bf01161007a578063d50f6bf0146108e1578063dab5f3401461090a578063e985e9c514610933578063ebf0c71714610970578063f2fde38b1461099b578063f676308a146109c457610267565b8063b8a20ed0146107f7578063c040e6b814610834578063c87b56dd1461085f578063cf00b5631461089c578063d2cab056146108c557610267565b80639475f345116101085780639475f345146106f657806395d89b41146107335780639858cf191461075e578063a0712d6814610789578063a22cb465146107a5578063b88d4fde146107ce57610267565b8063715018a614610635578063738170a41461064c5780637d1db0281461067757806388089f0b146106a05780638da5cb5b146106cb57610267565b806342842e0e116101dd57806356d7b035116101a157806356d7b03514610525578063594d3a501461053c5780636352211e146105675780636bde2627146105a45780636ea0061b146105cf57806370a08231146105f857610267565b806342842e0e1461045f57806346419b1614610488578063484b973c146104b35780634aaf78f1146104cf5780634fff968a146104fa57610267565b80630ef6a94b1161022f5780630ef6a94b1461036557806318160ddd1461038e578063228025e8146103b957806323b872dd146103e257806332cb6b0c1461040b5780633eb1d7771461043657610267565b806301ffc9a71461026c578063041e4680146102a957806306fdde03146102d4578063081812fc146102ff578063095ea7b31461033c575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906139d6565b6109ed565b6040516102a09190613e41565b60405180910390f35b3480156102b557600080fd5b506102be610a7f565b6040516102cb9190613e77565b60405180910390f35b3480156102e057600080fd5b506102e9610b0d565b6040516102f69190613e77565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190613a79565b610b9f565b6040516103339190613dda565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e919061390d565b610c1e565b005b34801561037157600080fd5b5061038c60048036038101906103879190613a30565b610f1d565b005b34801561039a57600080fd5b506103a3610fb3565b6040516103b09190613fd9565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613a79565b610fca565b005b3480156103ee57600080fd5b50610409600480360381019061040491906137f7565b611050565b005b34801561041757600080fd5b50610420611375565b60405161042d9190613fd9565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190613a79565b61137b565b005b34801561046b57600080fd5b50610486600480360381019061048191906137f7565b61144d565b005b34801561049457600080fd5b5061049d61146d565b6040516104aa9190613e77565b60405180910390f35b6104cd60048036038101906104c8919061390d565b6114fb565b005b3480156104db57600080fd5b506104e4611812565b6040516104f19190613e41565b60405180910390f35b34801561050657600080fd5b5061050f611825565b60405161051c9190613fd9565b60405180910390f35b34801561053157600080fd5b5061053a61182b565b005b34801561054857600080fd5b506105516118d3565b60405161055e9190613fd9565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190613a79565b6118d9565b60405161059b9190613dda565b60405180910390f35b3480156105b057600080fd5b506105b96118eb565b6040516105c69190613fd9565b60405180910390f35b3480156105db57600080fd5b506105f660048036038101906105f19190613a30565b6118f1565b005b34801561060457600080fd5b5061061f600480360381019061061a919061375d565b611987565b60405161062c9190613fd9565b60405180910390f35b34801561064157600080fd5b5061064a611a40565b005b34801561065857600080fd5b50610661611ac8565b60405161066e9190613dda565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190613a79565b611ae0565b005b3480156106ac57600080fd5b506106b5611b66565b6040516106c29190613fd9565b60405180910390f35b3480156106d757600080fd5b506106e0611b6c565b6040516106ed9190613dda565b60405180910390f35b34801561070257600080fd5b5061071d6004803603810190610718919061375d565b611b95565b60405161072a9190613e41565b60405180910390f35b34801561073f57600080fd5b50610748611bb5565b6040516107559190613e77565b60405180910390f35b34801561076a57600080fd5b50610773611c47565b6040516107809190613fd9565b60405180910390f35b6107a3600480360381019061079e9190613a79565b611c4d565b005b3480156107b157600080fd5b506107cc60048036038101906107c791906138cd565b611ee5565b005b3480156107da57600080fd5b506107f560048036038101906107f0919061384a565b6121ed565b005b34801561080357600080fd5b5061081e6004803603810190610819919061394d565b612260565b60405161082b9190613e41565b60405180910390f35b34801561084057600080fd5b50610849612277565b6040516108569190613fd9565b60405180910390f35b34801561086b57600080fd5b5061088660048036038101906108819190613a79565b61227d565b6040516108939190613e77565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be9190613a79565b61232b565b005b6108df60048036038101906108da9190613aa6565b6123b1565b005b3480156108ed57600080fd5b506109086004803603810190610903919061378a565b6127b6565b005b34801561091657600080fd5b50610931600480360381019061092c91906139a9565b61287c565b005b34801561093f57600080fd5b5061095a600480360381019061095591906137b7565b612902565b6040516109679190613e41565b60405180910390f35b34801561097c57600080fd5b506109856129e8565b6040516109929190613e5c565b60405180910390f35b3480156109a757600080fd5b506109c260048036038101906109bd919061375d565b6129ee565b005b3480156109d057600080fd5b506109eb60048036038101906109e69190613a79565b612ae6565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a785750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60138054610a8c90614277565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab890614277565b8015610b055780601f10610ada57610100808354040283529160200191610b05565b820191906000526020600020905b815481529060010190602001808311610ae857829003601f168201915b505050505081565b606060038054610b1c90614277565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4890614277565b8015610b955780601f10610b6a57610100808354040283529160200191610b95565b820191906000526020600020905b815481529060010190602001808311610b7857829003601f168201915b5050505050905090565b6000610baa82612b6c565b610be0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c29826118d9565b9050600960009054906101000a900460ff16158015610c98575060011515600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b15610dd0578073ffffffffffffffffffffffffffffffffffffffff16610cbc612bcb565b73ffffffffffffffffffffffffffffffffffffffff1614610d1f57610ce881610ce3612bcb565b612902565b610d1e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b600960009054906101000a900460ff1615610f18578073ffffffffffffffffffffffffffffffffffffffff16610e04612bcb565b73ffffffffffffffffffffffffffffffffffffffff1614610e6757610e3081610e2b612bcb565b612902565b610e66576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505050565b610f25612bd3565b73ffffffffffffffffffffffffffffffffffffffff16610f43611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090613f39565b60405180910390fd5b8060149080519060200190610faf9291906134a9565b5050565b6000610fbd612bdb565b6002546001540303905090565b610fd2612bd3565b73ffffffffffffffffffffffffffffffffffffffff16610ff0611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90613f39565b60405180910390fd5b80600c8190555050565b600061105b82612be0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146110c2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806110ce84612cae565b915091506110e481876110df612bcb565b612cd5565b611130576110f9866110f4612bcb565b612902565b61112f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611197576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111a48686866001612d19565b80156111af57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061127d85611259888887612d1f565b7c020000000000000000000000000000000000000000000000000000000017612d47565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611305576000600185019050600060056000838152602001908152602001600020541415611303576001548114611302578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461136d8686866001612d72565b505050505050565b600c5481565b611383612bd3565b73ffffffffffffffffffffffffffffffffffffffff166113a1611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90613f39565b60405180910390fd5b80601281905550600181141561142457664fefa17b724000600f81905550669fdf42f6e480006010819055505b600281141561144a57664fefa17b724000600f81905550669fdf42f6e480006010819055505b50565b611468838383604051806020016040528060008152506121ed565b505050565b6014805461147a90614277565b80601f01602080910402602001604051908101604052809291908181526020018280546114a690614277565b80156114f35780601f106114c8576101008083540402835291602001916114f3565b820191906000526020600020905b8154815290600101906020018083116114d657829003601f168201915b505050505081565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090613f19565b60405180910390fd5b80826000601254116115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790613e99565b60405180910390fd5b600082116115f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ea90613f99565b60405180910390fd5b81601154611601919061414b565b3414611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163990613f59565b60405180910390fd5b600c548261164e610fb3565b61165891906140f5565b10611698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168f90613f79565b60405180910390fd5b6001600e546116a791906140f5565b826116b183612d78565b6116bb91906140f5565b106116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290613fb9565b60405180910390fd5b611703612bd3565b73ffffffffffffffffffffffffffffffffffffffff16611721611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90613f39565b60405180910390fd5b6117818484612dcf565b6000734c9ffb83e57d349dc0ccd22b911e7cc80728da3973ffffffffffffffffffffffffffffffffffffffff16346040516117bb90613dc5565b60006040518083038185875af1925050503d80600081146117f8576040519150601f19603f3d011682016040523d82523d6000602084013e6117fd565b606091505b505090508061180b57600080fd5b5050505050565b600960009054906101000a900460ff1681565b600e5481565b611833612bd3565b73ffffffffffffffffffffffffffffffffffffffff16611851611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90613f39565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b60115481565b60006118e482612be0565b9050919050565b60105481565b6118f9612bd3565b73ffffffffffffffffffffffffffffffffffffffff16611917611b6c565b73ffffffffffffffffffffffffffffffffffffffff161461196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613f39565b60405180910390fd5b80601390805190602001906119839291906134a9565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ef576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611a48612bd3565b73ffffffffffffffffffffffffffffffffffffffff16611a66611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390613f39565b60405180910390fd5b611ac66000612ded565b565b734c9ffb83e57d349dc0ccd22b911e7cc80728da3981565b611ae8612bd3565b73ffffffffffffffffffffffffffffffffffffffff16611b06611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613f39565b60405180910390fd5b8060118190555050565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b606060048054611bc490614277565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf090614277565b8015611c3d5780601f10611c1257610100808354040283529160200191611c3d565b820191906000526020600020905b815481529060010190602001808311611c2057829003601f168201915b5050505050905090565b600d5481565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb290613f19565b60405180910390fd5b80600260125414611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890613e99565b60405180910390fd5b60008111611d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3b90613f99565b60405180910390fd5b80601054611d52919061414b565b3414611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a90613f59565b60405180910390fd5b600c5481611d9f610fb3565b611da991906140f5565b10611de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de090613f79565b60405180910390fd5b6001600e54611df891906140f5565b81611e0233612d78565b611e0c91906140f5565b10611e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4390613fb9565b60405180910390fd5b611e563383612dcf565b6000734c9ffb83e57d349dc0ccd22b911e7cc80728da3973ffffffffffffffffffffffffffffffffffffffff1634604051611e9090613dc5565b60006040518083038185875af1925050503d8060008114611ecd576040519150601f19603f3d011682016040523d82523d6000602084013e611ed2565b606091505b5050905080611ee057600080fd5b505050565b611eed612bcb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f52576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960009054906101000a900460ff16158015611fbf575060011515600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b156120cc578060086000611fd1612bcb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661207e612bcb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120c39190613e41565b60405180910390a35b600960009054906101000a900460ff16156121e95780600860006120ee612bcb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661219b612bcb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121e09190613e41565b60405180910390a35b5050565b6121f8848484611050565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461225a5761222384848484612eb1565b612259576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600061226f83600b5484613011565b905092915050565b60125481565b606061228882612b6c565b6122be576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006122c8613028565b905060006122d46130ba565b90506000825114156122f55760405180602001604052806000815250612322565b816122ff8561314c565b8260405160200161231293929190613d94565b6040516020818303038152906040525b92505050919050565b612333612bd3565b73ffffffffffffffffffffffffffffffffffffffff16612351611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146123a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239e90613f39565b60405180910390fd5b80600e8190555050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690613f19565b60405180910390fd5b81600160125414612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c90613ef9565b60405180910390fd5b600081116124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f90613f99565b60405180910390fd5b600d546124b3610fb3565b11156125095780600f546124c7919061414b565b3414612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90613f59565b60405180910390fd5b5b600c5481612515610fb3565b61251f91906140f5565b1061255f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255690613f79565b60405180910390fd5b6001600e5461256e91906140f5565b8161257833612d78565b61258291906140f5565b106125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b990613fb9565b60405180910390fd5b6125f282336040516020016125d79190613d79565b60405160208183030381529060405280519060200120612260565b612631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262890613ed9565b60405180910390fd5b61266182336040516020016126469190613d79565b60405160208183030381529060405280519060200120612260565b156126c3576001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061271c565b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6127263384612dcf565b6000734c9ffb83e57d349dc0ccd22b911e7cc80728da3973ffffffffffffffffffffffffffffffffffffffff163460405161276090613dc5565b60006040518083038185875af1925050503d806000811461279d576040519150601f19603f3d011682016040523d82523d6000602084013e6127a2565b606091505b50509050806127b057600080fd5b50505050565b6127be612bd3565b73ffffffffffffffffffffffffffffffffffffffff166127dc611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614612832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282990613f39565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612878573d6000803e3d6000fd5b5050565b612884612bd3565b73ffffffffffffffffffffffffffffffffffffffff166128a2611b6c565b73ffffffffffffffffffffffffffffffffffffffff16146128f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ef90613f39565b60405180910390fd5b80600b8190555050565b60007333cc06cc40e43c08e3220d076617f0241dab21fb73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561295557600190506129e2565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b92915050565b600b5481565b6129f6612bd3565b73ffffffffffffffffffffffffffffffffffffffff16612a14611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614612a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6190613f39565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad190613eb9565b60405180910390fd5b612ae381612ded565b50565b612aee612bd3565b73ffffffffffffffffffffffffffffffffffffffff16612b0c611b6c565b73ffffffffffffffffffffffffffffffffffffffff1614612b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5990613f39565b60405180910390fd5b80600d8190555050565b600081612b77612bdb565b11158015612b86575060015482105b8015612bc4575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b600090565b60008082905080612bef612bdb565b11612c7757600154811015612c765760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612c74575b6000811415612c6a576005600083600190039350838152602001908152602001600020549050612c3f565b8092505050612ca9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612d3686868461319c565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612de98282604051806020016040528060008152506131a5565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ed7612bcb565b8786866040518563ffffffff1660e01b8152600401612ef99493929190613df5565b602060405180830381600087803b158015612f1357600080fd5b505af1925050508015612f4457506040513d601f19601f82011682018060405250810190612f419190613a03565b60015b612fbe573d8060008114612f74576040519150601f19603f3d011682016040523d82523d6000602084013e612f79565b606091505b50600081511415612fb6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008261301e8584613243565b1490509392505050565b60606013805461303790614277565b80601f016020809104026020016040519081016040528092919081815260200182805461306390614277565b80156130b05780601f10613085576101008083540402835291602001916130b0565b820191906000526020600020905b81548152906001019060200180831161309357829003601f168201915b5050505050905090565b6060601480546130c990614277565b80601f01602080910402602001604051908101604052809291908181526020018280546130f590614277565b80156131425780601f1061311757610100808354040283529160200191613142565b820191906000526020600020905b81548152906001019060200180831161312557829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561318857600183039250600a81066030018353600a810490508061318357613188565b61315d565b508181036020830392508083525050919050565b60009392505050565b6131af8383613299565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461323e5760006001549050600083820390505b6131f06000868380600101945086612eb1565b613226576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106131dd57816001541461323b57600080fd5b50505b505050565b60008082905060005b845181101561328e576132798286838151811061326c5761326b6143a5565b5b6020026020010151613457565b91508080613286906142da565b91505061324c565b508091505092915050565b6000600154905060008214156132db576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6132e86000848385612d19565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061335f836133506000866000612d1f565b61335985613482565b17612d47565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461340057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506133c5565b50600082141561343c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506134526000848385612d72565b505050565b600081831061346f5761346a8284613492565b61347a565b6134798383613492565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546134b590614277565b90600052602060002090601f0160209004810192826134d7576000855561351e565b82601f106134f057805160ff191683800117855561351e565b8280016001018555821561351e579182015b8281111561351d578251825591602001919060010190613502565b5b50905061352b919061352f565b5090565b5b80821115613548576000816000905550600101613530565b5090565b600061355f61355a84614019565b613ff4565b9050808382526020820190508285602086028201111561358257613581614408565b5b60005b858110156135b2578161359888826136ad565b845260208401935060208301925050600181019050613585565b5050509392505050565b60006135cf6135ca84614045565b613ff4565b9050828152602081018484840111156135eb576135ea61440d565b5b6135f6848285614235565b509392505050565b600061361161360c84614076565b613ff4565b90508281526020810184848401111561362d5761362c61440d565b5b613638848285614235565b509392505050565b60008135905061364f81614649565b92915050565b60008135905061366481614660565b92915050565b600082601f83011261367f5761367e614403565b5b813561368f84826020860161354c565b91505092915050565b6000813590506136a781614677565b92915050565b6000813590506136bc8161468e565b92915050565b6000813590506136d1816146a5565b92915050565b6000815190506136e6816146a5565b92915050565b600082601f83011261370157613700614403565b5b81356137118482602086016135bc565b91505092915050565b600082601f83011261372f5761372e614403565b5b813561373f8482602086016135fe565b91505092915050565b600081359050613757816146bc565b92915050565b60006020828403121561377357613772614417565b5b600061378184828501613640565b91505092915050565b6000602082840312156137a05761379f614417565b5b60006137ae84828501613655565b91505092915050565b600080604083850312156137ce576137cd614417565b5b60006137dc85828601613640565b92505060206137ed85828601613640565b9150509250929050565b6000806000606084860312156138105761380f614417565b5b600061381e86828701613640565b935050602061382f86828701613640565b925050604061384086828701613748565b9150509250925092565b6000806000806080858703121561386457613863614417565b5b600061387287828801613640565b945050602061388387828801613640565b935050604061389487828801613748565b925050606085013567ffffffffffffffff8111156138b5576138b4614412565b5b6138c1878288016136ec565b91505092959194509250565b600080604083850312156138e4576138e3614417565b5b60006138f285828601613640565b925050602061390385828601613698565b9150509250929050565b6000806040838503121561392457613923614417565b5b600061393285828601613640565b925050602061394385828601613748565b9150509250929050565b6000806040838503121561396457613963614417565b5b600083013567ffffffffffffffff81111561398257613981614412565b5b61398e8582860161366a565b925050602061399f858286016136ad565b9150509250929050565b6000602082840312156139bf576139be614417565b5b60006139cd848285016136ad565b91505092915050565b6000602082840312156139ec576139eb614417565b5b60006139fa848285016136c2565b91505092915050565b600060208284031215613a1957613a18614417565b5b6000613a27848285016136d7565b91505092915050565b600060208284031215613a4657613a45614417565b5b600082013567ffffffffffffffff811115613a6457613a63614412565b5b613a708482850161371a565b91505092915050565b600060208284031215613a8f57613a8e614417565b5b6000613a9d84828501613748565b91505092915050565b60008060408385031215613abd57613abc614417565b5b6000613acb85828601613748565b925050602083013567ffffffffffffffff811115613aec57613aeb614412565b5b613af88582860161366a565b9150509250929050565b613b0b816141a5565b82525050565b613b22613b1d826141a5565b614323565b82525050565b613b31816141c9565b82525050565b613b40816141d5565b82525050565b6000613b51826140a7565b613b5b81856140bd565b9350613b6b818560208601614244565b613b748161441c565b840191505092915050565b6000613b8a826140b2565b613b9481856140d9565b9350613ba4818560208601614244565b613bad8161441c565b840191505092915050565b6000613bc3826140b2565b613bcd81856140ea565b9350613bdd818560208601614244565b80840191505092915050565b6000613bf66012836140d9565b9150613c018261443a565b602082019050919050565b6000613c196026836140d9565b9150613c2482614463565b604082019050919050565b6000613c3c6015836140d9565b9150613c47826144b2565b602082019050919050565b6000613c5f6014836140d9565b9150613c6a826144db565b602082019050919050565b6000613c82600b836140d9565b9150613c8d82614504565b602082019050919050565b6000613ca56020836140d9565b9150613cb08261452d565b602082019050919050565b6000613cc8601b836140d9565b9150613cd382614556565b602082019050919050565b6000613ceb6000836140ce565b9150613cf68261457f565b600082019050919050565b6000613d0e6014836140d9565b9150613d1982614582565b602082019050919050565b6000613d316021836140d9565b9150613d3c826145ab565b604082019050919050565b6000613d546024836140d9565b9150613d5f826145fa565b604082019050919050565b613d738161422b565b82525050565b6000613d858284613b11565b60148201915081905092915050565b6000613da08286613bb8565b9150613dac8285613bb8565b9150613db88284613bb8565b9150819050949350505050565b6000613dd082613cde565b9150819050919050565b6000602082019050613def6000830184613b02565b92915050565b6000608082019050613e0a6000830187613b02565b613e176020830186613b02565b613e246040830185613d6a565b8181036060830152613e368184613b46565b905095945050505050565b6000602082019050613e566000830184613b28565b92915050565b6000602082019050613e716000830184613b37565b92915050565b60006020820190508181036000830152613e918184613b7f565b905092915050565b60006020820190508181036000830152613eb281613be9565b9050919050565b60006020820190508181036000830152613ed281613c0c565b9050919050565b60006020820190508181036000830152613ef281613c2f565b9050919050565b60006020820190508181036000830152613f1281613c52565b9050919050565b60006020820190508181036000830152613f3281613c75565b9050919050565b60006020820190508181036000830152613f5281613c98565b9050919050565b60006020820190508181036000830152613f7281613cbb565b9050919050565b60006020820190508181036000830152613f9281613d01565b9050919050565b60006020820190508181036000830152613fb281613d24565b9050919050565b60006020820190508181036000830152613fd281613d47565b9050919050565b6000602082019050613fee6000830184613d6a565b92915050565b6000613ffe61400f565b905061400a82826142a9565b919050565b6000604051905090565b600067ffffffffffffffff821115614034576140336143d4565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140605761405f6143d4565b5b6140698261441c565b9050602081019050919050565b600067ffffffffffffffff821115614091576140906143d4565b5b61409a8261441c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006141008261422b565b915061410b8361422b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141405761413f614347565b5b828201905092915050565b60006141568261422b565b91506141618361422b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561419a57614199614347565b5b828202905092915050565b60006141b08261420b565b9050919050565b60006141c28261420b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614262578082015181840152602081019050614247565b83811115614271576000848401525b50505050565b6000600282049050600182168061428f57607f821691505b602082108114156142a3576142a2614376565b5b50919050565b6142b28261441c565b810181811067ffffffffffffffff821117156142d1576142d06143d4565b5b80604052505050565b60006142e58261422b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561431857614317614347565b5b600182019050919050565b600061432e82614335565b9050919050565b60006143408261442d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420612076616c696420416c6c6f776973742e0000000000000000000000600082015250565b7f57686974656c697374206973207061757365642e000000000000000000000000600082015250565b7f436f6d65206f6e20212121000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c756520737570706c69656420697320696e636f72726563740000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752061726520657863656564696e6720796f7572206d696e74696e67206c60008201527f696d697400000000000000000000000000000000000000000000000000000000602082015250565b614652816141a5565b811461465d57600080fd5b50565b614669816141b7565b811461467457600080fd5b50565b614680816141c9565b811461468b57600080fd5b50565b614697816141d5565b81146146a257600080fd5b50565b6146ae816141df565b81146146b957600080fd5b50565b6146c58161422b565b81146146d057600080fd5b5056fea2646970667358221220a1790a1825af462f0ca6fb7d21b7f3f442af05e078efd443e7d2e0cc0e2e701464736f6c63430008070033

Deployed Bytecode Sourcemap

75731:5278:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41626:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76190:119;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42528:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50241:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49196:886;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79083:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38279:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77359:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54352:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75798:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76889:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57265:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76316:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78688:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36852:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75876:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47783:90;;;;;;;;;;;;;:::i;:::-;;76020:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43921:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75967:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78957:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39463:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22291:94;;;;;;;;;;;;;:::i;:::-;;76099:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77237:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75917:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21640:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37025:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42704:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75837:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77872:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50799:632;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58048:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48370:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76068:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77474:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76777:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78110:570;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79218:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48280:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51588:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37081:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22540:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76662:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41626:639;41711:4;42050:10;42035:25;;:11;:25;;;;:102;;;;42127:10;42112:25;;:11;:25;;;;42035:102;:179;;;;42204:10;42189:25;;:11;:25;;;;42035:179;42015:199;;41626:639;;;:::o;76190:119::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42528:100::-;42582:13;42615:5;42608:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42528:100;:::o;50241:218::-;50317:7;50342:16;50350:7;50342;:16::i;:::-;50337:64;;50367:34;;;;;;;;;;;;;;50337:64;50421:15;:24;50437:7;50421:24;;;;;;;;;;;:30;;;;;;;;;;;;50414:37;;50241:218;;;:::o;49196:886::-;49277:13;49293:16;49301:7;49293;:16::i;:::-;49277:32;;49324:17;;;;;;;;;;;49323:18;:54;;;;;49373:4;49345:32;;:17;:24;49363:5;49345:24;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;49323:54;49320:403;;;49446:5;49423:28;;:19;:17;:19::i;:::-;:28;;;49419:187;;49475:44;49492:5;49499:19;:17;:19::i;:::-;49475:16;:44::i;:::-;49470:136;;49551:35;;;;;;;;;;;;;;49470:136;49419:187;49657:2;49624:15;:24;49640:7;49624:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;49703:7;49699:2;49683:28;;49692:5;49683:28;;;;;;;;;;;;49320:403;49746:17;;;;;;;;;;;49743:332;;;49806:5;49783:28;;:19;:17;:19::i;:::-;:28;;;49779:187;;49835:44;49852:5;49859:19;:17;:19::i;:::-;49835:16;:44::i;:::-;49830:136;;49911:35;;;;;;;;;;;;;;49830:136;49779:187;50013:2;49980:15;:24;49996:7;49980:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;50055:7;50051:2;50035:28;;50044:5;50035:28;;;;;;;;;;;;49743:332;49266:816;49196:886;;:::o;79083:123::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79183:15:::1;79166:14;:32;;;;;;;;;;;;:::i;:::-;;79083:123:::0;:::o;38279:323::-;38340:7;38568:15;:13;:15::i;:::-;38553:12;;38537:13;;:28;:46;38530:53;;38279:323;:::o;77359:103::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77444:10:::1;77431;:23;;;;77359:103:::0;:::o;54352:2817::-;54486:27;54516;54535:7;54516:18;:27::i;:::-;54486:57;;54601:4;54560:45;;54576:19;54560:45;;;54556:86;;54614:28;;;;;;;;;;;;;;54556:86;54656:27;54685:23;54712:35;54739:7;54712:26;:35::i;:::-;54655:92;;;;54847:68;54872:15;54889:4;54895:19;:17;:19::i;:::-;54847:24;:68::i;:::-;54842:180;;54935:43;54952:4;54958:19;:17;:19::i;:::-;54935:16;:43::i;:::-;54930:92;;54987:35;;;;;;;;;;;;;;54930:92;54842:180;55053:1;55039:16;;:2;:16;;;55035:52;;;55064:23;;;;;;;;;;;;;;55035:52;55100:43;55122:4;55128:2;55132:7;55141:1;55100:21;:43::i;:::-;55236:15;55233:160;;;55376:1;55355:19;55348:30;55233:160;55773:18;:24;55792:4;55773:24;;;;;;;;;;;;;;;;55771:26;;;;;;;;;;;;55842:18;:22;55861:2;55842:22;;;;;;;;;;;;;;;;55840:24;;;;;;;;;;;56164:146;56201:2;56250:45;56265:4;56271:2;56275:19;56250:14;:45::i;:::-;34416:8;56222:73;56164:18;:146::i;:::-;56135:17;:26;56153:7;56135:26;;;;;;;;;;;:175;;;;56481:1;34416:8;56430:19;:47;:52;56426:627;;;56503:19;56535:1;56525:7;:11;56503:33;;56692:1;56658:17;:30;56676:11;56658:30;;;;;;;;;;;;:35;56654:384;;;56796:13;;56781:11;:28;56777:242;;56976:19;56943:17;:30;56961:11;56943:30;;;;;;;;;;;:52;;;;56777:242;56654:384;56484:569;56426:627;57100:7;57096:2;57081:27;;57090:4;57081:27;;;;;;;;;;;;57119:42;57140:4;57146:2;57150:7;57159:1;57119:20;:42::i;:::-;54475:2694;;;54352:2817;;;:::o;75798:32::-;;;;:::o;76889:340::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76961:6:::1;76953:5;:14;;;;76991:1;76981:6;:11;76978:116;;;77024:12;77008:13;:28;;;;77071:11;77051:17;:31;;;;76978:116;77119:1;77109:6;:11;77106:116;;;77152:12;77136:13;:28;;;;77199:11;77179:17;:31;;;;77106:116;76889:340:::0;:::o;57265:185::-;57403:39;57420:4;57426:2;57430:7;57403:39;;;;;;;;;;;;:16;:39::i;:::-;57265:185;;;:::o;76316:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;78688:261::-;79418:9;79404:23;;:10;:23;;;79396:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;78788:10:::1;78800:3;80602:1;80594:5;;:9;80586:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;80658:1;80645:10;:14;80637:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;80749:10;80730:16;;:29;;;;:::i;:::-;80716:9;:44;80708:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;80840:10;;80827;80811:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:39;80803:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;80945:1;80927:15;;:19;;;;:::i;:::-;80914:10;80894:17;80908:2;80894:13;:17::i;:::-;:30;;;;:::i;:::-;:52;80886:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;21871:12:::2;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78826:26:::3;78836:3;78841:10;78826:9;:26::i;:::-;78864:7;76141:42;78877:20;;78905:9;78877:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78863:56;;;78938:2;78930:11;;;::::0;::::3;;78815:134;79454:1:::1;;78688:261:::0;;:::o;36852:37::-;;;;;;;;;;;;;:::o;75876:34::-;;;;:::o;47783:90::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47848:17:::1;;;;;;;;;;;47847:18;47827:17;;:38;;;;;;;;;;;;;;;;;;47783:90::o:0;76020:41::-;;;;:::o;43921:152::-;43993:7;44036:27;44055:7;44036:18;:27::i;:::-;44013:52;;43921:152;;;:::o;75967:46::-;;;;:::o;78957:118::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79054:13:::1;79039:12;:28;;;;;;;;;;;;:::i;:::-;;78957:118:::0;:::o;39463:233::-;39535:7;39576:1;39559:19;;:5;:19;;;39555:60;;;39587:28;;;;;;;;;;;;;;39555:60;33360:13;39633:18;:25;39652:5;39633:25;;;;;;;;;;;;;;;;:55;39626:62;;39463: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;76099:84::-;76141:42;76099:84;:::o;77237:114::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77333:10:::1;77314:16;:29;;;;77237:114:::0;:::o;75917:43::-;;;;:::o;21640:87::-;21686:7;21713:6;;;;;;;;;;;21706:13;;21640:87;:::o;37025:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;42704:104::-;42760:13;42793:7;42786:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42704:104;:::o;75837:32::-;;;;:::o;77872:230::-;79418:9;79404:23;;:10;:23;;;79396:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;77949:10:::1;80093:1;80084:5;;:10;80076:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;80149:1;80136:10;:14;80128:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;80241:10;80221:17;;:30;;;;:::i;:::-;80207:9;:45;80199:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;80332:10;;80319;80303:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:39;80295:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;80445:1;80427:15;;:19;;;;:::i;:::-;80414:10;80386:25;80400:10;80386:13;:25::i;:::-;:38;;;;:::i;:::-;:60;80378:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;77972:33:::2;77982:10;77994;77972:9;:33::i;:::-;78017:7;76141:42;78030:20;;78058:9;78030:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78016:56;;;78091:2;78083:11;;;::::0;::::2;;77961:141;79454:1:::1;77872:230:::0;:::o;50799:632::-;50910:19;:17;:19::i;:::-;50898:31;;:8;:31;;;50894:61;;;50938:17;;;;;;;;;;;;;;50894:61;50970:17;;;;;;;;;;;50969:18;:59;;;;;51024:4;50991:37;;:17;:29;51009:10;50991:29;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;50969:59;50966:255;;;51122:8;51070:18;:39;51089:19;:17;:19::i;:::-;51070:39;;;;;;;;;;;;;;;:49;51110:8;51070:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;51190:8;51154:55;;51169:19;:17;:19::i;:::-;51154:55;;;51200:8;51154:55;;;;;;:::i;:::-;;;;;;;;50966:255;51244:17;;;;;;;;;;;51241:183;;;51329:8;51277:18;:39;51296:19;:17;:19::i;:::-;51277:39;;;;;;;;;;;;;;;:49;51317:8;51277:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;51393:8;51357:55;;51372:19;:17;:19::i;:::-;51357:55;;;51403:8;51357:55;;;;;;:::i;:::-;;;;;;;;51241:183;50799:632;;:::o;58048:399::-;58215:31;58228:4;58234:2;58238:7;58215:12;:31::i;:::-;58279:1;58261:2;:14;;;:19;58257:183;;58300:56;58331:4;58337:2;58341:7;58350:5;58300:30;:56::i;:::-;58295:145;;58384:40;;;;;;;;;;;;;;58295:145;58257:183;58048:399;;;;:::o;48370:149::-;48448:4;48472:39;48491:6;48499:4;;48505:5;48472:18;:39::i;:::-;48465:46;;48370:149;;;;:::o;76068:24::-;;;;:::o;77474:390::-;77548:13;77579:17;77587:8;77579:7;:17::i;:::-;77574:60;;77605:29;;;;;;;;;;;;;;77574:60;77655:21;77679:10;:8;:10::i;:::-;77655:34;;77700:20;77723:9;:7;:9::i;:::-;77700:32;;77785:1;77766:7;77760:21;:26;;:96;;;;;;;;;;;;;;;;;77813:7;77822:19;77832:8;77822:9;:19::i;:::-;77843:6;77796:54;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77760:96;77753:103;;;;77474:390;;;:::o;76777:104::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76865:8:::1;76847:15;:26;;;;76777:104:::0;:::o;78110:570::-;79418:9;79404:23;;:10;:23;;;79396:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;78223:10:::1;79545:1;79536:5;;:10;79528:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;79603:1;79590:10;:14;79582:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;79672:11;;79656:13;:11;:13::i;:::-;:27;79653:139;;;79737:10;79721:13;;:26;;;;:::i;:::-;79707:9;:41;79699:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;79653:139;79839:10;;79826;79810:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:39;79802:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;79952:1;79934:15;;:19;;;;:::i;:::-;79921:10;79893:25;79907:10;79893:13;:25::i;:::-;:38;;;;:::i;:::-;:60;79885:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;78254:57:::2;78262:6;78298:10;78281:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;78271:39;;;;;;78254:7;:57::i;:::-;78246:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;78351:57;78359:6;78395:10;78378:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;78368:39;;;;;;78351:7;:57::i;:::-;78348:192;;;78456:4;78424:17;:29;78442:10;78424:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;78348:192;;;78523:5;78491:17;:29;78509:10;78491:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;78348:192;78550:33;78560:10;78572;78550:9;:33::i;:::-;78595:7;76141:42;78608:20;;78636:9;78608:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78594:56;;;78669:2;78661:11;;;::::0;::::2;;78235:445;79454:1:::1;78110:570:::0;;:::o;79218:115::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79290:3:::1;:12;;:35;79303:21;79290:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;79218:115:::0;:::o;48280:82::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48349:5:::1;48342:4;:12;;;;48280:82:::0;:::o;51588:244::-;51685:4;51715:42;51705:52;;:8;:52;;;51702:70;;;51766:4;51759:11;;;;51702:70;51789:18;:25;51808:5;51789:25;;;;;;;;;;;;;;;:35;51815:8;51789:35;;;;;;;;;;;;;;;;;;;;;;;;;51782:42;;51588:244;;;;;:::o;37081: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;76662:107::-;21871:12;:10;:12::i;:::-;21860:23;;:7;:5;:7::i;:::-;:23;;;21852:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76750:11:::1;76736;:25;;;;76662:107:::0;:::o;52090:282::-;52155:4;52211:7;52192:15;:13;:15::i;:::-;:26;;:66;;;;;52245:13;;52235:7;:23;52192:66;:153;;;;;52344:1;34136:8;52296:17;:26;52314:7;52296:26;;;;;;;;;;;;:44;:49;52192:153;52172:173;;52090:282;;;:::o;73856:105::-;73916:7;73943:10;73936:17;;73856:105;:::o;20428:98::-;20481:7;20508:10;20501:17;;20428:98;:::o;37795:92::-;37851:7;37795:92;:::o;45076:1275::-;45143:7;45163:12;45178:7;45163:22;;45246:4;45227:15;:13;:15::i;:::-;:23;45223:1061;;45280:13;;45273:4;:20;45269:1015;;;45318:14;45335:17;:23;45353:4;45335:23;;;;;;;;;;;;45318:40;;45452:1;34136:8;45424:6;:24;:29;45420:845;;;46089:113;46106:1;46096:6;:11;46089:113;;;46149:17;:25;46167:6;;;;;;;46149:25;;;;;;;;;;;;46140:34;;46089:113;;;46235:6;46228:13;;;;;;45420:845;45295:989;45269:1015;45223:1061;46312:31;;;;;;;;;;;;;;45076:1275;;;;:::o;53253:479::-;53355:27;53384:23;53425:38;53466:15;:24;53482:7;53466:24;;;;;;;;;;;53425:65;;53637:18;53614:41;;53694:19;53688:26;53669:45;;53599:126;53253:479;;;:::o;52481:659::-;52630:11;52795:16;52788:5;52784:28;52775:37;;52955:16;52944:9;52940:32;52927:45;;53105:15;53094:9;53091:30;53083:5;53072:9;53069:20;53066:56;53056:66;;52481:659;;;;;:::o;59109:159::-;;;;;:::o;73165:311::-;73300:7;73320:16;34540:3;73346:19;:41;;73320:68;;34540:3;73414:31;73425:4;73431:2;73435:9;73414:10;:31::i;:::-;73406:40;;:62;;73399:69;;;73165:311;;;;;:::o;46899:450::-;46979:14;47147:16;47140:5;47136:28;47127:37;;47324:5;47310:11;47285:23;47281:41;47278:52;47271:5;47268:63;47258:73;;46899:450;;;;:::o;59933:158::-;;;;;:::o;39778:178::-;39839:7;33360:13;33498:2;39867:18;:25;39886:5;39867:25;;;;;;;;;;;;;;;;:50;;39866:82;39859:89;;39778:178;;;:::o;67688:112::-;67765:27;67775:2;67779:8;67765:27;;;;;;;;;;;;:9;:27::i;:::-;67688:112;;:::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;60531:716::-;60694:4;60740:2;60715:45;;;60761:19;:17;:19::i;:::-;60782:4;60788:7;60797:5;60715:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;60711:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61015:1;60998:6;:13;:18;60994:235;;;61044:40;;;;;;;;;;;;;;60994:235;61187:6;61181:13;61172:6;61168:2;61164:15;61157:38;60711:529;60884:54;;;60874:64;;;:6;:64;;;;60867:71;;;60531:716;;;;;;:::o;1254:190::-;1379:4;1432;1403:25;1416:5;1423:4;1403:12;:25::i;:::-;:33;1396:40;;1254:190;;;;;:::o;76428:113::-;76488:13;76521:12;76514:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76428:113;:::o;76549:105::-;76599:13;76632:14;76625:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76549:105;:::o;74063:1581::-;74128:17;74553:4;74546;74540:11;74536:22;74529:29;;74645:3;74639:4;74632:17;74751:3;74990:5;74972:428;74998:1;74972:428;;;75038:1;75033:3;75029:11;75022:18;;75209:2;75203:4;75199:13;75195:2;75191:22;75186:3;75178:36;75303:2;75297:4;75293:13;75285:21;;75370:4;75360:25;;75378:5;;75360:25;74972:428;;;74976:21;75439:3;75434;75430:13;75554:4;75549:3;75545:14;75538:21;;75619:6;75614:3;75607:19;74167:1470;;74063:1581;;;:::o;72866:147::-;73003:6;72866:147;;;;;:::o;66915:689::-;67046:19;67052:2;67056:8;67046:5;:19::i;:::-;67125:1;67107:2;:14;;;:19;67103:483;;67147:11;67161:13;;67147:27;;67193:13;67215:8;67209:3;:14;67193:30;;67242:233;67273:62;67312:1;67316:2;67320:7;;;;;;67329:5;67273:30;:62::i;:::-;67268:167;;67371:40;;;;;;;;;;;;;;67268:167;67470:3;67462:5;:11;67242:233;;67557:3;67540:13;;:20;67536:34;;67562:8;;;67536:34;67128:458;;67103:483;66915:689;;;:::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;61709:2454::-;61782:20;61805:13;;61782:36;;61845:1;61833:8;:13;61829:44;;;61855:18;;;;;;;;;;;;;;61829:44;61886:61;61916:1;61920:2;61924:12;61938:8;61886:21;:61::i;:::-;62430:1;33498:2;62400:1;:26;;62399:32;62387:8;:45;62361:18;:22;62380:2;62361:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;62709:139;62746:2;62800:33;62823:1;62827:2;62831:1;62800:14;:33::i;:::-;62767:30;62788:8;62767:20;:30::i;:::-;:66;62709:18;:139::i;:::-;62675:17;:31;62693:12;62675:31;;;;;;;;;;;:173;;;;62865:16;62896:11;62925:8;62910:12;:23;62896:37;;63180:16;63176:2;63172:25;63160:37;;63552:12;63512:8;63471:1;63409:25;63350:1;63289;63262:335;63677:1;63663:12;63659:20;63617:346;63718:3;63709:7;63706:16;63617:346;;63936:7;63926:8;63923:1;63896:25;63893:1;63890;63885:59;63771:1;63762:7;63758:15;63747:26;;63617:346;;;63621:77;64008:1;63996:8;:13;63992:45;;;64018:19;;;;;;;;;;;;;;63992:45;64070:3;64054:13;:19;;;;62135:1950;;64095:60;64124:1;64128:2;64132:12;64146:8;64095:20;:60::i;:::-;61771:2392;61709: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;47451:324::-;47521:14;47754:1;47744:8;47741:15;47715:24;47711:46;47701:56;;47451: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:118::-;16524:24;16542:5;16524:24;:::i;:::-;16519:3;16512:37;16437:118;;:::o;16561:256::-;16673:3;16688:75;16759:3;16750:6;16688:75;:::i;:::-;16788:2;16783:3;16779:12;16772:19;;16808:3;16801:10;;16561:256;;;;:::o;16823:595::-;17051:3;17073:95;17164:3;17155:6;17073:95;:::i;:::-;17066:102;;17185:95;17276:3;17267:6;17185:95;:::i;:::-;17178:102;;17297:95;17388:3;17379:6;17297:95;:::i;:::-;17290:102;;17409:3;17402:10;;16823:595;;;;;;:::o;17424:379::-;17608:3;17630:147;17773:3;17630:147;:::i;:::-;17623:154;;17794:3;17787:10;;17424:379;;;:::o;17809:222::-;17902:4;17940:2;17929:9;17925:18;17917:26;;17953:71;18021:1;18010:9;18006:17;17997:6;17953:71;:::i;:::-;17809:222;;;;:::o;18037:640::-;18232:4;18270:3;18259:9;18255:19;18247:27;;18284:71;18352:1;18341:9;18337:17;18328:6;18284:71;:::i;:::-;18365:72;18433:2;18422:9;18418:18;18409:6;18365:72;:::i;:::-;18447;18515:2;18504:9;18500:18;18491:6;18447:72;:::i;:::-;18566:9;18560:4;18556:20;18551:2;18540:9;18536:18;18529:48;18594:76;18665:4;18656:6;18594:76;:::i;:::-;18586:84;;18037:640;;;;;;;:::o;18683:210::-;18770:4;18808:2;18797:9;18793:18;18785:26;;18821:65;18883:1;18872:9;18868:17;18859:6;18821:65;:::i;:::-;18683:210;;;;:::o;18899:222::-;18992:4;19030:2;19019:9;19015:18;19007:26;;19043:71;19111:1;19100:9;19096:17;19087:6;19043:71;:::i;:::-;18899:222;;;;:::o;19127:313::-;19240:4;19278:2;19267:9;19263:18;19255:26;;19327:9;19321:4;19317:20;19313:1;19302:9;19298:17;19291:47;19355:78;19428:4;19419:6;19355:78;:::i;:::-;19347:86;;19127:313;;;;:::o;19446:419::-;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:131;19853:4;19727:131;:::i;:::-;19719:139;;19446:419;;;:::o;19871:::-;20037:4;20075:2;20064:9;20060:18;20052:26;;20124:9;20118:4;20114:20;20110:1;20099:9;20095:17;20088:47;20152:131;20278:4;20152:131;:::i;:::-;20144:139;;19871:419;;;:::o;20296:::-;20462:4;20500:2;20489:9;20485:18;20477:26;;20549:9;20543:4;20539:20;20535:1;20524:9;20520:17;20513:47;20577:131;20703:4;20577:131;:::i;:::-;20569:139;;20296:419;;;:::o;20721:::-;20887:4;20925:2;20914:9;20910:18;20902:26;;20974:9;20968:4;20964:20;20960:1;20949:9;20945:17;20938:47;21002:131;21128:4;21002:131;:::i;:::-;20994:139;;20721:419;;;:::o;21146:::-;21312:4;21350:2;21339:9;21335:18;21327:26;;21399:9;21393:4;21389:20;21385:1;21374:9;21370:17;21363:47;21427:131;21553:4;21427:131;:::i;:::-;21419:139;;21146:419;;;:::o;21571:::-;21737:4;21775:2;21764:9;21760:18;21752:26;;21824:9;21818:4;21814:20;21810:1;21799:9;21795:17;21788:47;21852:131;21978:4;21852:131;:::i;:::-;21844:139;;21571:419;;;:::o;21996:::-;22162:4;22200:2;22189:9;22185:18;22177:26;;22249:9;22243:4;22239:20;22235:1;22224:9;22220:17;22213:47;22277:131;22403:4;22277:131;:::i;:::-;22269:139;;21996:419;;;:::o;22421:::-;22587:4;22625:2;22614:9;22610:18;22602:26;;22674:9;22668:4;22664:20;22660:1;22649:9;22645:17;22638:47;22702:131;22828:4;22702:131;:::i;:::-;22694:139;;22421:419;;;:::o;22846:::-;23012:4;23050:2;23039:9;23035:18;23027:26;;23099:9;23093:4;23089:20;23085:1;23074:9;23070:17;23063:47;23127:131;23253:4;23127:131;:::i;:::-;23119:139;;22846:419;;;:::o;23271:::-;23437:4;23475:2;23464:9;23460:18;23452:26;;23524:9;23518:4;23514:20;23510:1;23499:9;23495:17;23488:47;23552:131;23678:4;23552:131;:::i;:::-;23544:139;;23271:419;;;:::o;23696:222::-;23789:4;23827:2;23816:9;23812:18;23804:26;;23840:71;23908:1;23897:9;23893:17;23884:6;23840:71;:::i;:::-;23696:222;;;;:::o;23924:129::-;23958:6;23985:20;;:::i;:::-;23975:30;;24014:33;24042:4;24034:6;24014:33;:::i;:::-;23924:129;;;:::o;24059:75::-;24092:6;24125:2;24119:9;24109:19;;24059:75;:::o;24140:311::-;24217:4;24307:18;24299:6;24296:30;24293:56;;;24329:18;;:::i;:::-;24293:56;24379:4;24371:6;24367:17;24359:25;;24439:4;24433;24429:15;24421:23;;24140:311;;;:::o;24457:307::-;24518:4;24608:18;24600:6;24597:30;24594:56;;;24630:18;;:::i;:::-;24594:56;24668:29;24690:6;24668:29;:::i;:::-;24660:37;;24752:4;24746;24742:15;24734:23;;24457:307;;;:::o;24770:308::-;24832:4;24922:18;24914:6;24911:30;24908:56;;;24944:18;;:::i;:::-;24908:56;24982:29;25004:6;24982:29;:::i;:::-;24974:37;;25066:4;25060;25056:15;25048:23;;24770:308;;;:::o;25084:98::-;25135:6;25169:5;25163:12;25153:22;;25084:98;;;:::o;25188:99::-;25240:6;25274:5;25268:12;25258:22;;25188:99;;;:::o;25293:168::-;25376:11;25410:6;25405:3;25398:19;25450:4;25445:3;25441:14;25426:29;;25293:168;;;;:::o;25467:147::-;25568:11;25605:3;25590:18;;25467:147;;;;:::o;25620:169::-;25704:11;25738:6;25733:3;25726:19;25778:4;25773:3;25769:14;25754:29;;25620:169;;;;:::o;25795:148::-;25897:11;25934:3;25919:18;;25795:148;;;;:::o;25949:305::-;25989:3;26008:20;26026:1;26008:20;:::i;:::-;26003:25;;26042:20;26060:1;26042:20;:::i;:::-;26037:25;;26196:1;26128:66;26124:74;26121:1;26118:81;26115:107;;;26202:18;;:::i;:::-;26115:107;26246:1;26243;26239:9;26232:16;;25949:305;;;;:::o;26260:348::-;26300:7;26323:20;26341:1;26323:20;:::i;:::-;26318:25;;26357:20;26375:1;26357:20;:::i;:::-;26352:25;;26545:1;26477:66;26473:74;26470:1;26467:81;26462:1;26455:9;26448:17;26444:105;26441:131;;;26552:18;;:::i;:::-;26441:131;26600:1;26597;26593:9;26582:20;;26260:348;;;;:::o;26614:96::-;26651:7;26680:24;26698:5;26680:24;:::i;:::-;26669:35;;26614:96;;;:::o;26716:104::-;26761:7;26790:24;26808:5;26790:24;:::i;:::-;26779:35;;26716:104;;;:::o;26826:90::-;26860:7;26903:5;26896:13;26889:21;26878:32;;26826:90;;;:::o;26922:77::-;26959:7;26988:5;26977:16;;26922:77;;;:::o;27005:149::-;27041:7;27081:66;27074:5;27070:78;27059:89;;27005:149;;;:::o;27160:126::-;27197:7;27237:42;27230:5;27226:54;27215:65;;27160:126;;;:::o;27292:77::-;27329:7;27358:5;27347:16;;27292:77;;;:::o;27375:154::-;27459:6;27454:3;27449;27436:30;27521:1;27512:6;27507:3;27503:16;27496:27;27375:154;;;:::o;27535:307::-;27603:1;27613:113;27627:6;27624:1;27621:13;27613:113;;;27712:1;27707:3;27703:11;27697:18;27693:1;27688:3;27684:11;27677:39;27649:2;27646:1;27642:10;27637:15;;27613:113;;;27744:6;27741:1;27738:13;27735:101;;;27824:1;27815:6;27810:3;27806:16;27799:27;27735:101;27584:258;27535:307;;;:::o;27848:320::-;27892:6;27929:1;27923:4;27919:12;27909:22;;27976:1;27970:4;27966:12;27997:18;27987:81;;28053:4;28045:6;28041:17;28031:27;;27987:81;28115:2;28107:6;28104:14;28084:18;28081:38;28078:84;;;28134:18;;:::i;:::-;28078:84;27899:269;27848:320;;;:::o;28174:281::-;28257:27;28279:4;28257:27;:::i;:::-;28249:6;28245:40;28387:6;28375:10;28372:22;28351:18;28339:10;28336:34;28333:62;28330:88;;;28398:18;;:::i;:::-;28330:88;28438:10;28434:2;28427:22;28217:238;28174:281;;:::o;28461:233::-;28500:3;28523:24;28541:5;28523:24;:::i;:::-;28514:33;;28569:66;28562:5;28559:77;28556:103;;;28639:18;;:::i;:::-;28556:103;28686:1;28679:5;28675:13;28668:20;;28461:233;;;:::o;28700:100::-;28739:7;28768:26;28788:5;28768:26;:::i;:::-;28757:37;;28700:100;;;:::o;28806:94::-;28845:7;28874:20;28888:5;28874:20;:::i;:::-;28863:31;;28806:94;;;:::o;28906:180::-;28954:77;28951:1;28944:88;29051:4;29048:1;29041:15;29075:4;29072:1;29065:15;29092:180;29140:77;29137:1;29130:88;29237:4;29234:1;29227:15;29261:4;29258:1;29251:15;29278:180;29326:77;29323:1;29316:88;29423:4;29420:1;29413:15;29447:4;29444:1;29437:15;29464:180;29512:77;29509:1;29502:88;29609:4;29606:1;29599:15;29633:4;29630:1;29623:15;29650:117;29759:1;29756;29749:12;29773:117;29882:1;29879;29872:12;29896:117;30005:1;30002;29995:12;30019:117;30128:1;30125;30118:12;30142:117;30251:1;30248;30241:12;30265:102;30306:6;30357:2;30353:7;30348:2;30341:5;30337:14;30333:28;30323:38;;30265:102;;;:::o;30373:94::-;30406:8;30454:5;30450:2;30446:14;30425:35;;30373:94;;;:::o;30473:168::-;30613:20;30609:1;30601:6;30597:14;30590:44;30473:168;:::o;30647:225::-;30787:34;30783:1;30775:6;30771:14;30764:58;30856:8;30851:2;30843:6;30839:15;30832:33;30647:225;:::o;30878:171::-;31018:23;31014:1;31006:6;31002:14;30995:47;30878:171;:::o;31055:170::-;31195:22;31191:1;31183:6;31179:14;31172:46;31055:170;:::o;31231:161::-;31371:13;31367:1;31359:6;31355:14;31348:37;31231:161;:::o;31398:182::-;31538:34;31534:1;31526:6;31522:14;31515:58;31398:182;:::o;31586:177::-;31726:29;31722:1;31714:6;31710:14;31703:53;31586:177;:::o;31769:114::-;;:::o;31889:170::-;32029:22;32025:1;32017:6;32013:14;32006:46;31889:170;:::o;32065:220::-;32205:34;32201:1;32193:6;32189:14;32182:58;32274:3;32269:2;32261:6;32257:15;32250:28;32065:220;:::o;32291:223::-;32431:34;32427:1;32419:6;32415:14;32408:58;32500:6;32495:2;32487:6;32483:15;32476:31;32291:223;:::o;32520:122::-;32593:24;32611:5;32593:24;:::i;:::-;32586:5;32583:35;32573:63;;32632:1;32629;32622:12;32573:63;32520:122;:::o;32648:138::-;32729:32;32755:5;32729:32;:::i;:::-;32722:5;32719:43;32709:71;;32776:1;32773;32766:12;32709:71;32648:138;:::o;32792:116::-;32862:21;32877:5;32862:21;:::i;:::-;32855:5;32852:32;32842:60;;32898:1;32895;32888:12;32842:60;32792:116;:::o;32914:122::-;32987:24;33005:5;32987:24;:::i;:::-;32980:5;32977:35;32967:63;;33026:1;33023;33016:12;32967:63;32914:122;:::o;33042:120::-;33114:23;33131:5;33114:23;:::i;:::-;33107:5;33104:34;33094:62;;33152:1;33149;33142:12;33094:62;33042:120;:::o;33168:122::-;33241:24;33259:5;33241:24;:::i;:::-;33234:5;33231:35;33221:63;;33280:1;33277;33270:12;33221:63;33168:122;:::o

Swarm Source

ipfs://a1790a1825af462f0ca6fb7d21b7f3f442af05e078efd443e7d2e0cc0e2e7014
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.