ETH Price: $3,102.63 (+1.39%)
Gas: 6 Gwei

Token

Pepe Universe Genesis (PEPE)
 

Overview

Max Total Supply

500 PEPE

Holders

252

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PEPE
0xba23d58c7289aabf1820cb35bb4b5bb89170fffd
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:
PepeUniverse

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-02-20
*/

// SPDX-License-Identifier: MIT
// 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/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts 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/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/PepeUniverse.sol



pragma solidity ^0.8.4;





contract PepeUniverse is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 public tokenPricePresale = 0.00 ether;
    uint256 public tokenPricePublicSale = 0.00 ether;

    uint256 public maxTokensPerMint = 2;
    uint256 public maxTokensPerWhitelistedAddress = 1;

    string public tokenBaseURI = "ipfs://QmWLHVNnkwxjgqq8mHxtr4avK9CFLMMYx3Kfgkvp6hv8UX/";

    uint256 public tokensToBuyAmount = 500;

    bool public hasPresaleStarted = false;
    bool public hasPublicSaleStarted = false;
    
    bytes32 public whitelistRoot = 0x8b4eb6f294089d67f25100e07d6ed30e644d0d885d800141e07971b90844d801;
    mapping(address => uint256) public presaleWhitelistPurchased;

    constructor() ERC721("Pepe Universe Genesis", "PEPE") {
        
    }

    function setMaxTokensPerMint(uint256 val) external onlyOwner {
        maxTokensPerMint = val;
    }

    function setMaxTokensPerWhitelistedAddress(uint256 val) external onlyOwner {
        maxTokensPerWhitelistedAddress = val;
    }

    function setPresale(bool val) external onlyOwner {
        hasPresaleStarted = val;
    }

    function setPublicSale(bool val) external onlyOwner {
        hasPublicSaleStarted = val;
    }
    
    function tokenPrice() public view returns (uint256) {
      if (hasPublicSaleStarted) {
        return tokenPricePublicSale;
      }
      return tokenPricePresale;
    }

    function setTokenPricePresale(uint256 val) external onlyOwner {
      tokenPricePresale = val;
    }

    function setTokenPricePublicSale(uint256 val) external onlyOwner {
      tokenPricePublicSale = val;
    }

    function setWhitelistRoot(bytes32 _whitelistRoot) public onlyOwner {
        whitelistRoot = _whitelistRoot;
    }

    function verify(address account, bytes32[] memory proof) public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(account));
        return MerkleProof.verify(proof, whitelistRoot, leaf);
    }

    function mint(uint256 amount, bytes32[] memory proof) external payable {
        require(msg.value >= tokenPrice() * amount, "Incorrect ETH");
        require(hasPresaleStarted, "Cannot mint before presale");
        require(hasPublicSaleStarted || verify(msg.sender, proof), "Buyer not whitelisted for presale");
        require(amount <= maxTokensPerMint, "Cannot mint more than the max tokens per mint");
        require(amount <= tokensToBuyAmount, "No tokens left for minting");
        require(hasPublicSaleStarted || (presaleWhitelistPurchased[msg.sender] + amount <= maxTokensPerWhitelistedAddress),
            "Cannot mint more than the max tokens per whitelisted address");

        uint256 supply = totalSupply();
        for(uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender, 1 + supply + i);
        }

        if (!hasPublicSaleStarted) {
            presaleWhitelistPurchased[msg.sender] += amount;
        }

        tokensToBuyAmount -= amount;
    }

    function _baseURI() internal view override(ERC721) returns (string memory) {
        return tokenBaseURI;
    }
   
    function setBaseURI(string calldata URI) external onlyOwner {
        tokenBaseURI = URI;
    }

    function withdraw() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasPresaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasPublicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerWhitelistedAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelistPurchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokensPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokensPerWhitelistedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTokenPricePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTokenPricePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"name":"setWhitelistRoot","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":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePublicSale","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":"tokensToBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600b819055600c556002600d556001600e5560e060405260366080818152906200297060a03980516200003d91600f9160209091019062000171565b506101f46010556011805461ffff191690557f8b4eb6f294089d67f25100e07d6ed30e644d0d885d800141e07971b90844d8016012553480156200008057600080fd5b50604080518082018252601581527f5065706520556e6976657273652047656e6573697300000000000000000000006020808301918252835180850190945260048452635045504560e01b908401528151919291620000e29160009162000171565b508051620000f890600190602084019062000171565b505050620001156200010f6200011b60201b60201c565b6200011f565b62000254565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017f9062000217565b90600052602060002090601f016020900481019282620001a35760008555620001ee565b82601f10620001be57805160ff1916838001178555620001ee565b82800160010185558215620001ee579182015b82811115620001ee578251825591602001919060010190620001d1565b50620001fc92915062000200565b5090565b5b80821115620001fc576000815560010162000201565b600181811c908216806200022c57607f821691505b602082108114156200024e57634e487b7160e01b600052602260045260246000fd5b50919050565b61270c80620002646000396000f3fe6080604052600436106102465760003560e01c80636352211e11610139578063b76a0df4116100b6578063e985e9c51161007a578063e985e9c51461066e578063f2fde38b146106b7578063f5aa406d146106d7578063fdd4b0f0146106f7578063ff45cb9514610716578063ffc22fa81461072c57600080fd5b8063b76a0df4146105db578063b88d4fde146105fb578063ba41b0c61461061b578063c54e73e31461062e578063c87b56dd1461064e57600080fd5b80637ff9b596116100fd5780637ff9b596146105595780638da5cb5b1461056e57806395d89b411461058c578063a22cb465146105a1578063b0220015146105c157600080fd5b80636352211e146104ce57806370a08231146104ee578063715018a61461050e578063762cda3c1461052357806378c5fe371461054357600080fd5b8063386bfc98116101c75780634e99b8001161018b5780634e99b800146104435780634f6ccce71461045857806355f804b3146104785780635aca1bb61461049857806360033400146104b857600080fd5b8063386bfc98146103ab5780633ccfd60b146103c157806342842e0e146103d657806346c4dc27146103f657806348df74241461041657600080fd5b806318160ddd1161020e57806318160ddd1461032057806323b872dd146103355780632b038411146103555780632f745c591461036b578063311df29a1461038b57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806317465471146102fc575b600080fd5b34801561025757600080fd5b5061026b6102663660046122c9565b61074c565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610295610777565b604051610277919061243e565b3480156102ae57600080fd5b506102c26102bd3660046122b0565b610809565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f536600461226b565b6108a3565b005b34801561030857600080fd5b50610312600d5481565b604051908152602001610277565b34801561032c57600080fd5b50600854610312565b34801561034157600080fd5b506102fa6103503660046120f7565b6109b9565b34801561036157600080fd5b50610312600b5481565b34801561037757600080fd5b5061031261038636600461226b565b6109ea565b34801561039757600080fd5b506102fa6103a63660046122b0565b610a80565b3480156103b757600080fd5b5061031260125481565b3480156103cd57600080fd5b506102fa610aaf565b3480156103e257600080fd5b506102fa6103f13660046120f7565b610aff565b34801561040257600080fd5b506102fa6104113660046122b0565b610b1a565b34801561042257600080fd5b506103126104313660046120a9565b60136020526000908152604090205481565b34801561044f57600080fd5b50610295610b49565b34801561046457600080fd5b506103126104733660046122b0565b610bd7565b34801561048457600080fd5b506102fa610493366004612303565b610c6a565b3480156104a457600080fd5b506102fa6104b3366004612295565b610ca0565b3480156104c457600080fd5b50610312600e5481565b3480156104da57600080fd5b506102c26104e93660046122b0565b610ce4565b3480156104fa57600080fd5b506103126105093660046120a9565b610d5b565b34801561051a57600080fd5b506102fa610de2565b34801561052f57600080fd5b506102fa61053e3660046122b0565b610e16565b34801561054f57600080fd5b50610312600c5481565b34801561056557600080fd5b50610312610e45565b34801561057a57600080fd5b50600a546001600160a01b03166102c2565b34801561059857600080fd5b50610295610e66565b3480156105ad57600080fd5b506102fa6105bc366004612241565b610e75565b3480156105cd57600080fd5b5060115461026b9060ff1681565b3480156105e757600080fd5b5061026b6105f63660046121f3565b610e84565b34801561060757600080fd5b506102fa610616366004612133565b610ed5565b6102fa610629366004612375565b610f0d565b34801561063a57600080fd5b506102fa610649366004612295565b61121a565b34801561065a57600080fd5b506102956106693660046122b0565b611257565b34801561067a57600080fd5b5061026b6106893660046120c4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106c357600080fd5b506102fa6106d23660046120a9565b611332565b3480156106e357600080fd5b506102fa6106f23660046122b0565b6113cd565b34801561070357600080fd5b5060115461026b90610100900460ff1681565b34801561072257600080fd5b5061031260105481565b34801561073857600080fd5b506102fa6107473660046122b0565b6113fc565b60006001600160e01b0319821663780e9d6360e01b148061077157506107718261142b565b92915050565b606060008054610786906125e8565b80601f01602080910402602001604051908101604052809291908181526020018280546107b2906125e8565b80156107ff5780601f106107d4576101008083540402835291602001916107ff565b820191906000526020600020905b8154815290600101906020018083116107e257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108ae82610ce4565b9050806001600160a01b0316836001600160a01b0316141561091c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161087e565b336001600160a01b038216148061093857506109388133610689565b6109aa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161087e565b6109b4838361147b565b505050565b6109c333826114e9565b6109df5760405162461bcd60e51b815260040161087e906124d8565b6109b48383836115dc565b60006109f583610d5b565b8210610a575760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161087e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610aaa5760405162461bcd60e51b815260040161087e906124a3565b600b55565b600a546001600160a01b03163314610ad95760405162461bcd60e51b815260040161087e906124a3565b60405133904780156108fc02916000818181858888f19350505050610afd57600080fd5b565b6109b483838360405180602001604052806000815250610ed5565b600a546001600160a01b03163314610b445760405162461bcd60e51b815260040161087e906124a3565b600c55565b600f8054610b56906125e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b82906125e8565b8015610bcf5780601f10610ba457610100808354040283529160200191610bcf565b820191906000526020600020905b815481529060010190602001808311610bb257829003601f168201915b505050505081565b6000610be260085490565b8210610c455760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161087e565b60088281548110610c5857610c58612694565b90600052602060002001549050919050565b600a546001600160a01b03163314610c945760405162461bcd60e51b815260040161087e906124a3565b6109b4600f8383611f5e565b600a546001600160a01b03163314610cca5760405162461bcd60e51b815260040161087e906124a3565b601180549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806107715760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161087e565b60006001600160a01b038216610dc65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161087e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e0c5760405162461bcd60e51b815260040161087e906124a3565b610afd6000611783565b600a546001600160a01b03163314610e405760405162461bcd60e51b815260040161087e906124a3565b600d55565b601154600090610100900460ff1615610e5f5750600c5490565b50600b5490565b606060018054610786906125e8565b610e803383836117d5565b5050565b6040516bffffffffffffffffffffffff19606084901b1660208201526000908190603401604051602081830303815290604052805190602001209050610ecd83601254836118a4565b949350505050565b610edf33836114e9565b610efb5760405162461bcd60e51b815260040161087e906124d8565b610f07848484846118ba565b50505050565b81610f16610e45565b610f209190612586565b341015610f5f5760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b604482015260640161087e565b60115460ff16610fb15760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74206d696e74206265666f72652070726573616c65000000000000604482015260640161087e565b601154610100900460ff1680610fcc5750610fcc3382610e84565b6110225760405162461bcd60e51b815260206004820152602160248201527f4275796572206e6f742077686974656c697374656420666f722070726573616c6044820152606560f81b606482015260840161087e565b600d5482111561108a5760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820746f60448201526c1ad95b9cc81c195c881b5a5b9d609a1b606482015260840161087e565b6010548211156110dc5760405162461bcd60e51b815260206004820152601a60248201527f4e6f20746f6b656e73206c65667420666f72206d696e74696e67000000000000604482015260640161087e565b601154610100900460ff168061110e5750600e543360009081526013602052604090205461110b90849061255a565b11155b6111805760405162461bcd60e51b815260206004820152603c60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820746f60448201527f6b656e73207065722077686974656c6973746564206164647265737300000000606482015260840161087e565b600061118b60085490565b905060005b838110156111c9576111b733826111a885600161255a565b6111b2919061255a565b6118ed565b806111c181612623565b915050611190565b50601154610100900460ff166111fe5733600090815260136020526040812080548592906111f890849061255a565b90915550505b826010600082825461121091906125a5565b9091555050505050565b600a546001600160a01b031633146112445760405162461bcd60e51b815260040161087e906124a3565b6011805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166112d65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161087e565b60006112e0611907565b90506000815111611300576040518060200160405280600081525061132b565b8061130a84611916565b60405160200161131b9291906123d2565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461135c5760405162461bcd60e51b815260040161087e906124a3565b6001600160a01b0381166113c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087e565b6113ca81611783565b50565b600a546001600160a01b031633146113f75760405162461bcd60e51b815260040161087e906124a3565b601255565b600a546001600160a01b031633146114265760405162461bcd60e51b815260040161087e906124a3565b600e55565b60006001600160e01b031982166380ac58cd60e01b148061145c57506001600160e01b03198216635b5e139f60e01b145b8061077157506301ffc9a760e01b6001600160e01b0319831614610771565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114b082610ce4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161087e565b600061156d83610ce4565b9050806001600160a01b0316846001600160a01b031614806115a85750836001600160a01b031661159d84610809565b6001600160a01b0316145b80610ecd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610ecd565b826001600160a01b03166115ef82610ce4565b6001600160a01b0316146116535760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161087e565b6001600160a01b0382166116b55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161087e565b6116c0838383611a14565b6116cb60008261147b565b6001600160a01b03831660009081526003602052604081208054600192906116f49084906125a5565b90915550506001600160a01b038216600090815260036020526040812080546001929061172290849061255a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118375760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161087e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000826118b18584611acc565b14949350505050565b6118c58484846115dc565b6118d184848484611b40565b610f075760405162461bcd60e51b815260040161087e90612451565b610e80828260405180602001604052806000815250611c4d565b6060600f8054610786906125e8565b60608161193a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611964578061194e81612623565b915061195d9050600a83612572565b915061193e565b60008167ffffffffffffffff81111561197f5761197f6126aa565b6040519080825280601f01601f1916602001820160405280156119a9576020820181803683370190505b5090505b8415610ecd576119be6001836125a5565b91506119cb600a8661263e565b6119d690603061255a565b60f81b8183815181106119eb576119eb612694565b60200101906001600160f81b031916908160001a905350611a0d600a86612572565b94506119ad565b6001600160a01b038316611a6f57611a6a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a92565b816001600160a01b0316836001600160a01b031614611a9257611a928382611c80565b6001600160a01b038216611aa9576109b481611d1d565b826001600160a01b0316826001600160a01b0316146109b4576109b48282611dcc565b600081815b8451811015611b38576000858281518110611aee57611aee612694565b60200260200101519050808311611b145760008381526020829052604090209250611b25565b600081815260208490526040902092505b5080611b3081612623565b915050611ad1565b509392505050565b60006001600160a01b0384163b15611c4257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b84903390899088908890600401612401565b602060405180830381600087803b158015611b9e57600080fd5b505af1925050508015611bce575060408051601f3d908101601f19168201909252611bcb918101906122e6565b60015b611c28573d808015611bfc576040519150601f19603f3d011682016040523d82523d6000602084013e611c01565b606091505b508051611c205760405162461bcd60e51b815260040161087e90612451565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ecd565b506001949350505050565b611c578383611e10565b611c646000848484611b40565b6109b45760405162461bcd60e51b815260040161087e90612451565b60006001611c8d84610d5b565b611c9791906125a5565b600083815260076020526040902054909150808214611cea576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d2f906001906125a5565b60008381526009602052604081205460088054939450909284908110611d5757611d57612694565b906000526020600020015490508060088381548110611d7857611d78612694565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611db057611db061267e565b6001900381819060005260206000200160009055905550505050565b6000611dd783610d5b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e665760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161087e565b6000818152600260205260409020546001600160a01b031615611ecb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161087e565b611ed760008383611a14565b6001600160a01b0382166000908152600360205260408120805460019290611f0090849061255a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f6a906125e8565b90600052602060002090601f016020900481019282611f8c5760008555611fd2565b82601f10611fa55782800160ff19823516178555611fd2565b82800160010185558215611fd2579182015b82811115611fd2578235825591602001919060010190611fb7565b50611fde929150611fe2565b5090565b5b80821115611fde5760008155600101611fe3565b80356001600160a01b038116811461200e57600080fd5b919050565b600082601f83011261202457600080fd5b8135602067ffffffffffffffff821115612040576120406126aa565b8160051b61204f828201612529565b83815282810190868401838801850189101561206a57600080fd5b600093505b8584101561208d57803583526001939093019291840191840161206f565b50979650505050505050565b8035801515811461200e57600080fd5b6000602082840312156120bb57600080fd5b61132b82611ff7565b600080604083850312156120d757600080fd5b6120e083611ff7565b91506120ee60208401611ff7565b90509250929050565b60008060006060848603121561210c57600080fd5b61211584611ff7565b925061212360208501611ff7565b9150604084013590509250925092565b6000806000806080858703121561214957600080fd5b61215285611ff7565b93506020612161818701611ff7565b935060408601359250606086013567ffffffffffffffff8082111561218557600080fd5b818801915088601f83011261219957600080fd5b8135818111156121ab576121ab6126aa565b6121bd601f8201601f19168501612529565b915080825289848285010111156121d357600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561220657600080fd5b61220f83611ff7565b9150602083013567ffffffffffffffff81111561222b57600080fd5b61223785828601612013565b9150509250929050565b6000806040838503121561225457600080fd5b61225d83611ff7565b91506120ee60208401612099565b6000806040838503121561227e57600080fd5b61228783611ff7565b946020939093013593505050565b6000602082840312156122a757600080fd5b61132b82612099565b6000602082840312156122c257600080fd5b5035919050565b6000602082840312156122db57600080fd5b813561132b816126c0565b6000602082840312156122f857600080fd5b815161132b816126c0565b6000806020838503121561231657600080fd5b823567ffffffffffffffff8082111561232e57600080fd5b818501915085601f83011261234257600080fd5b81358181111561235157600080fd5b86602082850101111561236357600080fd5b60209290920196919550909350505050565b6000806040838503121561238857600080fd5b82359150602083013567ffffffffffffffff81111561222b57600080fd5b600081518084526123be8160208601602086016125bc565b601f01601f19169290920160200192915050565b600083516123e48184602088016125bc565b8351908301906123f88183602088016125bc565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612434908301846123a6565b9695505050505050565b60208152600061132b60208301846123a6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612552576125526126aa565b604052919050565b6000821982111561256d5761256d612652565b500190565b60008261258157612581612668565b500490565b60008160001904831182151516156125a0576125a0612652565b500290565b6000828210156125b7576125b7612652565b500390565b60005b838110156125d75781810151838201526020016125bf565b83811115610f075750506000910152565b600181811c908216806125fc57607f821691505b6020821081141561261d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561263757612637612652565b5060010190565b60008261264d5761264d612668565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113ca57600080fdfea2646970667358221220adde036205c786c731245811b55ba40c9bf0d9c4fe6e9494a60b5fd1343cefbb64736f6c63430008070033697066733a2f2f516d574c48564e6e6b77786a677171386d487874723461764b3943464c4d4d5978334b66676b76703668763855582f

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636352211e11610139578063b76a0df4116100b6578063e985e9c51161007a578063e985e9c51461066e578063f2fde38b146106b7578063f5aa406d146106d7578063fdd4b0f0146106f7578063ff45cb9514610716578063ffc22fa81461072c57600080fd5b8063b76a0df4146105db578063b88d4fde146105fb578063ba41b0c61461061b578063c54e73e31461062e578063c87b56dd1461064e57600080fd5b80637ff9b596116100fd5780637ff9b596146105595780638da5cb5b1461056e57806395d89b411461058c578063a22cb465146105a1578063b0220015146105c157600080fd5b80636352211e146104ce57806370a08231146104ee578063715018a61461050e578063762cda3c1461052357806378c5fe371461054357600080fd5b8063386bfc98116101c75780634e99b8001161018b5780634e99b800146104435780634f6ccce71461045857806355f804b3146104785780635aca1bb61461049857806360033400146104b857600080fd5b8063386bfc98146103ab5780633ccfd60b146103c157806342842e0e146103d657806346c4dc27146103f657806348df74241461041657600080fd5b806318160ddd1161020e57806318160ddd1461032057806323b872dd146103355780632b038411146103555780632f745c591461036b578063311df29a1461038b57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806317465471146102fc575b600080fd5b34801561025757600080fd5b5061026b6102663660046122c9565b61074c565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610295610777565b604051610277919061243e565b3480156102ae57600080fd5b506102c26102bd3660046122b0565b610809565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f536600461226b565b6108a3565b005b34801561030857600080fd5b50610312600d5481565b604051908152602001610277565b34801561032c57600080fd5b50600854610312565b34801561034157600080fd5b506102fa6103503660046120f7565b6109b9565b34801561036157600080fd5b50610312600b5481565b34801561037757600080fd5b5061031261038636600461226b565b6109ea565b34801561039757600080fd5b506102fa6103a63660046122b0565b610a80565b3480156103b757600080fd5b5061031260125481565b3480156103cd57600080fd5b506102fa610aaf565b3480156103e257600080fd5b506102fa6103f13660046120f7565b610aff565b34801561040257600080fd5b506102fa6104113660046122b0565b610b1a565b34801561042257600080fd5b506103126104313660046120a9565b60136020526000908152604090205481565b34801561044f57600080fd5b50610295610b49565b34801561046457600080fd5b506103126104733660046122b0565b610bd7565b34801561048457600080fd5b506102fa610493366004612303565b610c6a565b3480156104a457600080fd5b506102fa6104b3366004612295565b610ca0565b3480156104c457600080fd5b50610312600e5481565b3480156104da57600080fd5b506102c26104e93660046122b0565b610ce4565b3480156104fa57600080fd5b506103126105093660046120a9565b610d5b565b34801561051a57600080fd5b506102fa610de2565b34801561052f57600080fd5b506102fa61053e3660046122b0565b610e16565b34801561054f57600080fd5b50610312600c5481565b34801561056557600080fd5b50610312610e45565b34801561057a57600080fd5b50600a546001600160a01b03166102c2565b34801561059857600080fd5b50610295610e66565b3480156105ad57600080fd5b506102fa6105bc366004612241565b610e75565b3480156105cd57600080fd5b5060115461026b9060ff1681565b3480156105e757600080fd5b5061026b6105f63660046121f3565b610e84565b34801561060757600080fd5b506102fa610616366004612133565b610ed5565b6102fa610629366004612375565b610f0d565b34801561063a57600080fd5b506102fa610649366004612295565b61121a565b34801561065a57600080fd5b506102956106693660046122b0565b611257565b34801561067a57600080fd5b5061026b6106893660046120c4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106c357600080fd5b506102fa6106d23660046120a9565b611332565b3480156106e357600080fd5b506102fa6106f23660046122b0565b6113cd565b34801561070357600080fd5b5060115461026b90610100900460ff1681565b34801561072257600080fd5b5061031260105481565b34801561073857600080fd5b506102fa6107473660046122b0565b6113fc565b60006001600160e01b0319821663780e9d6360e01b148061077157506107718261142b565b92915050565b606060008054610786906125e8565b80601f01602080910402602001604051908101604052809291908181526020018280546107b2906125e8565b80156107ff5780601f106107d4576101008083540402835291602001916107ff565b820191906000526020600020905b8154815290600101906020018083116107e257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108ae82610ce4565b9050806001600160a01b0316836001600160a01b0316141561091c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161087e565b336001600160a01b038216148061093857506109388133610689565b6109aa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161087e565b6109b4838361147b565b505050565b6109c333826114e9565b6109df5760405162461bcd60e51b815260040161087e906124d8565b6109b48383836115dc565b60006109f583610d5b565b8210610a575760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161087e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610aaa5760405162461bcd60e51b815260040161087e906124a3565b600b55565b600a546001600160a01b03163314610ad95760405162461bcd60e51b815260040161087e906124a3565b60405133904780156108fc02916000818181858888f19350505050610afd57600080fd5b565b6109b483838360405180602001604052806000815250610ed5565b600a546001600160a01b03163314610b445760405162461bcd60e51b815260040161087e906124a3565b600c55565b600f8054610b56906125e8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b82906125e8565b8015610bcf5780601f10610ba457610100808354040283529160200191610bcf565b820191906000526020600020905b815481529060010190602001808311610bb257829003601f168201915b505050505081565b6000610be260085490565b8210610c455760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161087e565b60088281548110610c5857610c58612694565b90600052602060002001549050919050565b600a546001600160a01b03163314610c945760405162461bcd60e51b815260040161087e906124a3565b6109b4600f8383611f5e565b600a546001600160a01b03163314610cca5760405162461bcd60e51b815260040161087e906124a3565b601180549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806107715760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161087e565b60006001600160a01b038216610dc65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161087e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e0c5760405162461bcd60e51b815260040161087e906124a3565b610afd6000611783565b600a546001600160a01b03163314610e405760405162461bcd60e51b815260040161087e906124a3565b600d55565b601154600090610100900460ff1615610e5f5750600c5490565b50600b5490565b606060018054610786906125e8565b610e803383836117d5565b5050565b6040516bffffffffffffffffffffffff19606084901b1660208201526000908190603401604051602081830303815290604052805190602001209050610ecd83601254836118a4565b949350505050565b610edf33836114e9565b610efb5760405162461bcd60e51b815260040161087e906124d8565b610f07848484846118ba565b50505050565b81610f16610e45565b610f209190612586565b341015610f5f5760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b604482015260640161087e565b60115460ff16610fb15760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74206d696e74206265666f72652070726573616c65000000000000604482015260640161087e565b601154610100900460ff1680610fcc5750610fcc3382610e84565b6110225760405162461bcd60e51b815260206004820152602160248201527f4275796572206e6f742077686974656c697374656420666f722070726573616c6044820152606560f81b606482015260840161087e565b600d5482111561108a5760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820746f60448201526c1ad95b9cc81c195c881b5a5b9d609a1b606482015260840161087e565b6010548211156110dc5760405162461bcd60e51b815260206004820152601a60248201527f4e6f20746f6b656e73206c65667420666f72206d696e74696e67000000000000604482015260640161087e565b601154610100900460ff168061110e5750600e543360009081526013602052604090205461110b90849061255a565b11155b6111805760405162461bcd60e51b815260206004820152603c60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820746f60448201527f6b656e73207065722077686974656c6973746564206164647265737300000000606482015260840161087e565b600061118b60085490565b905060005b838110156111c9576111b733826111a885600161255a565b6111b2919061255a565b6118ed565b806111c181612623565b915050611190565b50601154610100900460ff166111fe5733600090815260136020526040812080548592906111f890849061255a565b90915550505b826010600082825461121091906125a5565b9091555050505050565b600a546001600160a01b031633146112445760405162461bcd60e51b815260040161087e906124a3565b6011805460ff1916911515919091179055565b6000818152600260205260409020546060906001600160a01b03166112d65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161087e565b60006112e0611907565b90506000815111611300576040518060200160405280600081525061132b565b8061130a84611916565b60405160200161131b9291906123d2565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461135c5760405162461bcd60e51b815260040161087e906124a3565b6001600160a01b0381166113c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087e565b6113ca81611783565b50565b600a546001600160a01b031633146113f75760405162461bcd60e51b815260040161087e906124a3565b601255565b600a546001600160a01b031633146114265760405162461bcd60e51b815260040161087e906124a3565b600e55565b60006001600160e01b031982166380ac58cd60e01b148061145c57506001600160e01b03198216635b5e139f60e01b145b8061077157506301ffc9a760e01b6001600160e01b0319831614610771565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114b082610ce4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161087e565b600061156d83610ce4565b9050806001600160a01b0316846001600160a01b031614806115a85750836001600160a01b031661159d84610809565b6001600160a01b0316145b80610ecd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610ecd565b826001600160a01b03166115ef82610ce4565b6001600160a01b0316146116535760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161087e565b6001600160a01b0382166116b55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161087e565b6116c0838383611a14565b6116cb60008261147b565b6001600160a01b03831660009081526003602052604081208054600192906116f49084906125a5565b90915550506001600160a01b038216600090815260036020526040812080546001929061172290849061255a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118375760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161087e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000826118b18584611acc565b14949350505050565b6118c58484846115dc565b6118d184848484611b40565b610f075760405162461bcd60e51b815260040161087e90612451565b610e80828260405180602001604052806000815250611c4d565b6060600f8054610786906125e8565b60608161193a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611964578061194e81612623565b915061195d9050600a83612572565b915061193e565b60008167ffffffffffffffff81111561197f5761197f6126aa565b6040519080825280601f01601f1916602001820160405280156119a9576020820181803683370190505b5090505b8415610ecd576119be6001836125a5565b91506119cb600a8661263e565b6119d690603061255a565b60f81b8183815181106119eb576119eb612694565b60200101906001600160f81b031916908160001a905350611a0d600a86612572565b94506119ad565b6001600160a01b038316611a6f57611a6a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a92565b816001600160a01b0316836001600160a01b031614611a9257611a928382611c80565b6001600160a01b038216611aa9576109b481611d1d565b826001600160a01b0316826001600160a01b0316146109b4576109b48282611dcc565b600081815b8451811015611b38576000858281518110611aee57611aee612694565b60200260200101519050808311611b145760008381526020829052604090209250611b25565b600081815260208490526040902092505b5080611b3081612623565b915050611ad1565b509392505050565b60006001600160a01b0384163b15611c4257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b84903390899088908890600401612401565b602060405180830381600087803b158015611b9e57600080fd5b505af1925050508015611bce575060408051601f3d908101601f19168201909252611bcb918101906122e6565b60015b611c28573d808015611bfc576040519150601f19603f3d011682016040523d82523d6000602084013e611c01565b606091505b508051611c205760405162461bcd60e51b815260040161087e90612451565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610ecd565b506001949350505050565b611c578383611e10565b611c646000848484611b40565b6109b45760405162461bcd60e51b815260040161087e90612451565b60006001611c8d84610d5b565b611c9791906125a5565b600083815260076020526040902054909150808214611cea576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d2f906001906125a5565b60008381526009602052604081205460088054939450909284908110611d5757611d57612694565b906000526020600020015490508060088381548110611d7857611d78612694565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611db057611db061267e565b6001900381819060005260206000200160009055905550505050565b6000611dd783610d5b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e665760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161087e565b6000818152600260205260409020546001600160a01b031615611ecb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161087e565b611ed760008383611a14565b6001600160a01b0382166000908152600360205260408120805460019290611f0090849061255a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f6a906125e8565b90600052602060002090601f016020900481019282611f8c5760008555611fd2565b82601f10611fa55782800160ff19823516178555611fd2565b82800160010185558215611fd2579182015b82811115611fd2578235825591602001919060010190611fb7565b50611fde929150611fe2565b5090565b5b80821115611fde5760008155600101611fe3565b80356001600160a01b038116811461200e57600080fd5b919050565b600082601f83011261202457600080fd5b8135602067ffffffffffffffff821115612040576120406126aa565b8160051b61204f828201612529565b83815282810190868401838801850189101561206a57600080fd5b600093505b8584101561208d57803583526001939093019291840191840161206f565b50979650505050505050565b8035801515811461200e57600080fd5b6000602082840312156120bb57600080fd5b61132b82611ff7565b600080604083850312156120d757600080fd5b6120e083611ff7565b91506120ee60208401611ff7565b90509250929050565b60008060006060848603121561210c57600080fd5b61211584611ff7565b925061212360208501611ff7565b9150604084013590509250925092565b6000806000806080858703121561214957600080fd5b61215285611ff7565b93506020612161818701611ff7565b935060408601359250606086013567ffffffffffffffff8082111561218557600080fd5b818801915088601f83011261219957600080fd5b8135818111156121ab576121ab6126aa565b6121bd601f8201601f19168501612529565b915080825289848285010111156121d357600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561220657600080fd5b61220f83611ff7565b9150602083013567ffffffffffffffff81111561222b57600080fd5b61223785828601612013565b9150509250929050565b6000806040838503121561225457600080fd5b61225d83611ff7565b91506120ee60208401612099565b6000806040838503121561227e57600080fd5b61228783611ff7565b946020939093013593505050565b6000602082840312156122a757600080fd5b61132b82612099565b6000602082840312156122c257600080fd5b5035919050565b6000602082840312156122db57600080fd5b813561132b816126c0565b6000602082840312156122f857600080fd5b815161132b816126c0565b6000806020838503121561231657600080fd5b823567ffffffffffffffff8082111561232e57600080fd5b818501915085601f83011261234257600080fd5b81358181111561235157600080fd5b86602082850101111561236357600080fd5b60209290920196919550909350505050565b6000806040838503121561238857600080fd5b82359150602083013567ffffffffffffffff81111561222b57600080fd5b600081518084526123be8160208601602086016125bc565b601f01601f19169290920160200192915050565b600083516123e48184602088016125bc565b8351908301906123f88183602088016125bc565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612434908301846123a6565b9695505050505050565b60208152600061132b60208301846123a6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612552576125526126aa565b604052919050565b6000821982111561256d5761256d612652565b500190565b60008261258157612581612668565b500490565b60008160001904831182151516156125a0576125a0612652565b500290565b6000828210156125b7576125b7612652565b500390565b60005b838110156125d75781810151838201526020016125bf565b83811115610f075750506000910152565b600181811c908216806125fc57607f821691505b6020821081141561261d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561263757612637612652565b5060010190565b60008261264d5761264d612668565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113ca57600080fdfea2646970667358221220adde036205c786c731245811b55ba40c9bf0d9c4fe6e9494a60b5fd1343cefbb64736f6c63430008070033

Deployed Bytecode Sourcemap

47962:3388:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41736:224;;;;;;;;;;-1:-1:-1;41736:224:0;;;;;:::i;:::-;;:::i;:::-;;;7718:14:1;;7711:22;7693:41;;7681:2;7666:18;41736:224:0;;;;;;;;28556:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30115:221::-;;;;;;;;;;-1:-1:-1;30115:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7016:32:1;;;6998:51;;6986:2;6971:18;30115:221:0;6852:203:1;29638:411:0;;;;;;;;;;-1:-1:-1;29638:411:0;;;;;:::i;:::-;;:::i;:::-;;48163:35;;;;;;;;;;;;;;;;;;;7891:25:1;;;7879:2;7864:18;48163:35:0;7745:177:1;42376:113:0;;;;;;;;;;-1:-1:-1;42464:10:0;:17;42376:113;;30865:339;;;;;;;;;;-1:-1:-1;30865:339:0;;;;;:::i;:::-;;:::i;48054:45::-;;;;;;;;;;;;;;;;42044:256;;;;;;;;;;-1:-1:-1;42044:256:0;;;;;:::i;:::-;;:::i;49393:102::-;;;;;;;;;;-1:-1:-1;49393:102:0;;;;;:::i;:::-;;:::i;48501:97::-;;;;;;;;;;;;;;;;51233:114;;;;;;;;;;;;;:::i;31275:185::-;;;;;;;;;;-1:-1:-1;31275:185:0;;;;;:::i;:::-;;:::i;49503:108::-;;;;;;;;;;-1:-1:-1;49503:108:0;;;;;:::i;:::-;;:::i;48605:60::-;;;;;;;;;;-1:-1:-1;48605:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;48263:85;;;;;;;;;;;;;:::i;42566:233::-;;;;;;;;;;-1:-1:-1;42566:233:0;;;;;:::i;:::-;;:::i;51128:97::-;;;;;;;;;;-1:-1:-1;51128:97:0;;;;;:::i;:::-;;:::i;49101:::-;;;;;;;;;;-1:-1:-1;49101:97:0;;;;;:::i;:::-;;:::i;48205:49::-;;;;;;;;;;;;;;;;28250:239;;;;;;;;;;-1:-1:-1;28250:239:0;;;;;:::i;:::-;;:::i;27980:208::-;;;;;;;;;;-1:-1:-1;27980:208:0;;;;;:::i;:::-;;:::i;7152:103::-;;;;;;;;;;;;;:::i;48754:102::-;;;;;;;;;;-1:-1:-1;48754:102:0;;;;;:::i;:::-;;:::i;48106:48::-;;;;;;;;;;;;;;;;49210:175;;;;;;;;;;;;;:::i;6501:87::-;;;;;;;;;;-1:-1:-1;6574:6:0;;-1:-1:-1;;;;;6574:6:0;6501:87;;28725:104;;;;;;;;;;;;;:::i;30408:155::-;;;;;;;;;;-1:-1:-1;30408:155:0;;;;;:::i;:::-;;:::i;48404:37::-;;;;;;;;;;-1:-1:-1;48404:37:0;;;;;;;;49743:241;;;;;;;;;;-1:-1:-1;49743:241:0;;;;;:::i;:::-;;:::i;31531:328::-;;;;;;;;;;-1:-1:-1;31531:328:0;;;;;:::i;:::-;;:::i;49992:1004::-;;;;;;:::i;:::-;;:::i;49002:91::-;;;;;;;;;;-1:-1:-1;49002:91:0;;;;;:::i;:::-;;:::i;28900:334::-;;;;;;;;;;-1:-1:-1;28900:334:0;;;;;:::i;:::-;;:::i;30634:164::-;;;;;;;;;;-1:-1:-1;30634:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30755:25:0;;;30731:4;30755:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30634:164;7410:201;;;;;;;;;;-1:-1:-1;7410:201:0;;;;;:::i;:::-;;:::i;49619:116::-;;;;;;;;;;-1:-1:-1;49619:116:0;;;;;:::i;:::-;;:::i;48448:40::-;;;;;;;;;;-1:-1:-1;48448:40:0;;;;;;;;;;;48357:38;;;;;;;;;;;;;;;;48864:130;;;;;;;;;;-1:-1:-1;48864:130:0;;;;;:::i;:::-;;:::i;41736:224::-;41838:4;-1:-1:-1;;;;;;41862:50:0;;-1:-1:-1;;;41862:50:0;;:90;;;41916:36;41940:11;41916:23;:36::i;:::-;41855:97;41736:224;-1:-1:-1;;41736:224:0:o;28556:100::-;28610:13;28643:5;28636:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28556:100;:::o;30115:221::-;30191:7;33458:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33458:16:0;30211:73;;;;-1:-1:-1;;;30211:73:0;;14646:2:1;30211:73:0;;;14628:21:1;14685:2;14665:18;;;14658:30;14724:34;14704:18;;;14697:62;-1:-1:-1;;;14775:18:1;;;14768:42;14827:19;;30211:73:0;;;;;;;;;-1:-1:-1;30304:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30304:24:0;;30115:221::o;29638:411::-;29719:13;29735:23;29750:7;29735:14;:23::i;:::-;29719:39;;29783:5;-1:-1:-1;;;;;29777:11:0;:2;-1:-1:-1;;;;;29777:11:0;;;29769:57;;;;-1:-1:-1;;;29769:57:0;;15836:2:1;29769:57:0;;;15818:21:1;15875:2;15855:18;;;15848:30;15914:34;15894:18;;;15887:62;-1:-1:-1;;;15965:18:1;;;15958:31;16006:19;;29769:57:0;15634:397:1;29769:57:0;5305:10;-1:-1:-1;;;;;29861:21:0;;;;:62;;-1:-1:-1;29886:37:0;29903:5;5305:10;30634:164;:::i;29886:37::-;29839:168;;;;-1:-1:-1;;;29839:168:0;;13039:2:1;29839:168:0;;;13021:21:1;13078:2;13058:18;;;13051:30;13117:34;13097:18;;;13090:62;13188:26;13168:18;;;13161:54;13232:19;;29839:168:0;12837:420:1;29839:168:0;30020:21;30029:2;30033:7;30020:8;:21::i;:::-;29708:341;29638:411;;:::o;30865:339::-;31060:41;5305:10;31093:7;31060:18;:41::i;:::-;31052:103;;;;-1:-1:-1;;;31052:103:0;;;;;;;:::i;:::-;31168:28;31178:4;31184:2;31188:7;31168:9;:28::i;42044:256::-;42141:7;42177:23;42194:5;42177:16;:23::i;:::-;42169:5;:31;42161:87;;;;-1:-1:-1;;;42161:87:0;;9122:2:1;42161:87:0;;;9104:21:1;9161:2;9141:18;;;9134:30;9200:34;9180:18;;;9173:62;-1:-1:-1;;;9251:18:1;;;9244:41;9302:19;;42161:87:0;8920:407:1;42161:87:0;-1:-1:-1;;;;;;42266:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42044:256::o;49393:102::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;49464:17:::1;:23:::0;49393:102::o;51233:114::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;51291:47:::1;::::0;51299:10:::1;::::0;51316:21:::1;51291:47:::0;::::1;;;::::0;::::1;::::0;;;51316:21;51299:10;51291:47;::::1;;;;;;51283:56;;;::::0;::::1;;51233:114::o:0;31275:185::-;31413:39;31430:4;31436:2;31440:7;31413:39;;;;;;;;;;;;:16;:39::i;49503:108::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;49577:20:::1;:26:::0;49503:108::o;48263:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42566:233::-;42641:7;42677:30;42464:10;:17;;42376:113;42677:30;42669:5;:38;42661:95;;;;-1:-1:-1;;;42661:95:0;;16656:2:1;42661:95:0;;;16638:21:1;16695:2;16675:18;;;16668:30;16734:34;16714:18;;;16707:62;-1:-1:-1;;;16785:18:1;;;16778:42;16837:19;;42661:95:0;16454:408:1;42661:95:0;42774:10;42785:5;42774:17;;;;;;;;:::i;:::-;;;;;;;;;42767:24;;42566:233;;;:::o;51128:97::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;51199:18:::1;:12;51214:3:::0;;51199:18:::1;:::i;49101:97::-:0;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;49164:20:::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;49164:26:0;;::::1;::::0;;;::::1;::::0;;49101:97::o;28250:239::-;28322:7;28358:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28358:16:0;28393:19;28385:73;;;;-1:-1:-1;;;28385:73:0;;13875:2:1;28385:73:0;;;13857:21:1;13914:2;13894:18;;;13887:30;13953:34;13933:18;;;13926:62;-1:-1:-1;;;14004:18:1;;;13997:39;14053:19;;28385:73:0;13673:405:1;27980:208:0;28052:7;-1:-1:-1;;;;;28080:19:0;;28072:74;;;;-1:-1:-1;;;28072:74:0;;13464:2:1;28072:74:0;;;13446:21:1;13503:2;13483:18;;;13476:30;13542:34;13522:18;;;13515:62;-1:-1:-1;;;13593:18:1;;;13586:40;13643:19;;28072:74:0;13262:406:1;28072:74:0;-1:-1:-1;;;;;;28164:16:0;;;;;:9;:16;;;;;;;27980:208::o;7152:103::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;7217:30:::1;7244:1;7217:18;:30::i;48754:102::-:0;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;48826:16:::1;:22:::0;48754:102::o;49210:175::-;49275:20;;49253:7;;49275:20;;;;;49271:74;;;-1:-1:-1;49315:20:0;;;49210:175::o;49271:74::-;-1:-1:-1;49360:17:0;;;49210:175::o;28725:104::-;28781:13;28814:7;28807:14;;;;;:::i;30408:155::-;30503:52;5305:10;30536:8;30546;30503:18;:52::i;:::-;30408:155;;:::o;49743:241::-;49886:25;;-1:-1:-1;;6292:2:1;6288:15;;;6284:53;49886:25:0;;;6272:66:1;49839:4:0;;;;6354:12:1;;49886:25:0;;;;;;;;;;;;49876:36;;;;;;49861:51;;49930:46;49949:5;49956:13;;49971:4;49930:18;:46::i;:::-;49923:53;49743:241;-1:-1:-1;;;;49743:241:0:o;31531:328::-;31706:41;5305:10;31739:7;31706:18;:41::i;:::-;31698:103;;;;-1:-1:-1;;;31698:103:0;;;;;;;:::i;:::-;31812:39;31826:4;31832:2;31836:7;31845:5;31812:13;:39::i;:::-;31531:328;;;;:::o;49992:1004::-;50110:6;50095:12;:10;:12::i;:::-;:21;;;;:::i;:::-;50082:9;:34;;50074:60;;;;-1:-1:-1;;;50074:60:0;;11123:2:1;50074:60:0;;;11105:21:1;11162:2;11142:18;;;11135:30;-1:-1:-1;;;11181:18:1;;;11174:43;11234:18;;50074:60:0;10921:337:1;50074:60:0;50153:17;;;;50145:56;;;;-1:-1:-1;;;50145:56:0;;8353:2:1;50145:56:0;;;8335:21:1;8392:2;8372:18;;;8365:30;8431:28;8411:18;;;8404:56;8477:18;;50145:56:0;8151:350:1;50145:56:0;50220:20;;;;;;;;:49;;;50244:25;50251:10;50263:5;50244:6;:25::i;:::-;50212:95;;;;-1:-1:-1;;;50212:95:0;;12637:2:1;50212:95:0;;;12619:21:1;12676:2;12656:18;;;12649:30;12715:34;12695:18;;;12688:62;-1:-1:-1;;;12766:18:1;;;12759:31;12807:19;;50212:95:0;12435:397:1;50212:95:0;50336:16;;50326:6;:26;;50318:84;;;;-1:-1:-1;;;50318:84:0;;8708:2:1;50318:84:0;;;8690:21:1;8747:2;8727:18;;;8720:30;8786:34;8766:18;;;8759:62;-1:-1:-1;;;8837:18:1;;;8830:43;8890:19;;50318:84:0;8506:409:1;50318:84:0;50431:17;;50421:6;:27;;50413:66;;;;-1:-1:-1;;;50413:66:0;;17069:2:1;50413:66:0;;;17051:21:1;17108:2;17088:18;;;17081:30;17147:28;17127:18;;;17120:56;17193:18;;50413:66:0;16867:350:1;50413:66:0;50498:20;;;;;;;;:106;;-1:-1:-1;50573:30:0;;50549:10;50523:37;;;;:25;:37;;;;;;:46;;50563:6;;50523:46;:::i;:::-;:80;;50498:106;50490:192;;;;-1:-1:-1;;;50490:192:0;;17424:2:1;50490:192:0;;;17406:21:1;17463:2;17443:18;;;17436:30;17502:34;17482:18;;;17475:62;17573:30;17553:18;;;17546:58;17621:19;;50490:192:0;17222:424:1;50490:192:0;50695:14;50712:13;42464:10;:17;;42376:113;50712:13;50695:30;;50740:9;50736:100;50759:6;50755:1;:10;50736:100;;;50787:37;50797:10;50822:1;50809:10;50813:6;50809:1;:10;:::i;:::-;:14;;;;:::i;:::-;50787:9;:37::i;:::-;50767:3;;;;:::i;:::-;;;;50736:100;;;-1:-1:-1;50853:20:0;;;;;;;50848:101;;50916:10;50890:37;;;;:25;:37;;;;;:47;;50931:6;;50890:37;:47;;50931:6;;50890:47;:::i;:::-;;;;-1:-1:-1;;50848:101:0;50982:6;50961:17;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;49992:1004:0:o;49002:91::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;49062:17:::1;:23:::0;;-1:-1:-1;;49062:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49002:91::o;28900:334::-;33434:4;33458:16;;;:7;:16;;;;;;28973:13;;-1:-1:-1;;;;;33458:16:0;28999:76;;;;-1:-1:-1;;;28999:76:0;;15420:2:1;28999:76:0;;;15402:21:1;15459:2;15439:18;;;15432:30;15498:34;15478:18;;;15471:62;-1:-1:-1;;;15549:18:1;;;15542:45;15604:19;;28999:76:0;15218:411:1;28999:76:0;29088:21;29112:10;:8;:10::i;:::-;29088:34;;29164:1;29146:7;29140:21;:25;:86;;;;;;;;;;;;;;;;;29192:7;29201:18;:7;:16;:18::i;:::-;29175:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29140:86;29133:93;28900:334;-1:-1:-1;;;28900:334:0:o;7410:201::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7499:22:0;::::1;7491:73;;;::::0;-1:-1:-1;;;7491:73:0;;9953:2:1;7491:73:0::1;::::0;::::1;9935:21:1::0;9992:2;9972:18;;;9965:30;10031:34;10011:18;;;10004:62;-1:-1:-1;;;10082:18:1;;;10075:36;10128:19;;7491:73:0::1;9751:402:1::0;7491:73:0::1;7575:28;7594:8;7575:18;:28::i;:::-;7410:201:::0;:::o;49619:116::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;49697:13:::1;:30:::0;49619:116::o;48864:130::-;6574:6;;-1:-1:-1;;;;;6574:6:0;5305:10;6721:23;6713:68;;;;-1:-1:-1;;;6713:68:0;;;;;;;:::i;:::-;48950:30:::1;:36:::0;48864:130::o;27611:305::-;27713:4;-1:-1:-1;;;;;;27750:40:0;;-1:-1:-1;;;27750:40:0;;:105;;-1:-1:-1;;;;;;;27807:48:0;;-1:-1:-1;;;27807:48:0;27750:105;:158;;;-1:-1:-1;;;;;;;;;;19394:40:0;;;27872:36;19285:157;37515:174;37590:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37590:29:0;-1:-1:-1;;;;;37590:29:0;;;;;;;;:24;;37644:23;37590:24;37644:14;:23::i;:::-;-1:-1:-1;;;;;37635:46:0;;;;;;;;;;;37515:174;;:::o;33663:348::-;33756:4;33458:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33458:16:0;33773:73;;;;-1:-1:-1;;;33773:73:0;;12224:2:1;33773:73:0;;;12206:21:1;12263:2;12243:18;;;12236:30;12302:34;12282:18;;;12275:62;-1:-1:-1;;;12353:18:1;;;12346:42;12405:19;;33773:73:0;12022:408:1;33773:73:0;33857:13;33873:23;33888:7;33873:14;:23::i;:::-;33857:39;;33926:5;-1:-1:-1;;;;;33915:16:0;:7;-1:-1:-1;;;;;33915:16:0;;:51;;;;33959:7;-1:-1:-1;;;;;33935:31:0;:20;33947:7;33935:11;:20::i;:::-;-1:-1:-1;;;;;33935:31:0;;33915:51;:87;;;-1:-1:-1;;;;;;30755:25:0;;;30731:4;30755:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33970:32;30634:164;36772:625;36931:4;-1:-1:-1;;;;;36904:31:0;:23;36919:7;36904:14;:23::i;:::-;-1:-1:-1;;;;;36904:31:0;;36896:81;;;;-1:-1:-1;;;36896:81:0;;10360:2:1;36896:81:0;;;10342:21:1;10399:2;10379:18;;;10372:30;10438:34;10418:18;;;10411:62;-1:-1:-1;;;10489:18:1;;;10482:35;10534:19;;36896:81:0;10158:401:1;36896:81:0;-1:-1:-1;;;;;36996:16:0;;36988:65;;;;-1:-1:-1;;;36988:65:0;;11465:2:1;36988:65:0;;;11447:21:1;11504:2;11484:18;;;11477:30;11543:34;11523:18;;;11516:62;-1:-1:-1;;;11594:18:1;;;11587:34;11638:19;;36988:65:0;11263:400:1;36988:65:0;37066:39;37087:4;37093:2;37097:7;37066:20;:39::i;:::-;37170:29;37187:1;37191:7;37170:8;:29::i;:::-;-1:-1:-1;;;;;37212:15:0;;;;;;:9;:15;;;;;:20;;37231:1;;37212:15;:20;;37231:1;;37212:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37243:13:0;;;;;;:9;:13;;;;;:18;;37260:1;;37243:13;:18;;37260:1;;37243:18;:::i;:::-;;;;-1:-1:-1;;37272:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37272:21:0;-1:-1:-1;;;;;37272:21:0;;;;;;;;;37311:27;;37272:16;;37311:27;;;;;;;29708:341;29638:411;;:::o;7771:191::-;7864:6;;;-1:-1:-1;;;;;7881:17:0;;;-1:-1:-1;;;;;;7881:17:0;;;;;;;7914:40;;7864:6;;;7881:17;7864:6;;7914:40;;7845:16;;7914:40;7834:128;7771:191;:::o;37831:315::-;37986:8;-1:-1:-1;;;;;37977:17:0;:5;-1:-1:-1;;;;;37977:17:0;;;37969:55;;;;-1:-1:-1;;;37969:55:0;;11870:2:1;37969:55:0;;;11852:21:1;11909:2;11889:18;;;11882:30;11948:27;11928:18;;;11921:55;11993:18;;37969:55:0;11668:349:1;37969:55:0;-1:-1:-1;;;;;38035:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38035:46:0;;;;;;;;;;38097:41;;7693::1;;;38097::0;;7666:18:1;38097:41:0;;;;;;;37831:315;;;:::o;956:190::-;1081:4;1134;1105:25;1118:5;1125:4;1105:12;:25::i;:::-;:33;;956:190;-1:-1:-1;;;;956:190:0:o;32741:315::-;32898:28;32908:4;32914:2;32918:7;32898:9;:28::i;:::-;32945:48;32968:4;32974:2;32978:7;32987:5;32945:22;:48::i;:::-;32937:111;;;;-1:-1:-1;;;32937:111:0;;;;;;;:::i;34353:110::-;34429:26;34439:2;34443:7;34429:26;;;;;;;;;;;;:9;:26::i;51004:113::-;51064:13;51097:12;51090:19;;;;;:::i;2787:723::-;2843:13;3064:10;3060:53;;-1:-1:-1;;3091:10:0;;;;;;;;;;;;-1:-1:-1;;;3091:10:0;;;;;2787:723::o;3060:53::-;3138:5;3123:12;3179:78;3186:9;;3179:78;;3212:8;;;;:::i;:::-;;-1:-1:-1;3235:10:0;;-1:-1:-1;3243:2:0;3235:10;;:::i;:::-;;;3179:78;;;3267:19;3299:6;3289:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3289:17:0;;3267:39;;3317:154;3324:10;;3317:154;;3351:11;3361:1;3351:11;;:::i;:::-;;-1:-1:-1;3420:10:0;3428:2;3420:5;:10;:::i;:::-;3407:24;;:2;:24;:::i;:::-;3394:39;;3377:6;3384;3377:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3377:56:0;;;;;;;;-1:-1:-1;3448:11:0;3457:2;3448:11;;:::i;:::-;;;3317:154;;43412:589;-1:-1:-1;;;;;43618:18:0;;43614:187;;43653:40;43685:7;44828:10;:17;;44801:24;;;;:15;:24;;;;;:44;;;44856:24;;;;;;;;;;;;44724:164;43653:40;43614:187;;;43723:2;-1:-1:-1;;;;;43715:10:0;:4;-1:-1:-1;;;;;43715:10:0;;43711:90;;43742:47;43775:4;43781:7;43742:32;:47::i;:::-;-1:-1:-1;;;;;43815:16:0;;43811:183;;43848:45;43885:7;43848:36;:45::i;43811:183::-;43921:4;-1:-1:-1;;;;;43915:10:0;:2;-1:-1:-1;;;;;43915:10:0;;43911:83;;43942:40;43970:2;43974:7;43942:27;:40::i;1508:675::-;1591:7;1634:4;1591:7;1649:497;1673:5;:12;1669:1;:16;1649:497;;;1707:20;1730:5;1736:1;1730:8;;;;;;;;:::i;:::-;;;;;;;1707:31;;1773:12;1757;:28;1753:382;;2259:13;2309:15;;;2345:4;2338:15;;;2392:4;2376:21;;1885:57;;1753:382;;;2259:13;2309:15;;;2345:4;2338:15;;;2392:4;2376:21;;2062:57;;1753:382;-1:-1:-1;1687:3:0;;;;:::i;:::-;;;;1649:497;;;-1:-1:-1;2163:12:0;1508:675;-1:-1:-1;;;1508:675:0:o;38711:799::-;38866:4;-1:-1:-1;;;;;38887:13:0;;9497:19;:23;38883:620;;38923:72;;-1:-1:-1;;;38923:72:0;;-1:-1:-1;;;;;38923:36:0;;;;;:72;;5305:10;;38974:4;;38980:7;;38989:5;;38923:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38923:72:0;;;;;;;;-1:-1:-1;;38923:72:0;;;;;;;;;;;;:::i;:::-;;;38919:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39165:13:0;;39161:272;;39208:60;;-1:-1:-1;;;39208:60:0;;;;;;;:::i;39161:272::-;39383:6;39377:13;39368:6;39364:2;39360:15;39353:38;38919:529;-1:-1:-1;;;;;;39046:51:0;-1:-1:-1;;;39046:51:0;;-1:-1:-1;39039:58:0;;38883:620;-1:-1:-1;39487:4:0;38711:799;;;;;;:::o;34690:321::-;34820:18;34826:2;34830:7;34820:5;:18::i;:::-;34871:54;34902:1;34906:2;34910:7;34919:5;34871:22;:54::i;:::-;34849:154;;;;-1:-1:-1;;;34849:154:0;;;;;;;:::i;45515:988::-;45781:22;45831:1;45806:22;45823:4;45806:16;:22::i;:::-;:26;;;;:::i;:::-;45843:18;45864:26;;;:17;:26;;;;;;45781:51;;-1:-1:-1;45997:28:0;;;45993:328;;-1:-1:-1;;;;;46064:18:0;;46042:19;46064:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46115:30;;;;;;:44;;;46232:30;;:17;:30;;;;;:43;;;45993:328;-1:-1:-1;46417:26:0;;;;:17;:26;;;;;;;;46410:33;;;-1:-1:-1;;;;;46461:18:0;;;;;:12;:18;;;;;:34;;;;;;;46454:41;45515:988::o;46798:1079::-;47076:10;:17;47051:22;;47076:21;;47096:1;;47076:21;:::i;:::-;47108:18;47129:24;;;:15;:24;;;;;;47502:10;:26;;47051:46;;-1:-1:-1;47129:24:0;;47051:46;;47502:26;;;;;;:::i;:::-;;;;;;;;;47480:48;;47566:11;47541:10;47552;47541:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47646:28;;;:15;:28;;;;;;;:41;;;47818:24;;;;;47811:31;47853:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46869:1008;;;46798:1079;:::o;44302:221::-;44387:14;44404:20;44421:2;44404:16;:20::i;:::-;-1:-1:-1;;;;;44435:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44480:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44302:221:0:o;35347:439::-;-1:-1:-1;;;;;35427:16:0;;35419:61;;;;-1:-1:-1;;;35419:61:0;;14285:2:1;35419:61:0;;;14267:21:1;;;14304:18;;;14297:30;14363:34;14343:18;;;14336:62;14415:18;;35419:61:0;14083:356:1;35419:61:0;33434:4;33458:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33458:16:0;:30;35491:58;;;;-1:-1:-1;;;35491:58:0;;10766:2:1;35491:58:0;;;10748:21:1;10805:2;10785:18;;;10778:30;10844;10824:18;;;10817:58;10892:18;;35491:58:0;10564:352:1;35491:58:0;35562:45;35591:1;35595:2;35599:7;35562:20;:45::i;:::-;-1:-1:-1;;;;;35620:13:0;;;;;;:9;:13;;;;;:18;;35637:1;;35620:13;:18;;35637:1;;35620:18;:::i;:::-;;;;-1:-1:-1;;35649:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35649:21:0;-1:-1:-1;;;;;35649:21:0;;;;;;;;35688:33;;35649:16;;;35688:33;;35649:16;;35688:33;30408:155;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:723::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;402:18;398:2;395:26;392:52;;;424:18;;:::i;:::-;470:2;467:1;463:10;493:28;517:2;513;509:11;493:28;:::i;:::-;555:15;;;586:12;;;;618:15;;;652;;;648:24;;645:33;-1:-1:-1;642:53:1;;;691:1;688;681:12;642:53;713:1;704:10;;723:163;737:2;734:1;731:9;723:163;;;794:17;;782:30;;755:1;748:9;;;;;832:12;;;;864;;723:163;;;-1:-1:-1;904:5:1;192:723;-1:-1:-1;;;;;;;192:723:1:o;920:160::-;985:20;;1041:13;;1034:21;1024:32;;1014:60;;1070:1;1067;1060:12;1085:186;1144:6;1197:2;1185:9;1176:7;1172:23;1168:32;1165:52;;;1213:1;1210;1203:12;1165:52;1236:29;1255:9;1236:29;:::i;1276:260::-;1344:6;1352;1405:2;1393:9;1384:7;1380:23;1376:32;1373:52;;;1421:1;1418;1411:12;1373:52;1444:29;1463:9;1444:29;:::i;:::-;1434:39;;1492:38;1526:2;1515:9;1511:18;1492:38;:::i;:::-;1482:48;;1276:260;;;;;:::o;1541:328::-;1618:6;1626;1634;1687:2;1675:9;1666:7;1662:23;1658:32;1655:52;;;1703:1;1700;1693:12;1655:52;1726:29;1745:9;1726:29;:::i;:::-;1716:39;;1774:38;1808:2;1797:9;1793:18;1774:38;:::i;:::-;1764:48;;1859:2;1848:9;1844:18;1831:32;1821:42;;1541:328;;;;;:::o;1874:980::-;1969:6;1977;1985;1993;2046:3;2034:9;2025:7;2021:23;2017:33;2014:53;;;2063:1;2060;2053:12;2014:53;2086:29;2105:9;2086:29;:::i;:::-;2076:39;;2134:2;2155:38;2189:2;2178:9;2174:18;2155:38;:::i;:::-;2145:48;;2240:2;2229:9;2225:18;2212:32;2202:42;;2295:2;2284:9;2280:18;2267:32;2318:18;2359:2;2351:6;2348:14;2345:34;;;2375:1;2372;2365:12;2345:34;2413:6;2402:9;2398:22;2388:32;;2458:7;2451:4;2447:2;2443:13;2439:27;2429:55;;2480:1;2477;2470:12;2429:55;2516:2;2503:16;2538:2;2534;2531:10;2528:36;;;2544:18;;:::i;:::-;2586:53;2629:2;2610:13;;-1:-1:-1;;2606:27:1;2602:36;;2586:53;:::i;:::-;2573:66;;2662:2;2655:5;2648:17;2702:7;2697:2;2692;2688;2684:11;2680:20;2677:33;2674:53;;;2723:1;2720;2713:12;2674:53;2778:2;2773;2769;2765:11;2760:2;2753:5;2749:14;2736:45;2822:1;2817:2;2812;2805:5;2801:14;2797:23;2790:34;;2843:5;2833:15;;;;;1874:980;;;;;;;:::o;2859:422::-;2952:6;2960;3013:2;3001:9;2992:7;2988:23;2984:32;2981:52;;;3029:1;3026;3019:12;2981:52;3052:29;3071:9;3052:29;:::i;:::-;3042:39;;3132:2;3121:9;3117:18;3104:32;3159:18;3151:6;3148:30;3145:50;;;3191:1;3188;3181:12;3145:50;3214:61;3267:7;3258:6;3247:9;3243:22;3214:61;:::i;:::-;3204:71;;;2859:422;;;;;:::o;3286:254::-;3351:6;3359;3412:2;3400:9;3391:7;3387:23;3383:32;3380:52;;;3428:1;3425;3418:12;3380:52;3451:29;3470:9;3451:29;:::i;:::-;3441:39;;3499:35;3530:2;3519:9;3515:18;3499:35;:::i;3545:254::-;3613:6;3621;3674:2;3662:9;3653:7;3649:23;3645:32;3642:52;;;3690:1;3687;3680:12;3642:52;3713:29;3732:9;3713:29;:::i;:::-;3703:39;3789:2;3774:18;;;;3761:32;;-1:-1:-1;;;3545:254:1:o;3804:180::-;3860:6;3913:2;3901:9;3892:7;3888:23;3884:32;3881:52;;;3929:1;3926;3919:12;3881:52;3952:26;3968:9;3952:26;:::i;3989:180::-;4048:6;4101:2;4089:9;4080:7;4076:23;4072:32;4069:52;;;4117:1;4114;4107:12;4069:52;-1:-1:-1;4140:23:1;;3989:180;-1:-1:-1;3989:180:1:o;4174:245::-;4232:6;4285:2;4273:9;4264:7;4260:23;4256:32;4253:52;;;4301:1;4298;4291:12;4253:52;4340:9;4327:23;4359:30;4383:5;4359:30;:::i;4424:249::-;4493:6;4546:2;4534:9;4525:7;4521:23;4517:32;4514:52;;;4562:1;4559;4552:12;4514:52;4594:9;4588:16;4613:30;4637:5;4613:30;:::i;4678:592::-;4749:6;4757;4810:2;4798:9;4789:7;4785:23;4781:32;4778:52;;;4826:1;4823;4816:12;4778:52;4866:9;4853:23;4895:18;4936:2;4928:6;4925:14;4922:34;;;4952:1;4949;4942:12;4922:34;4990:6;4979:9;4975:22;4965:32;;5035:7;5028:4;5024:2;5020:13;5016:27;5006:55;;5057:1;5054;5047:12;5006:55;5097:2;5084:16;5123:2;5115:6;5112:14;5109:34;;;5139:1;5136;5129:12;5109:34;5184:7;5179:2;5170:6;5166:2;5162:15;5158:24;5155:37;5152:57;;;5205:1;5202;5195:12;5152:57;5236:2;5228:11;;;;;5258:6;;-1:-1:-1;4678:592:1;;-1:-1:-1;;;;4678:592:1:o;5460:416::-;5553:6;5561;5614:2;5602:9;5593:7;5589:23;5585:32;5582:52;;;5630:1;5627;5620:12;5582:52;5666:9;5653:23;5643:33;;5727:2;5716:9;5712:18;5699:32;5754:18;5746:6;5743:30;5740:50;;;5786:1;5783;5776:12;5881:257;5922:3;5960:5;5954:12;5987:6;5982:3;5975:19;6003:63;6059:6;6052:4;6047:3;6043:14;6036:4;6029:5;6025:16;6003:63;:::i;:::-;6120:2;6099:15;-1:-1:-1;;6095:29:1;6086:39;;;;6127:4;6082:50;;5881:257;-1:-1:-1;;5881:257:1:o;6377:470::-;6556:3;6594:6;6588:13;6610:53;6656:6;6651:3;6644:4;6636:6;6632:17;6610:53;:::i;:::-;6726:13;;6685:16;;;;6748:57;6726:13;6685:16;6782:4;6770:17;;6748:57;:::i;:::-;6821:20;;6377:470;-1:-1:-1;;;;6377:470:1:o;7060:488::-;-1:-1:-1;;;;;7329:15:1;;;7311:34;;7381:15;;7376:2;7361:18;;7354:43;7428:2;7413:18;;7406:34;;;7476:3;7471:2;7456:18;;7449:31;;;7254:4;;7497:45;;7522:19;;7514:6;7497:45;:::i;:::-;7489:53;7060:488;-1:-1:-1;;;;;;7060:488:1:o;7927:219::-;8076:2;8065:9;8058:21;8039:4;8096:44;8136:2;8125:9;8121:18;8113:6;8096:44;:::i;9332:414::-;9534:2;9516:21;;;9573:2;9553:18;;;9546:30;9612:34;9607:2;9592:18;;9585:62;-1:-1:-1;;;9678:2:1;9663:18;;9656:48;9736:3;9721:19;;9332:414::o;14857:356::-;15059:2;15041:21;;;15078:18;;;15071:30;15137:34;15132:2;15117:18;;15110:62;15204:2;15189:18;;14857:356::o;16036:413::-;16238:2;16220:21;;;16277:2;16257:18;;;16250:30;16316:34;16311:2;16296:18;;16289:62;-1:-1:-1;;;16382:2:1;16367:18;;16360:47;16439:3;16424:19;;16036:413::o;17833:275::-;17904:2;17898:9;17969:2;17950:13;;-1:-1:-1;;17946:27:1;17934:40;;18004:18;17989:34;;18025:22;;;17986:62;17983:88;;;18051:18;;:::i;:::-;18087:2;18080:22;17833:275;;-1:-1:-1;17833:275:1:o;18113:128::-;18153:3;18184:1;18180:6;18177:1;18174:13;18171:39;;;18190:18;;:::i;:::-;-1:-1:-1;18226:9:1;;18113:128::o;18246:120::-;18286:1;18312;18302:35;;18317:18;;:::i;:::-;-1:-1:-1;18351:9:1;;18246:120::o;18371:168::-;18411:7;18477:1;18473;18469:6;18465:14;18462:1;18459:21;18454:1;18447:9;18440:17;18436:45;18433:71;;;18484:18;;:::i;:::-;-1:-1:-1;18524:9:1;;18371:168::o;18544:125::-;18584:4;18612:1;18609;18606:8;18603:34;;;18617:18;;:::i;:::-;-1:-1:-1;18654:9:1;;18544:125::o;18674:258::-;18746:1;18756:113;18770:6;18767:1;18764:13;18756:113;;;18846:11;;;18840:18;18827:11;;;18820:39;18792:2;18785:10;18756:113;;;18887:6;18884:1;18881:13;18878:48;;;-1:-1:-1;;18922:1:1;18904:16;;18897:27;18674:258::o;18937:380::-;19016:1;19012:12;;;;19059;;;19080:61;;19134:4;19126:6;19122:17;19112:27;;19080:61;19187:2;19179:6;19176:14;19156:18;19153:38;19150:161;;;19233:10;19228:3;19224:20;19221:1;19214:31;19268:4;19265:1;19258:15;19296:4;19293:1;19286:15;19150:161;;18937:380;;;:::o;19322:135::-;19361:3;-1:-1:-1;;19382:17:1;;19379:43;;;19402:18;;:::i;:::-;-1:-1:-1;19449:1:1;19438:13;;19322:135::o;19462:112::-;19494:1;19520;19510:35;;19525:18;;:::i;:::-;-1:-1:-1;19559:9:1;;19462:112::o;19579:127::-;19640:10;19635:3;19631:20;19628:1;19621:31;19671:4;19668:1;19661:15;19695:4;19692:1;19685:15;19711:127;19772:10;19767:3;19763:20;19760:1;19753:31;19803:4;19800:1;19793:15;19827:4;19824:1;19817:15;19843:127;19904:10;19899:3;19895:20;19892:1;19885:31;19935:4;19932:1;19925:15;19959:4;19956:1;19949:15;19975:127;20036:10;20031:3;20027:20;20024:1;20017:31;20067:4;20064:1;20057:15;20091:4;20088:1;20081:15;20107:127;20168:10;20163:3;20159:20;20156:1;20149:31;20199:4;20196:1;20189:15;20223:4;20220:1;20213:15;20239:131;-1:-1:-1;;;;;;20313:32:1;;20303:43;;20293:71;;20360:1;20357;20350:12

Swarm Source

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