ETH Price: $3,164.65 (-8.82%)
Gas: 3 Gwei

Token

GlizzyNFT (Glizzy)
 

Overview

Max Total Supply

72 Glizzy

Holders

12

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 Glizzy
0x8cea315cb26be191551131f11aef98ef28bd95ea
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:
GlizzyNFT

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : GlizzyNFT.sol
// SPDX-License-Identifier: MIT

//  .-_'''-.     .---.    .-./`)  ____..--'  ____..--'   ____     __  
// '_( )_   \    | ,_|    \ .-.')|        | |        |   \   \   /  / 
//|(_ o _)|  ' ,-./  )    / `-' \|   .-'  ' |   .-'  '    \  _. /  '  
//. (_,_)/___| \  '_ '`)   `-'`"`|.-'.'   / |.-'.'   /     _( )_ .'   
//|  |  .-----. > (_)  )   .---.    /   _/     /   _/  ___(_ o _)'    
//'  \  '-   .'(  .  .-'   |   |  .'._( )_   .'._( )_ |   |(_,_)'     
// \  `-'`   |  `-'`-'|___ |   |.'  (_'o._).'  (_'o._)|   `-'  /      
//  \        /   |        \|   ||    (_,_)||    (_,_)| \      /       
//  `'-...-'    `--------`'---'|_________||_________|  `-..-'        
                                                                    
pragma solidity ^0.8.0;

import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract GlizzyNFT is ERC721A, Ownable{
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 4000;
    uint256 public constant MAX_PUBLIC_MINT = 20;
    uint256 public constant PUBLIC_SALE_PRICE = .0069 ether;

    string private  baseTokenUri;
    string public   placeholderTokenUri;

    //deploy smart contract, toggle WL, toggle WL when done, toggle publicSale 
    bool public isRevealed;
    bool public publicSale;
    bool public pause;

    mapping(address => uint256) public totalPublicMint;

    constructor() ERC721A("GlizzyNFT", "Glizzy"){

    }
    //stops botting from contract
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "Glizzy :: Cannot be called by a contract");
        _;
    }

    function mint(uint256 _quantity) external payable callerIsUser{
        require(publicSale, "Glizzy :: Not Yet Active.");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Glizzy :: Beyond Max Supply");
        require((totalPublicMint[msg.sender] +_quantity) <= MAX_PUBLIC_MINT, "Glizzy :: Already minted 3 times!");
        require(msg.value >= (PUBLIC_SALE_PRICE * _quantity), "Glizzy :: Below ");

        totalPublicMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

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

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

        uint256 trueId = tokenId + 1;

        if(!isRevealed){
            return placeholderTokenUri;
        }
        //string memory baseURI = _baseURI();
        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }

    /// @dev walletOf() function shouldn't be called on-chain due to gas consumption
    function walletOf() external view returns(uint256[] memory){
        address _owner = msg.sender;
        uint256 numberOfOwnedNFT = balanceOf(_owner);
        uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT);

        for(uint256 index = 0; index < numberOfOwnedNFT; index++){
            ownerIds[index] = tokenOfOwnerByIndex(_owner, index);
        }

        return ownerIds;
    }

    function setTokenUri(string memory _baseTokenUri) external onlyOwner{
        baseTokenUri = _baseTokenUri;
    }

    function togglePause() external onlyOwner{
        pause = !pause;
    }

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

        function toggleReveal() external onlyOwner{
        isRevealed = !isRevealed;
    }

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

File 2 of 12 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
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..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // 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) {
        return _currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @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 = totalSupply();
        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.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

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

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

    /**
     * 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) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

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

        revert UnableDetermineTokenOwner();
    }

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

    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 > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(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 = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        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**256.
        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)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @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.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

File 4 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/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 5 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 6 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 7 of 12 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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

    /**
     * @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 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

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":"UnableDetermineTokenOwner","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":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f476c697a7a794e465400000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f476c697a7a790000000000000000000000000000000000000000000000000000815250816001908051906020019062000096929190620001a6565b508060029080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002ba565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000285565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029e57607f821691505b602082108103620002b457620002b362000256565b5b50919050565b613c7180620002ca6000396000f3fe6080604052600436106101f95760003560e01c80635b8ad4291161010d57806395d89b41116100a0578063c4ae31681161006f578063c4ae316814610704578063c87b56dd1461071b578063e222c7f914610758578063e985e9c51461076f578063f2fde38b146107ac576101f9565b806395d89b411461066b578063a0712d6814610696578063a22cb465146106b2578063b88d4fde146106db576101f9565b8063715018a6116100dc578063715018a6146105d357806383a974a2146105ea5780638456cb59146106155780638da5cb5b14610640576101f9565b80635b8ad429146105175780636352211e1461052e57806365f130971461056b57806370a0823114610596576101f9565b806323b872dd116101905780633ccfd60b1161015f5780633ccfd60b1461044457806342842e0e1461045b5780634cf5f7a4146104845780634f6ccce7146104af57806354214f69146104ec576101f9565b806323b872dd146103885780632f745c59146103b157806332cb6b0c146103ee57806333bc1c5c14610419576101f9565b8063081812fc116101cc578063081812fc146102ba578063095ea7b3146102f757806318160ddd146103205780631c16521c1461034b576101f9565b806301ffc9a7146101fe5780630675b7c61461023b57806306fdde031461026457806307e89ec01461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c4a565b6107d5565b6040516102329190612c92565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612df3565b61091f565b005b34801561027057600080fd5b506102796109b5565b6040516102869190612ec4565b60405180910390f35b34801561029b57600080fd5b506102a4610a47565b6040516102b19190612eff565b60405180910390f35b3480156102c657600080fd5b506102e160048036038101906102dc9190612f46565b610a52565b6040516102ee9190612fb4565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612ffb565b610ace565b005b34801561032c57600080fd5b50610335610bd8565b6040516103429190612eff565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d919061303b565b610be1565b60405161037f9190612eff565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190613068565b610bf9565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612ffb565b610c09565b6040516103e59190612eff565b60405180910390f35b3480156103fa57600080fd5b50610403610dc8565b6040516104109190612eff565b60405180910390f35b34801561042557600080fd5b5061042e610dce565b60405161043b9190612c92565b60405180910390f35b34801561045057600080fd5b50610459610de1565b005b34801561046757600080fd5b50610482600480360381019061047d9190613068565b610ea6565b005b34801561049057600080fd5b50610499610ec6565b6040516104a69190612ec4565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190612f46565b610f54565b6040516104e39190612eff565b60405180910390f35b3480156104f857600080fd5b50610501610f9e565b60405161050e9190612c92565b60405180910390f35b34801561052357600080fd5b5061052c610fb1565b005b34801561053a57600080fd5b5061055560048036038101906105509190612f46565b611059565b6040516105629190612fb4565b60405180910390f35b34801561057757600080fd5b5061058061106f565b60405161058d9190612eff565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b8919061303b565b611074565b6040516105ca9190612eff565b60405180910390f35b3480156105df57600080fd5b506105e8611153565b005b3480156105f657600080fd5b506105ff6111db565b60405161060c9190613179565b60405180910390f35b34801561062157600080fd5b5061062a61128d565b6040516106379190612c92565b60405180910390f35b34801561064c57600080fd5b506106556112a0565b6040516106629190612fb4565b60405180910390f35b34801561067757600080fd5b506106806112ca565b60405161068d9190612ec4565b60405180910390f35b6106b060048036038101906106ab9190612f46565b61135c565b005b3480156106be57600080fd5b506106d960048036038101906106d491906131c7565b6115b6565b005b3480156106e757600080fd5b5061070260048036038101906106fd91906132a8565b61172d565b005b34801561071057600080fd5b50610719611780565b005b34801561072757600080fd5b50610742600480360381019061073d9190612f46565b611828565b60405161074f9190612ec4565b60405180910390f35b34801561076457600080fd5b5061076d61198a565b005b34801561077b57600080fd5b506107966004803603810190610791919061332b565b611a32565b6040516107a39190612c92565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce919061303b565b611ac6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610918575061091782611bbd565b5b9050919050565b610927611c27565b73ffffffffffffffffffffffffffffffffffffffff166109456112a0565b73ffffffffffffffffffffffffffffffffffffffff161461099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610992906133b7565b60405180910390fd5b80600890805190602001906109b1929190612b01565b5050565b6060600180546109c490613406565b80601f01602080910402602001604051908101604052809291908181526020018280546109f090613406565b8015610a3d5780601f10610a1257610100808354040283529160200191610a3d565b820191906000526020600020905b815481529060010190602001808311610a2057829003601f168201915b5050505050905090565b6618838370f3400081565b6000610a5d82611c2f565b610a93576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad982611059565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b40576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b5f611c27565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b915750610b8f81610b8a611c27565b611a32565b155b15610bc8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bd3838383611c3c565b505050565b60008054905090565b600b6020528060005260406000206000915090505481565b610c04838383611cee565b505050565b6000610c1483611074565b8210610c4c576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610c56610bd8565b905060008060005b83811015610dae576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d5057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610da057868403610d97578195505050505050610dc2565b83806001019450505b508080600101915050610c5e565b506000610dbe57610dbd613437565b5b5050505b92915050565b610fa081565b600a60019054906101000a900460ff1681565b610de9611c27565b73ffffffffffffffffffffffffffffffffffffffff16610e076112a0565b73ffffffffffffffffffffffffffffffffffffffff1614610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906133b7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ea3573d6000803e3d6000fd5b50565b610ec18383836040518060200160405280600081525061172d565b505050565b60098054610ed390613406565b80601f0160208091040260200160405190810160405280929190818152602001828054610eff90613406565b8015610f4c5780601f10610f2157610100808354040283529160200191610f4c565b820191906000526020600020905b815481529060010190602001808311610f2f57829003601f168201915b505050505081565b6000610f5e610bd8565b8210610f96576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b600a60009054906101000a900460ff1681565b610fb9611c27565b73ffffffffffffffffffffffffffffffffffffffff16610fd76112a0565b73ffffffffffffffffffffffffffffffffffffffff161461102d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611024906133b7565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600061106482612211565b600001519050919050565b601481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110db576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61115b611c27565b73ffffffffffffffffffffffffffffffffffffffff166111796112a0565b73ffffffffffffffffffffffffffffffffffffffff16146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c6906133b7565b60405180910390fd5b6111d96000612399565b565b6060600033905060006111ed82611074565b905060008167ffffffffffffffff81111561120b5761120a612cc8565b5b6040519080825280602002602001820160405280156112395781602001602082028036833780820191505090505b50905060005b82811015611283576112518482610c09565b82828151811061126457611263613466565b5b602002602001018181525050808061127b906134c4565b91505061123f565b5080935050505090565b600a60029054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112d990613406565b80601f016020809104026020016040519081016040528092919081815260200182805461130590613406565b80156113525780601f1061132757610100808354040283529160200191611352565b820191906000526020600020905b81548152906001019060200180831161133557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c19061357e565b60405180910390fd5b600a60019054906101000a900460ff16611419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611410906135ea565b60405180910390fd5b610fa081611425610bd8565b61142f919061360a565b1115611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906136ac565b60405180910390fd5b601481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114bd919061360a565b11156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f59061373e565b60405180910390fd5b806618838370f34000611511919061375e565b341015611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90613804565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a2919061360a565b925050819055506115b3338261245f565b50565b6115be611c27565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611622576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061162f611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116dc611c27565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117219190612c92565b60405180910390a35050565b611738848484611cee565b6117448484848461247d565b61177a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611788611c27565b73ffffffffffffffffffffffffffffffffffffffff166117a66112a0565b73ffffffffffffffffffffffffffffffffffffffff16146117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f3906133b7565b60405180910390fd5b600a60029054906101000a900460ff1615600a60026101000a81548160ff021916908315150217905550565b606061183382611c2f565b611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990613896565b60405180910390fd5b6000600183611881919061360a565b9050600a60009054906101000a900460ff1661192a57600980546118a490613406565b80601f01602080910402602001604051908101604052809291908181526020018280546118d090613406565b801561191d5780601f106118f25761010080835404028352916020019161191d565b820191906000526020600020905b81548152906001019060200180831161190057829003601f168201915b5050505050915050611985565b60006008805461193990613406565b9050116119555760405180602001604052806000815250611981565b6008611960826125fb565b6040516020016119719291906139d2565b6040516020818303038152906040525b9150505b919050565b611992611c27565b73ffffffffffffffffffffffffffffffffffffffff166119b06112a0565b73ffffffffffffffffffffffffffffffffffffffff1614611a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd906133b7565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ace611c27565b73ffffffffffffffffffffffffffffffffffffffff16611aec6112a0565b73ffffffffffffffffffffffffffffffffffffffff1614611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b39906133b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba890613a73565b60405180910390fd5b611bba81612399565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611cf982612211565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d20611c27565b73ffffffffffffffffffffffffffffffffffffffff161480611d7c5750611d45611c27565b73ffffffffffffffffffffffffffffffffffffffff16611d6484610a52565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d985750611d978260000151611d92611c27565b611a32565b5b905080611dd1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ea0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ead858585600161275b565b611ebd6000848460000151611c3c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121a15761210081611c2f565b156121a05782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461220a8585856001612761565b5050505050565b612219612b87565b61222282611c2f565b612258576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110612361576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612352578092505050612394565b5080806001900391505061225e565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612479828260405180602001604052806000815250612767565b5050565b600061249e8473ffffffffffffffffffffffffffffffffffffffff16612779565b156125ee578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124c7611c27565b8786866040518563ffffffff1660e01b81526004016124e99493929190613ae8565b6020604051808303816000875af192505050801561252557506040513d601f19601f820116820180604052508101906125229190613b49565b60015b61259e573d8060008114612555576040519150601f19603f3d011682016040523d82523d6000602084013e61255a565b606091505b506000815103612596576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125f3565b600190505b949350505050565b606060008203612642576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612756565b600082905060005b6000821461267457808061265d906134c4565b915050600a8261266d9190613ba5565b915061264a565b60008167ffffffffffffffff8111156126905761268f612cc8565b5b6040519080825280601f01601f1916602001820160405280156126c25781602001600182028036833780820191505090505b5090505b6000851461274f576001826126db9190613bd6565b9150600a856126ea9190613c0a565b60306126f6919061360a565b60f81b81838151811061270c5761270b613466565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127489190613ba5565b94506126c6565b8093505050505b919050565b50505050565b50505050565b612774838383600161279c565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612808576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612842576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61284f600086838761275b565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ae457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612a985750612a96600088848861247d565b155b15612acf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612a1d565b508060008190555050612afa6000868387612761565b5050505050565b828054612b0d90613406565b90600052602060002090601f016020900481019282612b2f5760008555612b76565b82601f10612b4857805160ff1916838001178555612b76565b82800160010185558215612b76579182015b82811115612b75578251825591602001919060010190612b5a565b5b509050612b839190612bc1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612bda576000816000905550600101612bc2565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c2781612bf2565b8114612c3257600080fd5b50565b600081359050612c4481612c1e565b92915050565b600060208284031215612c6057612c5f612be8565b5b6000612c6e84828501612c35565b91505092915050565b60008115159050919050565b612c8c81612c77565b82525050565b6000602082019050612ca76000830184612c83565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d0082612cb7565b810181811067ffffffffffffffff82111715612d1f57612d1e612cc8565b5b80604052505050565b6000612d32612bde565b9050612d3e8282612cf7565b919050565b600067ffffffffffffffff821115612d5e57612d5d612cc8565b5b612d6782612cb7565b9050602081019050919050565b82818337600083830152505050565b6000612d96612d9184612d43565b612d28565b905082815260208101848484011115612db257612db1612cb2565b5b612dbd848285612d74565b509392505050565b600082601f830112612dda57612dd9612cad565b5b8135612dea848260208601612d83565b91505092915050565b600060208284031215612e0957612e08612be8565b5b600082013567ffffffffffffffff811115612e2757612e26612bed565b5b612e3384828501612dc5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e76578082015181840152602081019050612e5b565b83811115612e85576000848401525b50505050565b6000612e9682612e3c565b612ea08185612e47565b9350612eb0818560208601612e58565b612eb981612cb7565b840191505092915050565b60006020820190508181036000830152612ede8184612e8b565b905092915050565b6000819050919050565b612ef981612ee6565b82525050565b6000602082019050612f146000830184612ef0565b92915050565b612f2381612ee6565b8114612f2e57600080fd5b50565b600081359050612f4081612f1a565b92915050565b600060208284031215612f5c57612f5b612be8565b5b6000612f6a84828501612f31565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f9e82612f73565b9050919050565b612fae81612f93565b82525050565b6000602082019050612fc96000830184612fa5565b92915050565b612fd881612f93565b8114612fe357600080fd5b50565b600081359050612ff581612fcf565b92915050565b6000806040838503121561301257613011612be8565b5b600061302085828601612fe6565b925050602061303185828601612f31565b9150509250929050565b60006020828403121561305157613050612be8565b5b600061305f84828501612fe6565b91505092915050565b60008060006060848603121561308157613080612be8565b5b600061308f86828701612fe6565b93505060206130a086828701612fe6565b92505060406130b186828701612f31565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130f081612ee6565b82525050565b600061310283836130e7565b60208301905092915050565b6000602082019050919050565b6000613126826130bb565b61313081856130c6565b935061313b836130d7565b8060005b8381101561316c57815161315388826130f6565b975061315e8361310e565b92505060018101905061313f565b5085935050505092915050565b60006020820190508181036000830152613193818461311b565b905092915050565b6131a481612c77565b81146131af57600080fd5b50565b6000813590506131c18161319b565b92915050565b600080604083850312156131de576131dd612be8565b5b60006131ec85828601612fe6565b92505060206131fd858286016131b2565b9150509250929050565b600067ffffffffffffffff82111561322257613221612cc8565b5b61322b82612cb7565b9050602081019050919050565b600061324b61324684613207565b612d28565b90508281526020810184848401111561326757613266612cb2565b5b613272848285612d74565b509392505050565b600082601f83011261328f5761328e612cad565b5b813561329f848260208601613238565b91505092915050565b600080600080608085870312156132c2576132c1612be8565b5b60006132d087828801612fe6565b94505060206132e187828801612fe6565b93505060406132f287828801612f31565b925050606085013567ffffffffffffffff81111561331357613312612bed565b5b61331f8782880161327a565b91505092959194509250565b6000806040838503121561334257613341612be8565b5b600061335085828601612fe6565b925050602061336185828601612fe6565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133a1602083612e47565b91506133ac8261336b565b602082019050919050565b600060208201905081810360008301526133d081613394565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061341e57607f821691505b602082108103613431576134306133d7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134cf82612ee6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361350157613500613495565b5b600182019050919050565b7f476c697a7a79203a3a2043616e6e6f742062652063616c6c656420627920612060008201527f636f6e7472616374000000000000000000000000000000000000000000000000602082015250565b6000613568602883612e47565b91506135738261350c565b604082019050919050565b600060208201905081810360008301526135978161355b565b9050919050565b7f476c697a7a79203a3a204e6f7420596574204163746976652e00000000000000600082015250565b60006135d4601983612e47565b91506135df8261359e565b602082019050919050565b60006020820190508181036000830152613603816135c7565b9050919050565b600061361582612ee6565b915061362083612ee6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561365557613654613495565b5b828201905092915050565b7f476c697a7a79203a3a204265796f6e64204d617820537570706c790000000000600082015250565b6000613696601b83612e47565b91506136a182613660565b602082019050919050565b600060208201905081810360008301526136c581613689565b9050919050565b7f476c697a7a79203a3a20416c7265616479206d696e74656420332074696d657360008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613728602183612e47565b9150613733826136cc565b604082019050919050565b600060208201905081810360008301526137578161371b565b9050919050565b600061376982612ee6565b915061377483612ee6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137ad576137ac613495565b5b828202905092915050565b7f476c697a7a79203a3a2042656c6f772000000000000000000000000000000000600082015250565b60006137ee601083612e47565b91506137f9826137b8565b602082019050919050565b6000602082019050818103600083015261381d816137e1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613880602f83612e47565b915061388b82613824565b604082019050919050565b600060208201905081810360008301526138af81613873565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138e381613406565b6138ed81866138b6565b9450600182166000811461390857600181146139195761394c565b60ff1983168652818601935061394c565b613922856138c1565b60005b8381101561394457815481890152600182019150602081019050613925565b838801955050505b50505092915050565b600061396082612e3c565b61396a81856138b6565b935061397a818560208601612e58565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139bc6005836138b6565b91506139c782613986565b600582019050919050565b60006139de82856138d6565b91506139ea8284613955565b91506139f5826139af565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a5d602683612e47565b9150613a6882613a01565b604082019050919050565b60006020820190508181036000830152613a8c81613a50565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613aba82613a93565b613ac48185613a9e565b9350613ad4818560208601612e58565b613add81612cb7565b840191505092915050565b6000608082019050613afd6000830187612fa5565b613b0a6020830186612fa5565b613b176040830185612ef0565b8181036060830152613b298184613aaf565b905095945050505050565b600081519050613b4381612c1e565b92915050565b600060208284031215613b5f57613b5e612be8565b5b6000613b6d84828501613b34565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613bb082612ee6565b9150613bbb83612ee6565b925082613bcb57613bca613b76565b5b828204905092915050565b6000613be182612ee6565b9150613bec83612ee6565b925082821015613bff57613bfe613495565b5b828203905092915050565b6000613c1582612ee6565b9150613c2083612ee6565b925082613c3057613c2f613b76565b5b82820690509291505056fea26469706673582212209beee9b9d1b24fe89860e74e84bdb4d57580223f05d8cf2111e56b05be74e5be64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80635b8ad4291161010d57806395d89b41116100a0578063c4ae31681161006f578063c4ae316814610704578063c87b56dd1461071b578063e222c7f914610758578063e985e9c51461076f578063f2fde38b146107ac576101f9565b806395d89b411461066b578063a0712d6814610696578063a22cb465146106b2578063b88d4fde146106db576101f9565b8063715018a6116100dc578063715018a6146105d357806383a974a2146105ea5780638456cb59146106155780638da5cb5b14610640576101f9565b80635b8ad429146105175780636352211e1461052e57806365f130971461056b57806370a0823114610596576101f9565b806323b872dd116101905780633ccfd60b1161015f5780633ccfd60b1461044457806342842e0e1461045b5780634cf5f7a4146104845780634f6ccce7146104af57806354214f69146104ec576101f9565b806323b872dd146103885780632f745c59146103b157806332cb6b0c146103ee57806333bc1c5c14610419576101f9565b8063081812fc116101cc578063081812fc146102ba578063095ea7b3146102f757806318160ddd146103205780631c16521c1461034b576101f9565b806301ffc9a7146101fe5780630675b7c61461023b57806306fdde031461026457806307e89ec01461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c4a565b6107d5565b6040516102329190612c92565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612df3565b61091f565b005b34801561027057600080fd5b506102796109b5565b6040516102869190612ec4565b60405180910390f35b34801561029b57600080fd5b506102a4610a47565b6040516102b19190612eff565b60405180910390f35b3480156102c657600080fd5b506102e160048036038101906102dc9190612f46565b610a52565b6040516102ee9190612fb4565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612ffb565b610ace565b005b34801561032c57600080fd5b50610335610bd8565b6040516103429190612eff565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d919061303b565b610be1565b60405161037f9190612eff565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190613068565b610bf9565b005b3480156103bd57600080fd5b506103d860048036038101906103d39190612ffb565b610c09565b6040516103e59190612eff565b60405180910390f35b3480156103fa57600080fd5b50610403610dc8565b6040516104109190612eff565b60405180910390f35b34801561042557600080fd5b5061042e610dce565b60405161043b9190612c92565b60405180910390f35b34801561045057600080fd5b50610459610de1565b005b34801561046757600080fd5b50610482600480360381019061047d9190613068565b610ea6565b005b34801561049057600080fd5b50610499610ec6565b6040516104a69190612ec4565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190612f46565b610f54565b6040516104e39190612eff565b60405180910390f35b3480156104f857600080fd5b50610501610f9e565b60405161050e9190612c92565b60405180910390f35b34801561052357600080fd5b5061052c610fb1565b005b34801561053a57600080fd5b5061055560048036038101906105509190612f46565b611059565b6040516105629190612fb4565b60405180910390f35b34801561057757600080fd5b5061058061106f565b60405161058d9190612eff565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b8919061303b565b611074565b6040516105ca9190612eff565b60405180910390f35b3480156105df57600080fd5b506105e8611153565b005b3480156105f657600080fd5b506105ff6111db565b60405161060c9190613179565b60405180910390f35b34801561062157600080fd5b5061062a61128d565b6040516106379190612c92565b60405180910390f35b34801561064c57600080fd5b506106556112a0565b6040516106629190612fb4565b60405180910390f35b34801561067757600080fd5b506106806112ca565b60405161068d9190612ec4565b60405180910390f35b6106b060048036038101906106ab9190612f46565b61135c565b005b3480156106be57600080fd5b506106d960048036038101906106d491906131c7565b6115b6565b005b3480156106e757600080fd5b5061070260048036038101906106fd91906132a8565b61172d565b005b34801561071057600080fd5b50610719611780565b005b34801561072757600080fd5b50610742600480360381019061073d9190612f46565b611828565b60405161074f9190612ec4565b60405180910390f35b34801561076457600080fd5b5061076d61198a565b005b34801561077b57600080fd5b506107966004803603810190610791919061332b565b611a32565b6040516107a39190612c92565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce919061303b565b611ac6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610918575061091782611bbd565b5b9050919050565b610927611c27565b73ffffffffffffffffffffffffffffffffffffffff166109456112a0565b73ffffffffffffffffffffffffffffffffffffffff161461099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610992906133b7565b60405180910390fd5b80600890805190602001906109b1929190612b01565b5050565b6060600180546109c490613406565b80601f01602080910402602001604051908101604052809291908181526020018280546109f090613406565b8015610a3d5780601f10610a1257610100808354040283529160200191610a3d565b820191906000526020600020905b815481529060010190602001808311610a2057829003601f168201915b5050505050905090565b6618838370f3400081565b6000610a5d82611c2f565b610a93576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad982611059565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b40576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b5f611c27565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b915750610b8f81610b8a611c27565b611a32565b155b15610bc8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bd3838383611c3c565b505050565b60008054905090565b600b6020528060005260406000206000915090505481565b610c04838383611cee565b505050565b6000610c1483611074565b8210610c4c576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610c56610bd8565b905060008060005b83811015610dae576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d5057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610da057868403610d97578195505050505050610dc2565b83806001019450505b508080600101915050610c5e565b506000610dbe57610dbd613437565b5b5050505b92915050565b610fa081565b600a60019054906101000a900460ff1681565b610de9611c27565b73ffffffffffffffffffffffffffffffffffffffff16610e076112a0565b73ffffffffffffffffffffffffffffffffffffffff1614610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906133b7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ea3573d6000803e3d6000fd5b50565b610ec18383836040518060200160405280600081525061172d565b505050565b60098054610ed390613406565b80601f0160208091040260200160405190810160405280929190818152602001828054610eff90613406565b8015610f4c5780601f10610f2157610100808354040283529160200191610f4c565b820191906000526020600020905b815481529060010190602001808311610f2f57829003601f168201915b505050505081565b6000610f5e610bd8565b8210610f96576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b600a60009054906101000a900460ff1681565b610fb9611c27565b73ffffffffffffffffffffffffffffffffffffffff16610fd76112a0565b73ffffffffffffffffffffffffffffffffffffffff161461102d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611024906133b7565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600061106482612211565b600001519050919050565b601481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110db576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61115b611c27565b73ffffffffffffffffffffffffffffffffffffffff166111796112a0565b73ffffffffffffffffffffffffffffffffffffffff16146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c6906133b7565b60405180910390fd5b6111d96000612399565b565b6060600033905060006111ed82611074565b905060008167ffffffffffffffff81111561120b5761120a612cc8565b5b6040519080825280602002602001820160405280156112395781602001602082028036833780820191505090505b50905060005b82811015611283576112518482610c09565b82828151811061126457611263613466565b5b602002602001018181525050808061127b906134c4565b91505061123f565b5080935050505090565b600a60029054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112d990613406565b80601f016020809104026020016040519081016040528092919081815260200182805461130590613406565b80156113525780601f1061132757610100808354040283529160200191611352565b820191906000526020600020905b81548152906001019060200180831161133557829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c19061357e565b60405180910390fd5b600a60019054906101000a900460ff16611419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611410906135ea565b60405180910390fd5b610fa081611425610bd8565b61142f919061360a565b1115611470576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611467906136ac565b60405180910390fd5b601481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114bd919061360a565b11156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f59061373e565b60405180910390fd5b806618838370f34000611511919061375e565b341015611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90613804565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a2919061360a565b925050819055506115b3338261245f565b50565b6115be611c27565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611622576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061162f611c27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116dc611c27565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117219190612c92565b60405180910390a35050565b611738848484611cee565b6117448484848461247d565b61177a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611788611c27565b73ffffffffffffffffffffffffffffffffffffffff166117a66112a0565b73ffffffffffffffffffffffffffffffffffffffff16146117fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f3906133b7565b60405180910390fd5b600a60029054906101000a900460ff1615600a60026101000a81548160ff021916908315150217905550565b606061183382611c2f565b611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990613896565b60405180910390fd5b6000600183611881919061360a565b9050600a60009054906101000a900460ff1661192a57600980546118a490613406565b80601f01602080910402602001604051908101604052809291908181526020018280546118d090613406565b801561191d5780601f106118f25761010080835404028352916020019161191d565b820191906000526020600020905b81548152906001019060200180831161190057829003601f168201915b5050505050915050611985565b60006008805461193990613406565b9050116119555760405180602001604052806000815250611981565b6008611960826125fb565b6040516020016119719291906139d2565b6040516020818303038152906040525b9150505b919050565b611992611c27565b73ffffffffffffffffffffffffffffffffffffffff166119b06112a0565b73ffffffffffffffffffffffffffffffffffffffff1614611a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd906133b7565b60405180910390fd5b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ace611c27565b73ffffffffffffffffffffffffffffffffffffffff16611aec6112a0565b73ffffffffffffffffffffffffffffffffffffffff1614611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b39906133b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba890613a73565b60405180910390fd5b611bba81612399565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611cf982612211565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d20611c27565b73ffffffffffffffffffffffffffffffffffffffff161480611d7c5750611d45611c27565b73ffffffffffffffffffffffffffffffffffffffff16611d6484610a52565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d985750611d978260000151611d92611c27565b611a32565b5b905080611dd1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e3a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611ea0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611ead858585600161275b565b611ebd6000848460000151611c3c565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036121a15761210081611c2f565b156121a05782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461220a8585856001612761565b5050505050565b612219612b87565b61222282611c2f565b612258576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110612361576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612352578092505050612394565b5080806001900391505061225e565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612479828260405180602001604052806000815250612767565b5050565b600061249e8473ffffffffffffffffffffffffffffffffffffffff16612779565b156125ee578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124c7611c27565b8786866040518563ffffffff1660e01b81526004016124e99493929190613ae8565b6020604051808303816000875af192505050801561252557506040513d601f19601f820116820180604052508101906125229190613b49565b60015b61259e573d8060008114612555576040519150601f19603f3d011682016040523d82523d6000602084013e61255a565b606091505b506000815103612596576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125f3565b600190505b949350505050565b606060008203612642576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612756565b600082905060005b6000821461267457808061265d906134c4565b915050600a8261266d9190613ba5565b915061264a565b60008167ffffffffffffffff8111156126905761268f612cc8565b5b6040519080825280601f01601f1916602001820160405280156126c25781602001600182028036833780820191505090505b5090505b6000851461274f576001826126db9190613bd6565b9150600a856126ea9190613c0a565b60306126f6919061360a565b60f81b81838151811061270c5761270b613466565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127489190613ba5565b94506126c6565b8093505050505b919050565b50505050565b50505050565b612774838383600161279c565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612808576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612842576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61284f600086838761275b565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ae457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612a985750612a96600088848861247d565b155b15612acf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612a1d565b508060008190555050612afa6000868387612761565b5050505050565b828054612b0d90613406565b90600052602060002090601f016020900481019282612b2f5760008555612b76565b82601f10612b4857805160ff1916838001178555612b76565b82800160010185558215612b76579182015b82811115612b75578251825591602001919060010190612b5a565b5b509050612b839190612bc1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612bda576000816000905550600101612bc2565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c2781612bf2565b8114612c3257600080fd5b50565b600081359050612c4481612c1e565b92915050565b600060208284031215612c6057612c5f612be8565b5b6000612c6e84828501612c35565b91505092915050565b60008115159050919050565b612c8c81612c77565b82525050565b6000602082019050612ca76000830184612c83565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d0082612cb7565b810181811067ffffffffffffffff82111715612d1f57612d1e612cc8565b5b80604052505050565b6000612d32612bde565b9050612d3e8282612cf7565b919050565b600067ffffffffffffffff821115612d5e57612d5d612cc8565b5b612d6782612cb7565b9050602081019050919050565b82818337600083830152505050565b6000612d96612d9184612d43565b612d28565b905082815260208101848484011115612db257612db1612cb2565b5b612dbd848285612d74565b509392505050565b600082601f830112612dda57612dd9612cad565b5b8135612dea848260208601612d83565b91505092915050565b600060208284031215612e0957612e08612be8565b5b600082013567ffffffffffffffff811115612e2757612e26612bed565b5b612e3384828501612dc5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e76578082015181840152602081019050612e5b565b83811115612e85576000848401525b50505050565b6000612e9682612e3c565b612ea08185612e47565b9350612eb0818560208601612e58565b612eb981612cb7565b840191505092915050565b60006020820190508181036000830152612ede8184612e8b565b905092915050565b6000819050919050565b612ef981612ee6565b82525050565b6000602082019050612f146000830184612ef0565b92915050565b612f2381612ee6565b8114612f2e57600080fd5b50565b600081359050612f4081612f1a565b92915050565b600060208284031215612f5c57612f5b612be8565b5b6000612f6a84828501612f31565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f9e82612f73565b9050919050565b612fae81612f93565b82525050565b6000602082019050612fc96000830184612fa5565b92915050565b612fd881612f93565b8114612fe357600080fd5b50565b600081359050612ff581612fcf565b92915050565b6000806040838503121561301257613011612be8565b5b600061302085828601612fe6565b925050602061303185828601612f31565b9150509250929050565b60006020828403121561305157613050612be8565b5b600061305f84828501612fe6565b91505092915050565b60008060006060848603121561308157613080612be8565b5b600061308f86828701612fe6565b93505060206130a086828701612fe6565b92505060406130b186828701612f31565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130f081612ee6565b82525050565b600061310283836130e7565b60208301905092915050565b6000602082019050919050565b6000613126826130bb565b61313081856130c6565b935061313b836130d7565b8060005b8381101561316c57815161315388826130f6565b975061315e8361310e565b92505060018101905061313f565b5085935050505092915050565b60006020820190508181036000830152613193818461311b565b905092915050565b6131a481612c77565b81146131af57600080fd5b50565b6000813590506131c18161319b565b92915050565b600080604083850312156131de576131dd612be8565b5b60006131ec85828601612fe6565b92505060206131fd858286016131b2565b9150509250929050565b600067ffffffffffffffff82111561322257613221612cc8565b5b61322b82612cb7565b9050602081019050919050565b600061324b61324684613207565b612d28565b90508281526020810184848401111561326757613266612cb2565b5b613272848285612d74565b509392505050565b600082601f83011261328f5761328e612cad565b5b813561329f848260208601613238565b91505092915050565b600080600080608085870312156132c2576132c1612be8565b5b60006132d087828801612fe6565b94505060206132e187828801612fe6565b93505060406132f287828801612f31565b925050606085013567ffffffffffffffff81111561331357613312612bed565b5b61331f8782880161327a565b91505092959194509250565b6000806040838503121561334257613341612be8565b5b600061335085828601612fe6565b925050602061336185828601612fe6565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133a1602083612e47565b91506133ac8261336b565b602082019050919050565b600060208201905081810360008301526133d081613394565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061341e57607f821691505b602082108103613431576134306133d7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134cf82612ee6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361350157613500613495565b5b600182019050919050565b7f476c697a7a79203a3a2043616e6e6f742062652063616c6c656420627920612060008201527f636f6e7472616374000000000000000000000000000000000000000000000000602082015250565b6000613568602883612e47565b91506135738261350c565b604082019050919050565b600060208201905081810360008301526135978161355b565b9050919050565b7f476c697a7a79203a3a204e6f7420596574204163746976652e00000000000000600082015250565b60006135d4601983612e47565b91506135df8261359e565b602082019050919050565b60006020820190508181036000830152613603816135c7565b9050919050565b600061361582612ee6565b915061362083612ee6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561365557613654613495565b5b828201905092915050565b7f476c697a7a79203a3a204265796f6e64204d617820537570706c790000000000600082015250565b6000613696601b83612e47565b91506136a182613660565b602082019050919050565b600060208201905081810360008301526136c581613689565b9050919050565b7f476c697a7a79203a3a20416c7265616479206d696e74656420332074696d657360008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000613728602183612e47565b9150613733826136cc565b604082019050919050565b600060208201905081810360008301526137578161371b565b9050919050565b600061376982612ee6565b915061377483612ee6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137ad576137ac613495565b5b828202905092915050565b7f476c697a7a79203a3a2042656c6f772000000000000000000000000000000000600082015250565b60006137ee601083612e47565b91506137f9826137b8565b602082019050919050565b6000602082019050818103600083015261381d816137e1565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613880602f83612e47565b915061388b82613824565b604082019050919050565b600060208201905081810360008301526138af81613873565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546138e381613406565b6138ed81866138b6565b9450600182166000811461390857600181146139195761394c565b60ff1983168652818601935061394c565b613922856138c1565b60005b8381101561394457815481890152600182019150602081019050613925565b838801955050505b50505092915050565b600061396082612e3c565b61396a81856138b6565b935061397a818560208601612e58565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139bc6005836138b6565b91506139c782613986565b600582019050919050565b60006139de82856138d6565b91506139ea8284613955565b91506139f5826139af565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a5d602683612e47565b9150613a6882613a01565b604082019050919050565b60006020820190508181036000830152613a8c81613a50565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613aba82613a93565b613ac48185613a9e565b9350613ad4818560208601612e58565b613add81612cb7565b840191505092915050565b6000608082019050613afd6000830187612fa5565b613b0a6020830186612fa5565b613b176040830185612ef0565b8181036060830152613b298184613aaf565b905095945050505050565b600081519050613b4381612c1e565b92915050565b600060208284031215613b5f57613b5e612be8565b5b6000613b6d84828501613b34565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613bb082612ee6565b9150613bbb83612ee6565b925082613bcb57613bca613b76565b5b828204905092915050565b6000613be182612ee6565b9150613bec83612ee6565b925082821015613bff57613bfe613495565b5b828203905092915050565b6000613c1582612ee6565b9150613c2083612ee6565b925082613c3057613c2f613b76565b5b82820690509291505056fea26469706673582212209beee9b9d1b24fe89860e74e84bdb4d57580223f05d8cf2111e56b05be74e5be64736f6c634300080d0033

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.