ETH Price: $2,350.38 (+0.96%)

Token

f0m0 (f0m0)
 

Overview

Max Total Supply

1,000 f0m0

Holders

42

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
icefordinner.eth
Balance
10 f0m0
0xd6Fc40daaCAA29F6Ab145b37c22e6aB0a4F51f61
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:
nftf0m0

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

//                            __  __   ___                      
//     _.._                  |  |/  `.'   `.                    
//   .' .._|   .-''` ''-.    |   .-.  .-.   '    .-''` ''-.     
//   | '     .'          '.  |  |  |  |  |  |  .'          '.   
// __| |__  /              ` |  |  |  |  |  | /              `  
//|__   __|'                '|  |  |  |  |  |'                ' 
//   | |   |         .-.    ||  |  |  |  |  ||         .-.    | 
//   | |   .        |   |   .|__|  |__|  |__|.        |   |   . 
//   | |    .       '._.'  /                  .       '._.'  /  
//   | |     '._         .'                    '._         .'   
//   |_|        '-....-'`                         '-....-'`     
// File: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


pragma solidity ^0.8.0;


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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString(),".json"))
        : "";
  }

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

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

//                            __  __   ___                      
//     _.._                  |  |/  `.'   `.                    
//   .' .._|   .-''` ''-.    |   .-.  .-.   '    .-''` ''-.     
//   | '     .'          '.  |  |  |  |  |  |  .'          '.   
// __| |__  /              ` |  |  |  |  |  | /              `  
//|__   __|'                '|  |  |  |  |  |'                ' 
//   | |   |         .-.    ||  |  |  |  |  ||         .-.    | 
//   | |   .        |   |   .|__|  |__|  |__|.        |   |   . 
//   | |    .       '._.'  /                  .       '._.'  /  
//   | |     '._         .'                    '._         .'   
//   |_|        '-....-'`                         '-....-'`                       

library OpenSeaGasFreeListing {
    /**
    @notice Returns whether the operator is an OpenSea proxy for the owner, thus
    allowing it to list without the token owner paying gas.
    @dev ERC{721,1155}.isApprovedForAll should be overriden to also check if
    this function returns true.
     */
    function isApprovedForAll(address owner, address operator) internal view returns (bool) {
        ProxyRegistry registry;
        assembly {
            switch chainid()
            case 1 {
                // mainnet
                registry := 0xa5409ec958c83c3f309868babaca7c86dcb077c1
            }
            case 4 {
                // rinkeby
                registry := 0xf57b2c51ded3a29e6891aba85459d600256cf317
            }
        }

        return address(registry) != address(0) && (address(registry.proxies(owner)) == operator);
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}


contract nftf0m0 is Ownable, ERC721A, ReentrancyGuard {

    using Address for address;
    using Strings for uint256;

    //allows for #0 starter creator token - let the games begin
    uint256 public MAX_TEAM_RESERVES_PRESALE = 1;
    //sets immutable value for total collection of 1k
    uint256 public immutable MAX_TOKENS;
    //public token price
    uint256 public TOKEN_PRICE = 0.015 ether;
    //max mints per tx during the public mint
    uint256 public MAX_MINTS_PER_TX = 50;

    bool public publicSale = false;
    string public f0m0Provenance;

    constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 maxTOKENS_
  ) ERC721A("f0m0","f0m0", maxBatchSize_,collectionSize_) {
    MAX_MINTS_PER_TX = maxBatchSize_;
    MAX_TOKENS = maxTOKENS_;
    require(
        maxTOKENS_ <= collectionSize_,
        "larger collection size needed"
    );   
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

    function mint(uint256 quantity) external payable callerIsUser nonReentrant {
        require(publicSale, "public sale is not live");
        require(totalSupply() + quantity <= MAX_TOKENS, "invalid quantity: would exceed max supply");
        _checkMintRequirements(quantity);
        _safeMint(msg.sender, quantity);
    }

    function _checkMintRequirements(uint256 quantity) internal {
        require(quantity > 0 && quantity <= MAX_MINTS_PER_TX, "invalid quantity: zero or greater than mint allowance");
        require(msg.value == TOKEN_PRICE * quantity, "wrong amount of ether sent");
    }

    function teamReservesPreSaleMint(uint256 quantity) public onlyOwner {
        require(quantity <= MAX_TEAM_RESERVES_PRESALE, "Can't reserve more than set amount" );
        MAX_TEAM_RESERVES_PRESALE -= quantity;
        require(totalSupply() + quantity <= MAX_TOKENS, "invalid quantity: would exceed max supply");
        _safeMint(msg.sender, quantity);
    }

    function togglePublicSale() public onlyOwner {
        publicSale = !publicSale;
    }

    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

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

    // // metadata URI
    string private _baseTokenURI;

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  } 

    function setMAX_MINTS_PER_TX(uint256 _MAX_MINTS_PER_TX) public onlyOwner() {
    MAX_MINTS_PER_TX = _MAX_MINTS_PER_TX;
    }

    function setTOKEN_PRICE(uint256 _TOKEN_PRICE) public onlyOwner() {
    TOKEN_PRICE = _TOKEN_PRICE;
    }

    function setProvenanceHash(string memory provenanceHash) external onlyOwner {
        f0m0Provenance = provenanceHash;
    }

    function isApprovedForAll(address owner, address operator) public view override returns (bool) {
        return OpenSeaGasFreeListing.isApprovedForAll(owner, operator) || super.isApprovedForAll(owner, operator);
    }

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"maxTOKENS_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAM_RESERVES_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"f0m0Provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","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":"uint256","name":"_MAX_MINTS_PER_TX","type":"uint256"}],"name":"setMAX_MINTS_PER_TX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TOKEN_PRICE","type":"uint256"}],"name":"setTOKEN_PRICE","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":"quantity","type":"uint256"}],"name":"teamReservesPreSaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260006001818155600891909155600a5566354a6ba7a18000600b556032600c55600d805460ff191690553480156200003b57600080fd5b5060405162002f4838038062002f488339810160408190526200005e916200031e565b60405180604001604052806004815260200163066306d360e41b81525060405180604001604052806004815260200163066306d360e41b8152508484620000b4620000ae6200022460201b60201c565b62000228565b60008111620001215760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001835760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000118565b83516200019890600290602087019062000278565b508251620001ae90600390602086019062000278565b5060a09190915260805250506001600955600c83905560c0819052818111156200021b5760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000604482015260640162000118565b5050506200038a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000286906200034d565b90600052602060002090601f016020900481019282620002aa5760008555620002f5565b82601f10620002c557805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f5578251825591602001919060010190620002d8565b506200030392915062000307565b5090565b5b8082111562000303576000815560010162000308565b6000806000606084860312156200033457600080fd5b8351925060208401519150604084015190509250925092565b600181811c908216806200036257607f821691505b602082108114156200038457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051612b6b620003dd6000396000818161069b01528181610eaa0152611001015260008181611a7e01528181611aa8015261214f01526000818161188301526118b50152612b6b6000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063b88d4fde116100ab578063dc33e6811161006f578063dc33e68114610614578063e222c7f914610634578063e985e9c514610649578063f2fde38b14610669578063f47c84c51461068957600080fd5b8063b88d4fde14610592578063c6a91b42146105b2578063c87b56dd146105c8578063d2d8cb67146105e8578063d7224ba0146105fe57600080fd5b80639231ab2a116100f25780639231ab2a146104e757806395d89b4114610535578063a0712d681461054a578063a22cb4651461055d578063ac4460021461057d57600080fd5b806370a0823114610474578063715018a6146104945780637a37744a146104a95780638da5cb5b146104c957600080fd5b80632d20fb60116101a65780634f4342e2116101755780634f4342e2146103d45780634f6ccce7146103f457806355f804b3146104145780636352211e1461043457806364be52871461045457600080fd5b80632d20fb601461035a5780632f745c591461037a57806333bc1c5c1461039a57806342842e0e146103b457600080fd5b806310969523116101ed57806310969523146102d0578063156429e4146102f057806318160ddd146103055780631bbaa8ec1461032457806323b872dd1461033a57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612662565b6106bd565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961072a565b60405161024b9190612835565b34801561028257600080fd5b50610296610291366004612774565b6107bc565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004612636565b61084c565b005b3480156102dc57600080fd5b506102ce6102eb36600461272b565b610964565b3480156102fc57600080fd5b506102696109a5565b34801561031157600080fd5b506001545b60405190815260200161024b565b34801561033057600080fd5b50610316600a5481565b34801561034657600080fd5b506102ce610355366004612542565b610a33565b34801561036657600080fd5b506102ce610375366004612774565b610a3e565b34801561038657600080fd5b50610316610395366004612636565b610aa1565b3480156103a657600080fd5b50600d5461023f9060ff1681565b3480156103c057600080fd5b506102ce6103cf366004612542565b610c1a565b3480156103e057600080fd5b506102ce6103ef366004612774565b610c35565b34801561040057600080fd5b5061031661040f366004612774565b610c64565b34801561042057600080fd5b506102ce61042f3660046126b9565b610ccd565b34801561044057600080fd5b5061029661044f366004612774565b610d03565b34801561046057600080fd5b506102ce61046f366004612774565b610d15565b34801561048057600080fd5b5061031661048f3660046124ec565b610d44565b3480156104a057600080fd5b506102ce610dd5565b3480156104b557600080fd5b506102ce6104c4366004612774565b610e0b565b3480156104d557600080fd5b506000546001600160a01b0316610296565b3480156104f357600080fd5b50610507610502366004612774565b610f0a565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161024b565b34801561054157600080fd5b50610269610f27565b6102ce610558366004612774565b610f36565b34801561056957600080fd5b506102ce610578366004612603565b611065565b34801561058957600080fd5b506102ce61112a565b34801561059e57600080fd5b506102ce6105ad366004612583565b611207565b3480156105be57600080fd5b50610316600c5481565b3480156105d457600080fd5b506102696105e3366004612774565b611240565b3480156105f457600080fd5b50610316600b5481565b34801561060a57600080fd5b5061031660085481565b34801561062057600080fd5b5061031661062f3660046124ec565b61130d565b34801561064057600080fd5b506102ce611318565b34801561065557600080fd5b5061023f610664366004612509565b611356565b34801561067557600080fd5b506102ce6106843660046124ec565b611396565b34801561069557600080fd5b506103167f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b031982166380ac58cd60e01b14806106ee57506001600160e01b03198216635b5e139f60e01b145b8061070957506001600160e01b0319821663780e9d6360e01b145b8061072457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461073990612a48565b80601f016020809104026020016040519081016040528092919081815260200182805461076590612a48565b80156107b25780601f10610787576101008083540402835291602001916107b2565b820191906000526020600020905b81548152906001019060200180831161079557829003601f168201915b5050505050905090565b60006107c9826001541190565b6108305760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061085782610d03565b9050806001600160a01b0316836001600160a01b031614156108c65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610827565b336001600160a01b03821614806108e257506108e28133611356565b6109545760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610827565b61095f83838361142e565b505050565b6000546001600160a01b0316331461098e5760405162461bcd60e51b815260040161082790612891565b80516109a190600e90602084019061236d565b5050565b600e80546109b290612a48565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90612a48565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b505050505081565b61095f83838361148a565b6000546001600160a01b03163314610a685760405162461bcd60e51b815260040161082790612891565b60026009541415610a8b5760405162461bcd60e51b815260040161082790612919565b6002600955610a9981611812565b506001600955565b6000610aac83610d44565b8210610b055760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610827565b6000610b1060015490565b905060008060005b83811015610bba576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b6b57805192505b876001600160a01b0316836001600160a01b03161415610ba75786841415610b995750935061072492505050565b83610ba381612a83565b9450505b5080610bb281612a83565b915050610b18565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610827565b61095f83838360405180602001604052806000815250611207565b6000546001600160a01b03163314610c5f5760405162461bcd60e51b815260040161082790612891565b600c55565b6000610c6f60015490565b8210610cc95760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610827565b5090565b6000546001600160a01b03163314610cf75760405162461bcd60e51b815260040161082790612891565b61095f600f83836123ed565b6000610d0e826119fc565b5192915050565b6000546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161082790612891565b600b55565b60006001600160a01b038216610db05760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610827565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610dff5760405162461bcd60e51b815260040161082790612891565b610e096000611ba6565b565b6000546001600160a01b03163314610e355760405162461bcd60e51b815260040161082790612891565b600a54811115610e925760405162461bcd60e51b815260206004820152602260248201527f43616e27742072657365727665206d6f7265207468616e2073657420616d6f756044820152611b9d60f21b6064820152608401610827565b80600a6000828254610ea491906129ee565b909155507f0000000000000000000000000000000000000000000000000000000000000000905081610ed560015490565b610edf919061297b565b1115610efd5760405162461bcd60e51b815260040161082790612848565b610f073382611bf6565b50565b6040805180820190915260008082526020820152610724826119fc565b60606003805461073990612a48565b323314610f855760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610827565b60026009541415610fa85760405162461bcd60e51b815260040161082790612919565b6002600955600d5460ff16610fff5760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206973206e6f74206c6976650000000000000000006044820152606401610827565b7f00000000000000000000000000000000000000000000000000000000000000008161102a60015490565b611034919061297b565b11156110525760405162461bcd60e51b815260040161082790612848565b61105b81611c10565b610a993382611bf6565b6001600160a01b0382163314156110be5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610827565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111545760405162461bcd60e51b815260040161082790612891565b600260095414156111775760405162461bcd60e51b815260040161082790612919565b6002600955604051600090339047908381818185875af1925050503d80600081146111be576040519150601f19603f3d011682016040523d82523d6000602084013e6111c3565b606091505b5050905080610a995760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610827565b61121284848461148a565b61121e84848484611ce8565b61123a5760405162461bcd60e51b8152600401610827906128c6565b50505050565b606061124d826001541190565b6112b15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610827565b60006112bb611df6565b905060008151116112db5760405180602001604052806000815250611306565b806112e584611e05565b6040516020016112f69291906127b9565b6040516020818303038152906040525b9392505050565b600061072482611f03565b6000546001600160a01b031633146113425760405162461bcd60e51b815260040161082790612891565b600d805460ff19811660ff90911615179055565b60006113628383611fa1565b8061130657506001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff16611306565b6000546001600160a01b031633146113c05760405162461bcd60e51b815260040161082790612891565b6001600160a01b0381166114255760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610827565b610f0781611ba6565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611495826119fc565b80519091506000906001600160a01b0316336001600160a01b031614806114cc5750336114c1846107bc565b6001600160a01b0316145b806114de575081516114de9033611356565b9050806115485760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610827565b846001600160a01b031682600001516001600160a01b0316146115bc5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610827565b6001600160a01b0384166116205760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610827565b611630600084846000015161142e565b6001600160a01b03851660009081526005602052604081208054600192906116629084906001600160801b03166129c6565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926116ae91859116612950565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561173684600161297b565b6000818152600460205260409020549091506001600160a01b03166117c857611760816001541190565b156117c85760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816118625760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610827565b60006001611870848461297b565b61187a91906129ee565b90506118a760017f00000000000000000000000000000000000000000000000000000000000000006129ee565b8111156118dc576118d960017f00000000000000000000000000000000000000000000000000000000000000006129ee565b90505b6118e7816001541190565b6119425760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610827565b815b8181116119e8576000818152600460205260409020546001600160a01b03166119d6576000611972826119fc565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806119e081612a83565b915050611944565b506119f481600161297b565b600855505050565b6040805180820190915260008082526020820152611a1b826001541190565b611a7a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610827565b60007f00000000000000000000000000000000000000000000000000000000000000008310611adb57611acd7f0000000000000000000000000000000000000000000000000000000000000000846129ee565b611ad890600161297b565b90505b825b818110611b45576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b3257949350505050565b5080611b3d81612a31565b915050611add565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610827565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109a1828260405180602001604052806000815250612092565b600081118015611c225750600c548111155b611c8c5760405162461bcd60e51b815260206004820152603560248201527f696e76616c6964207175616e746974793a207a65726f206f722067726561746560448201527472207468616e206d696e7420616c6c6f77616e636560581b6064820152608401610827565b80600b54611c9a91906129a7565b3414610f075760405162461bcd60e51b815260206004820152601a60248201527f77726f6e6720616d6f756e74206f662065746865722073656e740000000000006044820152606401610827565b60006001600160a01b0384163b15611dea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d2c9033908990889088906004016127f8565b602060405180830381600087803b158015611d4657600080fd5b505af1925050508015611d76575060408051601f3d908101601f19168201909252611d739181019061267f565b60015b611dd0573d808015611da4576040519150601f19603f3d011682016040523d82523d6000602084013e611da9565b606091505b508051611dc85760405162461bcd60e51b8152600401610827906128c6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dee565b5060015b949350505050565b6060600f805461073990612a48565b606081611e295750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e535780611e3d81612a83565b9150611e4c9050600a83612993565b9150611e2d565b60008167ffffffffffffffff811115611e6e57611e6e612af4565b6040519080825280601f01601f191660200182016040528015611e98576020820181803683370190505b5090505b8415611dee57611ead6001836129ee565b9150611eba600a86612a9e565b611ec590603061297b565b60f81b818381518110611eda57611eda612ade565b60200101906001600160f81b031916908160001a905350611efc600a86612993565b9450611e9c565b60006001600160a01b038216611f755760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610827565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6000804660018114611fba5760048114611fd657611fee565b73a5409ec958c83c3f309868babaca7c86dcb077c19150611fee565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b506001600160a01b03811615801590611dee575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b15801561204857600080fd5b505afa15801561205c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612080919061269c565b6001600160a01b031614949350505050565b6001546001600160a01b0384166120f55760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610827565b612100816001541190565b1561214d5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610827565b7f00000000000000000000000000000000000000000000000000000000000000008311156121c85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610827565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612224908790612950565b6001600160801b031681526020018583602001516122429190612950565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156123625760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123266000888488611ce8565b6123425760405162461bcd60e51b8152600401610827906128c6565b8161234c81612a83565b925050808061235a90612a83565b9150506122d9565b50600181905561180a565b82805461237990612a48565b90600052602060002090601f01602090048101928261239b57600085556123e1565b82601f106123b457805160ff19168380011785556123e1565b828001600101855582156123e1579182015b828111156123e15782518255916020019190600101906123c6565b50610cc9929150612461565b8280546123f990612a48565b90600052602060002090601f01602090048101928261241b57600085556123e1565b82601f106124345782800160ff198235161785556123e1565b828001600101855582156123e1579182015b828111156123e1578235825591602001919060010190612446565b5b80821115610cc95760008155600101612462565b600067ffffffffffffffff8084111561249157612491612af4565b604051601f8501601f19908116603f011681019082821181831017156124b9576124b9612af4565b816040528093508581528686860111156124d257600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124fe57600080fd5b813561130681612b0a565b6000806040838503121561251c57600080fd5b823561252781612b0a565b9150602083013561253781612b0a565b809150509250929050565b60008060006060848603121561255757600080fd5b833561256281612b0a565b9250602084013561257281612b0a565b929592945050506040919091013590565b6000806000806080858703121561259957600080fd5b84356125a481612b0a565b935060208501356125b481612b0a565b925060408501359150606085013567ffffffffffffffff8111156125d757600080fd5b8501601f810187136125e857600080fd5b6125f787823560208401612476565b91505092959194509250565b6000806040838503121561261657600080fd5b823561262181612b0a565b91506020830135801515811461253757600080fd5b6000806040838503121561264957600080fd5b823561265481612b0a565b946020939093013593505050565b60006020828403121561267457600080fd5b813561130681612b1f565b60006020828403121561269157600080fd5b815161130681612b1f565b6000602082840312156126ae57600080fd5b815161130681612b0a565b600080602083850312156126cc57600080fd5b823567ffffffffffffffff808211156126e457600080fd5b818501915085601f8301126126f857600080fd5b81358181111561270757600080fd5b86602082850101111561271957600080fd5b60209290920196919550909350505050565b60006020828403121561273d57600080fd5b813567ffffffffffffffff81111561275457600080fd5b8201601f8101841361276557600080fd5b611dee84823560208401612476565b60006020828403121561278657600080fd5b5035919050565b600081518084526127a5816020860160208601612a05565b601f01601f19169290920160200192915050565b600083516127cb818460208801612a05565b8351908301906127df818360208801612a05565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061282b9083018461278d565b9695505050505050565b602081526000611306602083018461278d565b60208082526029908201527f696e76616c6964207175616e746974793a20776f756c6420657863656564206d604082015268617820737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006001600160801b0380831681851680830382111561297257612972612ab2565b01949350505050565b6000821982111561298e5761298e612ab2565b500190565b6000826129a2576129a2612ac8565b500490565b60008160001904831182151516156129c1576129c1612ab2565b500290565b60006001600160801b03838116908316818110156129e6576129e6612ab2565b039392505050565b600082821015612a0057612a00612ab2565b500390565b60005b83811015612a20578181015183820152602001612a08565b8381111561123a5750506000910152565b600081612a4057612a40612ab2565b506000190190565b600181811c90821680612a5c57607f821691505b60208210811415612a7d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a9757612a97612ab2565b5060010190565b600082612aad57612aad612ac8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f0757600080fd5b6001600160e01b031981168114610f0757600080fdfea2646970667358221220d335f034dd3d075a00fc2464644b5eaa6e5730d5518f259fcccee38ba3044e9564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063b88d4fde116100ab578063dc33e6811161006f578063dc33e68114610614578063e222c7f914610634578063e985e9c514610649578063f2fde38b14610669578063f47c84c51461068957600080fd5b8063b88d4fde14610592578063c6a91b42146105b2578063c87b56dd146105c8578063d2d8cb67146105e8578063d7224ba0146105fe57600080fd5b80639231ab2a116100f25780639231ab2a146104e757806395d89b4114610535578063a0712d681461054a578063a22cb4651461055d578063ac4460021461057d57600080fd5b806370a0823114610474578063715018a6146104945780637a37744a146104a95780638da5cb5b146104c957600080fd5b80632d20fb60116101a65780634f4342e2116101755780634f4342e2146103d45780634f6ccce7146103f457806355f804b3146104145780636352211e1461043457806364be52871461045457600080fd5b80632d20fb601461035a5780632f745c591461037a57806333bc1c5c1461039a57806342842e0e146103b457600080fd5b806310969523116101ed57806310969523146102d0578063156429e4146102f057806318160ddd146103055780631bbaa8ec1461032457806323b872dd1461033a57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004612662565b6106bd565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b5061026961072a565b60405161024b9190612835565b34801561028257600080fd5b50610296610291366004612774565b6107bc565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004612636565b61084c565b005b3480156102dc57600080fd5b506102ce6102eb36600461272b565b610964565b3480156102fc57600080fd5b506102696109a5565b34801561031157600080fd5b506001545b60405190815260200161024b565b34801561033057600080fd5b50610316600a5481565b34801561034657600080fd5b506102ce610355366004612542565b610a33565b34801561036657600080fd5b506102ce610375366004612774565b610a3e565b34801561038657600080fd5b50610316610395366004612636565b610aa1565b3480156103a657600080fd5b50600d5461023f9060ff1681565b3480156103c057600080fd5b506102ce6103cf366004612542565b610c1a565b3480156103e057600080fd5b506102ce6103ef366004612774565b610c35565b34801561040057600080fd5b5061031661040f366004612774565b610c64565b34801561042057600080fd5b506102ce61042f3660046126b9565b610ccd565b34801561044057600080fd5b5061029661044f366004612774565b610d03565b34801561046057600080fd5b506102ce61046f366004612774565b610d15565b34801561048057600080fd5b5061031661048f3660046124ec565b610d44565b3480156104a057600080fd5b506102ce610dd5565b3480156104b557600080fd5b506102ce6104c4366004612774565b610e0b565b3480156104d557600080fd5b506000546001600160a01b0316610296565b3480156104f357600080fd5b50610507610502366004612774565b610f0a565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161024b565b34801561054157600080fd5b50610269610f27565b6102ce610558366004612774565b610f36565b34801561056957600080fd5b506102ce610578366004612603565b611065565b34801561058957600080fd5b506102ce61112a565b34801561059e57600080fd5b506102ce6105ad366004612583565b611207565b3480156105be57600080fd5b50610316600c5481565b3480156105d457600080fd5b506102696105e3366004612774565b611240565b3480156105f457600080fd5b50610316600b5481565b34801561060a57600080fd5b5061031660085481565b34801561062057600080fd5b5061031661062f3660046124ec565b61130d565b34801561064057600080fd5b506102ce611318565b34801561065557600080fd5b5061023f610664366004612509565b611356565b34801561067557600080fd5b506102ce6106843660046124ec565b611396565b34801561069557600080fd5b506103167f00000000000000000000000000000000000000000000000000000000000003e881565b60006001600160e01b031982166380ac58cd60e01b14806106ee57506001600160e01b03198216635b5e139f60e01b145b8061070957506001600160e01b0319821663780e9d6360e01b145b8061072457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461073990612a48565b80601f016020809104026020016040519081016040528092919081815260200182805461076590612a48565b80156107b25780601f10610787576101008083540402835291602001916107b2565b820191906000526020600020905b81548152906001019060200180831161079557829003601f168201915b5050505050905090565b60006107c9826001541190565b6108305760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061085782610d03565b9050806001600160a01b0316836001600160a01b031614156108c65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610827565b336001600160a01b03821614806108e257506108e28133611356565b6109545760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610827565b61095f83838361142e565b505050565b6000546001600160a01b0316331461098e5760405162461bcd60e51b815260040161082790612891565b80516109a190600e90602084019061236d565b5050565b600e80546109b290612a48565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90612a48565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b505050505081565b61095f83838361148a565b6000546001600160a01b03163314610a685760405162461bcd60e51b815260040161082790612891565b60026009541415610a8b5760405162461bcd60e51b815260040161082790612919565b6002600955610a9981611812565b506001600955565b6000610aac83610d44565b8210610b055760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610827565b6000610b1060015490565b905060008060005b83811015610bba576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b6b57805192505b876001600160a01b0316836001600160a01b03161415610ba75786841415610b995750935061072492505050565b83610ba381612a83565b9450505b5080610bb281612a83565b915050610b18565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610827565b61095f83838360405180602001604052806000815250611207565b6000546001600160a01b03163314610c5f5760405162461bcd60e51b815260040161082790612891565b600c55565b6000610c6f60015490565b8210610cc95760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610827565b5090565b6000546001600160a01b03163314610cf75760405162461bcd60e51b815260040161082790612891565b61095f600f83836123ed565b6000610d0e826119fc565b5192915050565b6000546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161082790612891565b600b55565b60006001600160a01b038216610db05760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610827565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610dff5760405162461bcd60e51b815260040161082790612891565b610e096000611ba6565b565b6000546001600160a01b03163314610e355760405162461bcd60e51b815260040161082790612891565b600a54811115610e925760405162461bcd60e51b815260206004820152602260248201527f43616e27742072657365727665206d6f7265207468616e2073657420616d6f756044820152611b9d60f21b6064820152608401610827565b80600a6000828254610ea491906129ee565b909155507f00000000000000000000000000000000000000000000000000000000000003e8905081610ed560015490565b610edf919061297b565b1115610efd5760405162461bcd60e51b815260040161082790612848565b610f073382611bf6565b50565b6040805180820190915260008082526020820152610724826119fc565b60606003805461073990612a48565b323314610f855760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610827565b60026009541415610fa85760405162461bcd60e51b815260040161082790612919565b6002600955600d5460ff16610fff5760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206973206e6f74206c6976650000000000000000006044820152606401610827565b7f00000000000000000000000000000000000000000000000000000000000003e88161102a60015490565b611034919061297b565b11156110525760405162461bcd60e51b815260040161082790612848565b61105b81611c10565b610a993382611bf6565b6001600160a01b0382163314156110be5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610827565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111545760405162461bcd60e51b815260040161082790612891565b600260095414156111775760405162461bcd60e51b815260040161082790612919565b6002600955604051600090339047908381818185875af1925050503d80600081146111be576040519150601f19603f3d011682016040523d82523d6000602084013e6111c3565b606091505b5050905080610a995760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610827565b61121284848461148a565b61121e84848484611ce8565b61123a5760405162461bcd60e51b8152600401610827906128c6565b50505050565b606061124d826001541190565b6112b15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610827565b60006112bb611df6565b905060008151116112db5760405180602001604052806000815250611306565b806112e584611e05565b6040516020016112f69291906127b9565b6040516020818303038152906040525b9392505050565b600061072482611f03565b6000546001600160a01b031633146113425760405162461bcd60e51b815260040161082790612891565b600d805460ff19811660ff90911615179055565b60006113628383611fa1565b8061130657506001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff16611306565b6000546001600160a01b031633146113c05760405162461bcd60e51b815260040161082790612891565b6001600160a01b0381166114255760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610827565b610f0781611ba6565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611495826119fc565b80519091506000906001600160a01b0316336001600160a01b031614806114cc5750336114c1846107bc565b6001600160a01b0316145b806114de575081516114de9033611356565b9050806115485760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610827565b846001600160a01b031682600001516001600160a01b0316146115bc5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610827565b6001600160a01b0384166116205760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610827565b611630600084846000015161142e565b6001600160a01b03851660009081526005602052604081208054600192906116629084906001600160801b03166129c6565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926116ae91859116612950565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561173684600161297b565b6000818152600460205260409020549091506001600160a01b03166117c857611760816001541190565b156117c85760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816118625760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610827565b60006001611870848461297b565b61187a91906129ee565b90506118a760017f00000000000000000000000000000000000000000000000000000000000003e86129ee565b8111156118dc576118d960017f00000000000000000000000000000000000000000000000000000000000003e86129ee565b90505b6118e7816001541190565b6119425760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610827565b815b8181116119e8576000818152600460205260409020546001600160a01b03166119d6576000611972826119fc565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806119e081612a83565b915050611944565b506119f481600161297b565b600855505050565b6040805180820190915260008082526020820152611a1b826001541190565b611a7a5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610827565b60007f00000000000000000000000000000000000000000000000000000000000000328310611adb57611acd7f0000000000000000000000000000000000000000000000000000000000000032846129ee565b611ad890600161297b565b90505b825b818110611b45576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b3257949350505050565b5080611b3d81612a31565b915050611add565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610827565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109a1828260405180602001604052806000815250612092565b600081118015611c225750600c548111155b611c8c5760405162461bcd60e51b815260206004820152603560248201527f696e76616c6964207175616e746974793a207a65726f206f722067726561746560448201527472207468616e206d696e7420616c6c6f77616e636560581b6064820152608401610827565b80600b54611c9a91906129a7565b3414610f075760405162461bcd60e51b815260206004820152601a60248201527f77726f6e6720616d6f756e74206f662065746865722073656e740000000000006044820152606401610827565b60006001600160a01b0384163b15611dea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d2c9033908990889088906004016127f8565b602060405180830381600087803b158015611d4657600080fd5b505af1925050508015611d76575060408051601f3d908101601f19168201909252611d739181019061267f565b60015b611dd0573d808015611da4576040519150601f19603f3d011682016040523d82523d6000602084013e611da9565b606091505b508051611dc85760405162461bcd60e51b8152600401610827906128c6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611dee565b5060015b949350505050565b6060600f805461073990612a48565b606081611e295750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e535780611e3d81612a83565b9150611e4c9050600a83612993565b9150611e2d565b60008167ffffffffffffffff811115611e6e57611e6e612af4565b6040519080825280601f01601f191660200182016040528015611e98576020820181803683370190505b5090505b8415611dee57611ead6001836129ee565b9150611eba600a86612a9e565b611ec590603061297b565b60f81b818381518110611eda57611eda612ade565b60200101906001600160f81b031916908160001a905350611efc600a86612993565b9450611e9c565b60006001600160a01b038216611f755760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610827565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6000804660018114611fba5760048114611fd657611fee565b73a5409ec958c83c3f309868babaca7c86dcb077c19150611fee565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b506001600160a01b03811615801590611dee575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b15801561204857600080fd5b505afa15801561205c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612080919061269c565b6001600160a01b031614949350505050565b6001546001600160a01b0384166120f55760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610827565b612100816001541190565b1561214d5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610827565b7f00000000000000000000000000000000000000000000000000000000000000328311156121c85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610827565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612224908790612950565b6001600160801b031681526020018583602001516122429190612950565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156123625760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123266000888488611ce8565b6123425760405162461bcd60e51b8152600401610827906128c6565b8161234c81612a83565b925050808061235a90612a83565b9150506122d9565b50600181905561180a565b82805461237990612a48565b90600052602060002090601f01602090048101928261239b57600085556123e1565b82601f106123b457805160ff19168380011785556123e1565b828001600101855582156123e1579182015b828111156123e15782518255916020019190600101906123c6565b50610cc9929150612461565b8280546123f990612a48565b90600052602060002090601f01602090048101928261241b57600085556123e1565b82601f106124345782800160ff198235161785556123e1565b828001600101855582156123e1579182015b828111156123e1578235825591602001919060010190612446565b5b80821115610cc95760008155600101612462565b600067ffffffffffffffff8084111561249157612491612af4565b604051601f8501601f19908116603f011681019082821181831017156124b9576124b9612af4565b816040528093508581528686860111156124d257600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156124fe57600080fd5b813561130681612b0a565b6000806040838503121561251c57600080fd5b823561252781612b0a565b9150602083013561253781612b0a565b809150509250929050565b60008060006060848603121561255757600080fd5b833561256281612b0a565b9250602084013561257281612b0a565b929592945050506040919091013590565b6000806000806080858703121561259957600080fd5b84356125a481612b0a565b935060208501356125b481612b0a565b925060408501359150606085013567ffffffffffffffff8111156125d757600080fd5b8501601f810187136125e857600080fd5b6125f787823560208401612476565b91505092959194509250565b6000806040838503121561261657600080fd5b823561262181612b0a565b91506020830135801515811461253757600080fd5b6000806040838503121561264957600080fd5b823561265481612b0a565b946020939093013593505050565b60006020828403121561267457600080fd5b813561130681612b1f565b60006020828403121561269157600080fd5b815161130681612b1f565b6000602082840312156126ae57600080fd5b815161130681612b0a565b600080602083850312156126cc57600080fd5b823567ffffffffffffffff808211156126e457600080fd5b818501915085601f8301126126f857600080fd5b81358181111561270757600080fd5b86602082850101111561271957600080fd5b60209290920196919550909350505050565b60006020828403121561273d57600080fd5b813567ffffffffffffffff81111561275457600080fd5b8201601f8101841361276557600080fd5b611dee84823560208401612476565b60006020828403121561278657600080fd5b5035919050565b600081518084526127a5816020860160208601612a05565b601f01601f19169290920160200192915050565b600083516127cb818460208801612a05565b8351908301906127df818360208801612a05565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061282b9083018461278d565b9695505050505050565b602081526000611306602083018461278d565b60208082526029908201527f696e76616c6964207175616e746974793a20776f756c6420657863656564206d604082015268617820737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60006001600160801b0380831681851680830382111561297257612972612ab2565b01949350505050565b6000821982111561298e5761298e612ab2565b500190565b6000826129a2576129a2612ac8565b500490565b60008160001904831182151516156129c1576129c1612ab2565b500290565b60006001600160801b03838116908316818110156129e6576129e6612ab2565b039392505050565b600082821015612a0057612a00612ab2565b500390565b60005b83811015612a20578181015183820152602001612a08565b8381111561123a5750506000910152565b600081612a4057612a40612ab2565b506000190190565b600181811c90821680612a5c57607f821691505b60208210811415612a7d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a9757612a97612ab2565b5060010190565b600082612aad57612aad612ac8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f0757600080fd5b6001600160e01b031981168114610f0757600080fdfea2646970667358221220d335f034dd3d075a00fc2464644b5eaa6e5730d5518f259fcccee38ba3044e9564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000003e8

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 50
Arg [1] : collectionSize_ (uint256): 1000
Arg [2] : maxTOKENS_ (uint256): 1000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8


Deployed Bytecode Sourcemap

47480:3602:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33410:370;;;;;;;;;;-1:-1:-1;33410:370:0;;;;;:::i;:::-;;:::i;:::-;;;7302:14:1;;7295:22;7277:41;;7265:2;7250:18;33410:370:0;;;;;;;;35136:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36669:204::-;;;;;;;;;;-1:-1:-1;36669:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6600:32:1;;;6582:51;;6570:2;6555:18;36669:204:0;6436:203:1;36232:379:0;;;;;;;;;;-1:-1:-1;36232:379:0;;;;;:::i;:::-;;:::i;:::-;;50382:126;;;;;;;;;;-1:-1:-1;50382:126:0;;;;;:::i;:::-;;:::i;48024:28::-;;;;;;;;;;;;;:::i;31971:94::-;;;;;;;;;;-1:-1:-1;32047:12:0;;31971:94;;;20306:25:1;;;20294:2;20279:18;31971:94:0;20160:177:1;47674:44:0;;;;;;;;;;;;;;;;37519:142;;;;;;;;;;-1:-1:-1;37519:142:0;;;;;:::i;:::-;;:::i;49722:118::-;;;;;;;;;;-1:-1:-1;49722:118:0;;;;;:::i;:::-;;:::i;32602:744::-;;;;;;;;;;-1:-1:-1;32602:744:0;;;;;:::i;:::-;;:::i;47987:30::-;;;;;;;;;;-1:-1:-1;47987:30:0;;;;;;;;37724:157;;;;;;;;;;-1:-1:-1;37724:157:0;;;;;:::i;:::-;;:::i;50134:126::-;;;;;;;;;;-1:-1:-1;50134:126:0;;;;;:::i;:::-;;:::i;32134:177::-;;;;;;;;;;-1:-1:-1;32134:177:0;;;;;:::i;:::-;;:::i;50025:100::-;;;;;;;;;;-1:-1:-1;50025:100:0;;;;;:::i;:::-;;:::i;34959:118::-;;;;;;;;;;-1:-1:-1;34959:118:0;;;;;:::i;:::-;;:::i;50268:106::-;;;;;;;;;;-1:-1:-1;50268:106:0;;;;;:::i;:::-;;:::i;33836:211::-;;;;;;;;;;-1:-1:-1;33836:211:0;;;;;:::i;:::-;;:::i;26115:103::-;;;;;;;;;;;;;:::i;49138:365::-;;;;;;;;;;-1:-1:-1;49138:365:0;;;;;:::i;:::-;;:::i;25464:87::-;;;;;;;;;;-1:-1:-1;25510:7:0;25537:6;-1:-1:-1;;;;;25537:6:0;25464:87;;50743:147;;;;;;;;;;-1:-1:-1;50743:147:0;;;;;:::i;:::-;;:::i;:::-;;;;20025:13:1;;-1:-1:-1;;;;;20021:39:1;20003:58;;20121:4;20109:17;;;20103:24;20129:18;20099:49;20077:20;;;20070:79;;;;19976:18;50743:147:0;19795:360:1;35291:98:0;;;;;;;;;;;;;:::i;48521:328::-;;;;;;:::i;:::-;;:::i;36937:274::-;;;;;;;;;;-1:-1:-1;36937:274:0;;;;;:::i;:::-;;:::i;50896:181::-;;;;;;;;;;;;;:::i;37944:311::-;;;;;;;;;;-1:-1:-1;37944:311:0;;;;;:::i;:::-;;:::i;47942:36::-;;;;;;;;;;;;;;;;35452:402;;;;;;;;;;-1:-1:-1;35452:402:0;;;;;:::i;:::-;;:::i;47848:40::-;;;;;;;;;;;;;;;;42359:43;;;;;;;;;;;;;;;;49607:107;;;;;;;;;;-1:-1:-1;49607:107:0;;;;;:::i;:::-;;:::i;49511:88::-;;;;;;;;;;;;;:::i;50516:219::-;;;;;;;;;;-1:-1:-1;50516:219:0;;;;;:::i;:::-;;:::i;26373:201::-;;;;;;;;;;-1:-1:-1;26373:201:0;;;;;:::i;:::-;;:::i;47780:35::-;;;;;;;;;;;;;;;33410:370;33537:4;-1:-1:-1;;;;;;33567:40:0;;-1:-1:-1;;;33567:40:0;;:99;;-1:-1:-1;;;;;;;33618:48:0;;-1:-1:-1;;;33618:48:0;33567:99;:160;;;-1:-1:-1;;;;;;;33677:50:0;;-1:-1:-1;;;33677:50:0;33567:160;:207;;;-1:-1:-1;;;;;;;;;;12186:40:0;;;33738:36;33553:221;33410:370;-1:-1:-1;;33410:370:0:o;35136:94::-;35190:13;35219:5;35212:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35136:94;:::o;36669:204::-;36737:7;36761:16;36769:7;38581:12;;-1:-1:-1;38571:22:0;38494:105;36761:16;36753:74;;;;-1:-1:-1;;;36753:74:0;;19180:2:1;36753:74:0;;;19162:21:1;19219:2;19199:18;;;19192:30;19258:34;19238:18;;;19231:62;-1:-1:-1;;;19309:18:1;;;19302:43;19362:19;;36753:74:0;;;;;;;;;-1:-1:-1;36843:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36843:24:0;;36669:204::o;36232:379::-;36301:13;36317:24;36333:7;36317:15;:24::i;:::-;36301:40;;36362:5;-1:-1:-1;;;;;36356:11:0;:2;-1:-1:-1;;;;;36356:11:0;;;36348:58;;;;-1:-1:-1;;;36348:58:0;;14877:2:1;36348:58:0;;;14859:21:1;14916:2;14896:18;;;14889:30;14955:34;14935:18;;;14928:62;-1:-1:-1;;;15006:18:1;;;14999:32;15048:19;;36348:58:0;14675:398:1;36348:58:0;24268:10;-1:-1:-1;;;;;36431:21:0;;;;:62;;-1:-1:-1;36456:37:0;36473:5;24268:10;50516:219;:::i;36456:37::-;36415:153;;;;-1:-1:-1;;;36415:153:0;;10915:2:1;36415:153:0;;;10897:21:1;10954:2;10934:18;;;10927:30;10993:34;10973:18;;;10966:62;11064:27;11044:18;;;11037:55;11109:19;;36415:153:0;10713:421:1;36415:153:0;36577:28;36586:2;36590:7;36599:5;36577:8;:28::i;:::-;36294:317;36232:379;;:::o;50382:126::-;25510:7;25537:6;-1:-1:-1;;;;;25537:6:0;24268:10;25684:23;25676:68;;;;-1:-1:-1;;;25676:68:0;;;;;;;:::i;:::-;50469:31;;::::1;::::0;:14:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50382:126:::0;:::o;48024:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37519:142::-;37627:28;37637:4;37643:2;37647:7;37627:9;:28::i;49722:118::-;25510:7;25537:6;-1:-1:-1;;;;;25537:6:0;24268:10;25684:23;25676:68;;;;-1:-1:-1;;;25676:68:0;;;;;;;:::i;:::-;28744:1:::1;29342:7;;:19;;29334:63;;;;-1:-1:-1::0;;;29334:63:0::1;;;;;;;:::i;:::-;28744:1;29475:7;:18:::0;49806:28:::2;49825:8:::0;49806:18:::2;:28::i;:::-;-1:-1:-1::0;28700:1:0::1;29654:7;:22:::0;49722:118::o;32602:744::-;32711:7;32746:16;32756:5;32746:9;:16::i;:::-;32738:5;:24;32730:71;;;;-1:-1:-1;;;32730:71:0;;7755:2:1;32730:71:0;;;7737:21:1;7794:2;7774:18;;;7767:30;7833:34;7813:18;;;7806:62;-1:-1:-1;;;7884:18:1;;;7877:32;7926:19;;32730:71:0;7553:398:1;32730:71:0;32808:22;32833:13;32047:12;;;31971:94;32833:13;32808:38;;32853:19;32883:25;32933:9;32928:350;32952:14;32948:1;:18;32928:350;;;32982:31;33016:14;;;:11;:14;;;;;;;;;32982:48;;;;;;;;;-1:-1:-1;;;;;32982:48:0;;;;;-1:-1:-1;;;32982:48:0;;;;;;;;;;;;33043:28;33039:89;;33104:14;;;-1:-1:-1;33039:89:0;33161:5;-1:-1:-1;;;;;33140:26:0;:17;-1:-1:-1;;;;;33140:26:0;;33136:135;;;33198:5;33183:11;:20;33179:59;;;-1:-1:-1;33225:1:0;-1:-1:-1;33218:8:0;;-1:-1:-1;;;33218:8:0;33179:59;33248:13;;;;:::i;:::-;;;;33136:135;-1:-1:-1;32968:3:0;;;;:::i;:::-;;;;32928:350;;;-1:-1:-1;33284:56:0;;-1:-1:-1;;;33284:56:0;;16805:2:1;33284:56:0;;;16787:21:1;16844:2;16824:18;;;16817:30;16883:34;16863:18;;;16856:62;-1:-1:-1;;;16934:18:1;;;16927:44;16988:19;;33284:56:0;16603:410:1;37724:157:0;37836:39;37853:4;37859:2;37863:7;37836:39;;;;;;;;;;;;:16;:39::i;50134:126::-;25510:7;25537:6;-1:-1:-1;;;;;25537:6:0;24268:10;25684:23;25676:68;;;;-1:-1:-1;;;25676:68:0;;;;;;;:::i;:::-;50216:16:::1;:36:::0;50134:126::o;32134:177::-;32201:7;32233:13;32047:12;;;31971:94;32233:13;32225:5;:21;32217:69;;;;-1:-1:-1;;;32217:69:0;;9328:2:1;32217:69:0;;;9310:21:1;9367:2;9347:18;;;9340:30;9406:34;9386:18;;;9379:62;-1:-1:-1;;;9457:18:1;;;9450:33;9500:19;;32217:69:0;9126:399:1;32217:69:0;-1:-1:-1;32300:5:0;32134:177::o;50025:100::-;25510:7;25537:6;-1:-1:-1;;;;;25537:6:0;24268:10;25684:23;25676:68;;;;-1:-1:-1;;;25676:68:0;;;;;;;:::i;:::-;50096:23:::1;:13;50112:7:::0;;50096:23:::1;:::i;34959:118::-:0;35023:7;35046:20;35058:7;35046:11;:20::i;:::-;:25;;34959:118;-1:-1:-1;;34959:118:0:o;50268:106::-;25510:7;25537:6;-1:-1:-1;;;;;25537:6:0;24268:10;25684:23;25676:68;;;;-1:-1:-1;;;25676:68:0;;;;;;;:::i;:::-;50340:11:::1;:26:::0;50268:106::o;33836:211::-;33900:7;-1:-1:-1;;;;;33924:19:0;;33916:75;;;;-1:-1:-1;;;33916:75:0;;12104:2:1;33916:75:0;;;12086:21:1;12143:2;12123:18;;;12116:30;12182:34;12162:18;;;12155:62;-1:-1:-1;;;12233:18:1;;;12226:41;12284:19;;33916:75:0;11902:407:1;33916:75:0;-1:-1:-1;;;;;;34013:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34013:27:0;;33836:211::o;26115:103::-;25510:7;25537:6;-1:-1:-1;;;;;25537:6:0;24268:10;25684:23;25676:68;;;;-1:-1:-1;;;25676:68:0;;;;;;;:::i;:::-;26180:30:::1;26207:1;26180:18;:30::i;:::-;26115:103::o:0;49138:365::-;25510:7;25537:6;-1:-1:-1;;;;;25537:6:0;24268:10;25684:23;25676:68;;;;-1:-1:-1;;;25676:68:0;;;;;;;:::i;:::-;49237:25:::1;;49225:8;:37;;49217:85;;;::::0;-1:-1:-1;;;49217:85:0;;12923:2:1;49217:85:0::1;::::0;::::1;12905:21:1::0;12962:2;12942:18;;;12935:30;13001:34;12981:18;;;12974:62;-1:-1:-1;;;13052:18:1;;;13045:32;13094:19;;49217:85:0::1;12721:398:1::0;49217:85:0::1;49342:8;49313:25;;:37;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;49397:10:0::1;::::0;-1:-1:-1;49385:8:0;49369:13:::1;32047:12:::0;;;31971:94;49369:13:::1;:24;;;;:::i;:::-;:38;;49361:92;;;;-1:-1:-1::0;;;49361:92:0::1;;;;;;;:::i;:::-;49464:31;49474:10;49486:8;49464:9;:31::i;:::-;49138:365:::0;:::o;50743:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;50864:20:0;50876:7;50864:11;:20::i;35291:98::-;35347:13;35376:7;35369:14;;;;;:::i;48521:328::-;48441:9;48454:10;48441:23;48433:66;;;;-1:-1:-1;;;48433:66:0;;10556:2:1;48433:66:0;;;10538:21:1;10595:2;10575:18;;;10568:30;10634:32;10614:18;;;10607:60;10684:18;;48433:66:0;10354:354:1;48433:66:0;28744:1:::1;29342:7;;:19;;29334:63;;;;-1:-1:-1::0;;;29334:63:0::1;;;;;;;:::i;:::-;28744:1;29475:7;:18:::0;48615:10:::2;::::0;::::2;;48607:46;;;::::0;-1:-1:-1;;;48607:46:0;;8158:2:1;48607:46:0::2;::::0;::::2;8140:21:1::0;8197:2;8177:18;;;8170:30;8236:25;8216:18;;;8209:53;8279:18;;48607:46:0::2;7956:347:1::0;48607:46:0::2;48700:10;48688:8;48672:13;32047:12:::0;;;31971:94;48672:13:::2;:24;;;;:::i;:::-;:38;;48664:92;;;;-1:-1:-1::0;;;48664:92:0::2;;;;;;;:::i;:::-;48767:32;48790:8;48767:22;:32::i;:::-;48810:31;48820:10;48832:8;48810:9;:31::i;36937:274::-:0;-1:-1:-1;;;;;37028:24:0;;24268:10;37028:24;;37020:63;;;;-1:-1:-1;;;37020:63:0;;14103:2:1;37020:63:0;;;14085:21:1;14142:2;14122:18;;;14115:30;14181:28;14161:18;;;14154:56;14227:18;;37020:63:0;13901:350:1;37020:63:0;24268:10;37092:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37092:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37092:53:0;;;;;;;;;;37157:48;;7277:41:1;;;37092:42:0;;24268:10;37157:48;;7250:18:1;37157:48:0;;;;;;;36937:274;;:::o;50896:181::-;25510:7;25537:6;-1:-1:-1;;;;;25537:6:0;24268:10;25684:23;25676:68;;;;-1:-1:-1;;;25676:68:0;;;;;;;:::i;:::-;28744:1:::1;29342:7;;:19;;29334:63;;;;-1:-1:-1::0;;;29334:63:0::1;;;;;;;:::i;:::-;28744:1;29475:7;:18:::0;50979:49:::2;::::0;50961:12:::2;::::0;50979:10:::2;::::0;51002:21:::2;::::0;50961:12;50979:49;50961:12;50979:49;51002:21;50979:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50960:68;;;51043:7;51035:36;;;::::0;-1:-1:-1;;;51035:36:0;;15280:2:1;51035:36:0::2;::::0;::::2;15262:21:1::0;15319:2;15299:18;;;15292:30;-1:-1:-1;;;15338:18:1;;;15331:46;15394:18;;51035:36:0::2;15078:340:1::0;37944:311:0;38081:28;38091:4;38097:2;38101:7;38081:9;:28::i;:::-;38132:48;38155:4;38161:2;38165:7;38174:5;38132:22;:48::i;:::-;38116:133;;;;-1:-1:-1;;;38116:133:0;;;;;;;:::i;:::-;37944:311;;;;:::o;35452:402::-;35550:13;35591:16;35599:7;38581:12;;-1:-1:-1;38571:22:0;38494:105;35591:16;35575:97;;;;-1:-1:-1;;;35575:97:0;;13687:2:1;35575:97:0;;;13669:21:1;13726:2;13706:18;;;13699:30;13765:34;13745:18;;;13738:62;-1:-1:-1;;;13816:18:1;;;13809:45;13871:19;;35575:97:0;13485:411:1;35575:97:0;35681:21;35705:10;:8;:10::i;:::-;35681:34;;35760:1;35742:7;35736:21;:25;:112;;;;;;;;;;;;;;;;;35797:7;35806:18;:7;:16;:18::i;:::-;35780:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35736:112;35722:126;35452:402;-1:-1:-1;;;35452:402:0:o;49607:107::-;49665:7;49688:20;49702:5;49688:13;:20::i;49511:88::-;25510:7;25537:6;-1:-1:-1;;;;;25537:6:0;24268:10;25684:23;25676:68;;;;-1:-1:-1;;;25676:68:0;;;;;;;:::i;:::-;49581:10:::1;::::0;;-1:-1:-1;;49567:24:0;::::1;49581:10;::::0;;::::1;49580:11;49567:24;::::0;;49511:88::o;50516:219::-;50605:4;50629:55;50668:5;50675:8;50629:38;:55::i;:::-;:98;;;-1:-1:-1;;;;;;37419:25:0;;;37396:4;37419:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;50688:39;37274:186;26373:201;25510:7;25537:6;-1:-1:-1;;;;;25537:6:0;24268:10;25684:23;25676:68;;;;-1:-1:-1;;;25676:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26462:22:0;::::1;26454:73;;;::::0;-1:-1:-1;;;26454:73:0;;8510:2:1;26454:73:0::1;::::0;::::1;8492:21:1::0;8549:2;8529:18;;;8522:30;8588:34;8568:18;;;8561:62;-1:-1:-1;;;8639:18:1;;;8632:36;8685:19;;26454:73:0::1;8308:402:1::0;26454:73:0::1;26538:28;26557:8;26538:18;:28::i;42181:172::-:0;42278:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42278:29:0;-1:-1:-1;;;;;42278:29:0;;;;;;;;;42319:28;;42278:24;;42319:28;;;;;;;42181:172;;;:::o;40546:1529::-;40643:35;40681:20;40693:7;40681:11;:20::i;:::-;40752:18;;40643:58;;-1:-1:-1;40710:22:0;;-1:-1:-1;;;;;40736:34:0;24268:10;-1:-1:-1;;;;;40736:34:0;;:81;;;-1:-1:-1;24268:10:0;40781:20;40793:7;40781:11;:20::i;:::-;-1:-1:-1;;;;;40781:36:0;;40736:81;:142;;;-1:-1:-1;40845:18:0;;40828:50;;24268:10;50516:219;:::i;40828:50::-;40710:169;;40904:17;40888:101;;;;-1:-1:-1;;;40888:101:0;;14458:2:1;40888:101:0;;;14440:21:1;14497:2;14477:18;;;14470:30;14536:34;14516:18;;;14509:62;-1:-1:-1;;;14587:18:1;;;14580:48;14645:19;;40888:101:0;14256:414:1;40888:101:0;41036:4;-1:-1:-1;;;;;41014:26:0;:13;:18;;;-1:-1:-1;;;;;41014:26:0;;40998:98;;;;-1:-1:-1;;;40998:98:0;;12516:2:1;40998:98:0;;;12498:21:1;12555:2;12535:18;;;12528:30;12594:34;12574:18;;;12567:62;-1:-1:-1;;;12645:18:1;;;12638:36;12691:19;;40998:98:0;12314:402:1;40998:98:0;-1:-1:-1;;;;;41111:16:0;;41103:66;;;;-1:-1:-1;;;41103:66:0;;9732:2:1;41103:66:0;;;9714:21:1;9771:2;9751:18;;;9744:30;9810:34;9790:18;;;9783:62;-1:-1:-1;;;9861:18:1;;;9854:35;9906:19;;41103:66:0;9530:401:1;41103:66:0;41278:49;41295:1;41299:7;41308:13;:18;;;41278:8;:49::i;:::-;-1:-1:-1;;;;;41336:18:0;;;;;;:12;:18;;;;;:31;;41366:1;;41336:18;:31;;41366:1;;-1:-1:-1;;;;;41336:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;41336:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;41374:16:0;;-1:-1:-1;41374:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;41374:16:0;;:29;;-1:-1:-1;;41374:29:0;;:::i;:::-;;;-1:-1:-1;;;;;41374:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41433:43:0;;;;;;;;-1:-1:-1;;;;;41433:43:0;;;;;;41459:15;41433:43;;;;;;;;;-1:-1:-1;41410:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;41410:66:0;-1:-1:-1;;;;;;41410:66:0;;;;;;;;;;;41726:11;41422:7;-1:-1:-1;41726:11:0;:::i;:::-;41789:1;41748:24;;;:11;:24;;;;;:29;41704:33;;-1:-1:-1;;;;;;41748:29:0;41744:236;;41806:20;41814:11;38581:12;;-1:-1:-1;38571:22:0;38494:105;41806:20;41802:171;;;41866:97;;;;;;;;41893:18;;-1:-1:-1;;;;;41866:97:0;;;;;;41924:28;;;;41866:97;;;;;;;;;;-1:-1:-1;41839:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;41839:124:0;-1:-1:-1;;;;;;41839:124:0;;;;;;;;;;;;41802:171;42012:7;42008:2;-1:-1:-1;;;;;41993:27:0;42002:4;-1:-1:-1;;;;;41993:27:0;;;;;;;;;;;42027:42;40636:1439;;;40546:1529;;;:::o;42507:846::-;42597:24;;42636:12;42628:49;;;;-1:-1:-1;;;42628:49:0;;11341:2:1;42628:49:0;;;11323:21:1;11380:2;11360:18;;;11353:30;11419:26;11399:18;;;11392:54;11463:18;;42628:49:0;11139:348:1;42628:49:0;42684:16;42734:1;42703:28;42723:8;42703:17;:28;:::i;:::-;:32;;;;:::i;:::-;42684:51;-1:-1:-1;42757:18:0;42774:1;42757:14;:18;:::i;:::-;42746:8;:29;42742:81;;;42797:18;42814:1;42797:14;:18;:::i;:::-;42786:29;;42742:81;42938:17;42946:8;38581:12;;-1:-1:-1;38571:22:0;38494:105;42938:17;42930:68;;;;-1:-1:-1;;;42930:68:0;;17220:2:1;42930:68:0;;;17202:21:1;17259:2;17239:18;;;17232:30;17298:34;17278:18;;;17271:62;-1:-1:-1;;;17349:18:1;;;17342:36;17395:19;;42930:68:0;17018:402:1;42930:68:0;43022:17;43005:297;43046:8;43041:1;:13;43005:297;;43105:1;43074:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;43074:19:0;43070:225;;43120:31;43154:14;43166:1;43154:11;:14::i;:::-;43196:89;;;;;;;;43223:14;;-1:-1:-1;;;;;43196:89:0;;;;;;43250:24;;;;43196:89;;;;;;;;;;-1:-1:-1;43179:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;43179:106:0;-1:-1:-1;;;;;;43179:106:0;;;;;;;;;;;;-1:-1:-1;43070:225:0;43056:3;;;;:::i;:::-;;;;43005:297;;;-1:-1:-1;43335:12:0;:8;43346:1;43335:12;:::i;:::-;43308:24;:39;-1:-1:-1;;;42507:846:0:o;34299:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;34416:16:0;34424:7;38581:12;;-1:-1:-1;38571:22:0;38494:105;34416:16;34408:71;;;;-1:-1:-1;;;34408:71:0;;8917:2:1;34408:71:0;;;8899:21:1;8956:2;8936:18;;;8929:30;8995:34;8975:18;;;8968:62;-1:-1:-1;;;9046:18:1;;;9039:40;9096:19;;34408:71:0;8715:406:1;34408:71:0;34488:26;34536:12;34525:7;:23;34521:93;;34580:22;34590:12;34580:7;:22;:::i;:::-;:26;;34605:1;34580:26;:::i;:::-;34559:47;;34521:93;34642:7;34622:212;34659:18;34651:4;:26;34622:212;;34696:31;34730:17;;;:11;:17;;;;;;;;;34696:51;;;;;;;;;-1:-1:-1;;;;;34696:51:0;;;;;-1:-1:-1;;;34696:51:0;;;;;;;;;;;;34760:28;34756:71;;34808:9;34299:606;-1:-1:-1;;;;34299:606:0:o;34756:71::-;-1:-1:-1;34679:6:0;;;;:::i;:::-;;;;34622:212;;;-1:-1:-1;34842:57:0;;-1:-1:-1;;;34842:57:0;;18342:2:1;34842:57:0;;;18324:21:1;18381:2;18361:18;;;18354:30;18420:34;18400:18;;;18393:62;-1:-1:-1;;;18471:18:1;;;18464:45;18526:19;;34842:57:0;18140:411:1;26734:191:0;26808:16;26827:6;;-1:-1:-1;;;;;26844:17:0;;;-1:-1:-1;;;;;;26844:17:0;;;;;;26877:40;;26827:6;;;;;;;26877:40;;26808:16;26877:40;26797:128;26734:191;:::o;38605:98::-;38670:27;38680:2;38684:8;38670:27;;;;;;;;;;;;:9;:27::i;48857:273::-;48946:1;48935:8;:12;:44;;;;;48963:16;;48951:8;:28;;48935:44;48927:110;;;;-1:-1:-1;;;48927:110:0;;18758:2:1;48927:110:0;;;18740:21:1;18797:2;18777:18;;;18770:30;18836:34;18816:18;;;18809:62;-1:-1:-1;;;18887:18:1;;;18880:51;18948:19;;48927:110:0;18556:417:1;48927:110:0;49083:8;49069:11;;:22;;;;:::i;:::-;49056:9;:35;49048:74;;;;-1:-1:-1;;;49048:74:0;;17987:2:1;49048:74:0;;;17969:21:1;18026:2;18006:18;;;17999:30;18065:28;18045:18;;;18038:56;18111:18;;49048:74:0;17785:350:1;43896:690:0;44033:4;-1:-1:-1;;;;;44050:13:0;;2289:19;:23;44046:535;;44089:72;;-1:-1:-1;;;44089:72:0;;-1:-1:-1;;;;;44089:36:0;;;;;:72;;24268:10;;44140:4;;44146:7;;44155:5;;44089:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44089:72:0;;;;;;;;-1:-1:-1;;44089:72:0;;;;;;;;;;;;:::i;:::-;;;44076:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44320:13:0;;44316:215;;44353:61;;-1:-1:-1;;;44353:61:0;;;;;;;:::i;44316:215::-;44499:6;44493:13;44484:6;44480:2;44476:15;44469:38;44076:464;-1:-1:-1;;;;;;44211:55:0;-1:-1:-1;;;44211:55:0;;-1:-1:-1;44204:62:0;;44046:535;-1:-1:-1;44569:4:0;44046:535;43896:690;;;;;;:::o;49909:108::-;49969:13;49998;49991:20;;;;;:::i;19361:723::-;19417:13;19638:10;19634:53;;-1:-1:-1;;19665:10:0;;;;;;;;;;;;-1:-1:-1;;;19665:10:0;;;;;19361:723::o;19634:53::-;19712:5;19697:12;19753:78;19760:9;;19753:78;;19786:8;;;;:::i;:::-;;-1:-1:-1;19809:10:0;;-1:-1:-1;19817:2:0;19809:10;;:::i;:::-;;;19753:78;;;19841:19;19873:6;19863:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19863:17:0;;19841:39;;19891:154;19898:10;;19891:154;;19925:11;19935:1;19925:11;;:::i;:::-;;-1:-1:-1;19994:10:0;20002:2;19994:5;:10;:::i;:::-;19981:24;;:2;:24;:::i;:::-;19968:39;;19951:6;19958;19951:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19951:56:0;;;;;;;;-1:-1:-1;20022:11:0;20031:2;20022:11;;:::i;:::-;;;19891:154;;34053:240;34114:7;-1:-1:-1;;;;;34146:19:0;;34130:102;;;;-1:-1:-1;;;34130:102:0;;10138:2:1;34130:102:0;;;10120:21:1;10177:2;10157:18;;;10150:30;10216:34;10196:18;;;10189:62;-1:-1:-1;;;10267:18:1;;;10260:47;10324:19;;34130:102:0;9936:413:1;34130:102:0;-1:-1:-1;;;;;;34254:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;34254:32:0;;-1:-1:-1;;;;;34254:32:0;;34053:240::o;46777:565::-;46859:4;46876:22;46940:9;46968:1;46963:123;;;;47105:1;47100:123;;;;46933:290;;46963:123;47029:42;47017:54;;46963:123;;47100;47166:42;47154:54;;46933:290;-1:-1:-1;;;;;;47253:31:0;;;;;;:81;;-1:-1:-1;47297:23:0;;-1:-1:-1;;;47297:23:0;;-1:-1:-1;;;;;6600:32:1;;;47297:23:0;;;6582:51:1;47289:44:0;;;;47297:16;;;;;;6555:18:1;;47297:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;47289:44:0;;47246:88;46777:565;-1:-1:-1;;;;46777:565:0:o;39042:1272::-;39170:12;;-1:-1:-1;;;;;39197:16:0;;39189:62;;;;-1:-1:-1;;;39189:62:0;;16403:2:1;39189:62:0;;;16385:21:1;16442:2;16422:18;;;16415:30;16481:34;16461:18;;;16454:62;-1:-1:-1;;;16532:18:1;;;16525:31;16573:19;;39189:62:0;16201:397:1;39189:62:0;39388:21;39396:12;38581;;-1:-1:-1;38571:22:0;38494:105;39388:21;39387:22;39379:64;;;;-1:-1:-1;;;39379:64:0;;16045:2:1;39379:64:0;;;16027:21:1;16084:2;16064:18;;;16057:30;16123:31;16103:18;;;16096:59;16172:18;;39379:64:0;15843:353:1;39379:64:0;39470:12;39458:8;:24;;39450:71;;;;-1:-1:-1;;;39450:71:0;;19594:2:1;39450:71:0;;;19576:21:1;19633:2;19613:18;;;19606:30;19672:34;19652:18;;;19645:62;-1:-1:-1;;;19723:18:1;;;19716:32;19765:19;;39450:71:0;19392:398:1;39450:71:0;-1:-1:-1;;;;;39633:16:0;;39600:30;39633:16;;;:12;:16;;;;;;;;;39600:49;;;;;;;;;-1:-1:-1;;;;;39600:49:0;;;;;-1:-1:-1;;;39600:49:0;;;;;;;;;;;39675:119;;;;;;;;39695:19;;39600:49;;39675:119;;;39695:39;;39725:8;;39695:39;:::i;:::-;-1:-1:-1;;;;;39675:119:0;;;;;39778:8;39743:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;39675:119:0;;;;;;-1:-1:-1;;;;;39656:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;39656:138:0;;;;;;;;;;;;39829:43;;;;;;;;;;;39855:15;39829:43;;;;;;;;39801:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;39801:71:0;-1:-1:-1;;;;;;39801:71:0;;;;;;;;;;;;;;;;;;39813:12;;39925:281;39949:8;39945:1;:12;39925:281;;;39978:38;;40003:12;;-1:-1:-1;;;;;39978:38:0;;;39995:1;;39978:38;;39995:1;;39978:38;40043:59;40074:1;40078:2;40082:12;40096:5;40043:22;:59::i;:::-;40025:150;;;;-1:-1:-1;;;40025:150:0;;;;;;;:::i;:::-;40184:14;;;;:::i;:::-;;;;39959:3;;;;;:::i;:::-;;;;39925:281;;;-1:-1:-1;40214:12:0;:27;;;40248:60;37944:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;2311:18;2300:30;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:416::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2904:15;;2897:23;2885:36;;2875:64;;2935:1;2932;2925:12;2976:315;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3160:9;3147:23;3179:31;3204:5;3179:31;:::i;:::-;3229:5;3281:2;3266:18;;;;3253:32;;-1:-1:-1;;;2976:315:1:o;3296:245::-;3354:6;3407:2;3395:9;3386:7;3382:23;3378:32;3375:52;;;3423:1;3420;3413:12;3375:52;3462:9;3449:23;3481:30;3505:5;3481:30;:::i;3546:249::-;3615:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:52;;;3684:1;3681;3674:12;3636:52;3716:9;3710:16;3735:30;3759:5;3735:30;:::i;3800:280::-;3899:6;3952:2;3940:9;3931:7;3927:23;3923:32;3920:52;;;3968:1;3965;3958:12;3920:52;4000:9;3994:16;4019:31;4044:5;4019:31;:::i;4085:592::-;4156:6;4164;4217:2;4205:9;4196:7;4192:23;4188:32;4185:52;;;4233:1;4230;4223:12;4185:52;4273:9;4260:23;4302:18;4343:2;4335:6;4332:14;4329:34;;;4359:1;4356;4349:12;4329:34;4397:6;4386:9;4382:22;4372:32;;4442:7;4435:4;4431:2;4427:13;4423:27;4413:55;;4464:1;4461;4454:12;4413:55;4504:2;4491:16;4530:2;4522:6;4519:14;4516:34;;;4546:1;4543;4536:12;4516:34;4591:7;4586:2;4577:6;4573:2;4569:15;4565:24;4562:37;4559:57;;;4612:1;4609;4602:12;4559:57;4643:2;4635:11;;;;;4665:6;;-1:-1:-1;4085:592:1;;-1:-1:-1;;;;4085:592:1:o;4682:450::-;4751:6;4804:2;4792:9;4783:7;4779:23;4775:32;4772:52;;;4820:1;4817;4810:12;4772:52;4860:9;4847:23;4893:18;4885:6;4882:30;4879:50;;;4925:1;4922;4915:12;4879:50;4948:22;;5001:4;4993:13;;4989:27;-1:-1:-1;4979:55:1;;5030:1;5027;5020:12;4979:55;5053:73;5118:7;5113:2;5100:16;5095:2;5091;5087:11;5053:73;:::i;5137:180::-;5196:6;5249:2;5237:9;5228:7;5224:23;5220:32;5217:52;;;5265:1;5262;5255:12;5217:52;-1:-1:-1;5288:23:1;;5137:180;-1:-1:-1;5137:180:1:o;5322:257::-;5363:3;5401:5;5395:12;5428:6;5423:3;5416:19;5444:63;5500:6;5493:4;5488:3;5484:14;5477:4;5470:5;5466:16;5444:63;:::i;:::-;5561:2;5540:15;-1:-1:-1;;5536:29:1;5527:39;;;;5568:4;5523:50;;5322:257;-1:-1:-1;;5322:257:1:o;5584:637::-;5864:3;5902:6;5896:13;5918:53;5964:6;5959:3;5952:4;5944:6;5940:17;5918:53;:::i;:::-;6034:13;;5993:16;;;;6056:57;6034:13;5993:16;6090:4;6078:17;;6056:57;:::i;:::-;-1:-1:-1;;;6135:20:1;;6164:22;;;6213:1;6202:13;;5584:637;-1:-1:-1;;;;5584:637:1:o;6644:488::-;-1:-1:-1;;;;;6913:15:1;;;6895:34;;6965:15;;6960:2;6945:18;;6938:43;7012:2;6997:18;;6990:34;;;7060:3;7055:2;7040:18;;7033:31;;;6838:4;;7081:45;;7106:19;;7098:6;7081:45;:::i;:::-;7073:53;6644:488;-1:-1:-1;;;;;;6644:488:1:o;7329:219::-;7478:2;7467:9;7460:21;7441:4;7498:44;7538:2;7527:9;7523:18;7515:6;7498:44;:::i;11492:405::-;11694:2;11676:21;;;11733:2;11713:18;;;11706:30;11772:34;11767:2;11752:18;;11745:62;-1:-1:-1;;;11838:2:1;11823:18;;11816:39;11887:3;11872:19;;11492:405::o;13124:356::-;13326:2;13308:21;;;13345:18;;;13338:30;13404:34;13399:2;13384:18;;13377:62;13471:2;13456:18;;13124:356::o;15423:415::-;15625:2;15607:21;;;15664:2;15644:18;;;15637:30;15703:34;15698:2;15683:18;;15676:62;-1:-1:-1;;;15769:2:1;15754:18;;15747:49;15828:3;15813:19;;15423:415::o;17425:355::-;17627:2;17609:21;;;17666:2;17646:18;;;17639:30;17705:33;17700:2;17685:18;;17678:61;17771:2;17756:18;;17425:355::o;20342:253::-;20382:3;-1:-1:-1;;;;;20471:2:1;20468:1;20464:10;20501:2;20498:1;20494:10;20532:3;20528:2;20524:12;20519:3;20516:21;20513:47;;;20540:18;;:::i;:::-;20576:13;;20342:253;-1:-1:-1;;;;20342:253:1:o;20600:128::-;20640:3;20671:1;20667:6;20664:1;20661:13;20658:39;;;20677:18;;:::i;:::-;-1:-1:-1;20713:9:1;;20600:128::o;20733:120::-;20773:1;20799;20789:35;;20804:18;;:::i;:::-;-1:-1:-1;20838:9:1;;20733:120::o;20858:168::-;20898:7;20964:1;20960;20956:6;20952:14;20949:1;20946:21;20941:1;20934:9;20927:17;20923:45;20920:71;;;20971:18;;:::i;:::-;-1:-1:-1;21011:9:1;;20858:168::o;21031:246::-;21071:4;-1:-1:-1;;;;;21184:10:1;;;;21154;;21206:12;;;21203:38;;;21221:18;;:::i;:::-;21258:13;;21031:246;-1:-1:-1;;;21031:246:1:o;21282:125::-;21322:4;21350:1;21347;21344:8;21341:34;;;21355:18;;:::i;:::-;-1:-1:-1;21392:9:1;;21282:125::o;21412:258::-;21484:1;21494:113;21508:6;21505:1;21502:13;21494:113;;;21584:11;;;21578:18;21565:11;;;21558:39;21530:2;21523:10;21494:113;;;21625:6;21622:1;21619:13;21616:48;;;-1:-1:-1;;21660:1:1;21642:16;;21635:27;21412:258::o;21675:136::-;21714:3;21742:5;21732:39;;21751:18;;:::i;:::-;-1:-1:-1;;;21787:18:1;;21675:136::o;21816:380::-;21895:1;21891:12;;;;21938;;;21959:61;;22013:4;22005:6;22001:17;21991:27;;21959:61;22066:2;22058:6;22055:14;22035:18;22032:38;22029:161;;;22112:10;22107:3;22103:20;22100:1;22093:31;22147:4;22144:1;22137:15;22175:4;22172:1;22165:15;22029:161;;21816:380;;;:::o;22201:135::-;22240:3;-1:-1:-1;;22261:17:1;;22258:43;;;22281:18;;:::i;:::-;-1:-1:-1;22328:1:1;22317:13;;22201:135::o;22341:112::-;22373:1;22399;22389:35;;22404:18;;:::i;:::-;-1:-1:-1;22438:9:1;;22341:112::o;22458:127::-;22519:10;22514:3;22510:20;22507:1;22500:31;22550:4;22547:1;22540:15;22574:4;22571:1;22564:15;22590:127;22651:10;22646:3;22642:20;22639:1;22632:31;22682:4;22679:1;22672:15;22706:4;22703:1;22696:15;22722:127;22783:10;22778:3;22774:20;22771:1;22764:31;22814:4;22811:1;22804:15;22838:4;22835:1;22828:15;22854:127;22915:10;22910:3;22906:20;22903:1;22896:31;22946:4;22943:1;22936:15;22970:4;22967:1;22960:15;22986:131;-1:-1:-1;;;;;23061:31:1;;23051:42;;23041:70;;23107:1;23104;23097:12;23122:131;-1:-1:-1;;;;;;23196:32:1;;23186:43;;23176:71;;23243:1;23240;23233:12

Swarm Source

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