ETH Price: $3,441.16 (+1.46%)
Gas: 5 Gwei

Token

DoodPunks (DPUNKS)
 

Overview

Max Total Supply

0 DPUNKS

Holders

716

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cvd.eth
Balance
10 DPUNKS
0xdaa7c1b5feaca5d1bc1bea7e7c07d91d3e6dfe51
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:
DoodPunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-13
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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




contract DoodPunks is ERC721, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public PRICE = 0.024 ether;
    uint256 public MAX_SUPPLY = 6666;
    uint256 public constant OWNER_AMOUNT = 20;
    uint256 public minted;

    constructor(
        string memory name_,
        string memory symbol_,
        string memory baseURI_
    ) ERC721(name_, symbol_) {
        baseURI = baseURI_;
        for (uint256 i = 0; i < OWNER_AMOUNT; i++) {
            _safeMint(msg.sender, ++minted);
        }
    }

    function PRICEupdate(uint _minted) internal view returns (uint _PRICE){
        if(_minted < 1000){
            return 0 ether;
        }   
        if(_minted <= MAX_SUPPLY){
            return PRICE;
        }   
    }

    function mint(uint8 amount) public payable nonReentrant {
        require(amount > 0, "Amount must be more than 0");
        require(amount <= 20, "Amount must be 20 or less");
        require(minted + amount <= MAX_SUPPLY, "Sold out");
        require(msg.value >= PRICEupdate(minted) * amount, "Ether value sent is not correct");
        

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender, ++minted);
        }
    }
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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


	function setPRICE(uint256 _newPRICE) public onlyOwner {
	    PRICE = _newPRICE;
	}

	function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
	    MAX_SUPPLY = _newMaxSupply;
    }

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

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

    function withdraw(address payable recipient) public onlyOwner {
        require(address(this).balance > 0, "No contract balance");
        recipient.transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"uint8","name":"amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"_newPRICE","type":"uint256"}],"name":"setPRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160099190620004cd565b50665543df729c0000600a55611a0a600b553480156200004757600080fd5b5060405162002607380380620026078339810160408190526200006a9162000637565b82518390839062000083906000906020850190620004cd565b50805162000099906001906020840190620004cd565b505050620000b6620000b06200011e60201b60201c565b62000122565b60016007558051620000d0906008906020840190620004cd565b5060005b60148110156200011457620000ff33600c60008154620000f490620007a9565b918290555062000174565b806200010b81620007a9565b915050620000d4565b50505050620007f3565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001968282604051806020016040528060008152506200019a60201b60201c565b5050565b620001a6838362000216565b620001b560008484846200035e565b620002115760405162461bcd60e51b81526020600482015260326024820152600080516020620025e783398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b0382166200026e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000208565b6000818152600260205260409020546001600160a01b031615620002d55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000208565b6001600160a01b0382166000908152600360205260408120805460019290620003009084906200071e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006200037f846001600160a01b0316620004c760201b62000f741760201c565b15620004bb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620003b9903390899088908890600401620006c8565b602060405180830381600087803b158015620003d457600080fd5b505af192505050801562000407575060408051601f3d908101601f19168201909252620004049181019062000604565b60015b620004a0573d80801562000438576040519150601f19603f3d011682016040523d82523d6000602084013e6200043d565b606091505b508051620004985760405162461bcd60e51b81526020600482015260326024820152600080516020620025e783398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000208565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620004bf565b5060015b949350505050565b3b151590565b828054620004db906200076c565b90600052602060002090601f016020900481019282620004ff57600085556200054a565b82601f106200051a57805160ff19168380011785556200054a565b828001600101855582156200054a579182015b828111156200054a5782518255916020019190600101906200052d565b50620005589291506200055c565b5090565b5b808211156200055857600081556001016200055d565b600082601f8301126200058557600080fd5b81516001600160401b0380821115620005a257620005a2620007dd565b604051601f8301601f19908116603f01168101908282118183101715620005cd57620005cd620007dd565b81604052838152866020858801011115620005e757600080fd5b620005fa84602083016020890162000739565b9695505050505050565b6000602082840312156200061757600080fd5b81516001600160e01b0319811681146200063057600080fd5b9392505050565b6000806000606084860312156200064d57600080fd5b83516001600160401b03808211156200066557600080fd5b620006738783880162000573565b945060208601519150808211156200068a57600080fd5b620006988783880162000573565b93506040860151915080821115620006af57600080fd5b50620006be8682870162000573565b9150509250925092565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007078160a085016020870162000739565b601f01601f19169190910160a00195945050505050565b60008219821115620007345762000734620007c7565b500190565b60005b83811015620007565781810151838201526020016200073c565b8381111562000766576000848401525b50505050565b600181811c908216806200078157607f821691505b60208210811415620007a357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620007c057620007c0620007c7565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b611de480620008036000396000f3fe60806040526004361061019c5760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461045c578063e985e9c51461047c578063eea52d38146104c5578063f2fde38b146104e557600080fd5b8063a22cb46514610407578063b88d4fde14610427578063c66828621461044757600080fd5b8063715018a6116100c6578063715018a6146103a95780638d859f3e146103be5780638da5cb5b146103d457806395d89b41146103f257600080fd5b80636c0360eb146103615780636ecd23061461037657806370a082311461038957600080fd5b806332cb6b0c1161015957806351cff8d91161013357806351cff8d9146102ec57806355f804b31461030c5780636352211e1461032c57806368be98221461034c57600080fd5b806332cb6b0c1461029257806342842e0e146102b65780634f02c420146102d657600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b314610230578063228025e81461025257806323b872dd14610272575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461195c565b610505565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610557565b6040516101cd9190611b48565b34801561020457600080fd5b506102186102133660046119df565b6105e9565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611930565b610683565b005b34801561025e57600080fd5b5061025061026d3660046119df565b610799565b34801561027e57600080fd5b5061025061028d36600461183c565b6107c8565b34801561029e57600080fd5b506102a8600b5481565b6040519081526020016101cd565b3480156102c257600080fd5b506102506102d136600461183c565b6107f9565b3480156102e257600080fd5b506102a8600c5481565b3480156102f857600080fd5b506102506103073660046117e6565b610814565b34801561031857600080fd5b50610250610327366004611996565b6108bd565b34801561033857600080fd5b506102186103473660046119df565b6108fa565b34801561035857600080fd5b506102a8601481565b34801561036d57600080fd5b506101eb610971565b6102506103843660046119f8565b6109ff565b34801561039557600080fd5b506102a86103a43660046117e6565b610bf6565b3480156103b557600080fd5b50610250610c7d565b3480156103ca57600080fd5b506102a8600a5481565b3480156103e057600080fd5b506006546001600160a01b0316610218565b3480156103fe57600080fd5b506101eb610cb3565b34801561041357600080fd5b506102506104223660046118fd565b610cc2565b34801561043357600080fd5b5061025061044236600461187d565b610d87565b34801561045357600080fd5b506101eb610dbf565b34801561046857600080fd5b506101eb6104773660046119df565b610dcc565b34801561048857600080fd5b506101c1610497366004611803565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104d157600080fd5b506102506104e03660046119df565b610eaa565b3480156104f157600080fd5b506102506105003660046117e6565b610ed9565b60006001600160e01b031982166380ac58cd60e01b148061053657506001600160e01b03198216635b5e139f60e01b145b8061055157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461056690611cc1565b80601f016020809104026020016040519081016040528092919081815260200182805461059290611cc1565b80156105df5780601f106105b4576101008083540402835291602001916105df565b820191906000526020600020905b8154815290600101906020018083116105c257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106675760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061068e826108fa565b9050806001600160a01b0316836001600160a01b031614156106fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161065e565b336001600160a01b038216148061071857506107188133610497565b61078a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161065e565b6107948383610f7a565b505050565b6006546001600160a01b031633146107c35760405162461bcd60e51b815260040161065e90611bad565b600b55565b6107d23382610fe8565b6107ee5760405162461bcd60e51b815260040161065e90611be2565b6107948383836110df565b61079483838360405180602001604052806000815250610d87565b6006546001600160a01b0316331461083e5760405162461bcd60e51b815260040161065e90611bad565b600047116108845760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e74726163742062616c616e636560681b604482015260640161065e565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156108b9573d6000803e3d6000fd5b5050565b6006546001600160a01b031633146108e75760405162461bcd60e51b815260040161065e90611bad565b80516108b99060089060208401906116d7565b6000818152600260205260408120546001600160a01b0316806105515760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161065e565b6008805461097e90611cc1565b80601f01602080910402602001604051908101604052809291908181526020018280546109aa90611cc1565b80156109f75780601f106109cc576101008083540402835291602001916109f7565b820191906000526020600020905b8154815290600101906020018083116109da57829003601f168201915b505050505081565b60026007541415610a525760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161065e565b600260075560ff8116610aa75760405162461bcd60e51b815260206004820152601a60248201527f416d6f756e74206d757374206265206d6f7265207468616e2030000000000000604482015260640161065e565b60148160ff161115610afb5760405162461bcd60e51b815260206004820152601960248201527f416d6f756e74206d757374206265203230206f72206c65737300000000000000604482015260640161065e565b600b548160ff16600c54610b0f9190611c33565b1115610b485760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b604482015260640161065e565b8060ff16610b57600c5461127f565b610b619190611c5f565b341015610bb05760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161065e565b60005b8160ff16811015610bed57610bdb33600c60008154610bd190611cfc565b91829055506112a9565b80610be581611cfc565b915050610bb3565b50506001600755565b60006001600160a01b038216610c615760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161065e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ca75760405162461bcd60e51b815260040161065e90611bad565b610cb160006112c3565b565b60606001805461056690611cc1565b6001600160a01b038216331415610d1b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161065e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d913383610fe8565b610dad5760405162461bcd60e51b815260040161065e90611be2565b610db984848484611315565b50505050565b6009805461097e90611cc1565b6000818152600260205260409020546060906001600160a01b0316610e4b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161065e565b6000610e55611348565b90506000815111610e755760405180602001604052806000815250610ea3565b80610e7f84611357565b6009604051602001610e9393929190611a47565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610ed45760405162461bcd60e51b815260040161065e90611bad565b600a55565b6006546001600160a01b03163314610f035760405162461bcd60e51b815260040161065e90611bad565b6001600160a01b038116610f685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065e565b610f71816112c3565b50565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610faf826108fa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161065e565b600061106c836108fa565b9050806001600160a01b0316846001600160a01b031614806110a75750836001600160a01b031661109c846105e9565b6001600160a01b0316145b806110d757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110f2826108fa565b6001600160a01b03161461115a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161065e565b6001600160a01b0382166111bc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161065e565b6111c7600082610f7a565b6001600160a01b03831660009081526003602052604081208054600192906111f0908490611c7e565b90915550506001600160a01b038216600090815260036020526040812080546001929061121e908490611c33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006103e882101561129357506000919050565b600b5482116112a4575050600a5490565b919050565b6108b9828260405180602001604052806000815250611455565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113208484846110df565b61132c84848484611488565b610db95760405162461bcd60e51b815260040161065e90611b5b565b60606008805461056690611cc1565b60608161137b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113a5578061138f81611cfc565b915061139e9050600a83611c4b565b915061137f565b60008167ffffffffffffffff8111156113c0576113c0611d6d565b6040519080825280601f01601f1916602001820160405280156113ea576020820181803683370190505b5090505b84156110d7576113ff600183611c7e565b915061140c600a86611d17565b611417906030611c33565b60f81b81838151811061142c5761142c611d57565b60200101906001600160f81b031916908160001a90535061144e600a86611c4b565b94506113ee565b61145f8383611595565b61146c6000848484611488565b6107945760405162461bcd60e51b815260040161065e90611b5b565b60006001600160a01b0384163b1561158a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114cc903390899088908890600401611b0b565b602060405180830381600087803b1580156114e657600080fd5b505af1925050508015611516575060408051601f3d908101601f1916820190925261151391810190611979565b60015b611570573d808015611544576040519150601f19603f3d011682016040523d82523d6000602084013e611549565b606091505b5080516115685760405162461bcd60e51b815260040161065e90611b5b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110d7565b506001949350505050565b6001600160a01b0382166115eb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161065e565b6000818152600260205260409020546001600160a01b0316156116505760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161065e565b6001600160a01b0382166000908152600360205260408120805460019290611679908490611c33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116e390611cc1565b90600052602060002090601f016020900481019282611705576000855561174b565b82601f1061171e57805160ff191683800117855561174b565b8280016001018555821561174b579182015b8281111561174b578251825591602001919060010190611730565b5061175792915061175b565b5090565b5b80821115611757576000815560010161175c565b600067ffffffffffffffff8084111561178b5761178b611d6d565b604051601f8501601f19908116603f011681019082821181831017156117b3576117b3611d6d565b816040528093508581528686860111156117cc57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156117f857600080fd5b8135610ea381611d83565b6000806040838503121561181657600080fd5b823561182181611d83565b9150602083013561183181611d83565b809150509250929050565b60008060006060848603121561185157600080fd5b833561185c81611d83565b9250602084013561186c81611d83565b929592945050506040919091013590565b6000806000806080858703121561189357600080fd5b843561189e81611d83565b935060208501356118ae81611d83565b925060408501359150606085013567ffffffffffffffff8111156118d157600080fd5b8501601f810187136118e257600080fd5b6118f187823560208401611770565b91505092959194509250565b6000806040838503121561191057600080fd5b823561191b81611d83565b91506020830135801515811461183157600080fd5b6000806040838503121561194357600080fd5b823561194e81611d83565b946020939093013593505050565b60006020828403121561196e57600080fd5b8135610ea381611d98565b60006020828403121561198b57600080fd5b8151610ea381611d98565b6000602082840312156119a857600080fd5b813567ffffffffffffffff8111156119bf57600080fd5b8201601f810184136119d057600080fd5b6110d784823560208401611770565b6000602082840312156119f157600080fd5b5035919050565b600060208284031215611a0a57600080fd5b813560ff81168114610ea357600080fd5b60008151808452611a33816020860160208601611c95565b601f01601f19169290920160200192915050565b600084516020611a5a8285838a01611c95565b855191840191611a6d8184848a01611c95565b8554920191600090600181811c9080831680611a8a57607f831692505b858310811415611aa857634e487b7160e01b85526022600452602485fd5b808015611abc5760018114611acd57611afa565b60ff19851688528388019550611afa565b60008b81526020902060005b85811015611af25781548a820152908401908801611ad9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b3e90830184611a1b565b9695505050505050565b602081526000610ea36020830184611a1b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611c4657611c46611d2b565b500190565b600082611c5a57611c5a611d41565b500490565b6000816000190483118215151615611c7957611c79611d2b565b500290565b600082821015611c9057611c90611d2b565b500390565b60005b83811015611cb0578181015183820152602001611c98565b83811115610db95750506000910152565b600181811c90821680611cd557607f821691505b60208210811415611cf657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d1057611d10611d2b565b5060010190565b600082611d2657611d26611d41565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f7157600080fd5b6001600160e01b031981168114610f7157600080fdfea26469706673582212206db5bcbbd19043284f20f964b35732b627802d771d4e1e6582c55321e23b651e64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009446f6f6450756e6b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064450554e4b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d515650424459767a626d4a43546d6e72504356326b69744e316b5348386271316f6f70353978746457704d6d2f00000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636c0360eb116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd1461045c578063e985e9c51461047c578063eea52d38146104c5578063f2fde38b146104e557600080fd5b8063a22cb46514610407578063b88d4fde14610427578063c66828621461044757600080fd5b8063715018a6116100c6578063715018a6146103a95780638d859f3e146103be5780638da5cb5b146103d457806395d89b41146103f257600080fd5b80636c0360eb146103615780636ecd23061461037657806370a082311461038957600080fd5b806332cb6b0c1161015957806351cff8d91161013357806351cff8d9146102ec57806355f804b31461030c5780636352211e1461032c57806368be98221461034c57600080fd5b806332cb6b0c1461029257806342842e0e146102b65780634f02c420146102d657600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b314610230578063228025e81461025257806323b872dd14610272575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461195c565b610505565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610557565b6040516101cd9190611b48565b34801561020457600080fd5b506102186102133660046119df565b6105e9565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611930565b610683565b005b34801561025e57600080fd5b5061025061026d3660046119df565b610799565b34801561027e57600080fd5b5061025061028d36600461183c565b6107c8565b34801561029e57600080fd5b506102a8600b5481565b6040519081526020016101cd565b3480156102c257600080fd5b506102506102d136600461183c565b6107f9565b3480156102e257600080fd5b506102a8600c5481565b3480156102f857600080fd5b506102506103073660046117e6565b610814565b34801561031857600080fd5b50610250610327366004611996565b6108bd565b34801561033857600080fd5b506102186103473660046119df565b6108fa565b34801561035857600080fd5b506102a8601481565b34801561036d57600080fd5b506101eb610971565b6102506103843660046119f8565b6109ff565b34801561039557600080fd5b506102a86103a43660046117e6565b610bf6565b3480156103b557600080fd5b50610250610c7d565b3480156103ca57600080fd5b506102a8600a5481565b3480156103e057600080fd5b506006546001600160a01b0316610218565b3480156103fe57600080fd5b506101eb610cb3565b34801561041357600080fd5b506102506104223660046118fd565b610cc2565b34801561043357600080fd5b5061025061044236600461187d565b610d87565b34801561045357600080fd5b506101eb610dbf565b34801561046857600080fd5b506101eb6104773660046119df565b610dcc565b34801561048857600080fd5b506101c1610497366004611803565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104d157600080fd5b506102506104e03660046119df565b610eaa565b3480156104f157600080fd5b506102506105003660046117e6565b610ed9565b60006001600160e01b031982166380ac58cd60e01b148061053657506001600160e01b03198216635b5e139f60e01b145b8061055157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461056690611cc1565b80601f016020809104026020016040519081016040528092919081815260200182805461059290611cc1565b80156105df5780601f106105b4576101008083540402835291602001916105df565b820191906000526020600020905b8154815290600101906020018083116105c257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106675760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061068e826108fa565b9050806001600160a01b0316836001600160a01b031614156106fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161065e565b336001600160a01b038216148061071857506107188133610497565b61078a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161065e565b6107948383610f7a565b505050565b6006546001600160a01b031633146107c35760405162461bcd60e51b815260040161065e90611bad565b600b55565b6107d23382610fe8565b6107ee5760405162461bcd60e51b815260040161065e90611be2565b6107948383836110df565b61079483838360405180602001604052806000815250610d87565b6006546001600160a01b0316331461083e5760405162461bcd60e51b815260040161065e90611bad565b600047116108845760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e74726163742062616c616e636560681b604482015260640161065e565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156108b9573d6000803e3d6000fd5b5050565b6006546001600160a01b031633146108e75760405162461bcd60e51b815260040161065e90611bad565b80516108b99060089060208401906116d7565b6000818152600260205260408120546001600160a01b0316806105515760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161065e565b6008805461097e90611cc1565b80601f01602080910402602001604051908101604052809291908181526020018280546109aa90611cc1565b80156109f75780601f106109cc576101008083540402835291602001916109f7565b820191906000526020600020905b8154815290600101906020018083116109da57829003601f168201915b505050505081565b60026007541415610a525760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161065e565b600260075560ff8116610aa75760405162461bcd60e51b815260206004820152601a60248201527f416d6f756e74206d757374206265206d6f7265207468616e2030000000000000604482015260640161065e565b60148160ff161115610afb5760405162461bcd60e51b815260206004820152601960248201527f416d6f756e74206d757374206265203230206f72206c65737300000000000000604482015260640161065e565b600b548160ff16600c54610b0f9190611c33565b1115610b485760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b604482015260640161065e565b8060ff16610b57600c5461127f565b610b619190611c5f565b341015610bb05760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161065e565b60005b8160ff16811015610bed57610bdb33600c60008154610bd190611cfc565b91829055506112a9565b80610be581611cfc565b915050610bb3565b50506001600755565b60006001600160a01b038216610c615760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161065e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ca75760405162461bcd60e51b815260040161065e90611bad565b610cb160006112c3565b565b60606001805461056690611cc1565b6001600160a01b038216331415610d1b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161065e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d913383610fe8565b610dad5760405162461bcd60e51b815260040161065e90611be2565b610db984848484611315565b50505050565b6009805461097e90611cc1565b6000818152600260205260409020546060906001600160a01b0316610e4b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161065e565b6000610e55611348565b90506000815111610e755760405180602001604052806000815250610ea3565b80610e7f84611357565b6009604051602001610e9393929190611a47565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610ed45760405162461bcd60e51b815260040161065e90611bad565b600a55565b6006546001600160a01b03163314610f035760405162461bcd60e51b815260040161065e90611bad565b6001600160a01b038116610f685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161065e565b610f71816112c3565b50565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610faf826108fa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110615760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161065e565b600061106c836108fa565b9050806001600160a01b0316846001600160a01b031614806110a75750836001600160a01b031661109c846105e9565b6001600160a01b0316145b806110d757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166110f2826108fa565b6001600160a01b03161461115a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161065e565b6001600160a01b0382166111bc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161065e565b6111c7600082610f7a565b6001600160a01b03831660009081526003602052604081208054600192906111f0908490611c7e565b90915550506001600160a01b038216600090815260036020526040812080546001929061121e908490611c33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006103e882101561129357506000919050565b600b5482116112a4575050600a5490565b919050565b6108b9828260405180602001604052806000815250611455565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113208484846110df565b61132c84848484611488565b610db95760405162461bcd60e51b815260040161065e90611b5b565b60606008805461056690611cc1565b60608161137b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113a5578061138f81611cfc565b915061139e9050600a83611c4b565b915061137f565b60008167ffffffffffffffff8111156113c0576113c0611d6d565b6040519080825280601f01601f1916602001820160405280156113ea576020820181803683370190505b5090505b84156110d7576113ff600183611c7e565b915061140c600a86611d17565b611417906030611c33565b60f81b81838151811061142c5761142c611d57565b60200101906001600160f81b031916908160001a90535061144e600a86611c4b565b94506113ee565b61145f8383611595565b61146c6000848484611488565b6107945760405162461bcd60e51b815260040161065e90611b5b565b60006001600160a01b0384163b1561158a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114cc903390899088908890600401611b0b565b602060405180830381600087803b1580156114e657600080fd5b505af1925050508015611516575060408051601f3d908101601f1916820190925261151391810190611979565b60015b611570573d808015611544576040519150601f19603f3d011682016040523d82523d6000602084013e611549565b606091505b5080516115685760405162461bcd60e51b815260040161065e90611b5b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110d7565b506001949350505050565b6001600160a01b0382166115eb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161065e565b6000818152600260205260409020546001600160a01b0316156116505760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161065e565b6001600160a01b0382166000908152600360205260408120805460019290611679908490611c33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546116e390611cc1565b90600052602060002090601f016020900481019282611705576000855561174b565b82601f1061171e57805160ff191683800117855561174b565b8280016001018555821561174b579182015b8281111561174b578251825591602001919060010190611730565b5061175792915061175b565b5090565b5b80821115611757576000815560010161175c565b600067ffffffffffffffff8084111561178b5761178b611d6d565b604051601f8501601f19908116603f011681019082821181831017156117b3576117b3611d6d565b816040528093508581528686860111156117cc57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156117f857600080fd5b8135610ea381611d83565b6000806040838503121561181657600080fd5b823561182181611d83565b9150602083013561183181611d83565b809150509250929050565b60008060006060848603121561185157600080fd5b833561185c81611d83565b9250602084013561186c81611d83565b929592945050506040919091013590565b6000806000806080858703121561189357600080fd5b843561189e81611d83565b935060208501356118ae81611d83565b925060408501359150606085013567ffffffffffffffff8111156118d157600080fd5b8501601f810187136118e257600080fd5b6118f187823560208401611770565b91505092959194509250565b6000806040838503121561191057600080fd5b823561191b81611d83565b91506020830135801515811461183157600080fd5b6000806040838503121561194357600080fd5b823561194e81611d83565b946020939093013593505050565b60006020828403121561196e57600080fd5b8135610ea381611d98565b60006020828403121561198b57600080fd5b8151610ea381611d98565b6000602082840312156119a857600080fd5b813567ffffffffffffffff8111156119bf57600080fd5b8201601f810184136119d057600080fd5b6110d784823560208401611770565b6000602082840312156119f157600080fd5b5035919050565b600060208284031215611a0a57600080fd5b813560ff81168114610ea357600080fd5b60008151808452611a33816020860160208601611c95565b601f01601f19169290920160200192915050565b600084516020611a5a8285838a01611c95565b855191840191611a6d8184848a01611c95565b8554920191600090600181811c9080831680611a8a57607f831692505b858310811415611aa857634e487b7160e01b85526022600452602485fd5b808015611abc5760018114611acd57611afa565b60ff19851688528388019550611afa565b60008b81526020902060005b85811015611af25781548a820152908401908801611ad9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b3e90830184611a1b565b9695505050505050565b602081526000610ea36020830184611a1b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611c4657611c46611d2b565b500190565b600082611c5a57611c5a611d41565b500490565b6000816000190483118215151615611c7957611c79611d2b565b500290565b600082821015611c9057611c90611d2b565b500390565b60005b83811015611cb0578181015183820152602001611c98565b83811115610db95750506000910152565b600181811c90821680611cd557607f821691505b60208210811415611cf657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d1057611d10611d2b565b5060010190565b600082611d2657611d26611d41565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f7157600080fd5b6001600160e01b031981168114610f7157600080fdfea26469706673582212206db5bcbbd19043284f20f964b35732b627802d771d4e1e6582c55321e23b651e64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009446f6f6450756e6b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064450554e4b5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d515650424459767a626d4a43546d6e72504356326b69744e316b5348386271316f6f70353978746457704d6d2f00000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): DoodPunks
Arg [1] : symbol_ (string): DPUNKS
Arg [2] : baseURI_ (string): ipfs://QmQVPBDYvzbmJCTmnrPCV2kitN1kSH8bq1oop59xtdWpMm/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 446f6f6450756e6b730000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4450554e4b530000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d515650424459767a626d4a43546d6e72504356326b6974
Arg [9] : 4e316b5348386271316f6f70353978746457704d6d2f00000000000000000000


Deployed Bytecode Sourcemap

39228:2425:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21159:355;;;;;;;;;;-1:-1:-1;21159:355:0;;;;;:::i;:::-;;:::i;:::-;;;7634:14:1;;7627:22;7609:41;;7597:2;7582:18;21159:355:0;;;;;;;;22328:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24021:308::-;;;;;;;;;;-1:-1:-1;24021:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6932:32:1;;;6914:51;;6902:2;6887:18;24021:308:0;6768:203:1;23544:411:0;;;;;;;;;;-1:-1:-1;23544:411:0;;;;;:::i;:::-;;:::i;:::-;;41126:104;;;;;;;;;;-1:-1:-1;41126:104:0;;;;;:::i;:::-;;:::i;25080:376::-;;;;;;;;;;-1:-1:-1;25080:376:0;;;;;:::i;:::-;;:::i;39437:32::-;;;;;;;;;;;;;;;;;;;16526:25:1;;;16514:2;16499:18;39437:32:0;16380:177:1;25527:185:0;;;;;;;;;;-1:-1:-1;25527:185:0;;;;;:::i;:::-;;:::i;39524:21::-;;;;;;;;;;;;;;;;41460:190;;;;;;;;;;-1:-1:-1;41460:190:0;;;;;:::i;:::-;;:::i;41238:98::-;;;;;;;;;;-1:-1:-1;41238:98:0;;;;;:::i;:::-;;:::i;21935:326::-;;;;;;;;;;-1:-1:-1;21935:326:0;;;;;:::i;:::-;;:::i;39476:41::-;;;;;;;;;;;;39515:2;39476:41;;39324:21;;;;;;;;;;;;;:::i;40082:459::-;;;;;;:::i;:::-;;:::i;21578:295::-;;;;;;;;;;-1:-1:-1;21578:295:0;;;;;:::i;:::-;;:::i;35889:94::-;;;;;;;;;;;;;:::i;39396:34::-;;;;;;;;;;;;;;;;35238:87;;;;;;;;;;-1:-1:-1;35311:6:0;;-1:-1:-1;;;;;35311:6:0;35238:87;;22497:104;;;;;;;;;;;;;:::i;24401:327::-;;;;;;;;;;-1:-1:-1;24401:327:0;;;;;:::i;:::-;;:::i;25783:365::-;;;;;;;;;;-1:-1:-1;25783:365:0;;;;;:::i;:::-;;:::i;39352:37::-;;;;;;;;;;;;;:::i;40547:483::-;;;;;;;;;;-1:-1:-1;40547:483:0;;;;;:::i;:::-;;:::i;24799:214::-;;;;;;;;;;-1:-1:-1;24799:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;24970:25:0;;;24941:4;24970:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24799:214;41037:84;;;;;;;;;;-1:-1:-1;41037:84:0;;;;;:::i;:::-;;:::i;36138:229::-;;;;;;;;;;-1:-1:-1;36138:229:0;;;;;:::i;:::-;;:::i;21159:355::-;21306:4;-1:-1:-1;;;;;;21348:40:0;;-1:-1:-1;;;21348:40:0;;:105;;-1:-1:-1;;;;;;;21405:48:0;;-1:-1:-1;;;21405:48:0;21348:105;:158;;;-1:-1:-1;;;;;;;;;;19811:40:0;;;21470:36;21328:178;21159:355;-1:-1:-1;;21159:355:0:o;22328:100::-;22382:13;22415:5;22408:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22328:100;:::o;24021:308::-;24142:7;27784:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27784:16:0;24167:110;;;;-1:-1:-1;;;24167:110:0;;12764:2:1;24167:110:0;;;12746:21:1;12803:2;12783:18;;;12776:30;12842:34;12822:18;;;12815:62;-1:-1:-1;;;12893:18:1;;;12886:42;12945:19;;24167:110:0;;;;;;;;;-1:-1:-1;24297:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24297:24:0;;24021:308::o;23544:411::-;23625:13;23641:23;23656:7;23641:14;:23::i;:::-;23625:39;;23689:5;-1:-1:-1;;;;;23683:11:0;:2;-1:-1:-1;;;;;23683:11:0;;;23675:57;;;;-1:-1:-1;;;23675:57:0;;15066:2:1;23675:57:0;;;15048:21:1;15105:2;15085:18;;;15078:30;15144:34;15124:18;;;15117:62;-1:-1:-1;;;15195:18:1;;;15188:31;15236:19;;23675:57:0;14864:397:1;23675:57:0;16670:10;-1:-1:-1;;;;;23767:21:0;;;;:62;;-1:-1:-1;23792:37:0;23809:5;16670:10;24799:214;:::i;23792:37::-;23745:168;;;;-1:-1:-1;;;23745:168:0;;11157:2:1;23745:168:0;;;11139:21:1;11196:2;11176:18;;;11169:30;11235:34;11215:18;;;11208:62;11306:26;11286:18;;;11279:54;11350:19;;23745:168:0;10955:420:1;23745:168:0;23926:21;23935:2;23939:7;23926:8;:21::i;:::-;23614:341;23544:411;;:::o;41126:104::-;35311:6;;-1:-1:-1;;;;;35311:6:0;16670:10;35458:23;35450:68;;;;-1:-1:-1;;;35450:68:0;;;;;;;:::i;:::-;41196:10:::1;:26:::0;41126:104::o;25080:376::-;25289:41;16670:10;25322:7;25289:18;:41::i;:::-;25267:140;;;;-1:-1:-1;;;25267:140:0;;;;;;;:::i;:::-;25420:28;25430:4;25436:2;25440:7;25420:9;:28::i;25527:185::-;25665:39;25682:4;25688:2;25692:7;25665:39;;;;;;;;;;;;:16;:39::i;41460:190::-;35311:6;;-1:-1:-1;;;;;35311:6:0;16670:10;35458:23;35450:68;;;;-1:-1:-1;;;35450:68:0;;;;;;;:::i;:::-;41565:1:::1;41541:21;:25;41533:57;;;::::0;-1:-1:-1;;;41533:57:0;;13538:2:1;41533:57:0::1;::::0;::::1;13520:21:1::0;13577:2;13557:18;;;13550:30;-1:-1:-1;;;13596:18:1;;;13589:49;13655:18;;41533:57:0::1;13336:343:1::0;41533:57:0::1;41601:41;::::0;-1:-1:-1;;;;;41601:18:0;::::1;::::0;41620:21:::1;41601:41:::0;::::1;;;::::0;::::1;::::0;;;41620:21;41601:18;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;41460:190:::0;:::o;41238:98::-;35311:6;;-1:-1:-1;;;;;35311:6:0;16670:10;35458:23;35450:68;;;;-1:-1:-1;;;35450:68:0;;;;;;;:::i;:::-;41310:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;21935:326::-:0;22052:7;22093:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22093:16:0;22142:19;22120:110;;;;-1:-1:-1;;;22120:110:0;;11993:2:1;22120:110:0;;;11975:21:1;12032:2;12012:18;;;12005:30;12071:34;12051:18;;;12044:62;-1:-1:-1;;;12122:18:1;;;12115:39;12171:19;;22120:110:0;11791:405:1;39324:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40082:459::-;38277:1;38873:7;;:19;;38865:63;;;;-1:-1:-1;;;38865:63:0;;16222:2:1;38865:63:0;;;16204:21:1;16261:2;16241:18;;;16234:30;16300:33;16280:18;;;16273:61;16351:18;;38865:63:0;16020:355:1;38865:63:0;38277:1;39006:7;:18;40157:10:::1;::::0;::::1;40149:49;;;::::0;-1:-1:-1;;;40149:49:0;;10802:2:1;40149:49:0::1;::::0;::::1;10784:21:1::0;10841:2;10821:18;;;10814:30;10880:28;10860:18;;;10853:56;10926:18;;40149:49:0::1;10600:350:1::0;40149:49:0::1;40227:2;40217:6;:12;;;;40209:50;;;::::0;-1:-1:-1;;;40209:50:0;;14712:2:1;40209:50:0::1;::::0;::::1;14694:21:1::0;14751:2;14731:18;;;14724:30;14790:27;14770:18;;;14763:55;14835:18;;40209:50:0::1;14510:349:1::0;40209:50:0::1;40297:10;;40287:6;40278:15;;:6;;:15;;;;:::i;:::-;:29;;40270:50;;;::::0;-1:-1:-1;;;40270:50:0;;15886:2:1;40270:50:0::1;::::0;::::1;15868:21:1::0;15925:1;15905:18;;;15898:29;-1:-1:-1;;;15943:18:1;;;15936:38;15991:18;;40270:50:0::1;15684:331:1::0;40270:50:0::1;40374:6;40352:28;;:19;40364:6;;40352:11;:19::i;:::-;:28;;;;:::i;:::-;40339:9;:41;;40331:85;;;::::0;-1:-1:-1;;;40331:85:0;;10029:2:1;40331:85:0::1;::::0;::::1;10011:21:1::0;10068:2;10048:18;;;10041:30;10107:33;10087:18;;;10080:61;10158:18;;40331:85:0::1;9827:355:1::0;40331:85:0::1;40444:9;40439:95;40463:6;40459:10;;:1;:10;40439:95;;;40491:31;40501:10;40515:6;;40513:8;;;;;:::i;:::-;::::0;;;;-1:-1:-1;40491:9:0::1;:31::i;:::-;40471:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40439:95;;;-1:-1:-1::0;;38233:1:0;39185:7;:22;40082:459::o;21578:295::-;21695:7;-1:-1:-1;;;;;21742:19:0;;21720:111;;;;-1:-1:-1;;;21720:111:0;;11582:2:1;21720:111:0;;;11564:21:1;11621:2;11601:18;;;11594:30;11660:34;11640:18;;;11633:62;-1:-1:-1;;;11711:18:1;;;11704:40;11761:19;;21720:111:0;11380:406:1;21720:111:0;-1:-1:-1;;;;;;21849:16:0;;;;;:9;:16;;;;;;;21578:295::o;35889:94::-;35311:6;;-1:-1:-1;;;;;35311:6:0;16670:10;35458:23;35450:68;;;;-1:-1:-1;;;35450:68:0;;;;;;;:::i;:::-;35954:21:::1;35972:1;35954:9;:21::i;:::-;35889:94::o:0;22497:104::-;22553:13;22586:7;22579:14;;;;;:::i;24401:327::-;-1:-1:-1;;;;;24536:24:0;;16670:10;24536:24;;24528:62;;;;-1:-1:-1;;;24528:62:0;;9675:2:1;24528:62:0;;;9657:21:1;9714:2;9694:18;;;9687:30;9753:27;9733:18;;;9726:55;9798:18;;24528:62:0;9473:349:1;24528:62:0;16670:10;24603:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24603:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24603:53:0;;;;;;;;;;24672:48;;7609:41:1;;;24603:42:0;;16670:10;24672:48;;7582:18:1;24672:48:0;;;;;;;24401:327;;:::o;25783:365::-;25972:41;16670:10;26005:7;25972:18;:41::i;:::-;25950:140;;;;-1:-1:-1;;;25950:140:0;;;;;;;:::i;:::-;26101:39;26115:4;26121:2;26125:7;26134:5;26101:13;:39::i;:::-;25783:365;;;;:::o;39352:37::-;;;;;;;:::i;40547:483::-;27760:4;27784:16;;;:7;:16;;;;;;40665:13;;-1:-1:-1;;;;;27784:16:0;40696:113;;;;-1:-1:-1;;;40696:113:0;;14296:2:1;40696:113:0;;;14278:21:1;14335:2;14315:18;;;14308:30;14374:34;14354:18;;;14347:62;-1:-1:-1;;;14425:18:1;;;14418:45;14480:19;;40696:113:0;14094:411:1;40696:113:0;40822:28;40853:10;:8;:10::i;:::-;40822:41;;40912:1;40887:14;40881:28;:32;:141;;;;;;;;;;;;;;;;;40953:14;40969:18;:7;:16;:18::i;:::-;40989:13;40936:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40881:141;40874:148;40547:483;-1:-1:-1;;;40547:483:0:o;41037:84::-;35311:6;;-1:-1:-1;;;;;35311:6:0;16670:10;35458:23;35450:68;;;;-1:-1:-1;;;35450:68:0;;;;;;;:::i;:::-;41099:5:::1;:17:::0;41037:84::o;36138:229::-;35311:6;;-1:-1:-1;;;;;35311:6:0;16670:10;35458:23;35450:68;;;;-1:-1:-1;;;35450:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36241:22:0;::::1;36219:110;;;::::0;-1:-1:-1;;;36219:110:0;;8506:2:1;36219:110:0::1;::::0;::::1;8488:21:1::0;8545:2;8525:18;;;8518:30;8584:34;8564:18;;;8557:62;-1:-1:-1;;;8635:18:1;;;8628:36;8681:19;;36219:110:0::1;8304:402:1::0;36219:110:0::1;36340:19;36350:8;36340:9;:19::i;:::-;36138:229:::0;:::o;8192:387::-;8515:20;8563:8;;;8192:387::o;31818:174::-;31893:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31893:29:0;-1:-1:-1;;;;;31893:29:0;;;;;;;;:24;;31947:23;31893:24;31947:14;:23::i;:::-;-1:-1:-1;;;;;31938:46:0;;;;;;;;;;;31818:174;;:::o;27989:452::-;28118:4;27784:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27784:16:0;28140:110;;;;-1:-1:-1;;;28140:110:0;;10389:2:1;28140:110:0;;;10371:21:1;10428:2;10408:18;;;10401:30;10467:34;10447:18;;;10440:62;-1:-1:-1;;;10518:18:1;;;10511:42;10570:19;;28140:110:0;10187:408:1;28140:110:0;28261:13;28277:23;28292:7;28277:14;:23::i;:::-;28261:39;;28330:5;-1:-1:-1;;;;;28319:16:0;:7;-1:-1:-1;;;;;28319:16:0;;:64;;;;28376:7;-1:-1:-1;;;;;28352:31:0;:20;28364:7;28352:11;:20::i;:::-;-1:-1:-1;;;;;28352:31:0;;28319:64;:113;;;-1:-1:-1;;;;;;24970:25:0;;;24941:4;24970:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28400:32;28311:122;27989:452;-1:-1:-1;;;;27989:452:0:o;31085:615::-;31258:4;-1:-1:-1;;;;;31231:31:0;:23;31246:7;31231:14;:23::i;:::-;-1:-1:-1;;;;;31231:31:0;;31209:122;;;;-1:-1:-1;;;31209:122:0;;13886:2:1;31209:122:0;;;13868:21:1;13925:2;13905:18;;;13898:30;13964:34;13944:18;;;13937:62;-1:-1:-1;;;14015:18:1;;;14008:39;14064:19;;31209:122:0;13684:405:1;31209:122:0;-1:-1:-1;;;;;31350:16:0;;31342:65;;;;-1:-1:-1;;;31342:65:0;;9270:2:1;31342:65:0;;;9252:21:1;9309:2;9289:18;;;9282:30;9348:34;9328:18;;;9321:62;-1:-1:-1;;;9399:18:1;;;9392:34;9443:19;;31342:65:0;9068:400:1;31342:65:0;31524:29;31541:1;31545:7;31524:8;:29::i;:::-;-1:-1:-1;;;;;31566:15:0;;;;;;:9;:15;;;;;:20;;31585:1;;31566:15;:20;;31585:1;;31566:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31597:13:0;;;;;;:9;:13;;;;;:18;;31614:1;;31597:13;:18;;31614:1;;31597:18;:::i;:::-;;;;-1:-1:-1;;31626:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31626:21:0;-1:-1:-1;;;;;31626:21:0;;;;;;;;;31665:27;;31626:16;;31665:27;;;;;;;31085:615;;;:::o;39847:227::-;39905:11;39941:4;39931:7;:14;39928:59;;;-1:-1:-1;39968:7:0;;39847:227;-1:-1:-1;39847:227:0:o;39928:59::-;40014:10;;40003:7;:21;40000:64;;-1:-1:-1;;40047:5:0;;;39847:227::o;40000:64::-;39847:227;;;:::o;28783:110::-;28859:26;28869:2;28873:7;28859:26;;;;;;;;;;;;:9;:26::i;36375:173::-;36450:6;;;-1:-1:-1;;;;;36467:17:0;;;-1:-1:-1;;;;;;36467:17:0;;;;;;;36500:40;;36450:6;;;36467:17;36450:6;;36500:40;;36431:16;;36500:40;36420:128;36375:173;:::o;27030:352::-;27187:28;27197:4;27203:2;27207:7;27187:9;:28::i;:::-;27248:48;27271:4;27277:2;27281:7;27290:5;27248:22;:48::i;:::-;27226:148;;;;-1:-1:-1;;;27226:148:0;;;;;;;:::i;41344:108::-;41404:13;41437:7;41430:14;;;;;:::i;17090:723::-;17146:13;17367:10;17363:53;;-1:-1:-1;;17394:10:0;;;;;;;;;;;;-1:-1:-1;;;17394:10:0;;;;;17090:723::o;17363:53::-;17441:5;17426:12;17482:78;17489:9;;17482:78;;17515:8;;;;:::i;:::-;;-1:-1:-1;17538:10:0;;-1:-1:-1;17546:2:0;17538:10;;:::i;:::-;;;17482:78;;;17570:19;17602:6;17592:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17592:17:0;;17570:39;;17620:154;17627:10;;17620:154;;17654:11;17664:1;17654:11;;:::i;:::-;;-1:-1:-1;17723:10:0;17731:2;17723:5;:10;:::i;:::-;17710:24;;:2;:24;:::i;:::-;17697:39;;17680:6;17687;17680:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17680:56:0;;;;;;;;-1:-1:-1;17751:11:0;17760:2;17751:11;;:::i;:::-;;;17620:154;;29120:321;29250:18;29256:2;29260:7;29250:5;:18::i;:::-;29301:54;29332:1;29336:2;29340:7;29349:5;29301:22;:54::i;:::-;29279:154;;;;-1:-1:-1;;;29279:154:0;;;;;;;:::i;32557:980::-;32712:4;-1:-1:-1;;;;;32733:13:0;;8515:20;8563:8;32729:801;;32786:175;;-1:-1:-1;;;32786:175:0;;-1:-1:-1;;;;;32786:36:0;;;;;:175;;16670:10;;32880:4;;32907:7;;32937:5;;32786:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32786:175:0;;;;;;;;-1:-1:-1;;32786:175:0;;;;;;;;;;;;:::i;:::-;;;32765:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33144:13:0;;33140:320;;33187:108;;-1:-1:-1;;;33187:108:0;;;;;;;:::i;33140:320::-;33410:6;33404:13;33395:6;33391:2;33387:15;33380:38;32765:710;-1:-1:-1;;;;;;33025:51:0;-1:-1:-1;;;33025:51:0;;-1:-1:-1;33018:58:0;;32729:801;-1:-1:-1;33514:4:0;32557:980;;;;;;:::o;29777:382::-;-1:-1:-1;;;;;29857:16:0;;29849:61;;;;-1:-1:-1;;;29849:61:0;;12403:2:1;29849:61:0;;;12385:21:1;;;12422:18;;;12415:30;12481:34;12461:18;;;12454:62;12533:18;;29849:61:0;12201:356:1;29849:61:0;27760:4;27784:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27784:16:0;:30;29921:58;;;;-1:-1:-1;;;29921:58:0;;8913:2:1;29921:58:0;;;8895:21:1;8952:2;8932:18;;;8925:30;8991;8971:18;;;8964:58;9039:18;;29921:58:0;8711:352:1;29921:58:0;-1:-1:-1;;;;;30050:13:0;;;;;;:9;:13;;;;;:18;;30067:1;;30050:13;:18;;30067:1;;30050:18;:::i;:::-;;;;-1:-1:-1;;30079:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30079:21:0;-1:-1:-1;;;;;30079:21:0;;;;;;;;30118:33;;30079:16;;;30118:33;;30079:16;;30118:33;29777:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;1162:388::-;1230:6;1238;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1346:9;1333:23;1365:31;1390:5;1365:31;:::i;:::-;1415:5;-1:-1:-1;1472:2:1;1457:18;;1444:32;1485:33;1444:32;1485:33;:::i;:::-;1537:7;1527:17;;;1162:388;;;;;:::o;1555:456::-;1632:6;1640;1648;1701:2;1689:9;1680:7;1676:23;1672:32;1669:52;;;1717:1;1714;1707:12;1669:52;1756:9;1743:23;1775:31;1800:5;1775:31;:::i;:::-;1825:5;-1:-1:-1;1882:2:1;1867:18;;1854:32;1895:33;1854:32;1895:33;:::i;:::-;1555:456;;1947:7;;-1:-1:-1;;;2001:2:1;1986:18;;;;1973:32;;1555:456::o;2016:794::-;2111:6;2119;2127;2135;2188:3;2176:9;2167:7;2163:23;2159:33;2156:53;;;2205:1;2202;2195:12;2156:53;2244:9;2231:23;2263:31;2288:5;2263:31;:::i;:::-;2313:5;-1:-1:-1;2370:2:1;2355:18;;2342:32;2383:33;2342:32;2383:33;:::i;:::-;2435:7;-1:-1:-1;2489:2:1;2474:18;;2461:32;;-1:-1:-1;2544:2:1;2529:18;;2516:32;2571:18;2560:30;;2557:50;;;2603:1;2600;2593:12;2557:50;2626:22;;2679:4;2671:13;;2667:27;-1:-1:-1;2657:55:1;;2708:1;2705;2698:12;2657:55;2731:73;2796:7;2791:2;2778:16;2773:2;2769;2765:11;2731:73;:::i;:::-;2721:83;;;2016:794;;;;;;;:::o;2815:416::-;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;-1:-1:-1;3122:2:1;3107:18;;3094:32;3164:15;;3157:23;3145:36;;3135:64;;3195:1;3192;3185:12;3236:315;3304:6;3312;3365:2;3353:9;3344:7;3340:23;3336:32;3333:52;;;3381:1;3378;3371:12;3333:52;3420:9;3407:23;3439:31;3464:5;3439:31;:::i;:::-;3489:5;3541:2;3526:18;;;;3513:32;;-1:-1:-1;;;3236:315:1:o;3556:245::-;3614:6;3667:2;3655:9;3646:7;3642:23;3638:32;3635:52;;;3683:1;3680;3673:12;3635:52;3722:9;3709:23;3741:30;3765:5;3741:30;:::i;3806:249::-;3875:6;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;3976:9;3970:16;3995:30;4019:5;3995:30;:::i;4060:450::-;4129:6;4182:2;4170:9;4161:7;4157:23;4153:32;4150:52;;;4198:1;4195;4188:12;4150:52;4238:9;4225:23;4271:18;4263:6;4260:30;4257:50;;;4303:1;4300;4293:12;4257:50;4326:22;;4379:4;4371:13;;4367:27;-1:-1:-1;4357:55:1;;4408:1;4405;4398:12;4357:55;4431:73;4496:7;4491:2;4478:16;4473:2;4469;4465:11;4431:73;:::i;4515:180::-;4574:6;4627:2;4615:9;4606:7;4602:23;4598:32;4595:52;;;4643:1;4640;4633:12;4595:52;-1:-1:-1;4666:23:1;;4515:180;-1:-1:-1;4515:180:1:o;4700:269::-;4757:6;4810:2;4798:9;4789:7;4785:23;4781:32;4778:52;;;4826:1;4823;4816:12;4778:52;4865:9;4852:23;4915:4;4908:5;4904:16;4897:5;4894:27;4884:55;;4935:1;4932;4925:12;4974:257;5015:3;5053:5;5047:12;5080:6;5075:3;5068:19;5096:63;5152:6;5145:4;5140:3;5136:14;5129:4;5122:5;5118:16;5096:63;:::i;:::-;5213:2;5192:15;-1:-1:-1;;5188:29:1;5179:39;;;;5220:4;5175:50;;4974:257;-1:-1:-1;;4974:257:1:o;5236:1527::-;5460:3;5498:6;5492:13;5524:4;5537:51;5581:6;5576:3;5571:2;5563:6;5559:15;5537:51;:::i;:::-;5651:13;;5610:16;;;;5673:55;5651:13;5610:16;5695:15;;;5673:55;:::i;:::-;5817:13;;5750:20;;;5790:1;;5877;5899:18;;;;5952;;;;5979:93;;6057:4;6047:8;6043:19;6031:31;;5979:93;6120:2;6110:8;6107:16;6087:18;6084:40;6081:167;;;-1:-1:-1;;;6147:33:1;;6203:4;6200:1;6193:15;6233:4;6154:3;6221:17;6081:167;6264:18;6291:110;;;;6415:1;6410:328;;;;6257:481;;6291:110;-1:-1:-1;;6326:24:1;;6312:39;;6371:20;;;;-1:-1:-1;6291:110:1;;6410:328;16635:1;16628:14;;;16672:4;16659:18;;6505:1;6519:169;6533:8;6530:1;6527:15;6519:169;;;6615:14;;6600:13;;;6593:37;6658:16;;;;6550:10;;6519:169;;;6523:3;;6719:8;6712:5;6708:20;6701:27;;6257:481;-1:-1:-1;6754:3:1;;5236:1527;-1:-1:-1;;;;;;;;;;;5236:1527:1:o;6976:488::-;-1:-1:-1;;;;;7245:15:1;;;7227:34;;7297:15;;7292:2;7277:18;;7270:43;7344:2;7329:18;;7322:34;;;7392:3;7387:2;7372:18;;7365:31;;;7170:4;;7413:45;;7438:19;;7430:6;7413:45;:::i;:::-;7405:53;6976:488;-1:-1:-1;;;;;;6976:488:1:o;7661:219::-;7810:2;7799:9;7792:21;7773:4;7830:44;7870:2;7859:9;7855:18;7847:6;7830:44;:::i;7885:414::-;8087:2;8069:21;;;8126:2;8106:18;;;8099:30;8165:34;8160:2;8145:18;;8138:62;-1:-1:-1;;;8231:2:1;8216:18;;8209:48;8289:3;8274:19;;7885:414::o;12975:356::-;13177:2;13159:21;;;13196:18;;;13189:30;13255:34;13250:2;13235:18;;13228:62;13322:2;13307:18;;12975:356::o;15266:413::-;15468:2;15450:21;;;15507:2;15487:18;;;15480:30;15546:34;15541:2;15526:18;;15519:62;-1:-1:-1;;;15612:2:1;15597:18;;15590:47;15669:3;15654:19;;15266:413::o;16688:128::-;16728:3;16759:1;16755:6;16752:1;16749:13;16746:39;;;16765:18;;:::i;:::-;-1:-1:-1;16801:9:1;;16688:128::o;16821:120::-;16861:1;16887;16877:35;;16892:18;;:::i;:::-;-1:-1:-1;16926:9:1;;16821:120::o;16946:168::-;16986:7;17052:1;17048;17044:6;17040:14;17037:1;17034:21;17029:1;17022:9;17015:17;17011:45;17008:71;;;17059:18;;:::i;:::-;-1:-1:-1;17099:9:1;;16946:168::o;17119:125::-;17159:4;17187:1;17184;17181:8;17178:34;;;17192:18;;:::i;:::-;-1:-1:-1;17229:9:1;;17119:125::o;17249:258::-;17321:1;17331:113;17345:6;17342:1;17339:13;17331:113;;;17421:11;;;17415:18;17402:11;;;17395:39;17367:2;17360:10;17331:113;;;17462:6;17459:1;17456:13;17453:48;;;-1:-1:-1;;17497:1:1;17479:16;;17472:27;17249:258::o;17512:380::-;17591:1;17587:12;;;;17634;;;17655:61;;17709:4;17701:6;17697:17;17687:27;;17655:61;17762:2;17754:6;17751:14;17731:18;17728:38;17725:161;;;17808:10;17803:3;17799:20;17796:1;17789:31;17843:4;17840:1;17833:15;17871:4;17868:1;17861:15;17725:161;;17512:380;;;:::o;17897:135::-;17936:3;-1:-1:-1;;17957:17:1;;17954:43;;;17977:18;;:::i;:::-;-1:-1:-1;18024:1:1;18013:13;;17897:135::o;18037:112::-;18069:1;18095;18085:35;;18100:18;;:::i;:::-;-1:-1:-1;18134:9:1;;18037:112::o;18154:127::-;18215:10;18210:3;18206:20;18203:1;18196:31;18246:4;18243:1;18236:15;18270:4;18267:1;18260:15;18286:127;18347:10;18342:3;18338:20;18335:1;18328:31;18378:4;18375:1;18368:15;18402:4;18399:1;18392:15;18418:127;18479:10;18474:3;18470:20;18467:1;18460:31;18510:4;18507:1;18500:15;18534:4;18531:1;18524:15;18550:127;18611:10;18606:3;18602:20;18599:1;18592:31;18642:4;18639:1;18632:15;18666:4;18663:1;18656:15;18682:131;-1:-1:-1;;;;;18757:31:1;;18747:42;;18737:70;;18803:1;18800;18793:12;18818:131;-1:-1:-1;;;;;;18892:32:1;;18882:43;;18872:71;;18939:1;18936;18929:12

Swarm Source

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