ETH Price: $3,315.44 (+2.18%)
 

Overview

Max Total Supply

3 GPEP

Holders

1

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
GenerativePeppersCollection

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 2021-10-04
*/

// Original contract by Mondoir https://github.com/mondoir/NFT-Smart-Contract

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

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/token/ERC721/[email protected]

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/[email protected]

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/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/utils/[email protected]

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/utils/[email protected]

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/introspection/[email protected]

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/[email protected]

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
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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);
    }

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

    /**
     * @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 of token that is not own"
        );
        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);
    }

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

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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 tokenId);

    /**
     * @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/[email protected]

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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
    {
        require(
            _exists(tokenId),
            "ERC721URIStorage: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

pragma solidity ^0.8.0;

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721Burnable: caller is not owner nor approved"
        );
        _burn(tokenId);
    }
}

// File @openzeppelin/contracts/access/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File contracts/MondoIR.sol

pragma solidity ^0.8.2;

contract GenerativePeppersCollection is
    ERC721,
    ERC721Enumerable,
    ERC721URIStorage,
    ERC721Burnable,
    Ownable
{
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURIextended;

    constructor() ERC721("Generative Peppers", "GPEP") {}

    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
        override(ERC721URIStorage)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    function mint(
        address _to,
        uint256 _tokenId,
        string memory tokenURI_
    ) external onlyOwner {
        _mint(_to, _tokenId);
        _setTokenURI(_tokenId, tokenURI_);
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function _burn(uint256 tokenId)
        internal
        override(ERC721, ERC721URIStorage)
    {
        super._burn(tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI_","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601281527147656e65726174697665205065707065727360701b6020808301918252835180850190945260048452630475045560e41b9084015281519192916200006891600091620000f7565b5080516200007e906001906020840190620000f7565b5050506200009b62000095620000a160201b60201c565b620000a5565b620001da565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000105906200019d565b90600052602060002090601f01602090048101928262000129576000855562000174565b82601f106200014457805160ff191683800117855562000174565b8280016001018555821562000174579182015b828111156200017457825182559160200191906001019062000157565b506200018292915062000186565b5090565b5b8082111562000182576000815560010162000187565b600181811c90821680620001b257607f821691505b60208210811415620001d457634e487b7160e01b600052602260045260246000fd5b50919050565b611e7c80620001ea6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb4651461028f578063b88d4fde146102a2578063c87b56dd146102b5578063d3fc9864146102c8578063e985e9c5146102db578063f2fde38b1461031757600080fd5b80636352211e1461024857806370a082311461025b578063715018a61461026e5780638da5cb5b1461027657806395d89b411461028757600080fd5b806323b872dd1161010a57806323b872dd146101d65780632f745c59146101e957806342842e0e146101fc57806342966c681461020f5780634f6ccce71461022257806355f804b31461023557600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a610155366004611ade565b61032a565b60405190151581526020015b60405180910390f35b61017761033b565b6040516101669190611bfe565b610197610192366004611b4d565b6103cd565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611a5d565b610467565b005b6008545b604051908152602001610166565b6101c26101e4366004611969565b61057d565b6101c86101f7366004611a5d565b6105af565b6101c261020a366004611969565b610645565b6101c261021d366004611b4d565b610660565b6101c8610230366004611b4d565b6106da565b6101c2610243366004611b18565b61076d565b610197610256366004611b4d565b6107ae565b6101c861026936600461191b565b610825565b6101c26108ac565b600b546001600160a01b0316610197565b6101776108e2565b6101c261029d366004611a21565b6108f1565b6101c26102b03660046119a5565b6109b6565b6101776102c3366004611b4d565b6109ee565b6101c26102d6366004611a87565b610b70565b61015a6102e9366004611936565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c261032536600461191b565b610bae565b600061033582610c46565b92915050565b60606000805461034a90611d58565b80601f016020809104026020016040519081016040528092919081815260200182805461037690611d58565b80156103c35780601f10610398576101008083540402835291602001916103c3565b820191906000526020600020905b8154815290600101906020018083116103a657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661044b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610472826107ae565b9050806001600160a01b0316836001600160a01b031614156104e05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610442565b336001600160a01b03821614806104fc57506104fc81336102e9565b61056e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610442565b6105788383610c6b565b505050565b610588335b82610cd9565b6105a45760405162461bcd60e51b815260040161044290611c98565b610578838383610dd0565b60006105ba83610825565b821061061c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610442565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610578838383604051806020016040528060008152506109b6565b61066933610582565b6106ce5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610442565b6106d781610f7b565b50565b60006106e560085490565b82106107485760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610442565b6008828154811061075b5761075b611e04565b90600052602060002001549050919050565b600b546001600160a01b031633146107975760405162461bcd60e51b815260040161044290611c63565b80516107aa90600d906020840190611793565b5050565b6000818152600260205260408120546001600160a01b0316806103355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610442565b60006001600160a01b0382166108905760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610442565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146108d65760405162461bcd60e51b815260040161044290611c63565b6108e06000610f84565b565b60606001805461034a90611d58565b6001600160a01b03821633141561094a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610442565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109c03383610cd9565b6109dc5760405162461bcd60e51b815260040161044290611c98565b6109e884848484610fd6565b50505050565b6000818152600260205260409020546060906001600160a01b0316610a6d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610442565b6000828152600c602052604081208054610a8690611d58565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab290611d58565b8015610aff5780601f10610ad457610100808354040283529160200191610aff565b820191906000526020600020905b815481529060010190602001808311610ae257829003601f168201915b505050505090506000610b10611009565b9050805160001415610b23575092915050565b815115610b55578082604051602001610b3d929190611b92565b60405160208183030381529060405292505050919050565b80610b5f85611018565b604051602001610b3d929190611b92565b600b546001600160a01b03163314610b9a5760405162461bcd60e51b815260040161044290611c63565b610ba48383611116565b6105788282611264565b600b546001600160a01b03163314610bd85760405162461bcd60e51b815260040161044290611c63565b6001600160a01b038116610c3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610442565b6106d781610f84565b60006001600160e01b0319821663780e9d6360e01b14806103355750610335826112fc565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ca0826107ae565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610d525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610442565b6000610d5d836107ae565b9050806001600160a01b0316846001600160a01b03161480610d985750836001600160a01b0316610d8d846103cd565b6001600160a01b0316145b80610dc857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610de3826107ae565b6001600160a01b031614610e4b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610442565b6001600160a01b038216610ead5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610442565b610eb883838361134c565b610ec3600082610c6b565b6001600160a01b0383166000908152600360205260408120805460019290610eec908490611d15565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f1a908490611ce9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6106d781611357565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610fe1848484610dd0565b610fed84848484611397565b6109e85760405162461bcd60e51b815260040161044290611c11565b6060600d805461034a90611d58565b60608161103c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611066578061105081611d93565b915061105f9050600a83611d01565b9150611040565b60008167ffffffffffffffff81111561108157611081611e1a565b6040519080825280601f01601f1916602001820160405280156110ab576020820181803683370190505b5090505b8415610dc8576110c0600183611d15565b91506110cd600a86611dae565b6110d8906030611ce9565b60f81b8183815181106110ed576110ed611e04565b60200101906001600160f81b031916908160001a90535061110f600a86611d01565b94506110af565b6001600160a01b03821661116c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610442565b6000818152600260205260409020546001600160a01b0316156111d15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610442565b6111dd6000838361134c565b6001600160a01b0382166000908152600360205260408120805460019290611206908490611ce9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000828152600260205260409020546001600160a01b03166112dd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610442565b6000828152600c60209081526040909120825161057892840190611793565b60006001600160e01b031982166380ac58cd60e01b148061132d57506001600160e01b03198216635b5e139f60e01b145b8061033557506301ffc9a760e01b6001600160e01b0319831614610335565b6105788383836114a4565b6113608161155c565b6000818152600a60205260409020805461137990611d58565b1590506106d7576000818152600a602052604081206106d791611817565b60006001600160a01b0384163b1561149957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113db903390899088908890600401611bc1565b602060405180830381600087803b1580156113f557600080fd5b505af1925050508015611425575060408051601f3d908101601f1916820190925261142291810190611afb565b60015b61147f573d808015611453576040519150601f19603f3d011682016040523d82523d6000602084013e611458565b606091505b5080516114775760405162461bcd60e51b815260040161044290611c11565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610dc8565b506001949350505050565b6001600160a01b0383166114ff576114fa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611522565b816001600160a01b0316836001600160a01b031614611522576115228382611603565b6001600160a01b03821661153957610578816116a0565b826001600160a01b0316826001600160a01b03161461057857610578828261174f565b6000611567826107ae565b90506115758160008461134c565b611580600083610c6b565b6001600160a01b03811660009081526003602052604081208054600192906115a9908490611d15565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000600161161084610825565b61161a9190611d15565b60008381526007602052604090205490915080821461166d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906116b290600190611d15565b600083815260096020526040812054600880549394509092849081106116da576116da611e04565b9060005260206000200154905080600883815481106116fb576116fb611e04565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061173357611733611dee565b6001900381819060005260206000200160009055905550505050565b600061175a83610825565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461179f90611d58565b90600052602060002090601f0160209004810192826117c15760008555611807565b82601f106117da57805160ff1916838001178555611807565b82800160010185558215611807579182015b828111156118075782518255916020019190600101906117ec565b5061181392915061184d565b5090565b50805461182390611d58565b6000825580601f10611833575050565b601f0160209004906000526020600020908101906106d791905b5b80821115611813576000815560010161184e565b600067ffffffffffffffff8084111561187d5761187d611e1a565b604051601f8501601f19908116603f011681019082821181831017156118a5576118a5611e1a565b816040528093508581528686860111156118be57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118ef57600080fd5b919050565b600082601f83011261190557600080fd5b61191483833560208501611862565b9392505050565b60006020828403121561192d57600080fd5b611914826118d8565b6000806040838503121561194957600080fd5b611952836118d8565b9150611960602084016118d8565b90509250929050565b60008060006060848603121561197e57600080fd5b611987846118d8565b9250611995602085016118d8565b9150604084013590509250925092565b600080600080608085870312156119bb57600080fd5b6119c4856118d8565b93506119d2602086016118d8565b925060408501359150606085013567ffffffffffffffff8111156119f557600080fd5b8501601f81018713611a0657600080fd5b611a1587823560208401611862565b91505092959194509250565b60008060408385031215611a3457600080fd5b611a3d836118d8565b915060208301358015158114611a5257600080fd5b809150509250929050565b60008060408385031215611a7057600080fd5b611a79836118d8565b946020939093013593505050565b600080600060608486031215611a9c57600080fd5b611aa5846118d8565b925060208401359150604084013567ffffffffffffffff811115611ac857600080fd5b611ad4868287016118f4565b9150509250925092565b600060208284031215611af057600080fd5b813561191481611e30565b600060208284031215611b0d57600080fd5b815161191481611e30565b600060208284031215611b2a57600080fd5b813567ffffffffffffffff811115611b4157600080fd5b610dc8848285016118f4565b600060208284031215611b5f57600080fd5b5035919050565b60008151808452611b7e816020860160208601611d2c565b601f01601f19169290920160200192915050565b60008351611ba4818460208801611d2c565b835190830190611bb8818360208801611d2c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bf490830184611b66565b9695505050505050565b6020815260006119146020830184611b66565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611cfc57611cfc611dc2565b500190565b600082611d1057611d10611dd8565b500490565b600082821015611d2757611d27611dc2565b500390565b60005b83811015611d47578181015183820152602001611d2f565b838111156109e85750506000910152565b600181811c90821680611d6c57607f821691505b60208210811415611d8d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611da757611da7611dc2565b5060010190565b600082611dbd57611dbd611dd8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146106d757600080fdfea2646970667358221220e00f38dccf24c12fabc10e0dab9d04f1dad30df3245815329236c373dce523e464736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb4651461028f578063b88d4fde146102a2578063c87b56dd146102b5578063d3fc9864146102c8578063e985e9c5146102db578063f2fde38b1461031757600080fd5b80636352211e1461024857806370a082311461025b578063715018a61461026e5780638da5cb5b1461027657806395d89b411461028757600080fd5b806323b872dd1161010a57806323b872dd146101d65780632f745c59146101e957806342842e0e146101fc57806342966c681461020f5780634f6ccce71461022257806355f804b31461023557600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a610155366004611ade565b61032a565b60405190151581526020015b60405180910390f35b61017761033b565b6040516101669190611bfe565b610197610192366004611b4d565b6103cd565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611a5d565b610467565b005b6008545b604051908152602001610166565b6101c26101e4366004611969565b61057d565b6101c86101f7366004611a5d565b6105af565b6101c261020a366004611969565b610645565b6101c261021d366004611b4d565b610660565b6101c8610230366004611b4d565b6106da565b6101c2610243366004611b18565b61076d565b610197610256366004611b4d565b6107ae565b6101c861026936600461191b565b610825565b6101c26108ac565b600b546001600160a01b0316610197565b6101776108e2565b6101c261029d366004611a21565b6108f1565b6101c26102b03660046119a5565b6109b6565b6101776102c3366004611b4d565b6109ee565b6101c26102d6366004611a87565b610b70565b61015a6102e9366004611936565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c261032536600461191b565b610bae565b600061033582610c46565b92915050565b60606000805461034a90611d58565b80601f016020809104026020016040519081016040528092919081815260200182805461037690611d58565b80156103c35780601f10610398576101008083540402835291602001916103c3565b820191906000526020600020905b8154815290600101906020018083116103a657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661044b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610472826107ae565b9050806001600160a01b0316836001600160a01b031614156104e05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610442565b336001600160a01b03821614806104fc57506104fc81336102e9565b61056e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610442565b6105788383610c6b565b505050565b610588335b82610cd9565b6105a45760405162461bcd60e51b815260040161044290611c98565b610578838383610dd0565b60006105ba83610825565b821061061c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610442565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610578838383604051806020016040528060008152506109b6565b61066933610582565b6106ce5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610442565b6106d781610f7b565b50565b60006106e560085490565b82106107485760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610442565b6008828154811061075b5761075b611e04565b90600052602060002001549050919050565b600b546001600160a01b031633146107975760405162461bcd60e51b815260040161044290611c63565b80516107aa90600d906020840190611793565b5050565b6000818152600260205260408120546001600160a01b0316806103355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610442565b60006001600160a01b0382166108905760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610442565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146108d65760405162461bcd60e51b815260040161044290611c63565b6108e06000610f84565b565b60606001805461034a90611d58565b6001600160a01b03821633141561094a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610442565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109c03383610cd9565b6109dc5760405162461bcd60e51b815260040161044290611c98565b6109e884848484610fd6565b50505050565b6000818152600260205260409020546060906001600160a01b0316610a6d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610442565b6000828152600c602052604081208054610a8690611d58565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab290611d58565b8015610aff5780601f10610ad457610100808354040283529160200191610aff565b820191906000526020600020905b815481529060010190602001808311610ae257829003601f168201915b505050505090506000610b10611009565b9050805160001415610b23575092915050565b815115610b55578082604051602001610b3d929190611b92565b60405160208183030381529060405292505050919050565b80610b5f85611018565b604051602001610b3d929190611b92565b600b546001600160a01b03163314610b9a5760405162461bcd60e51b815260040161044290611c63565b610ba48383611116565b6105788282611264565b600b546001600160a01b03163314610bd85760405162461bcd60e51b815260040161044290611c63565b6001600160a01b038116610c3d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610442565b6106d781610f84565b60006001600160e01b0319821663780e9d6360e01b14806103355750610335826112fc565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ca0826107ae565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610d525760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610442565b6000610d5d836107ae565b9050806001600160a01b0316846001600160a01b03161480610d985750836001600160a01b0316610d8d846103cd565b6001600160a01b0316145b80610dc857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610de3826107ae565b6001600160a01b031614610e4b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610442565b6001600160a01b038216610ead5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610442565b610eb883838361134c565b610ec3600082610c6b565b6001600160a01b0383166000908152600360205260408120805460019290610eec908490611d15565b90915550506001600160a01b0382166000908152600360205260408120805460019290610f1a908490611ce9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6106d781611357565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610fe1848484610dd0565b610fed84848484611397565b6109e85760405162461bcd60e51b815260040161044290611c11565b6060600d805461034a90611d58565b60608161103c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611066578061105081611d93565b915061105f9050600a83611d01565b9150611040565b60008167ffffffffffffffff81111561108157611081611e1a565b6040519080825280601f01601f1916602001820160405280156110ab576020820181803683370190505b5090505b8415610dc8576110c0600183611d15565b91506110cd600a86611dae565b6110d8906030611ce9565b60f81b8183815181106110ed576110ed611e04565b60200101906001600160f81b031916908160001a90535061110f600a86611d01565b94506110af565b6001600160a01b03821661116c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610442565b6000818152600260205260409020546001600160a01b0316156111d15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610442565b6111dd6000838361134c565b6001600160a01b0382166000908152600360205260408120805460019290611206908490611ce9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000828152600260205260409020546001600160a01b03166112dd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610442565b6000828152600c60209081526040909120825161057892840190611793565b60006001600160e01b031982166380ac58cd60e01b148061132d57506001600160e01b03198216635b5e139f60e01b145b8061033557506301ffc9a760e01b6001600160e01b0319831614610335565b6105788383836114a4565b6113608161155c565b6000818152600a60205260409020805461137990611d58565b1590506106d7576000818152600a602052604081206106d791611817565b60006001600160a01b0384163b1561149957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113db903390899088908890600401611bc1565b602060405180830381600087803b1580156113f557600080fd5b505af1925050508015611425575060408051601f3d908101601f1916820190925261142291810190611afb565b60015b61147f573d808015611453576040519150601f19603f3d011682016040523d82523d6000602084013e611458565b606091505b5080516114775760405162461bcd60e51b815260040161044290611c11565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610dc8565b506001949350505050565b6001600160a01b0383166114ff576114fa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611522565b816001600160a01b0316836001600160a01b031614611522576115228382611603565b6001600160a01b03821661153957610578816116a0565b826001600160a01b0316826001600160a01b03161461057857610578828261174f565b6000611567826107ae565b90506115758160008461134c565b611580600083610c6b565b6001600160a01b03811660009081526003602052604081208054600192906115a9908490611d15565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000600161161084610825565b61161a9190611d15565b60008381526007602052604090205490915080821461166d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906116b290600190611d15565b600083815260096020526040812054600880549394509092849081106116da576116da611e04565b9060005260206000200154905080600883815481106116fb576116fb611e04565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061173357611733611dee565b6001900381819060005260206000200160009055905550505050565b600061175a83610825565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461179f90611d58565b90600052602060002090601f0160209004810192826117c15760008555611807565b82601f106117da57805160ff1916838001178555611807565b82800160010185558215611807579182015b828111156118075782518255916020019190600101906117ec565b5061181392915061184d565b5090565b50805461182390611d58565b6000825580601f10611833575050565b601f0160209004906000526020600020908101906106d791905b5b80821115611813576000815560010161184e565b600067ffffffffffffffff8084111561187d5761187d611e1a565b604051601f8501601f19908116603f011681019082821181831017156118a5576118a5611e1a565b816040528093508581528686860111156118be57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118ef57600080fd5b919050565b600082601f83011261190557600080fd5b61191483833560208501611862565b9392505050565b60006020828403121561192d57600080fd5b611914826118d8565b6000806040838503121561194957600080fd5b611952836118d8565b9150611960602084016118d8565b90509250929050565b60008060006060848603121561197e57600080fd5b611987846118d8565b9250611995602085016118d8565b9150604084013590509250925092565b600080600080608085870312156119bb57600080fd5b6119c4856118d8565b93506119d2602086016118d8565b925060408501359150606085013567ffffffffffffffff8111156119f557600080fd5b8501601f81018713611a0657600080fd5b611a1587823560208401611862565b91505092959194509250565b60008060408385031215611a3457600080fd5b611a3d836118d8565b915060208301358015158114611a5257600080fd5b809150509250929050565b60008060408385031215611a7057600080fd5b611a79836118d8565b946020939093013593505050565b600080600060608486031215611a9c57600080fd5b611aa5846118d8565b925060208401359150604084013567ffffffffffffffff811115611ac857600080fd5b611ad4868287016118f4565b9150509250925092565b600060208284031215611af057600080fd5b813561191481611e30565b600060208284031215611b0d57600080fd5b815161191481611e30565b600060208284031215611b2a57600080fd5b813567ffffffffffffffff811115611b4157600080fd5b610dc8848285016118f4565b600060208284031215611b5f57600080fd5b5035919050565b60008151808452611b7e816020860160208601611d2c565b601f01601f19169290920160200192915050565b60008351611ba4818460208801611d2c565b835190830190611bb8818360208801611d2c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bf490830184611b66565b9695505050505050565b6020815260006119146020830184611b66565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611cfc57611cfc611dc2565b500190565b600082611d1057611d10611dd8565b500490565b600082821015611d2757611d27611dc2565b500390565b60005b83811015611d47578181015183820152602001611d2f565b838111156109e85750506000910152565b600181811c90821680611d6c57607f821691505b60208210811415611d8d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611da757611da7611dc2565b5060010190565b600082611dbd57611dbd611dd8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146106d757600080fdfea2646970667358221220e00f38dccf24c12fabc10e0dab9d04f1dad30df3245815329236c373dce523e464736f6c63430008070033

Deployed Bytecode Sourcemap

48120:2730:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50635:212;;;;;;:::i;:::-;;:::i;:::-;;;6213:14:1;;6206:22;6188:41;;6176:2;6161:18;50635:212:0;;;;;;;;22633:100;;;:::i;:::-;;;;;;;:::i;24326:308::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5511:32:1;;;5493:51;;5481:2;5466:18;24326:308:0;5347:203:1;23849:411:0;;;;;;:::i;:::-;;:::i;:::-;;37296:113;37384:10;:17;37296:113;;;14647:25:1;;;14635:2;14620:18;37296:113:0;14501:177:1;25385:376:0;;;;;;:::i;:::-;;:::i;36877:343::-;;;;;;:::i;:::-;;:::i;25832:185::-;;;;;;:::i;:::-;;:::i;45431:282::-;;;;;;:::i;:::-;;:::i;37486:320::-;;;;;;:::i;:::-;;:::i;48507:109::-;;;;;;:::i;:::-;;:::i;22240:326::-;;;;;;:::i;:::-;;:::i;21883:295::-;;;;;;:::i;:::-;;:::i;47394:94::-;;;:::i;46743:87::-;46816:6;;-1:-1:-1;;;;;46816:6:0;46743:87;;22802:104;;;:::i;24706:327::-;;;;;;:::i;:::-;;:::i;26088:365::-;;;;;;:::i;:::-;;:::i;49068:906::-;;;;;;:::i;:::-;;:::i;49982:206::-;;;;;;:::i;:::-;;:::i;25104:214::-;;;;;;:::i;:::-;-1:-1:-1;;;;;25275:25:0;;;25246:4;25275:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25104:214;47643:229;;;;;;:::i;:::-;;:::i;50635:212::-;50774:4;50803:36;50827:11;50803:23;:36::i;:::-;50796:43;50635:212;-1:-1:-1;;50635:212:0:o;22633:100::-;22687:13;22720:5;22713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22633:100;:::o;24326:308::-;24447:7;28089:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28089:16:0;24472:110;;;;-1:-1:-1;;;24472:110:0;;11040:2:1;24472:110:0;;;11022:21:1;11079:2;11059:18;;;11052:30;11118:34;11098:18;;;11091:62;-1:-1:-1;;;11169:18:1;;;11162:42;11221:19;;24472:110:0;;;;;;;;;-1:-1:-1;24602:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24602:24:0;;24326:308::o;23849:411::-;23930:13;23946:23;23961:7;23946:14;:23::i;:::-;23930:39;;23994:5;-1:-1:-1;;;;;23988:11:0;:2;-1:-1:-1;;;;;23988:11:0;;;23980:57;;;;-1:-1:-1;;;23980:57:0;;13053:2:1;23980:57:0;;;13035:21:1;13092:2;13072:18;;;13065:30;13131:34;13111:18;;;13104:62;-1:-1:-1;;;13182:18:1;;;13175:31;13223:19;;23980:57:0;12851:397:1;23980:57:0;16894:10;-1:-1:-1;;;;;24072:21:0;;;;:62;;-1:-1:-1;24097:37:0;24114:5;16894:10;25104:214;:::i;24097:37::-;24050:168;;;;-1:-1:-1;;;24050:168:0;;9433:2:1;24050:168:0;;;9415:21:1;9472:2;9452:18;;;9445:30;9511:34;9491:18;;;9484:62;9582:26;9562:18;;;9555:54;9626:19;;24050:168:0;9231:420:1;24050:168:0;24231:21;24240:2;24244:7;24231:8;:21::i;:::-;23919:341;23849:411;;:::o;25385:376::-;25594:41;16894:10;25613:12;25627:7;25594:18;:41::i;:::-;25572:140;;;;-1:-1:-1;;;25572:140:0;;;;;;;:::i;:::-;25725:28;25735:4;25741:2;25745:7;25725:9;:28::i;36877:343::-;37019:7;37074:23;37091:5;37074:16;:23::i;:::-;37066:5;:31;37044:124;;;;-1:-1:-1;;;37044:124:0;;6666:2:1;37044:124:0;;;6648:21:1;6705:2;6685:18;;;6678:30;6744:34;6724:18;;;6717:62;-1:-1:-1;;;6795:18:1;;;6788:41;6846:19;;37044:124:0;6464:407:1;37044:124:0;-1:-1:-1;;;;;;37186:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36877:343::o;25832:185::-;25970:39;25987:4;25993:2;25997:7;25970:39;;;;;;;;;;;;:16;:39::i;45431:282::-;45563:41;16894:10;45582:12;16814:98;45563:41;45541:139;;;;-1:-1:-1;;;45541:139:0;;14286:2:1;45541:139:0;;;14268:21:1;14325:2;14305:18;;;14298:30;14364:34;14344:18;;;14337:62;-1:-1:-1;;;14415:18:1;;;14408:46;14471:19;;45541:139:0;14084:412:1;45541:139:0;45691:14;45697:7;45691:5;:14::i;:::-;45431:282;:::o;37486:320::-;37606:7;37661:30;37384:10;:17;;37296:113;37661:30;37653:5;:38;37631:132;;;;-1:-1:-1;;;37631:132:0;;13873:2:1;37631:132:0;;;13855:21:1;13912:2;13892:18;;;13885:30;13951:34;13931:18;;;13924:62;-1:-1:-1;;;14002:18:1;;;13995:42;14054:19;;37631:132:0;13671:408:1;37631:132:0;37781:10;37792:5;37781:17;;;;;;;;:::i;:::-;;;;;;;;;37774:24;;37486:320;;;:::o;48507:109::-;46816:6;;-1:-1:-1;;;;;46816:6:0;16894:10;46963:23;46955:68;;;;-1:-1:-1;;;46955:68:0;;;;;;;:::i;:::-;48581:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48507:109:::0;:::o;22240:326::-;22357:7;22398:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22398:16:0;22447:19;22425:110;;;;-1:-1:-1;;;22425:110:0;;10269:2:1;22425:110:0;;;10251:21:1;10308:2;10288:18;;;10281:30;10347:34;10327:18;;;10320:62;-1:-1:-1;;;10398:18:1;;;10391:39;10447:19;;22425:110:0;10067:405:1;21883:295:0;22000:7;-1:-1:-1;;;;;22047:19:0;;22025:111;;;;-1:-1:-1;;;22025:111:0;;9858:2:1;22025:111:0;;;9840:21:1;9897:2;9877:18;;;9870:30;9936:34;9916:18;;;9909:62;-1:-1:-1;;;9987:18:1;;;9980:40;10037:19;;22025:111:0;9656:406:1;22025:111:0;-1:-1:-1;;;;;;22154:16:0;;;;;:9;:16;;;;;;;21883:295::o;47394:94::-;46816:6;;-1:-1:-1;;;;;46816:6:0;16894:10;46963:23;46955:68;;;;-1:-1:-1;;;46955:68:0;;;;;;;:::i;:::-;47459:21:::1;47477:1;47459:9;:21::i;:::-;47394:94::o:0;22802:104::-;22858:13;22891:7;22884:14;;;;;:::i;24706:327::-;-1:-1:-1;;;;;24841:24:0;;16894:10;24841:24;;24833:62;;;;-1:-1:-1;;;24833:62:0;;8666:2:1;24833:62:0;;;8648:21:1;8705:2;8685:18;;;8678:30;8744:27;8724:18;;;8717:55;8789:18;;24833:62:0;8464:349:1;24833:62:0;16894:10;24908:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24908:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24908:53:0;;;;;;;;;;24977:48;;6188:41:1;;;24908:42:0;;16894:10;24977:48;;6161:18:1;24977:48:0;;;;;;;24706:327;;:::o;26088:365::-;26277:41;16894:10;26310:7;26277:18;:41::i;:::-;26255:140;;;;-1:-1:-1;;;26255:140:0;;;;;;;:::i;:::-;26406:39;26420:4;26426:2;26430:7;26439:5;26406:13;:39::i;:::-;26088:365;;;;:::o;49068:906::-;28065:4;28089:16;;;:7;:16;;;;;;49212:13;;-1:-1:-1;;;;;28089:16:0;49243:113;;;;-1:-1:-1;;;49243:113:0;;12637:2:1;49243:113:0;;;12619:21:1;12676:2;12656:18;;;12649:30;12715:34;12695:18;;;12688:62;-1:-1:-1;;;12766:18:1;;;12759:45;12821:19;;49243:113:0;12435:411:1;49243:113:0;49369:23;49395:19;;;:10;:19;;;;;49369:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49425:18;49446:10;:8;:10::i;:::-;49425:31;;49538:4;49532:18;49554:1;49532:23;49528:72;;;-1:-1:-1;49579:9:0;49068:906;-1:-1:-1;;49068:906:0:o;49528:72::-;49704:23;;:27;49700:108;;49779:4;49785:9;49762:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49748:48;;;;49068:906;;;:::o;49700:108::-;49940:4;49946:18;:7;:16;:18::i;:::-;49923:42;;;;;;;;;:::i;49982:206::-;46816:6;;-1:-1:-1;;;;;46816:6:0;16894:10;46963:23;46955:68;;;;-1:-1:-1;;;46955:68:0;;;;;;;:::i;:::-;50116:20:::1;50122:3;50127:8;50116:5;:20::i;:::-;50147:33;50160:8;50170:9;50147:12;:33::i;47643:229::-:0;46816:6;;-1:-1:-1;;;;;46816:6:0;16894:10;46963:23;46955:68;;;;-1:-1:-1;;;46955:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47746:22:0;::::1;47724:110;;;::::0;-1:-1:-1;;;47724:110:0;;7497:2:1;47724:110:0::1;::::0;::::1;7479:21:1::0;7536:2;7516:18;;;7509:30;7575:34;7555:18;;;7548:62;-1:-1:-1;;;7626:18:1;;;7619:36;7672:19;;47724:110:0::1;7295:402:1::0;47724:110:0::1;47845:19;47855:8;47845:9;:19::i;36493:300::-:0;36640:4;-1:-1:-1;;;;;;36682:50:0;;-1:-1:-1;;;36682:50:0;;:103;;;36749:36;36773:11;36749:23;:36::i;32123:174::-;32198:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32198:29:0;-1:-1:-1;;;;;32198:29:0;;;;;;;;:24;;32252:23;32198:24;32252:14;:23::i;:::-;-1:-1:-1;;;;;32243:46:0;;;;;;;;;;;32123:174;;:::o;28294:452::-;28423:4;28089:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28089:16:0;28445:110;;;;-1:-1:-1;;;28445:110:0;;9020:2:1;28445:110:0;;;9002:21:1;9059:2;9039:18;;;9032:30;9098:34;9078:18;;;9071:62;-1:-1:-1;;;9149:18:1;;;9142:42;9201:19;;28445:110:0;8818:408:1;28445:110:0;28566:13;28582:23;28597:7;28582:14;:23::i;:::-;28566:39;;28635:5;-1:-1:-1;;;;;28624:16:0;:7;-1:-1:-1;;;;;28624:16:0;;:64;;;;28681:7;-1:-1:-1;;;;;28657:31:0;:20;28669:7;28657:11;:20::i;:::-;-1:-1:-1;;;;;28657:31:0;;28624:64;:113;;;-1:-1:-1;;;;;;25275:25:0;;;25246:4;25275:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28705:32;28616:122;28294:452;-1:-1:-1;;;;28294:452:0:o;31390:615::-;31563:4;-1:-1:-1;;;;;31536:31:0;:23;31551:7;31536:14;:23::i;:::-;-1:-1:-1;;;;;31536:31:0;;31514:122;;;;-1:-1:-1;;;31514:122:0;;12227:2:1;31514:122:0;;;12209:21:1;12266:2;12246:18;;;12239:30;12305:34;12285:18;;;12278:62;-1:-1:-1;;;12356:18:1;;;12349:39;12405:19;;31514:122:0;12025:405:1;31514:122:0;-1:-1:-1;;;;;31655:16:0;;31647:65;;;;-1:-1:-1;;;31647:65:0;;8261:2:1;31647:65:0;;;8243:21:1;8300:2;8280:18;;;8273:30;8339:34;8319:18;;;8312:62;-1:-1:-1;;;8390:18:1;;;8383:34;8434:19;;31647:65:0;8059:400:1;31647:65:0;31725:39;31746:4;31752:2;31756:7;31725:20;:39::i;:::-;31829:29;31846:1;31850:7;31829:8;:29::i;:::-;-1:-1:-1;;;;;31871:15:0;;;;;;:9;:15;;;;;:20;;31890:1;;31871:15;:20;;31890:1;;31871:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31902:13:0;;;;;;:9;:13;;;;;:18;;31919:1;;31902:13;:18;;31919:1;;31902:18;:::i;:::-;;;;-1:-1:-1;;31931:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31931:21:0;-1:-1:-1;;;;;31931:21:0;;;;;;;;;31970:27;;31931:16;;31970:27;;;;;;;31390:615;;;:::o;50489:138::-;50599:20;50611:7;50599:11;:20::i;47880:173::-;47955:6;;;-1:-1:-1;;;;;47972:17:0;;;-1:-1:-1;;;;;;47972:17:0;;;;;;;48005:40;;47955:6;;;47972:17;47955:6;;48005:40;;47936:16;;48005:40;47925:128;47880:173;:::o;27335:352::-;27492:28;27502:4;27508:2;27512:7;27492:9;:28::i;:::-;27553:48;27576:4;27582:2;27586:7;27595:5;27553:22;:48::i;:::-;27531:148;;;;-1:-1:-1;;;27531:148:0;;;;;;;:::i;48943:117::-;49003:13;49036:16;49029:23;;;;;:::i;17341:723::-;17397:13;17618:10;17614:53;;-1:-1:-1;;17645:10:0;;;;;;;;;;;;-1:-1:-1;;;17645:10:0;;;;;17341:723::o;17614:53::-;17692:5;17677:12;17733:78;17740:9;;17733:78;;17766:8;;;;:::i;:::-;;-1:-1:-1;17789:10:0;;-1:-1:-1;17797:2:0;17789:10;;:::i;:::-;;;17733:78;;;17821:19;17853:6;17843:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17843:17:0;;17821:39;;17871:154;17878:10;;17871:154;;17905:11;17915:1;17905:11;;:::i;:::-;;-1:-1:-1;17974:10:0;17982:2;17974:5;:10;:::i;:::-;17961:24;;:2;:24;:::i;:::-;17948:39;;17931:6;17938;17931:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17931:56:0;;;;;;;;-1:-1:-1;18002:11:0;18011:2;18002:11;;:::i;:::-;;;17871:154;;30082:382;-1:-1:-1;;;;;30162:16:0;;30154:61;;;;-1:-1:-1;;;30154:61:0;;10679:2:1;30154:61:0;;;10661:21:1;;;10698:18;;;10691:30;10757:34;10737:18;;;10730:62;10809:18;;30154:61:0;10477:356:1;30154:61:0;28065:4;28089:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28089:16:0;:30;30226:58;;;;-1:-1:-1;;;30226:58:0;;7904:2:1;30226:58:0;;;7886:21:1;7943:2;7923:18;;;7916:30;7982;7962:18;;;7955:58;8030:18;;30226:58:0;7702:352:1;30226:58:0;30297:45;30326:1;30330:2;30334:7;30297:20;:45::i;:::-;-1:-1:-1;;;;;30355:13:0;;;;;;:9;:13;;;;;:18;;30372:1;;30355:13;:18;;30372:1;;30355:18;:::i;:::-;;;;-1:-1:-1;;30384:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30384:21:0;-1:-1:-1;;;;;30384:21:0;;;;;;;;30423:33;;30384:16;;;30423:33;;30384:16;;30423:33;30082:382;;:::o;48624:311::-;28065:4;28089:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28089:16:0;48775:110;;;;-1:-1:-1;;;48775:110:0;;11453:2:1;48775:110:0;;;11435:21:1;11492:2;11472:18;;;11465:30;11531:34;11511:18;;;11504:62;-1:-1:-1;;;11582:18:1;;;11575:42;11634:19;;48775:110:0;11251:408:1;48775:110:0;48896:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;21464:355::-;21611:4;-1:-1:-1;;;;;;21653:40:0;;-1:-1:-1;;;21653:40:0;;:105;;-1:-1:-1;;;;;;;21710:48:0;;-1:-1:-1;;;21710:48:0;21653:105;:158;;;-1:-1:-1;;;;;;;;;;20089:40:0;;;21775:36;19930:207;50266:215;50428:45;50455:4;50461:2;50465:7;50428:26;:45::i;44763:206::-;44832:20;44844:7;44832:11;:20::i;:::-;44875:19;;;;:10;:19;;;;;44869:33;;;;;:::i;:::-;:38;;-1:-1:-1;44865:97:0;;44931:19;;;;:10;:19;;;;;44924:26;;;:::i;32862:980::-;33017:4;-1:-1:-1;;;;;33038:13:0;;8712:20;8760:8;33034:801;;33091:175;;-1:-1:-1;;;33091:175:0;;-1:-1:-1;;;;;33091:36:0;;;;;:175;;16894:10;;33185:4;;33212:7;;33242:5;;33091:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33091:175:0;;;;;;;;-1:-1:-1;;33091:175:0;;;;;;;;;;;;:::i;:::-;;;33070:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33449:13:0;;33445:320;;33492:108;;-1:-1:-1;;;33492:108:0;;;;;;;:::i;33445:320::-;33715:6;33709:13;33700:6;33696:2;33692:15;33685:38;33070:710;-1:-1:-1;;;;;;33330:51:0;-1:-1:-1;;;33330:51:0;;-1:-1:-1;33323:58:0;;33034:801;-1:-1:-1;33819:4:0;32862:980;;;;;;:::o;38419:589::-;-1:-1:-1;;;;;38625:18:0;;38621:187;;38660:40;38692:7;39835:10;:17;;39808:24;;;;:15;:24;;;;;:44;;;39863:24;;;;;;;;;;;;39731:164;38660:40;38621:187;;;38730:2;-1:-1:-1;;;;;38722:10:0;:4;-1:-1:-1;;;;;38722:10:0;;38718:90;;38749:47;38782:4;38788:7;38749:32;:47::i;:::-;-1:-1:-1;;;;;38822:16:0;;38818:183;;38855:45;38892:7;38855:36;:45::i;38818:183::-;38928:4;-1:-1:-1;;;;;38922:10:0;:2;-1:-1:-1;;;;;38922:10:0;;38918:83;;38949:40;38977:2;38981:7;38949:27;:40::i;30693:360::-;30753:13;30769:23;30784:7;30769:14;:23::i;:::-;30753:39;;30805:48;30826:5;30841:1;30845:7;30805:20;:48::i;:::-;30894:29;30911:1;30915:7;30894:8;:29::i;:::-;-1:-1:-1;;;;;30936:16:0;;;;;;:9;:16;;;;;:21;;30956:1;;30936:16;:21;;30956:1;;30936:21;:::i;:::-;;;;-1:-1:-1;;30975:16:0;;;;:7;:16;;;;;;30968:23;;-1:-1:-1;;;;;;30968:23:0;;;31009:36;30983:7;;30975:16;-1:-1:-1;;;;;31009:36:0;;;;;30975:16;;31009:36;30742:311;30693:360;:::o;40522:1002::-;40802:22;40852:1;40827:22;40844:4;40827:16;:22::i;:::-;:26;;;;:::i;:::-;40864:18;40885:26;;;:17;:26;;;;;;40802:51;;-1:-1:-1;41018:28:0;;;41014:328;;-1:-1:-1;;;;;41085:18:0;;41063:19;41085:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41136:30;;;;;;:44;;;41253:30;;:17;:30;;;;;:43;;;41014:328;-1:-1:-1;41438:26:0;;;;:17;:26;;;;;;;;41431:33;;;-1:-1:-1;;;;;41482:18:0;;;;;:12;:18;;;;;:34;;;;;;;41475:41;40522:1002::o;41819:1079::-;42097:10;:17;42072:22;;42097:21;;42117:1;;42097:21;:::i;:::-;42129:18;42150:24;;;:15;:24;;;;;;42523:10;:26;;42072:46;;-1:-1:-1;42150:24:0;;42072:46;;42523:26;;;;;;:::i;:::-;;;;;;;;;42501:48;;42587:11;42562:10;42573;42562:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42667:28;;;:15;:28;;;;;;;:41;;;42839:24;;;;;42832:31;42874:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41890:1008;;;41819:1079;:::o;39309:221::-;39394:14;39411:20;39428:2;39411:16;:20::i;:::-;-1:-1:-1;;;;;39442:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39487:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39309:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:221::-;871:5;924:3;917:4;909:6;905:17;901:27;891:55;;942:1;939;932:12;891:55;964:79;1039:3;1030:6;1017:20;1010:4;1002:6;998:17;964:79;:::i;:::-;955:88;828:221;-1:-1:-1;;;828:221:1:o;1054:186::-;1113:6;1166:2;1154:9;1145:7;1141:23;1137:32;1134:52;;;1182:1;1179;1172:12;1134:52;1205:29;1224:9;1205:29;:::i;1245:260::-;1313:6;1321;1374:2;1362:9;1353:7;1349:23;1345:32;1342:52;;;1390:1;1387;1380:12;1342:52;1413:29;1432:9;1413:29;:::i;:::-;1403:39;;1461:38;1495:2;1484:9;1480:18;1461:38;:::i;:::-;1451:48;;1245:260;;;;;:::o;1510:328::-;1587:6;1595;1603;1656:2;1644:9;1635:7;1631:23;1627:32;1624:52;;;1672:1;1669;1662:12;1624:52;1695:29;1714:9;1695:29;:::i;:::-;1685:39;;1743:38;1777:2;1766:9;1762:18;1743:38;:::i;:::-;1733:48;;1828:2;1817:9;1813:18;1800:32;1790:42;;1510:328;;;;;:::o;1843:666::-;1938:6;1946;1954;1962;2015:3;2003:9;1994:7;1990:23;1986:33;1983:53;;;2032:1;2029;2022:12;1983:53;2055:29;2074:9;2055:29;:::i;:::-;2045:39;;2103:38;2137:2;2126:9;2122:18;2103:38;:::i;:::-;2093:48;;2188:2;2177:9;2173:18;2160:32;2150:42;;2243:2;2232:9;2228:18;2215:32;2270:18;2262:6;2259:30;2256:50;;;2302:1;2299;2292:12;2256:50;2325:22;;2378:4;2370:13;;2366:27;-1:-1:-1;2356:55:1;;2407:1;2404;2397:12;2356:55;2430:73;2495:7;2490:2;2477:16;2472:2;2468;2464:11;2430:73;:::i;:::-;2420:83;;;1843:666;;;;;;;:::o;2514:347::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;2679:29;2698:9;2679:29;:::i;:::-;2669:39;;2758:2;2747:9;2743:18;2730:32;2805:5;2798:13;2791:21;2784:5;2781:32;2771:60;;2827:1;2824;2817:12;2771:60;2850:5;2840:15;;;2514:347;;;;;:::o;2866:254::-;2934:6;2942;2995:2;2983:9;2974:7;2970:23;2966:32;2963:52;;;3011:1;3008;3001:12;2963:52;3034:29;3053:9;3034:29;:::i;:::-;3024:39;3110:2;3095:18;;;;3082:32;;-1:-1:-1;;;2866:254:1:o;3125:464::-;3212:6;3220;3228;3281:2;3269:9;3260:7;3256:23;3252:32;3249:52;;;3297:1;3294;3287:12;3249:52;3320:29;3339:9;3320:29;:::i;:::-;3310:39;;3396:2;3385:9;3381:18;3368:32;3358:42;;3451:2;3440:9;3436:18;3423:32;3478:18;3470:6;3467:30;3464:50;;;3510:1;3507;3500:12;3464:50;3533;3575:7;3566:6;3555:9;3551:22;3533:50;:::i;:::-;3523:60;;;3125:464;;;;;:::o;3594:245::-;3652:6;3705:2;3693:9;3684:7;3680:23;3676:32;3673:52;;;3721:1;3718;3711:12;3673:52;3760:9;3747:23;3779:30;3803:5;3779:30;:::i;3844:249::-;3913:6;3966:2;3954:9;3945:7;3941:23;3937:32;3934:52;;;3982:1;3979;3972:12;3934:52;4014:9;4008:16;4033:30;4057:5;4033:30;:::i;4098:322::-;4167:6;4220:2;4208:9;4199:7;4195:23;4191:32;4188:52;;;4236:1;4233;4226:12;4188:52;4276:9;4263:23;4309:18;4301:6;4298:30;4295:50;;;4341:1;4338;4331:12;4295:50;4364;4406:7;4397:6;4386:9;4382:22;4364:50;:::i;4425:180::-;4484:6;4537:2;4525:9;4516:7;4512:23;4508:32;4505:52;;;4553:1;4550;4543:12;4505:52;-1:-1:-1;4576:23:1;;4425:180;-1:-1:-1;4425:180:1:o;4610:257::-;4651:3;4689:5;4683:12;4716:6;4711:3;4704:19;4732:63;4788:6;4781:4;4776:3;4772:14;4765:4;4758:5;4754:16;4732:63;:::i;:::-;4849:2;4828:15;-1:-1:-1;;4824:29:1;4815:39;;;;4856:4;4811:50;;4610:257;-1:-1:-1;;4610:257:1:o;4872:470::-;5051:3;5089:6;5083:13;5105:53;5151:6;5146:3;5139:4;5131:6;5127:17;5105:53;:::i;:::-;5221:13;;5180:16;;;;5243:57;5221:13;5180:16;5277:4;5265:17;;5243:57;:::i;:::-;5316:20;;4872:470;-1:-1:-1;;;;4872:470:1:o;5555:488::-;-1:-1:-1;;;;;5824:15:1;;;5806:34;;5876:15;;5871:2;5856:18;;5849:43;5923:2;5908:18;;5901:34;;;5971:3;5966:2;5951:18;;5944:31;;;5749:4;;5992:45;;6017:19;;6009:6;5992:45;:::i;:::-;5984:53;5555:488;-1:-1:-1;;;;;;5555:488:1:o;6240:219::-;6389:2;6378:9;6371:21;6352:4;6409:44;6449:2;6438:9;6434:18;6426:6;6409:44;:::i;6876:414::-;7078:2;7060:21;;;7117:2;7097:18;;;7090:30;7156:34;7151:2;7136:18;;7129:62;-1:-1:-1;;;7222:2:1;7207:18;;7200:48;7280:3;7265:19;;6876:414::o;11664:356::-;11866:2;11848:21;;;11885:18;;;11878:30;11944:34;11939:2;11924:18;;11917:62;12011:2;11996:18;;11664:356::o;13253:413::-;13455:2;13437:21;;;13494:2;13474:18;;;13467:30;13533:34;13528:2;13513:18;;13506:62;-1:-1:-1;;;13599:2:1;13584:18;;13577:47;13656:3;13641:19;;13253:413::o;14683:128::-;14723:3;14754:1;14750:6;14747:1;14744:13;14741:39;;;14760:18;;:::i;:::-;-1:-1:-1;14796:9:1;;14683:128::o;14816:120::-;14856:1;14882;14872:35;;14887:18;;:::i;:::-;-1:-1:-1;14921:9:1;;14816:120::o;14941:125::-;14981:4;15009:1;15006;15003:8;15000:34;;;15014:18;;:::i;:::-;-1:-1:-1;15051:9:1;;14941:125::o;15071:258::-;15143:1;15153:113;15167:6;15164:1;15161:13;15153:113;;;15243:11;;;15237:18;15224:11;;;15217:39;15189:2;15182:10;15153:113;;;15284:6;15281:1;15278:13;15275:48;;;-1:-1:-1;;15319:1:1;15301:16;;15294:27;15071:258::o;15334:380::-;15413:1;15409:12;;;;15456;;;15477:61;;15531:4;15523:6;15519:17;15509:27;;15477:61;15584:2;15576:6;15573:14;15553:18;15550:38;15547:161;;;15630:10;15625:3;15621:20;15618:1;15611:31;15665:4;15662:1;15655:15;15693:4;15690:1;15683:15;15547:161;;15334:380;;;:::o;15719:135::-;15758:3;-1:-1:-1;;15779:17:1;;15776:43;;;15799:18;;:::i;:::-;-1:-1:-1;15846:1:1;15835:13;;15719:135::o;15859:112::-;15891:1;15917;15907:35;;15922:18;;:::i;:::-;-1:-1:-1;15956:9:1;;15859:112::o;15976:127::-;16037:10;16032:3;16028:20;16025:1;16018:31;16068:4;16065:1;16058:15;16092:4;16089:1;16082:15;16108:127;16169:10;16164:3;16160:20;16157:1;16150:31;16200:4;16197:1;16190:15;16224:4;16221:1;16214:15;16240:127;16301:10;16296:3;16292:20;16289:1;16282:31;16332:4;16329:1;16322:15;16356:4;16353:1;16346:15;16372:127;16433:10;16428:3;16424:20;16421:1;16414:31;16464:4;16461:1;16454:15;16488:4;16485:1;16478:15;16504:127;16565:10;16560:3;16556:20;16553:1;16546:31;16596:4;16593:1;16586:15;16620:4;16617:1;16610:15;16636:131;-1:-1:-1;;;;;;16710:32:1;;16700:43;;16690:71;;16757:1;16754;16747:12

Swarm Source

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