ETH Price: $2,838.10 (+9.29%)
 

Overview

Max Total Supply

889 CLOWN

Holders

401

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 CLOWN
0xF9d89fCe6d3c515066999B4b4412e3423a38486C
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:
ClownTown

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 2 of 13: ClownTown.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ERC721A.sol";

contract ClownTown is ERC721A, Ownable {

    uint256 public price = 0.004 ether;
    uint256 public maxTotalSupply = 5000;
    uint256 public saleStartTime = 1655213400;
    string private baseURI;
    mapping(address => bool) public freeClownsClaimed;

    constructor() ERC721A("ClownTown", "CLOWN") {
        saleStartTime = block.timestamp;
    }

    modifier mintableSupply(uint256 _quantity) {
        require(
            _quantity > 0,
            "You need to mint at least 1 NFT."
        );
        require(
            totalSupply() + _quantity <= maxTotalSupply,
            "Over maximum supply."
        );
        _;
    }

    modifier saleActive() {
        require(
            saleStartTime <= block.timestamp,
            "Not start yet."
        );
        _;
    }

    function mintClowns(uint256 _quantity)
        external
        payable
        saleActive
        mintableSupply(_quantity) 
    {
        uint256 curr_value;
        if(freeClownsClaimed[msg.sender]) {
            curr_value = _quantity * price;
        } else {
            curr_value = (_quantity - 1) * price;
            freeClownsClaimed[msg.sender] = true;
        }
        require(msg.value >= curr_value, "Insufficent funds.");
        _safeMint(msg.sender, _quantity);
    }

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

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


    function setMintPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setSaleTime(uint256 _time) external onlyOwner {
        saleStartTime = _time;
    }

    function setMaxSupply(uint256 newSupply) external onlyOwner {
        require(newSupply < maxTotalSupply);
        maxTotalSupply = newSupply;
    }


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

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 13: ContentMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 4 of 13: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 5 of 13: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 6 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Enumerable.sol";
import "./IERC721Metadata.sol";
import "./Strings.sol";
import "./Context.sol";
import "./ERC165.sol";
import "./Address.sol";
import "./IERC721Receiver.sol";

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 8 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 9 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 10 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 11 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 12 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeClownsClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintClowns","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660e35fa931a00006008556113886009556362a88d58600a553480156200002a57600080fd5b50604080518082018252600981526821b637bbb72a37bbb760b91b60208083019182528351808501909452600584526421a627aba760d91b90840152815191929162000079916001916200010c565b5080516200008f9060029060208401906200010c565b505050620000ac620000a6620000b660201b60201c565b620000ba565b42600a55620001ef565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011a90620001b2565b90600052602060002090601f0160209004810192826200013e576000855562000189565b82601f106200015957805160ff191683800117855562000189565b8280016001018555821562000189579182015b82811115620001895782518255916020019190600101906200016c565b50620001979291506200019b565b5090565b5b808211156200019757600081556001016200019c565b600181811c90821680620001c757607f821691505b60208210811415620001e957634e487b7160e01b600052602260045260246000fd5b50919050565b611cc380620001ff6000396000f3fe6080604052600436106101c25760003560e01c806355f804b3116100f757806399e89acb11610095578063c87b56dd11610064578063c87b56dd146104f7578063e985e9c514610517578063f2fde38b14610560578063f4a0a5281461058057600080fd5b806399e89acb1461048e578063a035b1fe146104a1578063a22cb465146104b7578063b88d4fde146104d757600080fd5b806370a08231116100d157806370a0823114610426578063715018a6146104465780638da5cb5b1461045b57806395d89b411461047957600080fd5b806355f804b3146103c65780636352211e146103e65780636f8b44b01461040657600080fd5b80632ab4d052116101645780633bd2b67d1161013e5780633bd2b67d146103515780633ccfd60b1461037157806342842e0e146103865780634f6ccce7146103a657600080fd5b80632ab4d052146102eb5780632f745c591461030157806330d57eca1461032157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd146102785780631cbaee2d146102b557806323b872dd146102cb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046119ab565b6105a0565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161060d565b6040516101f39190611adf565b34801561022a57600080fd5b5061023e610239366004611a2e565b61069f565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611981565b6106e3565b005b34801561028457600080fd5b506102a76000546001600160801b03600160801b82048116918116919091031690565b6040519081526020016101f3565b3480156102c157600080fd5b506102a7600a5481565b3480156102d757600080fd5b506102766102e636600461188d565b610771565b3480156102f757600080fd5b506102a760095481565b34801561030d57600080fd5b506102a761031c366004611981565b61077c565b34801561032d57600080fd5b506101e761033c36600461183f565b600c6020526000908152604090205460ff1681565b34801561035d57600080fd5b5061027661036c366004611a2e565b610879565b34801561037d57600080fd5b506102766108b1565b34801561039257600080fd5b506102766103a136600461188d565b610969565b3480156103b257600080fd5b506102a76103c1366004611a2e565b610984565b3480156103d257600080fd5b506102766103e13660046119e5565b610a2f565b3480156103f257600080fd5b5061023e610401366004611a2e565b610a70565b34801561041257600080fd5b50610276610421366004611a2e565b610a82565b34801561043257600080fd5b506102a761044136600461183f565b610abf565b34801561045257600080fd5b50610276610b0e565b34801561046757600080fd5b506007546001600160a01b031661023e565b34801561048557600080fd5b50610211610b44565b61027661049c366004611a2e565b610b53565b3480156104ad57600080fd5b506102a760085481565b3480156104c357600080fd5b506102766104d2366004611945565b610d0c565b3480156104e357600080fd5b506102766104f23660046118c9565b610da2565b34801561050357600080fd5b50610211610512366004611a2e565b610ddc565b34801561052357600080fd5b506101e761053236600461185a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056c57600080fd5b5061027661057b36600461183f565b610e61565b34801561058c57600080fd5b5061027661059b366004611a2e565b610ef9565b60006001600160e01b031982166380ac58cd60e01b14806105d157506001600160e01b03198216635b5e139f60e01b145b806105ec57506001600160e01b0319821663780e9d6360e01b145b8061060757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061c90611bb5565b80601f016020809104026020016040519081016040528092919081815260200182805461064890611bb5565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b60006106aa82610f28565b6106c7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ee82610a70565b9050806001600160a01b0316836001600160a01b031614156107235760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061074357506107418133610532565b155b15610761576040516367d9dca160e11b815260040160405180910390fd5b61076c838383610f5c565b505050565b61076c838383610fb8565b600061078783610abf565b82106107a6576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561087357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16158015928201929092529061081f575061086b565b80516001600160a01b03161561083457805192505b876001600160a01b0316836001600160a01b0316141561086957868414156108625750935061060792505050565b6001909301925b505b6001016107b7565b50600080fd5b6007546001600160a01b031633146108ac5760405162461bcd60e51b81526004016108a390611af2565b60405180910390fd5b600a55565b6007546001600160a01b031633146108db5760405162461bcd60e51b81526004016108a390611af2565b604051600090339047908381818185875af1925050503d806000811461091d576040519150601f19603f3d011682016040523d82523d6000602084013e610922565b606091505b50509050806109665760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108a3565b50565b61076c83838360405180602001604052806000815250610da2565b600080546001600160801b031681805b82811015610a1557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610a0c5785831415610a055750949350505050565b6001909201915b50600101610994565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610a595760405162461bcd60e51b81526004016108a390611af2565b8051610a6c90600b906020840190611714565b5050565b6000610a7b826111d7565b5192915050565b6007546001600160a01b03163314610aac5760405162461bcd60e51b81526004016108a390611af2565b6009548110610aba57600080fd5b600955565b60006001600160a01b038216610ae8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610b385760405162461bcd60e51b81526004016108a390611af2565b610b4260006112fb565b565b60606002805461061c90611bb5565b42600a541115610b965760405162461bcd60e51b815260206004820152600e60248201526d2737ba1039ba30b93a103cb2ba1760911b60448201526064016108a3565b8060008111610be75760405162461bcd60e51b815260206004820181905260248201527f596f75206e65656420746f206d696e74206174206c656173742031204e46542e60448201526064016108a3565b60095481610c0d6000546001600160801b03600160801b82048116918116919091031690565b610c179190611b27565b1115610c5c5760405162461bcd60e51b815260206004820152601460248201527327bb32b91036b0bc34b6bab69039bab838363c9760611b60448201526064016108a3565b336000908152600c602052604081205460ff1615610c8857600854610c819084611b53565b9050610cbd565b600854610c96600185611b72565b610ca09190611b53565b336000908152600c60205260409020805460ff1916600117905590505b80341015610d025760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b2b73a10333ab732399760711b60448201526064016108a3565b61076c338461134d565b6001600160a01b038216331415610d365760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dad848484610fb8565b610db984848484611367565b610dd6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610de782610f28565b610e0457604051630a14c4b560e41b815260040160405180910390fd5b6000610e0e611476565b9050805160001415610e2f5760405180602001604052806000815250610e5a565b80610e3984611485565b604051602001610e4a929190611a73565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610e8b5760405162461bcd60e51b81526004016108a390611af2565b6001600160a01b038116610ef05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a3565b610966816112fb565b6007546001600160a01b03163314610f235760405162461bcd60e51b81526004016108a390611af2565b600855565b600080546001600160801b031682108015610607575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fc3826111d7565b80519091506000906001600160a01b0316336001600160a01b03161480610ff157508151610ff19033610532565b8061100c5750336110018461069f565b6001600160a01b0316145b90508061102c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110615760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661108857604051633a954ecd60e21b815260040160405180910390fd5b6110986000848460000151610f5c565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661118d576000546001600160801b031681101561118d578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156112e257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112e05780516001600160a01b031615611276579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156112db579392505050565b611276565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a6c828260405180602001604052806000815250611583565b60006001600160a01b0384163b1561146a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113ab903390899088908890600401611aa2565b602060405180830381600087803b1580156113c557600080fd5b505af19250505080156113f5575060408051601f3d908101601f191682019092526113f2918101906119c8565b60015b611450573d808015611423576040519150601f19603f3d011682016040523d82523d6000602084013e611428565b606091505b508051611448576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061146e565b5060015b949350505050565b6060600b805461061c90611bb5565b6060816114a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114d357806114bd81611bf0565b91506114cc9050600a83611b3f565b91506114ad565b60008167ffffffffffffffff8111156114ee576114ee611c61565b6040519080825280601f01601f191660200182016040528015611518576020820181803683370190505b5090505b841561146e5761152d600183611b72565b915061153a600a86611c0b565b611545906030611b27565b60f81b81838151811061155a5761155a611c4b565b60200101906001600160f81b031916908160001a90535061157c600a86611b3f565b945061151c565b61076c83838360016000546001600160801b03166001600160a01b0385166115bd57604051622e076360e81b815260040160405180910390fd5b836115db5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156116ee5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156116c457506116c26000888488611367565b155b156116e2576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161166d565b50600080546001600160801b0319166001600160801b03929092169190911790556111d0565b82805461172090611bb5565b90600052602060002090601f0160209004810192826117425760008555611788565b82601f1061175b57805160ff1916838001178555611788565b82800160010185558215611788579182015b8281111561178857825182559160200191906001019061176d565b50611794929150611798565b5090565b5b808211156117945760008155600101611799565b600067ffffffffffffffff808411156117c8576117c8611c61565b604051601f8501601f19908116603f011681019082821181831017156117f0576117f0611c61565b8160405280935085815286868601111561180957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461183a57600080fd5b919050565b60006020828403121561185157600080fd5b610e5a82611823565b6000806040838503121561186d57600080fd5b61187683611823565b915061188460208401611823565b90509250929050565b6000806000606084860312156118a257600080fd5b6118ab84611823565b92506118b960208501611823565b9150604084013590509250925092565b600080600080608085870312156118df57600080fd5b6118e885611823565b93506118f660208601611823565b925060408501359150606085013567ffffffffffffffff81111561191957600080fd5b8501601f8101871361192a57600080fd5b611939878235602084016117ad565b91505092959194509250565b6000806040838503121561195857600080fd5b61196183611823565b91506020830135801515811461197657600080fd5b809150509250929050565b6000806040838503121561199457600080fd5b61199d83611823565b946020939093013593505050565b6000602082840312156119bd57600080fd5b8135610e5a81611c77565b6000602082840312156119da57600080fd5b8151610e5a81611c77565b6000602082840312156119f757600080fd5b813567ffffffffffffffff811115611a0e57600080fd5b8201601f81018413611a1f57600080fd5b61146e848235602084016117ad565b600060208284031215611a4057600080fd5b5035919050565b60008151808452611a5f816020860160208601611b89565b601f01601f19169290920160200192915050565b60008351611a85818460208801611b89565b835190830190611a99818360208801611b89565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ad590830184611a47565b9695505050505050565b602081526000610e5a6020830184611a47565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611b3a57611b3a611c1f565b500190565b600082611b4e57611b4e611c35565b500490565b6000816000190483118215151615611b6d57611b6d611c1f565b500290565b600082821015611b8457611b84611c1f565b500390565b60005b83811015611ba4578181015183820152602001611b8c565b83811115610dd65750506000910152565b600181811c90821680611bc957607f821691505b60208210811415611bea57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c0457611c04611c1f565b5060010190565b600082611c1a57611c1a611c35565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096657600080fdfea2646970667358221220bf381582d36f1b03c653c7aa0dde5df1b2488e8bd549fe8464511dcb9df3f45864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806355f804b3116100f757806399e89acb11610095578063c87b56dd11610064578063c87b56dd146104f7578063e985e9c514610517578063f2fde38b14610560578063f4a0a5281461058057600080fd5b806399e89acb1461048e578063a035b1fe146104a1578063a22cb465146104b7578063b88d4fde146104d757600080fd5b806370a08231116100d157806370a0823114610426578063715018a6146104465780638da5cb5b1461045b57806395d89b411461047957600080fd5b806355f804b3146103c65780636352211e146103e65780636f8b44b01461040657600080fd5b80632ab4d052116101645780633bd2b67d1161013e5780633bd2b67d146103515780633ccfd60b1461037157806342842e0e146103865780634f6ccce7146103a657600080fd5b80632ab4d052146102eb5780632f745c591461030157806330d57eca1461032157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd146102785780631cbaee2d146102b557806323b872dd146102cb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046119ab565b6105a0565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161060d565b6040516101f39190611adf565b34801561022a57600080fd5b5061023e610239366004611a2e565b61069f565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611981565b6106e3565b005b34801561028457600080fd5b506102a76000546001600160801b03600160801b82048116918116919091031690565b6040519081526020016101f3565b3480156102c157600080fd5b506102a7600a5481565b3480156102d757600080fd5b506102766102e636600461188d565b610771565b3480156102f757600080fd5b506102a760095481565b34801561030d57600080fd5b506102a761031c366004611981565b61077c565b34801561032d57600080fd5b506101e761033c36600461183f565b600c6020526000908152604090205460ff1681565b34801561035d57600080fd5b5061027661036c366004611a2e565b610879565b34801561037d57600080fd5b506102766108b1565b34801561039257600080fd5b506102766103a136600461188d565b610969565b3480156103b257600080fd5b506102a76103c1366004611a2e565b610984565b3480156103d257600080fd5b506102766103e13660046119e5565b610a2f565b3480156103f257600080fd5b5061023e610401366004611a2e565b610a70565b34801561041257600080fd5b50610276610421366004611a2e565b610a82565b34801561043257600080fd5b506102a761044136600461183f565b610abf565b34801561045257600080fd5b50610276610b0e565b34801561046757600080fd5b506007546001600160a01b031661023e565b34801561048557600080fd5b50610211610b44565b61027661049c366004611a2e565b610b53565b3480156104ad57600080fd5b506102a760085481565b3480156104c357600080fd5b506102766104d2366004611945565b610d0c565b3480156104e357600080fd5b506102766104f23660046118c9565b610da2565b34801561050357600080fd5b50610211610512366004611a2e565b610ddc565b34801561052357600080fd5b506101e761053236600461185a565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056c57600080fd5b5061027661057b36600461183f565b610e61565b34801561058c57600080fd5b5061027661059b366004611a2e565b610ef9565b60006001600160e01b031982166380ac58cd60e01b14806105d157506001600160e01b03198216635b5e139f60e01b145b806105ec57506001600160e01b0319821663780e9d6360e01b145b8061060757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461061c90611bb5565b80601f016020809104026020016040519081016040528092919081815260200182805461064890611bb5565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b60006106aa82610f28565b6106c7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ee82610a70565b9050806001600160a01b0316836001600160a01b031614156107235760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061074357506107418133610532565b155b15610761576040516367d9dca160e11b815260040160405180910390fd5b61076c838383610f5c565b505050565b61076c838383610fb8565b600061078783610abf565b82106107a6576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561087357600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16158015928201929092529061081f575061086b565b80516001600160a01b03161561083457805192505b876001600160a01b0316836001600160a01b0316141561086957868414156108625750935061060792505050565b6001909301925b505b6001016107b7565b50600080fd5b6007546001600160a01b031633146108ac5760405162461bcd60e51b81526004016108a390611af2565b60405180910390fd5b600a55565b6007546001600160a01b031633146108db5760405162461bcd60e51b81526004016108a390611af2565b604051600090339047908381818185875af1925050503d806000811461091d576040519150601f19603f3d011682016040523d82523d6000602084013e610922565b606091505b50509050806109665760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108a3565b50565b61076c83838360405180602001604052806000815250610da2565b600080546001600160801b031681805b82811015610a1557600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610a0c5785831415610a055750949350505050565b6001909201915b50600101610994565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610a595760405162461bcd60e51b81526004016108a390611af2565b8051610a6c90600b906020840190611714565b5050565b6000610a7b826111d7565b5192915050565b6007546001600160a01b03163314610aac5760405162461bcd60e51b81526004016108a390611af2565b6009548110610aba57600080fd5b600955565b60006001600160a01b038216610ae8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610b385760405162461bcd60e51b81526004016108a390611af2565b610b4260006112fb565b565b60606002805461061c90611bb5565b42600a541115610b965760405162461bcd60e51b815260206004820152600e60248201526d2737ba1039ba30b93a103cb2ba1760911b60448201526064016108a3565b8060008111610be75760405162461bcd60e51b815260206004820181905260248201527f596f75206e65656420746f206d696e74206174206c656173742031204e46542e60448201526064016108a3565b60095481610c0d6000546001600160801b03600160801b82048116918116919091031690565b610c179190611b27565b1115610c5c5760405162461bcd60e51b815260206004820152601460248201527327bb32b91036b0bc34b6bab69039bab838363c9760611b60448201526064016108a3565b336000908152600c602052604081205460ff1615610c8857600854610c819084611b53565b9050610cbd565b600854610c96600185611b72565b610ca09190611b53565b336000908152600c60205260409020805460ff1916600117905590505b80341015610d025760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b2b73a10333ab732399760711b60448201526064016108a3565b61076c338461134d565b6001600160a01b038216331415610d365760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dad848484610fb8565b610db984848484611367565b610dd6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610de782610f28565b610e0457604051630a14c4b560e41b815260040160405180910390fd5b6000610e0e611476565b9050805160001415610e2f5760405180602001604052806000815250610e5a565b80610e3984611485565b604051602001610e4a929190611a73565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610e8b5760405162461bcd60e51b81526004016108a390611af2565b6001600160a01b038116610ef05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a3565b610966816112fb565b6007546001600160a01b03163314610f235760405162461bcd60e51b81526004016108a390611af2565b600855565b600080546001600160801b031682108015610607575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fc3826111d7565b80519091506000906001600160a01b0316336001600160a01b03161480610ff157508151610ff19033610532565b8061100c5750336110018461069f565b6001600160a01b0316145b90508061102c57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110615760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661108857604051633a954ecd60e21b815260040160405180910390fd5b6110986000848460000151610f5c565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661118d576000546001600160801b031681101561118d578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156112e257600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112e05780516001600160a01b031615611276579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156112db579392505050565b611276565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a6c828260405180602001604052806000815250611583565b60006001600160a01b0384163b1561146a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113ab903390899088908890600401611aa2565b602060405180830381600087803b1580156113c557600080fd5b505af19250505080156113f5575060408051601f3d908101601f191682019092526113f2918101906119c8565b60015b611450573d808015611423576040519150601f19603f3d011682016040523d82523d6000602084013e611428565b606091505b508051611448576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061146e565b5060015b949350505050565b6060600b805461061c90611bb5565b6060816114a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114d357806114bd81611bf0565b91506114cc9050600a83611b3f565b91506114ad565b60008167ffffffffffffffff8111156114ee576114ee611c61565b6040519080825280601f01601f191660200182016040528015611518576020820181803683370190505b5090505b841561146e5761152d600183611b72565b915061153a600a86611c0b565b611545906030611b27565b60f81b81838151811061155a5761155a611c4b565b60200101906001600160f81b031916908160001a90535061157c600a86611b3f565b945061151c565b61076c83838360016000546001600160801b03166001600160a01b0385166115bd57604051622e076360e81b815260040160405180910390fd5b836115db5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156116ee5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156116c457506116c26000888488611367565b155b156116e2576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161166d565b50600080546001600160801b0319166001600160801b03929092169190911790556111d0565b82805461172090611bb5565b90600052602060002090601f0160209004810192826117425760008555611788565b82601f1061175b57805160ff1916838001178555611788565b82800160010185558215611788579182015b8281111561178857825182559160200191906001019061176d565b50611794929150611798565b5090565b5b808211156117945760008155600101611799565b600067ffffffffffffffff808411156117c8576117c8611c61565b604051601f8501601f19908116603f011681019082821181831017156117f0576117f0611c61565b8160405280935085815286868601111561180957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461183a57600080fd5b919050565b60006020828403121561185157600080fd5b610e5a82611823565b6000806040838503121561186d57600080fd5b61187683611823565b915061188460208401611823565b90509250929050565b6000806000606084860312156118a257600080fd5b6118ab84611823565b92506118b960208501611823565b9150604084013590509250925092565b600080600080608085870312156118df57600080fd5b6118e885611823565b93506118f660208601611823565b925060408501359150606085013567ffffffffffffffff81111561191957600080fd5b8501601f8101871361192a57600080fd5b611939878235602084016117ad565b91505092959194509250565b6000806040838503121561195857600080fd5b61196183611823565b91506020830135801515811461197657600080fd5b809150509250929050565b6000806040838503121561199457600080fd5b61199d83611823565b946020939093013593505050565b6000602082840312156119bd57600080fd5b8135610e5a81611c77565b6000602082840312156119da57600080fd5b8151610e5a81611c77565b6000602082840312156119f757600080fd5b813567ffffffffffffffff811115611a0e57600080fd5b8201601f81018413611a1f57600080fd5b61146e848235602084016117ad565b600060208284031215611a4057600080fd5b5035919050565b60008151808452611a5f816020860160208601611b89565b601f01601f19169290920160200192915050565b60008351611a85818460208801611b89565b835190830190611a99818360208801611b89565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ad590830184611a47565b9695505050505050565b602081526000610e5a6020830184611a47565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611b3a57611b3a611c1f565b500190565b600082611b4e57611b4e611c35565b500490565b6000816000190483118215151615611b6d57611b6d611c1f565b500290565b600082821015611b8457611b84611c1f565b500390565b60005b83811015611ba4578181015183820152602001611b8c565b83811115610dd65750506000910152565b600181811c90821680611bc957607f821691505b60208210811415611bea57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611c0457611c04611c1f565b5060010190565b600082611c1a57611c1a611c35565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096657600080fdfea2646970667358221220bf381582d36f1b03c653c7aa0dde5df1b2488e8bd549fe8464511dcb9df3f45864736f6c63430008070033

Deployed Bytecode Sourcemap

114:2100:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6201:372:5;;;;;;;;;;-1:-1:-1;6201:372:5;;;;;:::i;:::-;;:::i;:::-;;;5856:14:13;;5849:22;5831:41;;5819:2;5804:18;6201:372:5;;;;;;;;8811:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10314:204::-;;;;;;;;;;-1:-1:-1;10314:204:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5154:32:13;;;5136:51;;5124:2;5109:18;10314:204:5;4990:203:13;9877:371:5;;;;;;;;;;-1:-1:-1;9877:371:5;;;;;:::i;:::-;;:::i;:::-;;3438:280;;;;;;;;;;;;3491:7;3683:12;-1:-1:-1;;;;;;;;3683:12:5;;;;3667:13;;;:28;;;;3660:35;;3438:280;;;;8766:25:13;;;8754:2;8739:18;3438:280:5;8620:177:13;246:41:1;;;;;;;;;;;;;;;;11171:170:5;;;;;;;;;;-1:-1:-1;11171:170:5;;;;;:::i;:::-;;:::i;203:36:1:-;;;;;;;;;;;;;;;;5024:1105:5;;;;;;;;;;-1:-1:-1;5024:1105:5;;;;;:::i;:::-;;:::i;323:49:1:-;;;;;;;;;;-1:-1:-1;323:49:1;;;;;:::i;:::-;;;;;;;;;;;;;;;;1774:95;;;;;;;;;;-1:-1:-1;1774:95:1;;;;;:::i;:::-;;:::i;2038:173::-;;;;;;;;;;;;;:::i;11412:185:5:-;;;;;;;;;;-1:-1:-1;11412:185:5;;;;;:::i;:::-;;:::i;4011:713::-;;;;;;;;;;-1:-1:-1;4011:713:5;;;;;:::i;:::-;;:::i;1450:100:1:-;;;;;;;;;;-1:-1:-1;1450:100:1;;;;;:::i;:::-;;:::i;8620:124:5:-;;;;;;;;;;-1:-1:-1;8620:124:5;;;;;:::i;:::-;;:::i;1877:151:1:-;;;;;;;;;;-1:-1:-1;1877:151:1;;;;;:::i;:::-;;:::i;6637:206:5:-;;;;;;;;;;-1:-1:-1;6637:206:5;;;;;:::i;:::-;;:::i;1620:92:11:-;;;;;;;;;;;;;:::i;988:85::-;;;;;;;;;;-1:-1:-1;1060:6:11;;-1:-1:-1;;;;;1060:6:11;988:85;;8980:104:5;;;;;;;;;;;;;:::i;941:501:1:-;;;;;;:::i;:::-;;:::i;162:34::-;;;;;;;;;;;;;;;;10590:279:5;;;;;;;;;;-1:-1:-1;10590:279:5;;;;;:::i;:::-;;:::i;11668:342::-;;;;;;;;;;-1:-1:-1;11668:342:5;;;;;:::i;:::-;;:::i;9155:318::-;;;;;;;;;;-1:-1:-1;9155:318:5;;;;;:::i;:::-;;:::i;10940:164::-;;;;;;;;;;-1:-1:-1;10940:164:5;;;;;:::i;:::-;-1:-1:-1;;;;;11061:25:5;;;11037:4;11061:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;10940:164;1861:223:11;;;;;;;;;;-1:-1:-1;1861:223:11;;;;;:::i;:::-;;:::i;1676:90:1:-;;;;;;;;;;-1:-1:-1;1676:90:1;;;;;:::i;:::-;;:::i;6201:372:5:-;6303:4;-1:-1:-1;;;;;;6340:40:5;;-1:-1:-1;;;6340:40:5;;:105;;-1:-1:-1;;;;;;;6397:48:5;;-1:-1:-1;;;6397:48:5;6340:105;:172;;;-1:-1:-1;;;;;;;6462:50:5;;-1:-1:-1;;;6462:50:5;6340:172;:225;;;-1:-1:-1;;;;;;;;;;915:40:4;;;6529:36:5;6320:245;6201:372;-1:-1:-1;;6201:372:5:o;8811:100::-;8865:13;8898:5;8891:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8811:100;:::o;10314:204::-;10382:7;10407:16;10415:7;10407;:16::i;:::-;10402:64;;10432:34;;-1:-1:-1;;;10432:34:5;;;;;;;;;;;10402:64;-1:-1:-1;10486:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;10486:24:5;;10314:204::o;9877:371::-;9950:13;9966:24;9982:7;9966:15;:24::i;:::-;9950:40;;10011:5;-1:-1:-1;;;;;10005:11:5;:2;-1:-1:-1;;;;;10005:11:5;;10001:48;;;10025:24;;-1:-1:-1;;;10025:24:5;;;;;;;;;;;10001:48;666:10:3;-1:-1:-1;;;;;10066:21:5;;;;;;:63;;-1:-1:-1;10092:37:5;10109:5;666:10:3;10940:164:5;:::i;10092:37::-;10091:38;10066:63;10062:138;;;10153:35;;-1:-1:-1;;;10153:35:5;;;;;;;;;;;10062:138;10212:28;10221:2;10225:7;10234:5;10212:8;:28::i;:::-;9939:309;9877:371;;:::o;11171:170::-;11305:28;11315:4;11321:2;11325:7;11305:9;:28::i;5024:1105::-;5113:7;5146:16;5156:5;5146:9;:16::i;:::-;5137:5;:25;5133:61;;5171:23;;-1:-1:-1;;;5171:23:5;;;;;;;;;;;5133:61;5205:22;5230:13;;-1:-1:-1;;;;;5230:13:5;;5205:22;;5480:557;5500:14;5496:1;:18;5480:557;;;5540:31;5574:14;;;:11;:14;;;;;;;;;5540:48;;;;;;;;;-1:-1:-1;;;;;5540:48:5;;;;-1:-1:-1;;;5540:48:5;;;;;;;;;;;-1:-1:-1;;;5540:48:5;;;;;;;;;;;;;;;;5607:73;;5652:8;;;5607:73;5702:14;;-1:-1:-1;;;;;5702:28:5;;5698:111;;5775:14;;;-1:-1:-1;5698:111:5;5852:5;-1:-1:-1;;;;;5831:26:5;:17;-1:-1:-1;;;;;5831:26:5;;5827:195;;;5901:5;5886:11;:20;5882:85;;;-1:-1:-1;5942:1:5;-1:-1:-1;5935:8:5;;-1:-1:-1;;;5935:8:5;5882:85;5989:13;;;;;5827:195;5521:516;5480:557;5516:3;;5480:557;;;;6113:8;;;1774:95:1;1060:6:11;;-1:-1:-1;;;;;1060:6:11;666:10:3;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;;;;;;;;;1840:13:1::1;:21:::0;1774:95::o;2038:173::-;1060:6:11;;-1:-1:-1;;;;;1060:6:11;666:10:3;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;2107:49:1::1;::::0;2089:12:::1;::::0;2107:10:::1;::::0;2130:21:::1;::::0;2089:12;2107:49;2089:12;2107:49;2130:21;2107:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2088:68;;;2175:7;2167:36;;;::::0;-1:-1:-1;;;2167:36:1;;8477:2:13;2167:36:1::1;::::0;::::1;8459:21:13::0;8516:2;8496:18;;;8489:30;-1:-1:-1;;;8535:18:13;;;8528:46;8591:18;;2167:36:1::1;8275:340:13::0;2167:36:1::1;2077:134;2038:173::o:0;11412:185:5:-;11550:39;11567:4;11573:2;11577:7;11550:39;;;;;;;;;;;;:16;:39::i;4011:713::-;4078:7;4123:13;;-1:-1:-1;;;;;4123:13:5;4078:7;;4337:328;4357:14;4353:1;:18;4337:328;;;4397:31;4431:14;;;:11;:14;;;;;;;;;4397:48;;;;;;;;;-1:-1:-1;;;;;4397:48:5;;;;-1:-1:-1;;;4397:48:5;;;;;;;;;;;-1:-1:-1;;;4397:48:5;;;;;;;;;;;;;;4464:186;;4529:5;4514:11;:20;4510:85;;;-1:-1:-1;4570:1:5;4011:713;-1:-1:-1;;;;4011:713:5:o;4510:85::-;4617:13;;;;;4464:186;-1:-1:-1;4373:3:5;;4337:328;;;;4693:23;;-1:-1:-1;;;4693:23:5;;;;;;;;;;;1450:100:1;1060:6:11;;-1:-1:-1;;;;;1060:6:11;666:10:3;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;1524:18:1;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1450:100:::0;:::o;8620:124:5:-;8684:7;8711:20;8723:7;8711:11;:20::i;:::-;:25;;8620:124;-1:-1:-1;;8620:124:5:o;1877:151:1:-;1060:6:11;;-1:-1:-1;;;;;1060:6:11;666:10:3;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;1968:14:1::1;;1956:9;:26;1948:35;;;::::0;::::1;;1994:14;:26:::0;1877:151::o;6637:206:5:-;6701:7;-1:-1:-1;;;;;6725:19:5;;6721:60;;6753:28;;-1:-1:-1;;;6753:28:5;;;;;;;;;;;6721:60;-1:-1:-1;;;;;;6807:19:5;;;;;:12;:19;;;;;:27;;;;6637:206::o;1620:92:11:-;1060:6;;-1:-1:-1;;;;;1060:6:11;666:10:3;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;1684:21:::1;1702:1;1684:9;:21::i;:::-;1620:92::o:0;8980:104:5:-;9036:13;9069:7;9062:14;;;;;:::i;941:501:1:-;856:15;839:13;;:32;;817:96;;;;-1:-1:-1;;;817:96:1;;7063:2:13;817:96:1;;;7045:21:13;7102:2;7082:18;;;7075:30;-1:-1:-1;;;7121:18:13;;;7114:44;7175:18;;817:96:1;6861:338:13;817:96:1;1059:9:::1;571:1;559:9;:13;537:95;;;::::0;-1:-1:-1;;;537:95:1;;8116:2:13;537:95:1::1;::::0;::::1;8098:21:13::0;;;8135:18;;;8128:30;8194:34;8174:18;;;8167:62;8246:18;;537:95:1::1;7914:356:13::0;537:95:1::1;694:14;;681:9;665:13;3491:7:5::0;3683:12;-1:-1:-1;;;;;;;;3683:12:5;;;;3667:13;;;:28;;;;3660:35;;3438:280;665:13:1::1;:25;;;;:::i;:::-;:43;;643:113;;;::::0;-1:-1:-1;;;643:113:1;;7406:2:13;643:113:1::1;::::0;::::1;7388:21:13::0;7445:2;7425:18;;;7418:30;-1:-1:-1;;;7464:18:13;;;7457:50;7524:18;;643:113:1::1;7204:344:13::0;643:113:1::1;1137:10:::2;1087:18;1119:29:::0;;;:17:::2;:29;::::0;;;;;::::2;;1116:211;;;1190:5;::::0;1178:17:::2;::::0;:9;:17:::2;:::i;:::-;1165:30;;1116:211;;;1259:5;::::0;1242:13:::2;1254:1;1242:9:::0;:13:::2;:::i;:::-;1241:23;;;;:::i;:::-;1297:10;1279:29;::::0;;;:17:::2;:29;::::0;;;;:36;;-1:-1:-1;;1279:36:1::2;1311:4;1279:36;::::0;;1228;-1:-1:-1;1116:211:1::2;1358:10;1345:9;:23;;1337:54;;;::::0;-1:-1:-1;;;1337:54:1;;6716:2:13;1337:54:1::2;::::0;::::2;6698:21:13::0;6755:2;6735:18;;;6728:30;-1:-1:-1;;;6774:18:13;;;6767:48;6832:18;;1337:54:1::2;6514:342:13::0;1337:54:1::2;1402:32;1412:10;1424:9;1402;:32::i;10590:279:5:-:0;-1:-1:-1;;;;;10681:24:5;;666:10:3;10681:24:5;10677:54;;;10714:17;;-1:-1:-1;;;10714:17:5;;;;;;;;;;;10677:54;666:10:3;10744:32:5;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;10744:42:5;;;;;;;;;;;;:53;;-1:-1:-1;;10744:53:5;;;;;;;;;;10813:48;;5831:41:13;;;10744:42:5;;666:10:3;10813:48:5;;5804:18:13;10813:48:5;;;;;;;10590:279;;:::o;11668:342::-;11835:28;11845:4;11851:2;11855:7;11835:9;:28::i;:::-;11879:48;11902:4;11908:2;11912:7;11921:5;11879:22;:48::i;:::-;11874:129;;11951:40;;-1:-1:-1;;;11951:40:5;;;;;;;;;;;11874:129;11668:342;;;;:::o;9155:318::-;9228:13;9259:16;9267:7;9259;:16::i;:::-;9254:59;;9284:29;;-1:-1:-1;;;9284:29:5;;;;;;;;;;;9254:59;9326:21;9350:10;:8;:10::i;:::-;9326:34;;9384:7;9378:21;9403:1;9378:26;;:87;;;;;;;;;;;;;;;;;9431:7;9440:18;:7;:16;:18::i;:::-;9414:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9378:87;9371:94;9155:318;-1:-1:-1;;;9155:318:5:o;1861:223:11:-;1060:6;;-1:-1:-1;;;;;1060:6:11;666:10:3;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1962:22:11;::::1;1941:107;;;::::0;-1:-1:-1;;;1941:107:11;;6309:2:13;1941:107:11::1;::::0;::::1;6291:21:13::0;6348:2;6328:18;;;6321:30;6387:34;6367:18;;;6360:62;-1:-1:-1;;;6438:18:13;;;6431:36;6484:19;;1941:107:11::1;6107:402:13::0;1941:107:11::1;2058:19;2068:8;2058:9;:19::i;1676:90:1:-:0;1060:6:11;;-1:-1:-1;;;;;1060:6:11;666:10:3;1200:23:11;1192:68;;;;-1:-1:-1;;;1192:68:11;;;;;;;:::i;:::-;1744:5:1::1;:14:::0;1676:90::o;12265:144:5:-;12322:4;12356:13;;-1:-1:-1;;;;;12356:13:5;12346:23;;:55;;;;-1:-1:-1;;12374:20:5;;;;:11;:20;;;;;:27;-1:-1:-1;;;12374:27:5;;;;12373:28;;12265:144::o;19481:196::-;19596:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19596:29:5;-1:-1:-1;;;;;19596:29:5;;;;;;;;;19641:28;;19596:24;;19641:28;;;;;;;19481:196;;;:::o;14982:2112::-;15097:35;15135:20;15147:7;15135:11;:20::i;:::-;15210:18;;15097:58;;-1:-1:-1;15168:22:5;;-1:-1:-1;;;;;15194:34:5;666:10:3;-1:-1:-1;;;;;15194:34:5;;:101;;;-1:-1:-1;15262:18:5;;15245:50;;666:10:3;10940:164:5;:::i;15245:50::-;15194:154;;;-1:-1:-1;666:10:3;15312:20:5;15324:7;15312:11;:20::i;:::-;-1:-1:-1;;;;;15312:36:5;;15194:154;15168:181;;15367:17;15362:66;;15393:35;;-1:-1:-1;;;15393:35:5;;;;;;;;;;;15362:66;15465:4;-1:-1:-1;;;;;15443:26:5;:13;:18;;;-1:-1:-1;;;;;15443:26:5;;15439:67;;15478:28;;-1:-1:-1;;;15478:28:5;;;;;;;;;;;15439:67;-1:-1:-1;;;;;15521:16:5;;15517:52;;15546:23;;-1:-1:-1;;;15546:23:5;;;;;;;;;;;15517:52;15690:49;15707:1;15711:7;15720:13;:18;;;15690:8;:49::i;:::-;-1:-1:-1;;;;;16035:18:5;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;16035:31:5;;;;;;;-1:-1:-1;;16035:31:5;;;;;;;16081:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;16081:29:5;;;;;;;;;;;16127:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;16172:61:5;;;;-1:-1:-1;;;16217:15:5;16172:61;;;;;;;;;;;16507:11;;;16537:24;;;;;:29;16507:11;;16537:29;16533:445;;16762:13;;-1:-1:-1;;;;;16762:13:5;16748:27;;16744:219;;;16832:18;;;16800:24;;;:11;:24;;;;;;;;:50;;16915:28;;;;16873:70;;-1:-1:-1;;;16873:70:5;-1:-1:-1;;;;;;16873:70:5;;;-1:-1:-1;;;;;16800:50:5;;;16873:70;;;;;;;16744:219;16010:979;17025:7;17021:2;-1:-1:-1;;;;;17006:27:5;17015:4;-1:-1:-1;;;;;17006:27:5;;;;;;;;;;;17044:42;15086:2008;;14982:2112;;;:::o;7475:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;7641:13:5;;7585:7;;-1:-1:-1;;;;;7641:13:5;7634:20;;7630:861;;;7675:31;7709:17;;;:11;:17;;;;;;;;;7675:51;;;;;;;;;-1:-1:-1;;;;;7675:51:5;;;;-1:-1:-1;;;7675:51:5;;;;;;;;;;;-1:-1:-1;;;7675:51:5;;;;;;;;;;;;;;7745:731;;7795:14;;-1:-1:-1;;;;;7795:28:5;;7791:101;;7859:9;7475:1083;-1:-1:-1;;;7475:1083:5:o;7791:101::-;-1:-1:-1;;;8236:6:5;8281:17;;;;:11;:17;;;;;;;;;8269:29;;;;;;;;;-1:-1:-1;;;;;8269:29:5;;;;;-1:-1:-1;;;8269:29:5;;;;;;;;;;;-1:-1:-1;;;8269:29:5;;;;;;;;;;;;;8329:28;8325:109;;8397:9;7475:1083;-1:-1:-1;;;7475:1083:5:o;8325:109::-;8196:261;;;7656:835;7630:861;8519:31;;-1:-1:-1;;;8519:31:5;;;;;;;;;;;2090:169:11;2164:6;;;-1:-1:-1;;;;;2180:17:11;;;-1:-1:-1;;;;;;2180:17:11;;;;;;;2212:40;;2164:6;;;2180:17;2164:6;;2212:40;;2145:16;;2212:40;2135:124;2090:169;:::o;12417:104:5:-;12486:27;12496:2;12500:8;12486:27;;;;;;;;;;;;:9;:27::i;20242:790::-;20397:4;-1:-1:-1;;;;;20418:13:5;;1034:20:0;1080:8;20414:611:5;;20454:72;;-1:-1:-1;;;20454:72:5;;-1:-1:-1;;;;;20454:36:5;;;;;:72;;666:10:3;;20505:4:5;;20511:7;;20520:5;;20454:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20454:72:5;;;;;;;;-1:-1:-1;;20454:72:5;;;;;;;;;;;;:::i;:::-;;;20450:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20700:13:5;;20696:259;;20750:40;;-1:-1:-1;;;20750:40:5;;;;;;;;;;;20696:259;20905:6;20899:13;20890:6;20886:2;20882:15;20875:38;20450:520;-1:-1:-1;;;;;;20577:55:5;-1:-1:-1;;;20577:55:5;;-1:-1:-1;20570:62:5;;20414:611;-1:-1:-1;21009:4:5;20414:611;20242:790;;;;;;:::o;1558:108:1:-;1618:13;1651:7;1644:14;;;;;:::i;275:703:12:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:12;;;;;;;;;;;;-1:-1:-1;;;574:10:12;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:12;;-1:-1:-1;720:2:12;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:12;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:12;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:12;;;;;;;;-1:-1:-1;919:11:12;928:2;919:11;;:::i;:::-;;;791:150;;12884:163:5;13007:32;13013:2;13017:8;13027:5;13034:4;13445:20;13468:13;-1:-1:-1;;;;;13468:13:5;-1:-1:-1;;;;;13496:16:5;;13492:48;;13521:19;;-1:-1:-1;;;13521:19:5;;;;;;;;;;;13492:48;13555:13;13551:44;;13577:18;;-1:-1:-1;;;13577:18:5;;;;;;;;;;;13551:44;-1:-1:-1;;;;;13947:16:5;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;14006:49:5;;13947:44;;;;;;;;14006:49;;;;-1:-1:-1;;13947:44:5;;;;;;14006:49;;;;;;;;;;;;;;;;14072:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;14122:66:5;;;;-1:-1:-1;;;14172:15:5;14122:66;;;;;;;;;;;14072:25;;14257:328;14277:8;14273:1;:12;14257:328;;;14316:38;;14341:12;;-1:-1:-1;;;;;14316:38:5;;;14333:1;;14316:38;;14333:1;;14316:38;14377:4;:68;;;;;14386:59;14417:1;14421:2;14425:12;14439:5;14386:22;:59::i;:::-;14385:60;14377:68;14373:164;;;14477:40;;-1:-1:-1;;;14477:40:5;;;;;;;;;;;14373:164;14555:14;;;;;14287:3;14257:328;;;-1:-1:-1;14601:13:5;:37;;-1:-1:-1;;;;;;14601:37:5;-1:-1:-1;;;;;14601:37:5;;;;;;;;;;14660:60;11668:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;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:13;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:13;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:13;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:13:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:13;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:13;;3858:180;-1:-1:-1;3858:180:13:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:13;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:13:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:13:o;5198:488::-;-1:-1:-1;;;;;5467:15:13;;;5449:34;;5519:15;;5514:2;5499:18;;5492:43;5566:2;5551:18;;5544:34;;;5614:3;5609:2;5594:18;;5587:31;;;5392:4;;5635:45;;5660:19;;5652:6;5635:45;:::i;:::-;5627:53;5198:488;-1:-1:-1;;;;;;5198:488:13:o;5883:219::-;6032:2;6021:9;6014:21;5995:4;6052:44;6092:2;6081:9;6077:18;6069:6;6052:44;:::i;7553:356::-;7755:2;7737:21;;;7774:18;;;7767:30;7833:34;7828:2;7813:18;;7806:62;7900:2;7885:18;;7553:356::o;8802:128::-;8842:3;8873:1;8869:6;8866:1;8863:13;8860:39;;;8879:18;;:::i;:::-;-1:-1:-1;8915:9:13;;8802:128::o;8935:120::-;8975:1;9001;8991:35;;9006:18;;:::i;:::-;-1:-1:-1;9040:9:13;;8935:120::o;9060:168::-;9100:7;9166:1;9162;9158:6;9154:14;9151:1;9148:21;9143:1;9136:9;9129:17;9125:45;9122:71;;;9173:18;;:::i;:::-;-1:-1:-1;9213:9:13;;9060:168::o;9233:125::-;9273:4;9301:1;9298;9295:8;9292:34;;;9306:18;;:::i;:::-;-1:-1:-1;9343:9:13;;9233:125::o;9363:258::-;9435:1;9445:113;9459:6;9456:1;9453:13;9445:113;;;9535:11;;;9529:18;9516:11;;;9509:39;9481:2;9474:10;9445:113;;;9576:6;9573:1;9570:13;9567:48;;;-1:-1:-1;;9611:1:13;9593:16;;9586:27;9363:258::o;9626:380::-;9705:1;9701:12;;;;9748;;;9769:61;;9823:4;9815:6;9811:17;9801:27;;9769:61;9876:2;9868:6;9865:14;9845:18;9842:38;9839:161;;;9922:10;9917:3;9913:20;9910:1;9903:31;9957:4;9954:1;9947:15;9985:4;9982:1;9975:15;9839:161;;9626:380;;;:::o;10011:135::-;10050:3;-1:-1:-1;;10071:17:13;;10068:43;;;10091:18;;:::i;:::-;-1:-1:-1;10138:1:13;10127:13;;10011:135::o;10151:112::-;10183:1;10209;10199:35;;10214:18;;:::i;:::-;-1:-1:-1;10248:9:13;;10151:112::o;10268:127::-;10329:10;10324:3;10320:20;10317:1;10310:31;10360:4;10357:1;10350:15;10384:4;10381:1;10374:15;10400:127;10461:10;10456:3;10452:20;10449:1;10442:31;10492:4;10489:1;10482:15;10516:4;10513:1;10506:15;10532:127;10593:10;10588:3;10584:20;10581:1;10574:31;10624:4;10621:1;10614:15;10648:4;10645:1;10638:15;10664:127;10725:10;10720:3;10716:20;10713:1;10706:31;10756:4;10753:1;10746:15;10780:4;10777:1;10770:15;10796:131;-1:-1:-1;;;;;;10870:32:13;;10860:43;;10850:71;;10917:1;10914;10907:12

Swarm Source

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