ETH Price: $3,586.28 (+3.61%)
 

Overview

Max Total Supply

89 CHESTER

Holders

54

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
71177117.eth
Balance
1 CHESTER
0x8Ea228657fed9C28D3ce3DA6F8e91e94e171Fd31
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:
CheetosDrop

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-21
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

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

    // Token name
    string private _name;

    string public baseExtension = ".json";

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

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

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

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),baseExtension)) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/CheetosDrop.sol

/***
Al aceptar el contenido de edición limitada de Cheetos Chester© (&quot;Contenido&quot;) en forma de este token no
fungible (&quot;NFT&quot;), el receptor reconoce y acepta los siguientes términos y condiciones (estos &quot;Términos&quot;):
El Contenido es propiedad de o está licenciado para PepsiCo, Inc. (&quot;Propietario&quot;), y todos los derechos, títulos e
intereses (incluidos todo derecho de autor, marca comercial, nombre, imitación, arte, diseño, dibujos y/u otra
propiedad intelectual) incluidos en el Contenido y/o asociados a él son propiedad del Propietario o de sus
licenciantes. La recepción del Contenido o de este NFT no otorga al destinatario ningún derecho, licencia o
propiedad sobre el Contenido, salvo los derechos expresamente establecidos en el presente documento. El
Propietario se reserva todos los derechos (incluso con respecto a los derechos de autor, marcas registradas,
nombres, imágenes, arte, diseños, dibujos y/u otra propiedad intelectual) en y para el Contenido que no se
concede expresamente al destinatario en este documento. Con la condición expresa de que el destinatario cumpla
con sus obligaciones en el presente documento, se le concede al destinatario de este NFT una licencia limitada,
revocable, no exclusiva, intransferible y no sublicenciable para acceder, utilizar, ver, copiar y mostrar el
Contenido y este NFT únicamente (i) mientras sea propietario de este NFT; (ii) para el uso personal y no
comercial del destinatario; y (iii) como parte de un mercado que permita la exhibición, compra y venta de NFTs,
siempre que el mercado cuente con mecanismos para verificar los derechos de los propietarios para exhibir y
vender dichos NFTs.
Asimismo, el destinatario no podrá ni permitirá a ningún tercero hacer o intentar lo siguiente sin el consentimiento
previo por escrito del Propietario en cada caso:
* Exponer, copiar o utilizar de cualquier otro modo este NFT o el Contenido, excepto para el uso limitado
concedido en el presente documento, si lo hubiera, sin la aprobación previa y por escrito del Propietario para
dicho uso;
* Modificar, editar, alterar, manipular, reproducir, comercializar, distribuir o reutilizar el Contenido, en su
totalidad o en parte, de cualquier manera, incluyendo, sin limitación, el arte, el diseño, los dibujos y/o cualquier
otra propiedad intelectual;
* Crear, exhibir, anunciar, comercializar, promover, distribuir, reproducir o vender cualquier obra derivada del
Contenido y/o cualquier mercancía de cualquier tipo que incluya, contenga, utilice, incorpore o consista en el
Contenido;
* Utilizar, distribuir, mostrar, representar públicamente o reproducir de cualquier otro modo el Contenido, en su
totalidad o en parte, para anunciar, comercializar, promover, reproducir, ofrecer, vender y/o distribuir con fines
lucrativos (incluyendo, sin limitación, regalar con la esperanza de obtener un eventual beneficio comercial)
cualquier producto o servicio en cualquier forma o medio, ya sea para su propio lucro o el de cualquier tercero o
de cualquier otro modo;
* Utilizar el Contenido en relación con cualquier contenido, imágenes, vídeos u otros medios de comunicación
que (i) representen el odio, la intolerancia, la violencia, la crueldad o cualquier otra cosa que razonablemente
pueda constituir una incitación al odio o que se considere abusiva, difamatoria, étnica o racialmente ofensiva,
acosadora, dañina, obscena, ofensiva, sexualmente explícita, amenazante o vulgar; (ii) contengan cualquier otro
material, producto o servicio que infrinja o fomente una conducta que infrinja cualquier ley penal u otra ley
aplicable; (iii) violen o infrinjan cualquier derecho de terceros y/o (iv) hagan cualquier declaración que sea
expresa o implícitamente despectiva o perjudicial para el Propietario, cualquiera de las filiales o subsidiarias del
Propietario y/o cualquiera de los productos y/o servicios del Propietario y/o sus subsidiarias o afiliadas;
* Utilizar el Contenido de cualquier manera que sea expresa o implícitamente despectiva o de otro modo
perjudicial para el Propietario, cualquiera de las subsidiarias o filiales del Propietario y/o cualquiera de los
productos y/o servicios del Propietario y/o sus subsidiarias o filiales;
* Utilizar el contenido en películas, vídeos o cualquier otro medio de comunicación, excepto en la medida en que
dicho uso sea exclusivamente para fines personales y no comerciales del destinatario;
* Solicitar, registrar o utilizar de otro modo o intentar utilizar el Contenido, cualquier otra propiedad intelectual
del Propietario o propiedad intelectual asociada con el Propietario, sus subsidiarias o filiales y/o sus respectivos
productos o servicios, en su totalidad o en parte, como marca comercial, marca de servicio o cualquier marca
confusamente similar, en cualquier parte del mundo o intentar registrar los derechos de autor o adquirir de otro
modo derechos de propiedad intelectual adicionales en o para el Contenido; y/o
* Hacer cualquier declaración o garantía adicional relacionada con el Contenido.
El destinatario declara y garantiza que cumplirá con todas las leyes, reglamentos, normas y directrices en relación
con su ejecución, exhibición, distribución, comercialización, venta y cualquier otro uso del Contenido, incluidas
las leyes de los Estados Unidos relativas al blanqueo de dinero, la financiación del terrorismo y sanciones
económicas (como las administradas por la Oficina de Control de Activos Extranjeros del Departamento del
Tesoro de Estados Unidos).
El destinatario además entiende y acepta que el Propietario no es responsable de ninguna incapacidad del
destinatario para acceder al Contenido o a este NFT por cualquier motivo, incluso como resultado de cualquier
tiempo de inactividad, fallo, obsolescencia, eliminación, terminación u otra interrupción relacionada con los
servidores en los que se almacena el Contenido, la blockchain en la que se registra el Contenido o este NFT,
cualquier monedero electrónico o cualquier otra aplicación, mercado o plataforma de NFTs. Si el destinatario
vende o transfiere de otro modo este NFT, acepta que no tendrá ningún reclamo contra el Propietario por
cualquier incumplimiento de estos Términos por parte de un comprador. Si el destinatario compró este NFT,
acepta por el presente mantener indemnes al Propietario y al vendedor de este NFT de cualquier violación o
incumplimiento de estos Términos.
La licencia limitada incluida en estos Términos para usar, ver, copiar o mostrar el Contenido sólo continúa
mientras el destinatario siga siendo dueño del NFT, y formará parte de todas las ventas posteriores de NFT a
perpetuidad, independientemente de la propiedad de la blockchain correspondiente. Los derechos del destinatario
sobre y para el NFT y el Contenido cesan inmediatamente tras la transferencia del NFT o la terminación de estos
Términos en virtud del presente documento.
El destinatario también entiende y acepta que cualquier explotación comercial del Contenido o de este NFT podría
someter al destinatario a reclamos por infracción de derechos de autor. Si el destinatario viola estos Términos, o
utiliza el Contenido o este NFT, de manera que infrinja o viole de otro modo los derechos del Propietario o
incumpla cualquier disposición establecida en el presente, el destinatario acepta que el Propietario puede tomar las
medidas necesarias para detener dicha infracción u otra violación, a costo y gasto exclusivo del destinatario, y/o
rescindir inmediatamente estos Términos. Tras dicha rescisión, el destinatario no tendrá más derechos de uso del
Contenido y todos los usos del Contenido por parte del destinatario deberán cesar inmediata y permanentemente.
Todas las disposiciones establecidas en el presente documento que, por sus términos expresos y/o su naturaleza,
se espera que sobrevivan a la terminación, seguirán vigentes y permanecerán en pleno vigor y efecto. La rescisión
de estas Condiciones por parte del Propietario se realizará sin perjuicio de cualquier otro derecho y recurso que
pueda tener en el presente documento y en la ley y en equidad. Si el destinatario incurre en responsabilidad debido
a una infracción u otra violación de los derechos del Propietario, dicha responsabilidad sobrevivirá al vencimiento
de esta licencia.
LA LICENCIA CONCEDIDA EN ESTOS TÉRMINOS SE PROPORCIONA &quot;TAL CUAL&quot;. EL
DESTINATARIO ASUME TODO EL RIESGO DEL USO DEL CONTENIDO Y DE ESTA LICENCIA. NO SE
OFRECE NINGUNA GARANTÍA, YA SEA EXPRESA, IMPLÍCITA O LEGAL, INCLUYENDO, SIN
LIMITACIÓN, LAS GARANTÍAS IMPLÍCITAS DE IDONEIDAD PARA UN FIN DETERMINADO,
COMERCIABILIDAD, NO INFRACCIÓN O DERIVADAS DE UN CURSO DE NEGOCIACIÓN, USO OPRÁCTICA COMERCIAL. EN NINGÚN CASO EL PROPIETARIO SERÁ RESPONSABLE DE NINGÚN
DAÑO ESPECIAL, INCIDENTAL O CONSECUENTE, NI DE NINGUNA RESPONSABILIDAD
EXTRACONTRACTUAL, NEGLIGENCIA O CUALQUIER OTRA RESPONSABILIDAD EN LA QUE SE
INCURRA POR O EN RELACIÓN CON ESTOS TÉRMINOS, EL CONTENIDO O ESTE NFT.
EL PROPIETARIO NO POSEE NI CONTROLA NINGUNO DE LOS PROTOCOLOS DE SOFTWARE,
SERVICIOS, INTERCAMBIOS O APLICACIONES QUE PUEDAN UTILIZARSE EN RELACIÓN CON
ESTE NFT, INCLUYENDO EL MONEDERO DE CRIPTOACTIVOS O CUALQUIER MERCADO O
PLATAFORMA DE COMERCIO DEL NFT. EN CONSECUENCIA, EL PROPIETARIO RECHAZA TODA
RESPONSABILIDAD RELACIONADA CON DICHOS PROTOCOLOS, SERVICIOS, INTERCAMBIOS O
APLICACIONES Y CUALQUIER FLUCTUACIÓN DE PRECIOS EN LA VALORACIÓN DE NFT, Y NO
OFRECE NINGUNA GARANTÍA RESPECTO A LA SEGURIDAD, FUNCIONALIDAD O
DISPONIBILIDAD DE DICHOS PROTOCOLOS, SERVICIOS, INTERCAMBIOS O APLICACIONES.
EN LA MEDIDA EN QUE LA LEY LO PERMITA, EN NINGÚN CASO EL PROPIETARIO SERÁ
RESPONSABLE ANTE EL DESTINATARIO O CUALQUIER TERCERO POR CUALQUIER PÉRDIDA DE
BENEFICIOS O CUALQUIER DAÑO INDIRECTO, CONSECUENTE, EJEMPLAR, INCIDENTAL,
ESPECIAL O PUNITIVO QUE SURJA DE ESTOS TÉRMINOS, EL CONTENIDO, ESTE NFT, YA SEA
CAUSADO POR AGRAVIO (INCLUYENDO NEGLIGENCIA), INCUMPLIMIENTO DE CONTRATO, O DE
OTRA MANERA, INCLUSO SI ES PREVISIBLE E INCLUSO SI EL PROPIETARIO HA SIDO ADVERTIDO
DE LA POSIBILIDAD DE TALES DAÑOS.
A PESAR DE CUALQUIER DISPOSICIÓN EN CONTRARIO CONTENIDA EN EL PRESENTE
DOCUMENTO, EN NINGÚN CASO LA RESPONSABILIDAD MÁXIMA AGREGADA DEL PROPIETARIO
QUE SURJA O ESTÉ RELACIONADA DE ALGUNA MANERA CON ESTOS TÉRMINOS, O CON EL
ACCESO O EL USO DEL CONTENIDO O DE ESTE NFT EXCEDERÁ DE 100 DÓLARES.

Estas Condiciones se regirán e interpretarán de acuerdo con las leyes del Estado de Nueva York aplicables a los
contratos celebrados y ejecutados íntegramente en él, sin tener en cuenta los principios de conflicto de leyes.
Cualquier disputa que surja de y/o esté relacionada con estos Términos estará sujeta a la jurisdicción y
competencia exclusiva de los tribunales federales y estatales ubicados en el condado de Nueva York, Nueva York,
y las partes por la presente consienten irrevocablemente a la jurisdicción personal de dichos tribunales. Si una de
las partes incumple alguna de las disposiciones de estas Condiciones, los recursos disponibles para la otra parte
incluirán, sin limitación, el pago por parte de la parte incumplidora de todos los costes y gastos (incluidos los
honorarios razonables de los abogados) en los que haya incurrido dicha parte, en el juicio y en la apelación, para
hacer cumplir estas Condiciones. Estas Condiciones contienen el pleno entendimiento y acuerdo de las partes con
respecto al objeto de las mismas, y no podrán ser modificadas salvo por escrito firmado por las partes, o sus
respectivos agentes aprobados. El retraso o la falta de ejercicio total o parcial de cualquier derecho por parte de
una de las partes en virtud de estas Condiciones no constituirá una renuncia a ese derecho o a cualquier otro.
Ninguna renuncia a estas Condiciones será válida salvo en un escrito firmado por las partes, o sus respectivos
agentes aprobados. Si alguna de las disposiciones de estas Condiciones se considera inválida, dicha disposición se
suprimirá y el resto de las disposiciones de estas Condiciones permanecerán en pleno vigor y efecto. Estas
Condiciones son vinculantes y redundarán en beneficio y perjuicio, según corresponda, de las partes y de sus
respectivos licenciatarios y cesionarios.

░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▒░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▓▓█▓█▒░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▓█▓▒▒▒▓█░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒██▓▒▒▒▒▒██▓▓▓▒░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒▓▓░░░░░░░░░░░░░░░▒▓▓▓▓▓▓██▓▒▒░▒▒▒▓▒▒▒██░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░░░░░░░▒▓████▒▒████▒░░░░░░▒░░░░▒▓██▓▒▒▒▒▒▓▓██▓░▒▒▒▒▒▒▓███▓▓▓▓▒░░▒▓▓▓▓▓▓▓▒░░░░░░
░░░░░░░░░░░░░░▒▓███▓▒▒████▓▒▒█▒░░▒▓████████▓▒▒▒▒▒▒▒▒▒▒▓█▒░▒▒▒▒▓▓▓▒▒▒▒▒▒▒████▓▓▒▒▒▒▒▓██▓░░░
░░░░░░░░░░░░▓██▓▒▒░░░▓██▒▒░▒▓█░▓██▓▒▒▒▒▒▒▓█▓▒░▒▒▒▒▒░▒░▒▓░▒▒▒▓█▓▒▒▒▒▒▒▒▒▒░▓▓▒▒░▒▒▒▒▒▒▓█▒░░░
░░░░░░░░░▒██▓▒░░▒▒▒░▒▓▒░▒▒▒▓████▓▒▒▒▒▒▒▒▒▒▓▒░▒▒▓▓██▒▒░▒▒▒▒▒▒██▒▒▒░▒▓▓▒▒▒▒░░▒▒▒▒▒▒▒▒▓█▒░░░░
░░░░░░░░▓██▒░▒▒▒▒▒▒░▒▒▒░▒▒▒▓████▓░▒▒▓▓▓░▒░▓▒▒▒▒▒▓▓▒▒▒▒▓▒▒▒▒▓█▓▒▒▒▒▓███▓░▒▒▒▒▒▒▓█████▒░░░░░
░░░░░░▒██▓░▒▒▒▒▒▒▒▒░▓▓░░▒▒▒▓█▓██▒▒▒▒▒▓▓▒▒▒▓▒▒▒░▒▒▒▒▒▒█▓▒▒▒▒██▓░▒▒▓████▓▒▒▒▒▒▒▒▒▒▓██▒░▒▒░░░
░░░░░▓██▒▒▒▒▒▒▒▒▒▒▒▓█▓░▒▒▒▒▒░░▒▓▒▒░▒▒▒▒▒▓█▓▒▒▒░▒█████▓▓▓▒▒░▓█▓░▒▒▒███▓▒▒▒▓██▓▒▒▒▒▓██░░░░░░
░░░░▓██▓▓▒░▒▒▒▒▒▒▓███▓░▒▒▒▒▒▒▒▒▒▓▒▒▒▓█████▓▓▒▒▒▒▒▒▓▒▒▒▓▓▒▒▒▒▒▒░▒▒▒▒▒▒▒▒▒▒▒▓██▓▒▒▒▒██▓░░░░░
░░░▒████▓░▒▒▒▒▒▓▓████▒▒▒▒▒▒▓▒▒▒▒▓▓▒▒▒▒▒▒▒▒▓█▓▒▒▒▒▒▒▒▒▓██▓▒▒▒▒▒▓▓▓▒▒▒▒▒▓▓▒▒▒▒▒▒▒▒▒▓██▒░░░░░
░░░▓▓██▓░▒▒▒▒▒▓██████▓▒▒▒▒▓█▓▒▒░▓█▓▒▒▒▒▒▒▓█████▓▓▓▓▓███▓█████████████████▒▒▒▒▒▒▓███░░░░░░░
░░░░▒██▒░▒▒▒▒▓███████▓▒▒▒▒███▒▒░▓█████▓████▓░▒▓▓██▓▓▒░░░░▒▒▒▒▒░░░▒▒▒▒░░░▓████████▒░░░░░░░░
░░░░▒█▓░▒▒▒▒▒▓███████▓▒▒▒▒▓██▒▒▒▒▓███▓▓▓▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░▒░░░░░░░░░░░░
░░░░▓█▓░▒▒▒░▒████████▓░▒▒▒▓██▒▒▓██▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░▓█▓▒▒▒▒░▒▓████████▒░▒▒▒█████▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░▓█▓▒▒▒▒▒░▒▓██████▓░▒▒▒▓███▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░▒██▓▒▒▒▒▒▒░▒▒▒▒▒▒▒▒▒▒▓██▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░▓██▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒▓███▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░▒███▓▓▓▒▒▒▒▒▒▓▓▓███▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░▒▓████████████▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░░░░░░░░░░░░▒▒▒▒▒▒▒░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░                                                                                                           

***/

pragma solidity ^0.8.4;




contract CheetosDrop is ERC721A, Ownable {
    

    mapping(address => bool) public alreadyMinted;
    bytes32 public merkleRoot;
    string public baseURI;
    bool public paused = true;
    uint256 public constant max_supply = 1986;
    uint16 public maxMint = 2;  

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    constructor() ERC721A("Chester Drop", "CHESTER") {}

    function setBaseURI(string memory _baseUri) public onlyOwner {
        baseURI = _baseUri;
    }

    modifier isValidMerkleProof(bytes32[] calldata _proof) {
         require(MerkleProof.verify(
            _proof,
            merkleRoot,
            keccak256(abi.encodePacked(msg.sender))
            ) == true, "Not allowed origin");
        _;
   }

    function mint(uint256 _amount, bytes32[] calldata _proof) public isValidMerkleProof(_proof) {
        uint256 supply = totalSupply();

        require(!paused);
         require(_amount <= maxMint, "Exceeded the limit");
        require(alreadyMinted[msg.sender] == false, "Address already used");
        require(supply + _amount <= max_supply, "max NFT limit exceeded");
        
        _safeMint(msg.sender, _amount);
        alreadyMinted[msg.sender] = true;
    }

     // @dev use it for giveaway to influencers
    function gift(uint256 _mintamount, address _to) public onlyOwner  {
       uint256 supply = totalSupply();
       require(supply + _mintamount <= max_supply, "max NFT limit exceeded");
       _safeMint(_to, _mintamount);
    }

     function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setMerkleRoot(bytes32 _root) public onlyOwner {
        merkleRoot = _root;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":"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":[{"internalType":"address","name":"","type":"address"}],"name":"alreadyMinted","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintamount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060029080519060200190620000519291906200022d565b506001600c60006101000a81548160ff0219169083151502179055506002600c60016101000a81548161ffff021916908361ffff1602179055503480156200009857600080fd5b506040518060400160405280600c81526020017f436865737465722044726f7000000000000000000000000000000000000000008152506040518060400160405280600781526020017f434845535445520000000000000000000000000000000000000000000000000081525081600190805190602001906200011d9291906200022d565b508060039080519060200190620001369291906200022d565b505050620001596200014d6200015f60201b60201c565b6200016760201b60201c565b62000342565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023b90620002dd565b90600052602060002090601f0160209004810192826200025f5760008555620002ab565b82601f106200027a57805160ff1916838001178555620002ab565b82800160010185558215620002ab579182015b82811115620002aa5782518255916020019190600101906200028d565b5b509050620002ba9190620002be565b5090565b5b80821115620002d9576000816000905550600101620002bf565b5090565b60006002820490506001821680620002f657607f821691505b602082108114156200030d576200030c62000313565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613cec80620003526000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c80636c0360eb1161010f57806395d89b41116100a2578063c668286211610071578063c66828621461056a578063c87b56dd14610588578063e985e9c5146105b8578063f2fde38b146105e8576101e5565b806395d89b41146104f8578063a22cb46514610516578063b88d4fde14610532578063ba41b0c61461054e576101e5565b80637cb64759116100de5780637cb647591461048457806383a076be146104a05780638a333b50146104bc5780638da5cb5b146104da576101e5565b80636c0360eb1461040e57806370a082311461042c578063715018a61461045c5780637501f74114610466576101e5565b806323b872dd116101875780634f6ccce7116101565780634f6ccce71461037457806355f804b3146103a45780635c975abb146103c05780636352211e146103de576101e5565b806323b872dd146102ee5780632eb4a7ab1461030a5780632f745c591461032857806342842e0e14610358576101e5565b8063081812fc116101c3578063081812fc14610254578063095ea7b3146102845780630a398b88146102a057806318160ddd146102d0576101e5565b806301ffc9a7146101ea57806302329a291461021a57806306fdde0314610236575b600080fd5b61020460048036038101906101ff919061313d565b610604565b6040516102119190613596565b60405180910390f35b610234600480360381019061022f91906130eb565b61074e565b005b61023e6107e7565b60405161024b91906135cc565b60405180910390f35b61026e600480360381019061026991906131d0565b610879565b60405161027b919061352f565b60405180910390f35b61029e600480360381019061029991906130af565b6108f5565b005b6102ba60048036038101906102b59190612f44565b610a00565b6040516102c79190613596565b60405180910390f35b6102d8610a20565b6040516102e591906136c9565b60405180910390f35b61030860048036038101906103039190612fa9565b610a75565b005b610312610a85565b60405161031f91906135b1565b60405180910390f35b610342600480360381019061033d91906130af565b610a8b565b60405161034f91906136c9565b60405180910390f35b610372600480360381019061036d9190612fa9565b610c92565b005b61038e600480360381019061038991906131d0565b610cb2565b60405161039b91906136c9565b60405180910390f35b6103be60048036038101906103b9919061318f565b610e23565b005b6103c8610eb9565b6040516103d59190613596565b60405180910390f35b6103f860048036038101906103f391906131d0565b610ecc565b604051610405919061352f565b60405180910390f35b610416610ee2565b60405161042391906135cc565b60405180910390f35b61044660048036038101906104419190612f44565b610f70565b60405161045391906136c9565b60405180910390f35b610464611040565b005b61046e6110c8565b60405161047b91906136ae565b60405180910390f35b61049e60048036038101906104999190613114565b6110dc565b005b6104ba60048036038101906104b591906131f9565b611162565b005b6104c4611249565b6040516104d191906136c9565b60405180910390f35b6104e261124f565b6040516104ef919061352f565b60405180910390f35b610500611279565b60405161050d91906135cc565b60405180910390f35b610530600480360381019061052b9190613073565b61130b565b005b61054c60048036038101906105479190612ff8565b611483565b005b61056860048036038101906105639190613235565b6114d6565b005b61057261175c565b60405161057f91906135cc565b60405180910390f35b6105a2600480360381019061059d91906131d0565b6117ea565b6040516105af91906135cc565b60405180910390f35b6105d260048036038101906105cd9190612f6d565b61188c565b6040516105df9190613596565b60405180910390f35b61060260048036038101906105fd9190612f44565b611920565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106cf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610747575061074682611a18565b5b9050919050565b610756611a82565b73ffffffffffffffffffffffffffffffffffffffff1661077461124f565b73ffffffffffffffffffffffffffffffffffffffff16146107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c19061364e565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6060600180546107f69061394c565b80601f01602080910402602001604051908101604052809291908181526020018280546108229061394c565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b600061088482611a8a565b6108ba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090082610ecc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610968576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610987611a82565b73ffffffffffffffffffffffffffffffffffffffff16141580156109b957506109b7816109b2611a82565b61188c565b155b156109f0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109fb838383611af2565b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610a80838383611ba4565b505050565b600a5481565b6000610a9683610f70565b8210610ace576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610c86576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610be55750610c79565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c2557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c775786841415610c6e578195505050505050610c8c565b83806001019450505b505b8080600101915050610b08565b50600080fd5b92915050565b610cad83838360405180602001604052806000815250611483565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015610deb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610ddd5785831415610dd45781945050505050610e1e565b82806001019350505b508080600101915050610cea565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b610e2b611a82565b73ffffffffffffffffffffffffffffffffffffffff16610e4961124f565b73ffffffffffffffffffffffffffffffffffffffff1614610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e969061364e565b60405180910390fd5b80600b9080519060200190610eb5929190612cc6565b5050565b600c60009054906101000a900460ff1681565b6000610ed7826120c1565b600001519050919050565b600b8054610eef9061394c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1b9061394c565b8015610f685780601f10610f3d57610100808354040283529160200191610f68565b820191906000526020600020905b815481529060010190602001808311610f4b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611048611a82565b73ffffffffffffffffffffffffffffffffffffffff1661106661124f565b73ffffffffffffffffffffffffffffffffffffffff16146110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b39061364e565b60405180910390fd5b6110c66000612369565b565b600c60019054906101000a900461ffff1681565b6110e4611a82565b73ffffffffffffffffffffffffffffffffffffffff1661110261124f565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f9061364e565b60405180910390fd5b80600a8190555050565b61116a611a82565b73ffffffffffffffffffffffffffffffffffffffff1661118861124f565b73ffffffffffffffffffffffffffffffffffffffff16146111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d59061364e565b60405180910390fd5b60006111e8610a20565b90506107c283826111f991906137c3565b111561123a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112319061362e565b60405180910390fd5b611244828461242f565b505050565b6107c281565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112889061394c565b80601f01602080910402602001604051908101604052809291908181526020018280546112b49061394c565b80156113015780601f106112d657610100808354040283529160200191611301565b820191906000526020600020905b8154815290600101906020018083116112e457829003601f168201915b5050505050905090565b611313611a82565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611378576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611385611a82565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611432611a82565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114779190613596565b60405180910390a35050565b61148e848484611ba4565b61149a8484848461244d565b6114d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b818160011515611550838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a543360405160200161153591906134e3565b604051602081830303815290604052805190602001206125db565b151514611592576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115899061368e565b60405180910390fd5b600061159c610a20565b9050600c60009054906101000a900460ff16156115b857600080fd5b600c60019054906101000a900461ffff1661ffff1686111561160f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116069061360e565b60405180910390fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146116a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116999061366e565b60405180910390fd5b6107c286826116b191906137c3565b11156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e99061362e565b60405180910390fd5b6116fc338761242f565b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050565b600280546117699061394c565b80601f01602080910402602001604051908101604052809291908181526020018280546117959061394c565b80156117e25780601f106117b7576101008083540402835291602001916117e2565b820191906000526020600020905b8154815290600101906020018083116117c557829003601f168201915b505050505081565b60606117f582611a8a565b61182b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118356125f2565b90506000815114156118565760405180602001604052806000815250611884565b8061186084612684565b6002604051602001611874939291906134fe565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611928611a82565b73ffffffffffffffffffffffffffffffffffffffff1661194661124f565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119939061364e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a03906135ee565b60405180910390fd5b611a1581612369565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611aeb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611baf826120c1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bd6611a82565b73ffffffffffffffffffffffffffffffffffffffff161480611c095750611c088260000151611c03611a82565b61188c565b5b80611c4e5750611c17611a82565b73ffffffffffffffffffffffffffffffffffffffff16611c3684610879565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c87576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cf0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d57576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d648585856001612831565b611d746000848460000151611af2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120515760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156120505782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ba8585856001612837565b5050505050565b6120c9612d4c565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612332576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161233057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612214578092505050612364565b5b60011561232f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232a578092505050612364565b612215565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61244982826040518060200160405280600081525061283d565b5050565b600061246e8473ffffffffffffffffffffffffffffffffffffffff1661284f565b156125ce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612497611a82565b8786866040518563ffffffff1660e01b81526004016124b9949392919061354a565b602060405180830381600087803b1580156124d357600080fd5b505af192505050801561250457506040513d601f19601f820116820180604052508101906125019190613166565b60015b61257e573d8060008114612534576040519150601f19603f3d011682016040523d82523d6000602084013e612539565b606091505b50600081511415612576576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125d3565b600190505b949350505050565b6000826125e88584612872565b1490509392505050565b6060600b80546126019061394c565b80601f016020809104026020016040519081016040528092919081815260200182805461262d9061394c565b801561267a5780601f1061264f5761010080835404028352916020019161267a565b820191906000526020600020905b81548152906001019060200180831161265d57829003601f168201915b5050505050905090565b606060008214156126cc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061282c565b600082905060005b600082146126fe5780806126e7906139af565b915050600a826126f79190613819565b91506126d4565b60008167ffffffffffffffff811115612740577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127725781602001600182028036833780820191505090505b5090505b600085146128255760018261278b919061384a565b9150600a8561279a9190613a1c565b60306127a691906137c3565b60f81b8183815181106127e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561281e9190613819565b9450612776565b8093505050505b919050565b50505050565b50505050565b61284a83838360016128ee565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b84518110156128e3576128ce828683815181106128c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612c84565b915080806128db906139af565b91505061287b565b508091505092915050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612989576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129c4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129d16000868387612831565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612c3657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612bea5750612be8600088848861244d565b155b15612c21576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612b6f565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612c7d6000868387612837565b5050505050565b6000818310612c9c57612c978284612caf565b612ca7565b612ca68383612caf565b5b905092915050565b600082600052816020526040600020905092915050565b828054612cd29061394c565b90600052602060002090601f016020900481019282612cf45760008555612d3b565b82601f10612d0d57805160ff1916838001178555612d3b565b82800160010185558215612d3b579182015b82811115612d3a578251825591602001919060010190612d1f565b5b509050612d489190612d8f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612da8576000816000905550600101612d90565b5090565b6000612dbf612dba84613709565b6136e4565b905082815260208101848484011115612dd757600080fd5b612de284828561390a565b509392505050565b6000612dfd612df88461373a565b6136e4565b905082815260208101848484011115612e1557600080fd5b612e2084828561390a565b509392505050565b600081359050612e3781613c43565b92915050565b60008083601f840112612e4f57600080fd5b8235905067ffffffffffffffff811115612e6857600080fd5b602083019150836020820283011115612e8057600080fd5b9250929050565b600081359050612e9681613c5a565b92915050565b600081359050612eab81613c71565b92915050565b600081359050612ec081613c88565b92915050565b600081519050612ed581613c88565b92915050565b600082601f830112612eec57600080fd5b8135612efc848260208601612dac565b91505092915050565b600082601f830112612f1657600080fd5b8135612f26848260208601612dea565b91505092915050565b600081359050612f3e81613c9f565b92915050565b600060208284031215612f5657600080fd5b6000612f6484828501612e28565b91505092915050565b60008060408385031215612f8057600080fd5b6000612f8e85828601612e28565b9250506020612f9f85828601612e28565b9150509250929050565b600080600060608486031215612fbe57600080fd5b6000612fcc86828701612e28565b9350506020612fdd86828701612e28565b9250506040612fee86828701612f2f565b9150509250925092565b6000806000806080858703121561300e57600080fd5b600061301c87828801612e28565b945050602061302d87828801612e28565b935050604061303e87828801612f2f565b925050606085013567ffffffffffffffff81111561305b57600080fd5b61306787828801612edb565b91505092959194509250565b6000806040838503121561308657600080fd5b600061309485828601612e28565b92505060206130a585828601612e87565b9150509250929050565b600080604083850312156130c257600080fd5b60006130d085828601612e28565b92505060206130e185828601612f2f565b9150509250929050565b6000602082840312156130fd57600080fd5b600061310b84828501612e87565b91505092915050565b60006020828403121561312657600080fd5b600061313484828501612e9c565b91505092915050565b60006020828403121561314f57600080fd5b600061315d84828501612eb1565b91505092915050565b60006020828403121561317857600080fd5b600061318684828501612ec6565b91505092915050565b6000602082840312156131a157600080fd5b600082013567ffffffffffffffff8111156131bb57600080fd5b6131c784828501612f05565b91505092915050565b6000602082840312156131e257600080fd5b60006131f084828501612f2f565b91505092915050565b6000806040838503121561320c57600080fd5b600061321a85828601612f2f565b925050602061322b85828601612e28565b9150509250929050565b60008060006040848603121561324a57600080fd5b600061325886828701612f2f565b935050602084013567ffffffffffffffff81111561327557600080fd5b61328186828701612e3d565b92509250509250925092565b6132968161387e565b82525050565b6132ad6132a88261387e565b6139f8565b82525050565b6132bc81613890565b82525050565b6132cb8161389c565b82525050565b60006132dc82613780565b6132e68185613796565b93506132f6818560208601613919565b6132ff81613b09565b840191505092915050565b60006133158261378b565b61331f81856137a7565b935061332f818560208601613919565b61333881613b09565b840191505092915050565b600061334e8261378b565b61335881856137b8565b9350613368818560208601613919565b80840191505092915050565b600081546133818161394c565b61338b81866137b8565b945060018216600081146133a657600181146133b7576133ea565b60ff198316865281860193506133ea565b6133c08561376b565b60005b838110156133e2578154818901526001820191506020810190506133c3565b838801955050505b50505092915050565b60006134006026836137a7565b915061340b82613b27565b604082019050919050565b60006134236012836137a7565b915061342e82613b76565b602082019050919050565b60006134466016836137a7565b915061345182613b9f565b602082019050919050565b60006134696020836137a7565b915061347482613bc8565b602082019050919050565b600061348c6014836137a7565b915061349782613bf1565b602082019050919050565b60006134af6012836137a7565b91506134ba82613c1a565b602082019050919050565b6134ce816138d2565b82525050565b6134dd81613900565b82525050565b60006134ef828461329c565b60148201915081905092915050565b600061350a8286613343565b91506135168285613343565b91506135228284613374565b9150819050949350505050565b6000602082019050613544600083018461328d565b92915050565b600060808201905061355f600083018761328d565b61356c602083018661328d565b61357960408301856134d4565b818103606083015261358b81846132d1565b905095945050505050565b60006020820190506135ab60008301846132b3565b92915050565b60006020820190506135c660008301846132c2565b92915050565b600060208201905081810360008301526135e6818461330a565b905092915050565b60006020820190508181036000830152613607816133f3565b9050919050565b6000602082019050818103600083015261362781613416565b9050919050565b6000602082019050818103600083015261364781613439565b9050919050565b600060208201905081810360008301526136678161345c565b9050919050565b600060208201905081810360008301526136878161347f565b9050919050565b600060208201905081810360008301526136a7816134a2565b9050919050565b60006020820190506136c360008301846134c5565b92915050565b60006020820190506136de60008301846134d4565b92915050565b60006136ee6136ff565b90506136fa828261397e565b919050565b6000604051905090565b600067ffffffffffffffff82111561372457613723613ada565b5b61372d82613b09565b9050602081019050919050565b600067ffffffffffffffff82111561375557613754613ada565b5b61375e82613b09565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006137ce82613900565b91506137d983613900565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561380e5761380d613a4d565b5b828201905092915050565b600061382482613900565b915061382f83613900565b92508261383f5761383e613a7c565b5b828204905092915050565b600061385582613900565b915061386083613900565b92508282101561387357613872613a4d565b5b828203905092915050565b6000613889826138e0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561393757808201518184015260208101905061391c565b83811115613946576000848401525b50505050565b6000600282049050600182168061396457607f821691505b6020821081141561397857613977613aab565b5b50919050565b61398782613b09565b810181811067ffffffffffffffff821117156139a6576139a5613ada565b5b80604052505050565b60006139ba82613900565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139ed576139ec613a4d565b5b600182019050919050565b6000613a0382613a0a565b9050919050565b6000613a1582613b1a565b9050919050565b6000613a2782613900565b9150613a3283613900565b925082613a4257613a41613a7c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4164647265737320616c72656164792075736564000000000000000000000000600082015250565b7f4e6f7420616c6c6f776564206f726967696e0000000000000000000000000000600082015250565b613c4c8161387e565b8114613c5757600080fd5b50565b613c6381613890565b8114613c6e57600080fd5b50565b613c7a8161389c565b8114613c8557600080fd5b50565b613c91816138a6565b8114613c9c57600080fd5b50565b613ca881613900565b8114613cb357600080fd5b5056fea2646970667358221220e4921189e39ad26be051ead13637ebef1a99489d0a53d2921d176f5e42c3c69764736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c80636c0360eb1161010f57806395d89b41116100a2578063c668286211610071578063c66828621461056a578063c87b56dd14610588578063e985e9c5146105b8578063f2fde38b146105e8576101e5565b806395d89b41146104f8578063a22cb46514610516578063b88d4fde14610532578063ba41b0c61461054e576101e5565b80637cb64759116100de5780637cb647591461048457806383a076be146104a05780638a333b50146104bc5780638da5cb5b146104da576101e5565b80636c0360eb1461040e57806370a082311461042c578063715018a61461045c5780637501f74114610466576101e5565b806323b872dd116101875780634f6ccce7116101565780634f6ccce71461037457806355f804b3146103a45780635c975abb146103c05780636352211e146103de576101e5565b806323b872dd146102ee5780632eb4a7ab1461030a5780632f745c591461032857806342842e0e14610358576101e5565b8063081812fc116101c3578063081812fc14610254578063095ea7b3146102845780630a398b88146102a057806318160ddd146102d0576101e5565b806301ffc9a7146101ea57806302329a291461021a57806306fdde0314610236575b600080fd5b61020460048036038101906101ff919061313d565b610604565b6040516102119190613596565b60405180910390f35b610234600480360381019061022f91906130eb565b61074e565b005b61023e6107e7565b60405161024b91906135cc565b60405180910390f35b61026e600480360381019061026991906131d0565b610879565b60405161027b919061352f565b60405180910390f35b61029e600480360381019061029991906130af565b6108f5565b005b6102ba60048036038101906102b59190612f44565b610a00565b6040516102c79190613596565b60405180910390f35b6102d8610a20565b6040516102e591906136c9565b60405180910390f35b61030860048036038101906103039190612fa9565b610a75565b005b610312610a85565b60405161031f91906135b1565b60405180910390f35b610342600480360381019061033d91906130af565b610a8b565b60405161034f91906136c9565b60405180910390f35b610372600480360381019061036d9190612fa9565b610c92565b005b61038e600480360381019061038991906131d0565b610cb2565b60405161039b91906136c9565b60405180910390f35b6103be60048036038101906103b9919061318f565b610e23565b005b6103c8610eb9565b6040516103d59190613596565b60405180910390f35b6103f860048036038101906103f391906131d0565b610ecc565b604051610405919061352f565b60405180910390f35b610416610ee2565b60405161042391906135cc565b60405180910390f35b61044660048036038101906104419190612f44565b610f70565b60405161045391906136c9565b60405180910390f35b610464611040565b005b61046e6110c8565b60405161047b91906136ae565b60405180910390f35b61049e60048036038101906104999190613114565b6110dc565b005b6104ba60048036038101906104b591906131f9565b611162565b005b6104c4611249565b6040516104d191906136c9565b60405180910390f35b6104e261124f565b6040516104ef919061352f565b60405180910390f35b610500611279565b60405161050d91906135cc565b60405180910390f35b610530600480360381019061052b9190613073565b61130b565b005b61054c60048036038101906105479190612ff8565b611483565b005b61056860048036038101906105639190613235565b6114d6565b005b61057261175c565b60405161057f91906135cc565b60405180910390f35b6105a2600480360381019061059d91906131d0565b6117ea565b6040516105af91906135cc565b60405180910390f35b6105d260048036038101906105cd9190612f6d565b61188c565b6040516105df9190613596565b60405180910390f35b61060260048036038101906105fd9190612f44565b611920565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106cf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610747575061074682611a18565b5b9050919050565b610756611a82565b73ffffffffffffffffffffffffffffffffffffffff1661077461124f565b73ffffffffffffffffffffffffffffffffffffffff16146107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c19061364e565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b6060600180546107f69061394c565b80601f01602080910402602001604051908101604052809291908181526020018280546108229061394c565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b5050505050905090565b600061088482611a8a565b6108ba576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090082610ecc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610968576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610987611a82565b73ffffffffffffffffffffffffffffffffffffffff16141580156109b957506109b7816109b2611a82565b61188c565b155b156109f0576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109fb838383611af2565b505050565b60096020528060005260406000206000915054906101000a900460ff1681565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610a80838383611ba4565b505050565b600a5481565b6000610a9683610f70565b8210610ace576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610c86576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610be55750610c79565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c2557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c775786841415610c6e578195505050505050610c8c565b83806001019450505b505b8080600101915050610b08565b50600080fd5b92915050565b610cad83838360405180602001604052806000815250611483565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015610deb576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610ddd5785831415610dd45781945050505050610e1e565b82806001019350505b508080600101915050610cea565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b610e2b611a82565b73ffffffffffffffffffffffffffffffffffffffff16610e4961124f565b73ffffffffffffffffffffffffffffffffffffffff1614610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e969061364e565b60405180910390fd5b80600b9080519060200190610eb5929190612cc6565b5050565b600c60009054906101000a900460ff1681565b6000610ed7826120c1565b600001519050919050565b600b8054610eef9061394c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1b9061394c565b8015610f685780601f10610f3d57610100808354040283529160200191610f68565b820191906000526020600020905b815481529060010190602001808311610f4b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611048611a82565b73ffffffffffffffffffffffffffffffffffffffff1661106661124f565b73ffffffffffffffffffffffffffffffffffffffff16146110bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b39061364e565b60405180910390fd5b6110c66000612369565b565b600c60019054906101000a900461ffff1681565b6110e4611a82565b73ffffffffffffffffffffffffffffffffffffffff1661110261124f565b73ffffffffffffffffffffffffffffffffffffffff1614611158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114f9061364e565b60405180910390fd5b80600a8190555050565b61116a611a82565b73ffffffffffffffffffffffffffffffffffffffff1661118861124f565b73ffffffffffffffffffffffffffffffffffffffff16146111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d59061364e565b60405180910390fd5b60006111e8610a20565b90506107c283826111f991906137c3565b111561123a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112319061362e565b60405180910390fd5b611244828461242f565b505050565b6107c281565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112889061394c565b80601f01602080910402602001604051908101604052809291908181526020018280546112b49061394c565b80156113015780601f106112d657610100808354040283529160200191611301565b820191906000526020600020905b8154815290600101906020018083116112e457829003601f168201915b5050505050905090565b611313611a82565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611378576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611385611a82565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611432611a82565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114779190613596565b60405180910390a35050565b61148e848484611ba4565b61149a8484848461244d565b6114d0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b818160011515611550838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a543360405160200161153591906134e3565b604051602081830303815290604052805190602001206125db565b151514611592576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115899061368e565b60405180910390fd5b600061159c610a20565b9050600c60009054906101000a900460ff16156115b857600080fd5b600c60019054906101000a900461ffff1661ffff1686111561160f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116069061360e565b60405180910390fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146116a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116999061366e565b60405180910390fd5b6107c286826116b191906137c3565b11156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e99061362e565b60405180910390fd5b6116fc338761242f565b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050505050565b600280546117699061394c565b80601f01602080910402602001604051908101604052809291908181526020018280546117959061394c565b80156117e25780601f106117b7576101008083540402835291602001916117e2565b820191906000526020600020905b8154815290600101906020018083116117c557829003601f168201915b505050505081565b60606117f582611a8a565b61182b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118356125f2565b90506000815114156118565760405180602001604052806000815250611884565b8061186084612684565b6002604051602001611874939291906134fe565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611928611a82565b73ffffffffffffffffffffffffffffffffffffffff1661194661124f565b73ffffffffffffffffffffffffffffffffffffffff161461199c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119939061364e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a03906135ee565b60405180910390fd5b611a1581612369565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611aeb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611baf826120c1565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611bd6611a82565b73ffffffffffffffffffffffffffffffffffffffff161480611c095750611c088260000151611c03611a82565b61188c565b5b80611c4e5750611c17611a82565b73ffffffffffffffffffffffffffffffffffffffff16611c3684610879565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c87576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cf0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d57576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d648585856001612831565b611d746000848460000151611af2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156120515760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156120505782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ba8585856001612837565b5050505050565b6120c9612d4c565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612332576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161233057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612214578092505050612364565b5b60011561232f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232a578092505050612364565b612215565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61244982826040518060200160405280600081525061283d565b5050565b600061246e8473ffffffffffffffffffffffffffffffffffffffff1661284f565b156125ce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612497611a82565b8786866040518563ffffffff1660e01b81526004016124b9949392919061354a565b602060405180830381600087803b1580156124d357600080fd5b505af192505050801561250457506040513d601f19601f820116820180604052508101906125019190613166565b60015b61257e573d8060008114612534576040519150601f19603f3d011682016040523d82523d6000602084013e612539565b606091505b50600081511415612576576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125d3565b600190505b949350505050565b6000826125e88584612872565b1490509392505050565b6060600b80546126019061394c565b80601f016020809104026020016040519081016040528092919081815260200182805461262d9061394c565b801561267a5780601f1061264f5761010080835404028352916020019161267a565b820191906000526020600020905b81548152906001019060200180831161265d57829003601f168201915b5050505050905090565b606060008214156126cc576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061282c565b600082905060005b600082146126fe5780806126e7906139af565b915050600a826126f79190613819565b91506126d4565b60008167ffffffffffffffff811115612740577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127725781602001600182028036833780820191505090505b5090505b600085146128255760018261278b919061384a565b9150600a8561279a9190613a1c565b60306127a691906137c3565b60f81b8183815181106127e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561281e9190613819565b9450612776565b8093505050505b919050565b50505050565b50505050565b61284a83838360016128ee565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b84518110156128e3576128ce828683815181106128c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612c84565b915080806128db906139af565b91505061287b565b508091505092915050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612989576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129c4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129d16000868387612831565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612c3657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612bea5750612be8600088848861244d565b155b15612c21576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612b6f565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612c7d6000868387612837565b5050505050565b6000818310612c9c57612c978284612caf565b612ca7565b612ca68383612caf565b5b905092915050565b600082600052816020526040600020905092915050565b828054612cd29061394c565b90600052602060002090601f016020900481019282612cf45760008555612d3b565b82601f10612d0d57805160ff1916838001178555612d3b565b82800160010185558215612d3b579182015b82811115612d3a578251825591602001919060010190612d1f565b5b509050612d489190612d8f565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612da8576000816000905550600101612d90565b5090565b6000612dbf612dba84613709565b6136e4565b905082815260208101848484011115612dd757600080fd5b612de284828561390a565b509392505050565b6000612dfd612df88461373a565b6136e4565b905082815260208101848484011115612e1557600080fd5b612e2084828561390a565b509392505050565b600081359050612e3781613c43565b92915050565b60008083601f840112612e4f57600080fd5b8235905067ffffffffffffffff811115612e6857600080fd5b602083019150836020820283011115612e8057600080fd5b9250929050565b600081359050612e9681613c5a565b92915050565b600081359050612eab81613c71565b92915050565b600081359050612ec081613c88565b92915050565b600081519050612ed581613c88565b92915050565b600082601f830112612eec57600080fd5b8135612efc848260208601612dac565b91505092915050565b600082601f830112612f1657600080fd5b8135612f26848260208601612dea565b91505092915050565b600081359050612f3e81613c9f565b92915050565b600060208284031215612f5657600080fd5b6000612f6484828501612e28565b91505092915050565b60008060408385031215612f8057600080fd5b6000612f8e85828601612e28565b9250506020612f9f85828601612e28565b9150509250929050565b600080600060608486031215612fbe57600080fd5b6000612fcc86828701612e28565b9350506020612fdd86828701612e28565b9250506040612fee86828701612f2f565b9150509250925092565b6000806000806080858703121561300e57600080fd5b600061301c87828801612e28565b945050602061302d87828801612e28565b935050604061303e87828801612f2f565b925050606085013567ffffffffffffffff81111561305b57600080fd5b61306787828801612edb565b91505092959194509250565b6000806040838503121561308657600080fd5b600061309485828601612e28565b92505060206130a585828601612e87565b9150509250929050565b600080604083850312156130c257600080fd5b60006130d085828601612e28565b92505060206130e185828601612f2f565b9150509250929050565b6000602082840312156130fd57600080fd5b600061310b84828501612e87565b91505092915050565b60006020828403121561312657600080fd5b600061313484828501612e9c565b91505092915050565b60006020828403121561314f57600080fd5b600061315d84828501612eb1565b91505092915050565b60006020828403121561317857600080fd5b600061318684828501612ec6565b91505092915050565b6000602082840312156131a157600080fd5b600082013567ffffffffffffffff8111156131bb57600080fd5b6131c784828501612f05565b91505092915050565b6000602082840312156131e257600080fd5b60006131f084828501612f2f565b91505092915050565b6000806040838503121561320c57600080fd5b600061321a85828601612f2f565b925050602061322b85828601612e28565b9150509250929050565b60008060006040848603121561324a57600080fd5b600061325886828701612f2f565b935050602084013567ffffffffffffffff81111561327557600080fd5b61328186828701612e3d565b92509250509250925092565b6132968161387e565b82525050565b6132ad6132a88261387e565b6139f8565b82525050565b6132bc81613890565b82525050565b6132cb8161389c565b82525050565b60006132dc82613780565b6132e68185613796565b93506132f6818560208601613919565b6132ff81613b09565b840191505092915050565b60006133158261378b565b61331f81856137a7565b935061332f818560208601613919565b61333881613b09565b840191505092915050565b600061334e8261378b565b61335881856137b8565b9350613368818560208601613919565b80840191505092915050565b600081546133818161394c565b61338b81866137b8565b945060018216600081146133a657600181146133b7576133ea565b60ff198316865281860193506133ea565b6133c08561376b565b60005b838110156133e2578154818901526001820191506020810190506133c3565b838801955050505b50505092915050565b60006134006026836137a7565b915061340b82613b27565b604082019050919050565b60006134236012836137a7565b915061342e82613b76565b602082019050919050565b60006134466016836137a7565b915061345182613b9f565b602082019050919050565b60006134696020836137a7565b915061347482613bc8565b602082019050919050565b600061348c6014836137a7565b915061349782613bf1565b602082019050919050565b60006134af6012836137a7565b91506134ba82613c1a565b602082019050919050565b6134ce816138d2565b82525050565b6134dd81613900565b82525050565b60006134ef828461329c565b60148201915081905092915050565b600061350a8286613343565b91506135168285613343565b91506135228284613374565b9150819050949350505050565b6000602082019050613544600083018461328d565b92915050565b600060808201905061355f600083018761328d565b61356c602083018661328d565b61357960408301856134d4565b818103606083015261358b81846132d1565b905095945050505050565b60006020820190506135ab60008301846132b3565b92915050565b60006020820190506135c660008301846132c2565b92915050565b600060208201905081810360008301526135e6818461330a565b905092915050565b60006020820190508181036000830152613607816133f3565b9050919050565b6000602082019050818103600083015261362781613416565b9050919050565b6000602082019050818103600083015261364781613439565b9050919050565b600060208201905081810360008301526136678161345c565b9050919050565b600060208201905081810360008301526136878161347f565b9050919050565b600060208201905081810360008301526136a7816134a2565b9050919050565b60006020820190506136c360008301846134c5565b92915050565b60006020820190506136de60008301846134d4565b92915050565b60006136ee6136ff565b90506136fa828261397e565b919050565b6000604051905090565b600067ffffffffffffffff82111561372457613723613ada565b5b61372d82613b09565b9050602081019050919050565b600067ffffffffffffffff82111561375557613754613ada565b5b61375e82613b09565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006137ce82613900565b91506137d983613900565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561380e5761380d613a4d565b5b828201905092915050565b600061382482613900565b915061382f83613900565b92508261383f5761383e613a7c565b5b828204905092915050565b600061385582613900565b915061386083613900565b92508282101561387357613872613a4d565b5b828203905092915050565b6000613889826138e0565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561393757808201518184015260208101905061391c565b83811115613946576000848401525b50505050565b6000600282049050600182168061396457607f821691505b6020821081141561397857613977613aab565b5b50919050565b61398782613b09565b810181811067ffffffffffffffff821117156139a6576139a5613ada565b5b80604052505050565b60006139ba82613900565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139ed576139ec613a4d565b5b600182019050919050565b6000613a0382613a0a565b9050919050565b6000613a1582613b1a565b9050919050565b6000613a2782613900565b9150613a3283613900565b925082613a4257613a41613a7c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4164647265737320616c72656164792075736564000000000000000000000000600082015250565b7f4e6f7420616c6c6f776564206f726967696e0000000000000000000000000000600082015250565b613c4c8161387e565b8114613c5757600080fd5b50565b613c6381613890565b8114613c6e57600080fd5b50565b613c7a8161389c565b8114613c8557600080fd5b50565b613c91816138a6565b8114613c9c57600080fd5b50565b613ca881613900565b8114613cb357600080fd5b5056fea2646970667358221220e4921189e39ad26be051ead13637ebef1a99489d0a53d2921d176f5e42c3c69764736f6c63430008040033

Deployed Bytecode Sourcemap

74845:1786:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38643:372;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76449:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41253:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42770:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42333:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74901:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35880:280;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43627:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74953:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37466:1105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43868:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36453:713;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75302:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75013:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41062:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74985:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39079:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13488:103;;;:::i;:::-;;75093:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76536:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76210:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75045:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12837:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41422:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43046:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44124:342;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75674:479;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35007:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41597:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43396:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13746:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38643:372;38745:4;38797:25;38782:40;;;:11;:40;;;;:105;;;;38854:33;38839:48;;;:11;:48;;;;38782:105;:172;;;;38919:35;38904:50;;;:11;:50;;;;38782:172;:225;;;;38971:36;38995:11;38971:23;:36::i;:::-;38782:225;38762:245;;38643:372;;;:::o;76449:79::-;13068:12;:10;:12::i;:::-;13057:23;;:7;:5;:7::i;:::-;:23;;;13049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76514:6:::1;76505;;:15;;;;;;;;;;;;;;;;;;76449:79:::0;:::o;41253:100::-;41307:13;41340:5;41333:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41253:100;:::o;42770:204::-;42838:7;42863:16;42871:7;42863;:16::i;:::-;42858:64;;42888:34;;;;;;;;;;;;;;42858:64;42942:15;:24;42958:7;42942:24;;;;;;;;;;;;;;;;;;;;;42935:31;;42770:204;;;:::o;42333:371::-;42406:13;42422:24;42438:7;42422:15;:24::i;:::-;42406:40;;42467:5;42461:11;;:2;:11;;;42457:48;;;42481:24;;;;;;;;;;;;;;42457:48;42538:5;42522:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;42548:37;42565:5;42572:12;:10;:12::i;:::-;42548:16;:37::i;:::-;42547:38;42522:63;42518:138;;;42609:35;;;;;;;;;;;;;;42518:138;42668:28;42677:2;42681:7;42690:5;42668:8;:28::i;:::-;42333:371;;;:::o;74901:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;35880:280::-;35933:7;36125:12;;;;;;;;;;;36109:13;;;;;;;;;;:28;36102:35;;;;35880:280;:::o;43627:170::-;43761:28;43771:4;43777:2;43781:7;43761:9;:28::i;:::-;43627:170;;;:::o;74953:25::-;;;;:::o;37466:1105::-;37555:7;37588:16;37598:5;37588:9;:16::i;:::-;37579:5;:25;37575:61;;37613:23;;;;;;;;;;;;;;37575:61;37647:22;37672:13;;;;;;;;;;;37647:38;;;;37696:19;37726:25;37927:9;37922:557;37942:14;37938:1;:18;37922:557;;;37982:31;38016:11;:14;38028:1;38016:14;;;;;;;;;;;37982:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38053:9;:16;;;38049:73;;;38094:8;;;38049:73;38170:1;38144:28;;:9;:14;;;:28;;;38140:111;;38217:9;:14;;;38197:34;;38140:111;38294:5;38273:26;;:17;:26;;;38269:195;;;38343:5;38328:11;:20;38324:85;;;38384:1;38377:8;;;;;;;;;38324:85;38431:13;;;;;;;38269:195;37922:557;;37958:3;;;;;;;37922:557;;;;38555:8;;;37466:1105;;;;;:::o;43868:185::-;44006:39;44023:4;44029:2;44033:7;44006:39;;;;;;;;;;;;:16;:39::i;:::-;43868:185;;;:::o;36453:713::-;36520:7;36540:22;36565:13;;;;;;;;;;36540:38;;;;36589:19;36784:9;36779:328;36799:14;36795:1;:18;36779:328;;;36839:31;36873:11;:14;36885:1;36873:14;;;;;;;;;;;36839:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36911:9;:16;;;36906:186;;36971:5;36956:11;:20;36952:85;;;37012:1;37005:8;;;;;;;;36952:85;37059:13;;;;;;;36906:186;36779:328;36815:3;;;;;;;36779:328;;;;37135:23;;;;;;;;;;;;;;36453:713;;;;:::o;75302:98::-;13068:12;:10;:12::i;:::-;13057:23;;:7;:5;:7::i;:::-;:23;;;13049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75384:8:::1;75374:7;:18;;;;;;;;;;;;:::i;:::-;;75302:98:::0;:::o;75013:25::-;;;;;;;;;;;;;:::o;41062:124::-;41126:7;41153:20;41165:7;41153:11;:20::i;:::-;:25;;;41146:32;;41062:124;;;:::o;74985:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39079:206::-;39143:7;39184:1;39167:19;;:5;:19;;;39163:60;;;39195:28;;;;;;;;;;;;;;39163:60;39249:12;:19;39262:5;39249:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;39241:36;;39234:43;;39079:206;;;:::o;13488:103::-;13068:12;:10;:12::i;:::-;13057:23;;:7;:5;:7::i;:::-;:23;;;13049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13553:30:::1;13580:1;13553:18;:30::i;:::-;13488:103::o:0;75093:25::-;;;;;;;;;;;;;:::o;76536:92::-;13068:12;:10;:12::i;:::-;13057:23;;:7;:5;:7::i;:::-;:23;;;13049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76615:5:::1;76602:10;:18;;;;76536:92:::0;:::o;76210:230::-;13068:12;:10;:12::i;:::-;13057:23;;:7;:5;:7::i;:::-;:23;;;13049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;76286:14:::1;76303:13;:11;:13::i;:::-;76286:30;;75082:4;76343:11;76334:6;:20;;;;:::i;:::-;:34;;76326:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;76405:27;76415:3;76420:11;76405:9;:27::i;:::-;13128:1;76210:230:::0;;:::o;75045:41::-;75082:4;75045:41;:::o;12837:87::-;12883:7;12910:6;;;;;;;;;;;12903:13;;12837:87;:::o;41422:104::-;41478:13;41511:7;41504:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41422:104;:::o;43046:279::-;43149:12;:10;:12::i;:::-;43137:24;;:8;:24;;;43133:54;;;43170:17;;;;;;;;;;;;;;43133:54;43245:8;43200:18;:32;43219:12;:10;:12::i;:::-;43200:32;;;;;;;;;;;;;;;:42;43233:8;43200:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;43298:8;43269:48;;43284:12;:10;:12::i;:::-;43269:48;;;43308:8;43269:48;;;;;;:::i;:::-;;;;;;;;43046:279;;:::o;44124:342::-;44291:28;44301:4;44307:2;44311:7;44291:9;:28::i;:::-;44335:48;44358:4;44364:2;44368:7;44377:5;44335:22;:48::i;:::-;44330:129;;44407:40;;;;;;;;;;;;;;44330:129;44124:342;;;;:::o;75674:479::-;75758:6;;75620:4;75483:141;;:133;75516:6;;75483:133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75537:10;;75589;75572:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;75562:39;;;;;;75483:18;:133::i;:::-;:141;;;75475:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;75777:14:::1;75794:13;:11;:13::i;:::-;75777:30;;75829:6;;;;;;;;;;;75828:7;75820:16;;;::::0;::::1;;75867:7;;;;;;;;;;;75856:18;;:7;:18;;75848:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;75945:5;75916:34;;:13;:25;75930:10;75916:25;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;75908:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;75082:4;76003:7;75994:6;:16;;;;:::i;:::-;:30;;75986:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;76072:30;76082:10;76094:7;76072:9;:30::i;:::-;76141:4;76113:13;:25;76127:10;76113:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;75658:1;75674:479:::0;;;;;:::o;35007:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41597:332::-;41670:13;41701:16;41709:7;41701;:16::i;:::-;41696:59;;41726:29;;;;;;;;;;;;;;41696:59;41768:21;41792:10;:8;:10::i;:::-;41768:34;;41845:1;41826:7;41820:21;:26;;:101;;;;;;;;;;;;;;;;;41873:7;41882:18;:7;:16;:18::i;:::-;41901:13;41856:59;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41820:101;41813:108;;;41597:332;;;:::o;43396:164::-;43493:4;43517:18;:25;43536:5;43517:25;;;;;;;;;;;;;;;:35;43543:8;43517:35;;;;;;;;;;;;;;;;;;;;;;;;;43510:42;;43396:164;;;;:::o;13746:201::-;13068:12;:10;:12::i;:::-;13057:23;;:7;:5;:7::i;:::-;:23;;;13049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13855:1:::1;13835:22;;:8;:22;;;;13827:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;13911:28;13930:8;13911:18;:28::i;:::-;13746:201:::0;:::o;25644:157::-;25729:4;25768:25;25753:40;;;:11;:40;;;;25746:47;;25644:157;;;:::o;11561:98::-;11614:7;11641:10;11634:17;;11561:98;:::o;44721:144::-;44778:4;44812:13;;;;;;;;;;;44802:23;;:7;:23;:55;;;;;44830:11;:20;44842:7;44830:20;;;;;;;;;;;:27;;;;;;;;;;;;44829:28;44802:55;44795:62;;44721:144;;;:::o;51937:196::-;52079:2;52052:15;:24;52068:7;52052:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52117:7;52113:2;52097:28;;52106:5;52097:28;;;;;;;;;;;;51937:196;;;:::o;47438:2112::-;47553:35;47591:20;47603:7;47591:11;:20::i;:::-;47553:58;;47624:22;47666:13;:18;;;47650:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;47701:50;47718:13;:18;;;47738:12;:10;:12::i;:::-;47701:16;:50::i;:::-;47650:101;:154;;;;47792:12;:10;:12::i;:::-;47768:36;;:20;47780:7;47768:11;:20::i;:::-;:36;;;47650:154;47624:181;;47823:17;47818:66;;47849:35;;;;;;;;;;;;;;47818:66;47921:4;47899:26;;:13;:18;;;:26;;;47895:67;;47934:28;;;;;;;;;;;;;;47895:67;47991:1;47977:16;;:2;:16;;;47973:52;;;48002:23;;;;;;;;;;;;;;47973:52;48038:43;48060:4;48066:2;48070:7;48079:1;48038:21;:43::i;:::-;48146:49;48163:1;48167:7;48176:13;:18;;;48146:8;:49::i;:::-;48521:1;48491:12;:18;48504:4;48491:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48565:1;48537:12;:16;48550:2;48537:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48611:2;48583:11;:20;48595:7;48583:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;48673:15;48628:11;:20;48640:7;48628:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;48941:19;48973:1;48963:7;:11;48941:33;;49034:1;48993:43;;:11;:24;49005:11;48993:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;48989:445;;;49218:13;;;;;;;;;;49204:27;;:11;:27;49200:219;;;49288:13;:18;;;49256:11;:24;49268:11;49256:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;49371:13;:28;;;49329:11;:24;49341:11;49329:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;49200:219;48989:445;47438:2112;49481:7;49477:2;49462:27;;49471:4;49462:27;;;;;;;;;;;;49500:42;49521:4;49527:2;49531:7;49540:1;49500:20;:42::i;:::-;47438:2112;;;;;:::o;39917:1083::-;39978:21;;:::i;:::-;40012:12;40027:7;40012:22;;40083:13;;;;;;;;;;40076:20;;:4;:20;40072:861;;;40117:31;40151:11;:17;40163:4;40151:17;;;;;;;;;;;40117:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40192:9;:16;;;40187:731;;40263:1;40237:28;;:9;:14;;;:28;;;40233:101;;40301:9;40294:16;;;;;;40233:101;40638:261;40645:4;40638:261;;;40678:6;;;;;;;;40723:11;:17;40735:4;40723:17;;;;;;;;;;;40711:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40797:1;40771:28;;:9;:14;;;:28;;;40767:109;;40839:9;40832:16;;;;;;40767:109;40638:261;;;40187:731;40072:861;;40961:31;;;;;;;;;;;;;;39917:1083;;;;:::o;14107:191::-;14181:16;14200:6;;;;;;;;;;;14181:25;;14226:8;14217:6;;:17;;;;;;;;;;;;;;;;;;14281:8;14250:40;;14271:8;14250:40;;;;;;;;;;;;14107:191;;:::o;44873:104::-;44942:27;44952:2;44956:8;44942:27;;;;;;;;;;;;:9;:27::i;:::-;44873:104;;:::o;52698:790::-;52853:4;52874:15;:2;:13;;;:15::i;:::-;52870:611;;;52926:2;52910:36;;;52947:12;:10;:12::i;:::-;52961:4;52967:7;52976:5;52910:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52906:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53173:1;53156:6;:13;:18;53152:259;;;53206:40;;;;;;;;;;;;;;53152:259;53361:6;53355:13;53346:6;53342:2;53338:15;53331:38;52906:520;53043:45;;;53033:55;;;:6;:55;;;;53026:62;;;;;52870:611;53465:4;53458:11;;52698:790;;;;;;;:::o;1252:190::-;1377:4;1430;1401:25;1414:5;1421:4;1401:12;:25::i;:::-;:33;1394:40;;1252:190;;;;;:::o;75129:108::-;75189:13;75222:7;75215:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75129:108;:::o;9123:723::-;9179:13;9409:1;9400:5;:10;9396:53;;;9427:10;;;;;;;;;;;;;;;;;;;;;9396:53;9459:12;9474:5;9459:20;;9490:14;9515:78;9530:1;9522:4;:9;9515:78;;9548:8;;;;;:::i;:::-;;;;9579:2;9571:10;;;;;:::i;:::-;;;9515:78;;;9603:19;9635:6;9625:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9603:39;;9653:154;9669:1;9660:5;:10;9653:154;;9697:1;9687:11;;;;;:::i;:::-;;;9764:2;9756:5;:10;;;;:::i;:::-;9743:2;:24;;;;:::i;:::-;9730:39;;9713:6;9720;9713:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;9793:2;9784:11;;;;;:::i;:::-;;;9653:154;;;9831:6;9817:21;;;;;9123:723;;;;:::o;54136:159::-;;;;;:::o;54954:158::-;;;;;:::o;45340:163::-;45463:32;45469:2;45473:8;45483:5;45490:4;45463:5;:32::i;:::-;45340:163;;;:::o;15538:326::-;15598:4;15855:1;15833:7;:19;;;:23;15826:30;;15538:326;;;:::o;2119:296::-;2202:7;2222:20;2245:4;2222:27;;2265:9;2260:118;2284:5;:12;2280:1;:16;2260:118;;;2333:33;2343:12;2357:5;2363:1;2357:8;;;;;;;;;;;;;;;;;;;;;;2333:9;:33::i;:::-;2318:48;;2298:3;;;;;:::i;:::-;;;;2260:118;;;;2395:12;2388:19;;;2119:296;;;;:::o;45762:1422::-;45901:20;45924:13;;;;;;;;;;;45901:36;;;;45966:1;45952:16;;:2;:16;;;45948:48;;;45977:19;;;;;;;;;;;;;;45948:48;46023:1;46011:8;:13;46007:44;;;46033:18;;;;;;;;;;;;;;46007:44;46064:61;46094:1;46098:2;46102:12;46116:8;46064:21;:61::i;:::-;46438:8;46403:12;:16;46416:2;46403:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46502:8;46462:12;:16;46475:2;46462:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46561:2;46528:11;:25;46540:12;46528:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;46628:15;46578:11;:25;46590:12;46578:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;46661:20;46684:12;46661:35;;46718:9;46713:328;46733:8;46729:1;:12;46713:328;;;46797:12;46793:2;46772:38;;46789:1;46772:38;;;;;;;;;;;;46833:4;:68;;;;;46842:59;46873:1;46877:2;46881:12;46895:5;46842:22;:59::i;:::-;46841:60;46833:68;46829:164;;;46933:40;;;;;;;;;;;;;;46829:164;47011:14;;;;;;;46743:3;;;;;;;46713:328;;;;47081:12;47057:13;;:37;;;;;;;;;;;;;;;;;;45762:1422;47116:60;47145:1;47149:2;47153:12;47167:8;47116:20;:60::i;:::-;45762:1422;;;;;:::o;8326:149::-;8389:7;8420:1;8416;:5;:51;;8447:20;8462:1;8465;8447:14;:20::i;:::-;8416:51;;;8424:20;8439:1;8442;8424:14;:20::i;:::-;8416:51;8409:58;;8326:149;;;;:::o;8483:268::-;8551:13;8658:1;8652:4;8645:15;8687:1;8681:4;8674:15;8728:4;8722;8712:21;8703:30;;8630:114;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;869:367::-;942:8;952:6;1002:3;995:4;987:6;983:17;979:27;969:2;;1020:1;1017;1010:12;969:2;1056:6;1043:20;1033:30;;1086:18;1078:6;1075:30;1072:2;;;1118:1;1115;1108:12;1072:2;1155:4;1147:6;1143:17;1131:29;;1209:3;1201:4;1193:6;1189:17;1179:8;1175:32;1172:41;1169:2;;;1226:1;1223;1216:12;1169:2;959:277;;;;;:::o;1242:133::-;1285:5;1323:6;1310:20;1301:29;;1339:30;1363:5;1339:30;:::i;:::-;1291:84;;;;:::o;1381:139::-;1427:5;1465:6;1452:20;1443:29;;1481:33;1508:5;1481:33;:::i;:::-;1433:87;;;;:::o;1526:137::-;1571:5;1609:6;1596:20;1587:29;;1625:32;1651:5;1625:32;:::i;:::-;1577:86;;;;:::o;1669:141::-;1725:5;1756:6;1750:13;1741:22;;1772:32;1798:5;1772:32;:::i;:::-;1731:79;;;;:::o;1829:271::-;1884:5;1933:3;1926:4;1918:6;1914:17;1910:27;1900:2;;1951:1;1948;1941:12;1900:2;1991:6;1978:20;2016:78;2090:3;2082:6;2075:4;2067:6;2063:17;2016:78;:::i;:::-;2007:87;;1890:210;;;;;:::o;2120:273::-;2176:5;2225:3;2218:4;2210:6;2206:17;2202:27;2192:2;;2243:1;2240;2233:12;2192:2;2283:6;2270:20;2308:79;2383:3;2375:6;2368:4;2360:6;2356:17;2308:79;:::i;:::-;2299:88;;2182:211;;;;;:::o;2399:139::-;2445:5;2483:6;2470:20;2461:29;;2499:33;2526:5;2499:33;:::i;:::-;2451:87;;;;:::o;2544:262::-;2603:6;2652:2;2640:9;2631:7;2627:23;2623:32;2620:2;;;2668:1;2665;2658:12;2620:2;2711:1;2736:53;2781:7;2772:6;2761:9;2757:22;2736:53;:::i;:::-;2726:63;;2682:117;2610:196;;;;:::o;2812:407::-;2880:6;2888;2937:2;2925:9;2916:7;2912:23;2908:32;2905:2;;;2953:1;2950;2943:12;2905:2;2996:1;3021:53;3066:7;3057:6;3046:9;3042:22;3021:53;:::i;:::-;3011:63;;2967:117;3123:2;3149:53;3194:7;3185:6;3174:9;3170:22;3149:53;:::i;:::-;3139:63;;3094:118;2895:324;;;;;:::o;3225:552::-;3302:6;3310;3318;3367:2;3355:9;3346:7;3342:23;3338:32;3335:2;;;3383:1;3380;3373:12;3335:2;3426:1;3451:53;3496:7;3487:6;3476:9;3472:22;3451:53;:::i;:::-;3441:63;;3397:117;3553:2;3579:53;3624:7;3615:6;3604:9;3600:22;3579:53;:::i;:::-;3569:63;;3524:118;3681:2;3707:53;3752:7;3743:6;3732:9;3728:22;3707:53;:::i;:::-;3697:63;;3652:118;3325:452;;;;;:::o;3783:809::-;3878:6;3886;3894;3902;3951:3;3939:9;3930:7;3926:23;3922:33;3919:2;;;3968:1;3965;3958:12;3919:2;4011:1;4036:53;4081:7;4072:6;4061:9;4057:22;4036:53;:::i;:::-;4026:63;;3982:117;4138:2;4164:53;4209:7;4200:6;4189:9;4185:22;4164:53;:::i;:::-;4154:63;;4109:118;4266:2;4292:53;4337:7;4328:6;4317:9;4313:22;4292:53;:::i;:::-;4282:63;;4237:118;4422:2;4411:9;4407:18;4394:32;4453:18;4445:6;4442:30;4439:2;;;4485:1;4482;4475:12;4439:2;4513:62;4567:7;4558:6;4547:9;4543:22;4513:62;:::i;:::-;4503:72;;4365:220;3909:683;;;;;;;:::o;4598:401::-;4663:6;4671;4720:2;4708:9;4699:7;4695:23;4691:32;4688:2;;;4736:1;4733;4726:12;4688:2;4779:1;4804:53;4849:7;4840:6;4829:9;4825:22;4804:53;:::i;:::-;4794:63;;4750:117;4906:2;4932:50;4974:7;4965:6;4954:9;4950:22;4932:50;:::i;:::-;4922:60;;4877:115;4678:321;;;;;:::o;5005:407::-;5073:6;5081;5130:2;5118:9;5109:7;5105:23;5101:32;5098:2;;;5146:1;5143;5136:12;5098:2;5189:1;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5160:117;5316:2;5342:53;5387:7;5378:6;5367:9;5363:22;5342:53;:::i;:::-;5332:63;;5287:118;5088:324;;;;;:::o;5418:256::-;5474:6;5523:2;5511:9;5502:7;5498:23;5494:32;5491:2;;;5539:1;5536;5529:12;5491:2;5582:1;5607:50;5649:7;5640:6;5629:9;5625:22;5607:50;:::i;:::-;5597:60;;5553:114;5481:193;;;;:::o;5680:262::-;5739:6;5788:2;5776:9;5767:7;5763:23;5759:32;5756:2;;;5804:1;5801;5794:12;5756:2;5847:1;5872:53;5917:7;5908:6;5897:9;5893:22;5872:53;:::i;:::-;5862:63;;5818:117;5746:196;;;;:::o;5948:260::-;6006:6;6055:2;6043:9;6034:7;6030:23;6026:32;6023:2;;;6071:1;6068;6061:12;6023:2;6114:1;6139:52;6183:7;6174:6;6163:9;6159:22;6139:52;:::i;:::-;6129:62;;6085:116;6013:195;;;;:::o;6214:282::-;6283:6;6332:2;6320:9;6311:7;6307:23;6303:32;6300:2;;;6348:1;6345;6338:12;6300:2;6391:1;6416:63;6471:7;6462:6;6451:9;6447:22;6416:63;:::i;:::-;6406:73;;6362:127;6290:206;;;;:::o;6502:375::-;6571:6;6620:2;6608:9;6599:7;6595:23;6591:32;6588:2;;;6636:1;6633;6626:12;6588:2;6707:1;6696:9;6692:17;6679:31;6737:18;6729:6;6726:30;6723:2;;;6769:1;6766;6759:12;6723:2;6797:63;6852:7;6843:6;6832:9;6828:22;6797:63;:::i;:::-;6787:73;;6650:220;6578:299;;;;:::o;6883:262::-;6942:6;6991:2;6979:9;6970:7;6966:23;6962:32;6959:2;;;7007:1;7004;6997:12;6959:2;7050:1;7075:53;7120:7;7111:6;7100:9;7096:22;7075:53;:::i;:::-;7065:63;;7021:117;6949:196;;;;:::o;7151:407::-;7219:6;7227;7276:2;7264:9;7255:7;7251:23;7247:32;7244:2;;;7292:1;7289;7282:12;7244:2;7335:1;7360:53;7405:7;7396:6;7385:9;7381:22;7360:53;:::i;:::-;7350:63;;7306:117;7462:2;7488:53;7533:7;7524:6;7513:9;7509:22;7488:53;:::i;:::-;7478:63;;7433:118;7234:324;;;;;:::o;7564:570::-;7659:6;7667;7675;7724:2;7712:9;7703:7;7699:23;7695:32;7692:2;;;7740:1;7737;7730:12;7692:2;7783:1;7808:53;7853:7;7844:6;7833:9;7829:22;7808:53;:::i;:::-;7798:63;;7754:117;7938:2;7927:9;7923:18;7910:32;7969:18;7961:6;7958:30;7955:2;;;8001:1;7998;7991:12;7955:2;8037:80;8109:7;8100:6;8089:9;8085:22;8037:80;:::i;:::-;8019:98;;;;7881:246;7682:452;;;;;:::o;8140:118::-;8227:24;8245:5;8227:24;:::i;:::-;8222:3;8215:37;8205:53;;:::o;8264:157::-;8369:45;8389:24;8407:5;8389:24;:::i;:::-;8369:45;:::i;:::-;8364:3;8357:58;8347:74;;:::o;8427:109::-;8508:21;8523:5;8508:21;:::i;:::-;8503:3;8496:34;8486:50;;:::o;8542:118::-;8629:24;8647:5;8629:24;:::i;:::-;8624:3;8617:37;8607:53;;:::o;8666:360::-;8752:3;8780:38;8812:5;8780:38;:::i;:::-;8834:70;8897:6;8892:3;8834:70;:::i;:::-;8827:77;;8913:52;8958:6;8953:3;8946:4;8939:5;8935:16;8913:52;:::i;:::-;8990:29;9012:6;8990:29;:::i;:::-;8985:3;8981:39;8974:46;;8756:270;;;;;:::o;9032:364::-;9120:3;9148:39;9181:5;9148:39;:::i;:::-;9203:71;9267:6;9262:3;9203:71;:::i;:::-;9196:78;;9283:52;9328:6;9323:3;9316:4;9309:5;9305:16;9283:52;:::i;:::-;9360:29;9382:6;9360:29;:::i;:::-;9355:3;9351:39;9344:46;;9124:272;;;;;:::o;9402:377::-;9508:3;9536:39;9569:5;9536:39;:::i;:::-;9591:89;9673:6;9668:3;9591:89;:::i;:::-;9584:96;;9689:52;9734:6;9729:3;9722:4;9715:5;9711:16;9689:52;:::i;:::-;9766:6;9761:3;9757:16;9750:23;;9512:267;;;;;:::o;9809:845::-;9912:3;9949:5;9943:12;9978:36;10004:9;9978:36;:::i;:::-;10030:89;10112:6;10107:3;10030:89;:::i;:::-;10023:96;;10150:1;10139:9;10135:17;10166:1;10161:137;;;;10312:1;10307:341;;;;10128:520;;10161:137;10245:4;10241:9;10230;10226:25;10221:3;10214:38;10281:6;10276:3;10272:16;10265:23;;10161:137;;10307:341;10374:38;10406:5;10374:38;:::i;:::-;10434:1;10448:154;10462:6;10459:1;10456:13;10448:154;;;10536:7;10530:14;10526:1;10521:3;10517:11;10510:35;10586:1;10577:7;10573:15;10562:26;;10484:4;10481:1;10477:12;10472:17;;10448:154;;;10631:6;10626:3;10622:16;10615:23;;10314:334;;10128:520;;9916:738;;;;;;:::o;10660:366::-;10802:3;10823:67;10887:2;10882:3;10823:67;:::i;:::-;10816:74;;10899:93;10988:3;10899:93;:::i;:::-;11017:2;11012:3;11008:12;11001:19;;10806:220;;;:::o;11032:366::-;11174:3;11195:67;11259:2;11254:3;11195:67;:::i;:::-;11188:74;;11271:93;11360:3;11271:93;:::i;:::-;11389:2;11384:3;11380:12;11373:19;;11178:220;;;:::o;11404:366::-;11546:3;11567:67;11631:2;11626:3;11567:67;:::i;:::-;11560:74;;11643:93;11732:3;11643:93;:::i;:::-;11761:2;11756:3;11752:12;11745:19;;11550:220;;;:::o;11776:366::-;11918:3;11939:67;12003:2;11998:3;11939:67;:::i;:::-;11932:74;;12015:93;12104:3;12015:93;:::i;:::-;12133:2;12128:3;12124:12;12117:19;;11922:220;;;:::o;12148:366::-;12290:3;12311:67;12375:2;12370:3;12311:67;:::i;:::-;12304:74;;12387:93;12476:3;12387:93;:::i;:::-;12505:2;12500:3;12496:12;12489:19;;12294:220;;;:::o;12520:366::-;12662:3;12683:67;12747:2;12742:3;12683:67;:::i;:::-;12676:74;;12759:93;12848:3;12759:93;:::i;:::-;12877:2;12872:3;12868:12;12861:19;;12666:220;;;:::o;12892:115::-;12977:23;12994:5;12977:23;:::i;:::-;12972:3;12965:36;12955:52;;:::o;13013:118::-;13100:24;13118:5;13100:24;:::i;:::-;13095:3;13088:37;13078:53;;:::o;13137:256::-;13249:3;13264:75;13335:3;13326:6;13264:75;:::i;:::-;13364:2;13359:3;13355:12;13348:19;;13384:3;13377:10;;13253:140;;;;:::o;13399:589::-;13624:3;13646:95;13737:3;13728:6;13646:95;:::i;:::-;13639:102;;13758:95;13849:3;13840:6;13758:95;:::i;:::-;13751:102;;13870:92;13958:3;13949:6;13870:92;:::i;:::-;13863:99;;13979:3;13972:10;;13628:360;;;;;;:::o;13994:222::-;14087:4;14125:2;14114:9;14110:18;14102:26;;14138:71;14206:1;14195:9;14191:17;14182:6;14138:71;:::i;:::-;14092:124;;;;:::o;14222:640::-;14417:4;14455:3;14444:9;14440:19;14432:27;;14469:71;14537:1;14526:9;14522:17;14513:6;14469:71;:::i;:::-;14550:72;14618:2;14607:9;14603:18;14594:6;14550:72;:::i;:::-;14632;14700:2;14689:9;14685:18;14676:6;14632:72;:::i;:::-;14751:9;14745:4;14741:20;14736:2;14725:9;14721:18;14714:48;14779:76;14850:4;14841:6;14779:76;:::i;:::-;14771:84;;14422:440;;;;;;;:::o;14868:210::-;14955:4;14993:2;14982:9;14978:18;14970:26;;15006:65;15068:1;15057:9;15053:17;15044:6;15006:65;:::i;:::-;14960:118;;;;:::o;15084:222::-;15177:4;15215:2;15204:9;15200:18;15192:26;;15228:71;15296:1;15285:9;15281:17;15272:6;15228:71;:::i;:::-;15182:124;;;;:::o;15312:313::-;15425:4;15463:2;15452:9;15448:18;15440:26;;15512:9;15506:4;15502:20;15498:1;15487:9;15483:17;15476:47;15540:78;15613:4;15604:6;15540:78;:::i;:::-;15532:86;;15430:195;;;;:::o;15631:419::-;15797:4;15835:2;15824:9;15820:18;15812:26;;15884:9;15878:4;15874:20;15870:1;15859:9;15855:17;15848:47;15912:131;16038:4;15912:131;:::i;:::-;15904:139;;15802:248;;;:::o;16056:419::-;16222:4;16260:2;16249:9;16245:18;16237:26;;16309:9;16303:4;16299:20;16295:1;16284:9;16280:17;16273:47;16337:131;16463:4;16337:131;:::i;:::-;16329:139;;16227:248;;;:::o;16481:419::-;16647:4;16685:2;16674:9;16670:18;16662:26;;16734:9;16728:4;16724:20;16720:1;16709:9;16705:17;16698:47;16762:131;16888:4;16762:131;:::i;:::-;16754:139;;16652:248;;;:::o;16906:419::-;17072:4;17110:2;17099:9;17095:18;17087:26;;17159:9;17153:4;17149:20;17145:1;17134:9;17130:17;17123:47;17187:131;17313:4;17187:131;:::i;:::-;17179:139;;17077:248;;;:::o;17331:419::-;17497:4;17535:2;17524:9;17520:18;17512:26;;17584:9;17578:4;17574:20;17570:1;17559:9;17555:17;17548:47;17612:131;17738:4;17612:131;:::i;:::-;17604:139;;17502:248;;;:::o;17756:419::-;17922:4;17960:2;17949:9;17945:18;17937:26;;18009:9;18003:4;17999:20;17995:1;17984:9;17980:17;17973:47;18037:131;18163:4;18037:131;:::i;:::-;18029:139;;17927:248;;;:::o;18181:218::-;18272:4;18310:2;18299:9;18295:18;18287:26;;18323:69;18389:1;18378:9;18374:17;18365:6;18323:69;:::i;:::-;18277:122;;;;:::o;18405:222::-;18498:4;18536:2;18525:9;18521:18;18513:26;;18549:71;18617:1;18606:9;18602:17;18593:6;18549:71;:::i;:::-;18503:124;;;;:::o;18633:129::-;18667:6;18694:20;;:::i;:::-;18684:30;;18723:33;18751:4;18743:6;18723:33;:::i;:::-;18674:88;;;:::o;18768:75::-;18801:6;18834:2;18828:9;18818:19;;18808:35;:::o;18849:307::-;18910:4;19000:18;18992:6;18989:30;18986:2;;;19022:18;;:::i;:::-;18986:2;19060:29;19082:6;19060:29;:::i;:::-;19052:37;;19144:4;19138;19134:15;19126:23;;18915:241;;;:::o;19162:308::-;19224:4;19314:18;19306:6;19303:30;19300:2;;;19336:18;;:::i;:::-;19300:2;19374:29;19396:6;19374:29;:::i;:::-;19366:37;;19458:4;19452;19448:15;19440:23;;19229:241;;;:::o;19476:141::-;19525:4;19548:3;19540:11;;19571:3;19568:1;19561:14;19605:4;19602:1;19592:18;19584:26;;19530:87;;;:::o;19623:98::-;19674:6;19708:5;19702:12;19692:22;;19681:40;;;:::o;19727:99::-;19779:6;19813:5;19807:12;19797:22;;19786:40;;;:::o;19832:168::-;19915:11;19949:6;19944:3;19937:19;19989:4;19984:3;19980:14;19965:29;;19927:73;;;;:::o;20006:169::-;20090:11;20124:6;20119:3;20112:19;20164:4;20159:3;20155:14;20140:29;;20102:73;;;;:::o;20181:148::-;20283:11;20320:3;20305:18;;20295:34;;;;:::o;20335:305::-;20375:3;20394:20;20412:1;20394:20;:::i;:::-;20389:25;;20428:20;20446:1;20428:20;:::i;:::-;20423:25;;20582:1;20514:66;20510:74;20507:1;20504:81;20501:2;;;20588:18;;:::i;:::-;20501:2;20632:1;20629;20625:9;20618:16;;20379:261;;;;:::o;20646:185::-;20686:1;20703:20;20721:1;20703:20;:::i;:::-;20698:25;;20737:20;20755:1;20737:20;:::i;:::-;20732:25;;20776:1;20766:2;;20781:18;;:::i;:::-;20766:2;20823:1;20820;20816:9;20811:14;;20688:143;;;;:::o;20837:191::-;20877:4;20897:20;20915:1;20897:20;:::i;:::-;20892:25;;20931:20;20949:1;20931:20;:::i;:::-;20926:25;;20970:1;20967;20964:8;20961:2;;;20975:18;;:::i;:::-;20961:2;21020:1;21017;21013:9;21005:17;;20882:146;;;;:::o;21034:96::-;21071:7;21100:24;21118:5;21100:24;:::i;:::-;21089:35;;21079:51;;;:::o;21136:90::-;21170:7;21213:5;21206:13;21199:21;21188:32;;21178:48;;;:::o;21232:77::-;21269:7;21298:5;21287:16;;21277:32;;;:::o;21315:149::-;21351:7;21391:66;21384:5;21380:78;21369:89;;21359:105;;;:::o;21470:89::-;21506:7;21546:6;21539:5;21535:18;21524:29;;21514:45;;;:::o;21565:126::-;21602:7;21642:42;21635:5;21631:54;21620:65;;21610:81;;;:::o;21697:77::-;21734:7;21763:5;21752:16;;21742:32;;;:::o;21780:154::-;21864:6;21859:3;21854;21841:30;21926:1;21917:6;21912:3;21908:16;21901:27;21831:103;;;:::o;21940:307::-;22008:1;22018:113;22032:6;22029:1;22026:13;22018:113;;;22117:1;22112:3;22108:11;22102:18;22098:1;22093:3;22089:11;22082:39;22054:2;22051:1;22047:10;22042:15;;22018:113;;;22149:6;22146:1;22143:13;22140:2;;;22229:1;22220:6;22215:3;22211:16;22204:27;22140:2;21989:258;;;;:::o;22253:320::-;22297:6;22334:1;22328:4;22324:12;22314:22;;22381:1;22375:4;22371:12;22402:18;22392:2;;22458:4;22450:6;22446:17;22436:27;;22392:2;22520;22512:6;22509:14;22489:18;22486:38;22483:2;;;22539:18;;:::i;:::-;22483:2;22304:269;;;;:::o;22579:281::-;22662:27;22684:4;22662:27;:::i;:::-;22654:6;22650:40;22792:6;22780:10;22777:22;22756:18;22744:10;22741:34;22738:62;22735:2;;;22803:18;;:::i;:::-;22735:2;22843:10;22839:2;22832:22;22622:238;;;:::o;22866:233::-;22905:3;22928:24;22946:5;22928:24;:::i;:::-;22919:33;;22974:66;22967:5;22964:77;22961:2;;;23044:18;;:::i;:::-;22961:2;23091:1;23084:5;23080:13;23073:20;;22909:190;;;:::o;23105:100::-;23144:7;23173:26;23193:5;23173:26;:::i;:::-;23162:37;;23152:53;;;:::o;23211:94::-;23250:7;23279:20;23293:5;23279:20;:::i;:::-;23268:31;;23258:47;;;:::o;23311:176::-;23343:1;23360:20;23378:1;23360:20;:::i;:::-;23355:25;;23394:20;23412:1;23394:20;:::i;:::-;23389:25;;23433:1;23423:2;;23438:18;;:::i;:::-;23423:2;23479:1;23476;23472:9;23467:14;;23345:142;;;;:::o;23493:180::-;23541:77;23538:1;23531:88;23638:4;23635:1;23628:15;23662:4;23659:1;23652:15;23679:180;23727:77;23724:1;23717:88;23824:4;23821:1;23814:15;23848:4;23845:1;23838:15;23865:180;23913:77;23910:1;23903:88;24010:4;24007:1;24000:15;24034:4;24031:1;24024:15;24051:180;24099:77;24096:1;24089:88;24196:4;24193:1;24186:15;24220:4;24217:1;24210:15;24237:102;24278:6;24329:2;24325:7;24320:2;24313:5;24309:14;24305:28;24295:38;;24285:54;;;:::o;24345:94::-;24378:8;24426:5;24422:2;24418:14;24397:35;;24387:52;;;:::o;24445:225::-;24585:34;24581:1;24573:6;24569:14;24562:58;24654:8;24649:2;24641:6;24637:15;24630:33;24551:119;:::o;24676:168::-;24816:20;24812:1;24804:6;24800:14;24793:44;24782:62;:::o;24850:172::-;24990:24;24986:1;24978:6;24974:14;24967:48;24956:66;:::o;25028:182::-;25168:34;25164:1;25156:6;25152:14;25145:58;25134:76;:::o;25216:170::-;25356:22;25352:1;25344:6;25340:14;25333:46;25322:64;:::o;25392:168::-;25532:20;25528:1;25520:6;25516:14;25509:44;25498:62;:::o;25566:122::-;25639:24;25657:5;25639:24;:::i;:::-;25632:5;25629:35;25619:2;;25678:1;25675;25668:12;25619:2;25609:79;:::o;25694:116::-;25764:21;25779:5;25764:21;:::i;:::-;25757:5;25754:32;25744:2;;25800:1;25797;25790:12;25744:2;25734:76;:::o;25816:122::-;25889:24;25907:5;25889:24;:::i;:::-;25882:5;25879:35;25869:2;;25928:1;25925;25918:12;25869:2;25859:79;:::o;25944:120::-;26016:23;26033:5;26016:23;:::i;:::-;26009:5;26006:34;25996:2;;26054:1;26051;26044:12;25996:2;25986:78;:::o;26070:122::-;26143:24;26161:5;26143:24;:::i;:::-;26136:5;26133:35;26123:2;;26182:1;26179;26172:12;26123:2;26113:79;:::o

Swarm Source

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