ETH Price: $3,298.63 (-3.32%)
Gas: 20 Gwei

Token

PixelApe (PApe)
 

Overview

Max Total Supply

5,410 PApe

Holders

1,209

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rill.eth
Balance
2 PApe
0x546b4a7a30b3193badf70e1d43d8142928f3db0b
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:
PixelApe

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-14
*/

/**
 *Submitted for verification at Etherscan.io on 2022-07-11
*/

/**
     ___      .______     _______       _______.
     /   \     |   _  \  |   ____|     /       |
    /  ^  \    |  |_)  | |  |__       |   (----`  
   /  /_\  \   |   ___/  |   __|       \   \  
  /  _____  \  |  |      |  |____  .----)   |   
 /__/     \__\ | _|      |_______| |_______/       

*/  
// File: @openzeppelin/contracts/utils/Strings.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
contract TestContract {
// Some logic
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

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

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(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
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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) 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 > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: 000.sol


pragma solidity ^0.8.9;





contract PixelApe is ERC721A, Ownable, ReentrancyGuard { 

    uint256 public _maxSupply = 5410;
    uint256 public _mintPrice = 0.003 ether;
    uint256 public _maxMintPerTx = 10;

    uint256 public _maxFreeMintPerAddr = 2;
    uint256 public _maxFreeMintSupply = 2000;

    using Strings for uint256;
    string public baseURI;
    mapping(address => uint256) private _mintedFreeAmount;

    constructor(string memory initBaseURI) ERC721A("PixelApe", "PApe") {
        baseURI = initBaseURI;
    }

    function mint(uint256 count) external payable {
        uint256 cost = _mintPrice;
        bool isFree = ((totalSupply() + count < _maxFreeMintSupply + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr)) ||
            (msg.sender == owner());

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < _maxSupply + 1, "Sold out!");
        require(count < _maxMintPerTx + 1, "Max per TX reached.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        _maxFreeMintSupply = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        _mintPrice = _newPrice;
    }

    function withdraw() public payable onlyOwner nonReentrant {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052611522600a55660aa87bee538000600b55600a600c556002600d556107d0600e553480156200003257600080fd5b5060405162001de638038062001de6833981016040819052620000559162000148565b60405180604001604052806008815260200167506978656c41706560c01b815250604051806040016040528060048152602001635041706560e01b8152508160029081620000a49190620002b3565b506003620000b38282620002b3565b50506000805550620000c533620000e0565b6001600955600f620000d88282620002b3565b50506200037f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200015c57600080fd5b82516001600160401b03808211156200017457600080fd5b818501915085601f8301126200018957600080fd5b8151818111156200019e576200019e62000132565b604051601f8201601f19908116603f01168101908382118183101715620001c957620001c962000132565b816040528281528886848701011115620001e257600080fd5b600093505b82841015620002065784840186015181850187015292850192620001e7565b82841115620002185760008684830101525b98975050505050505050565b600181811c908216806200023957607f821691505b6020821081036200025a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002ae57600081815260208120601f850160051c81016020861015620002895750805b601f850160051c820191505b81811015620002aa5782815560010162000295565b5050505b505050565b81516001600160401b03811115620002cf57620002cf62000132565b620002e781620002e0845462000224565b8462000260565b602080601f8311600181146200031f5760008415620003065750858301515b600019600386901b1c1916600185901b178555620002aa565b600085815260208120601f198616915b8281101562000350578886015182559484019460019091019084016200032f565b50858210156200036f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611a57806200038f6000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610484578063de314a59146104a4578063e985e9c5146104ba578063f2fde38b1461050357600080fd5b8063a0712d6814610431578063a22cb46514610444578063b88d4fde1461046457600080fd5b806391b7f5ed116100c657806391b7f5ed146103c657806392910eec146103e657806395d89b41146104065780639cb57d201461041b57600080fd5b806370a0823114610373578063715018a6146103935780638da5cb5b146103a857600080fd5b806323b872dd1161015957806355f804b31161013357806355f804b3146103085780635e1c4b60146103285780636352211e1461033e5780636c0360eb1461035e57600080fd5b806323b872dd146102c05780633ccfd60b146102e057806342842e0e146102e857600080fd5b8063081812fc11610195578063081812fc14610237578063095ea7b31461026f57806318160ddd1461029157806322f4596f146102aa57600080fd5b806301ffc9a7146101bc5780630387da42146101f157806306fdde0314610215575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046113e4565b610523565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610207600b5481565b6040519081526020016101e8565b34801561022157600080fd5b5061022a610575565b6040516101e89190611459565b34801561024357600080fd5b5061025761025236600461146c565b610607565b6040516001600160a01b0390911681526020016101e8565b34801561027b57600080fd5b5061028f61028a3660046114a1565b61064b565b005b34801561029d57600080fd5b5060015460005403610207565b3480156102b657600080fd5b50610207600a5481565b3480156102cc57600080fd5b5061028f6102db3660046114cb565b61071d565b61028f61072d565b3480156102f457600080fd5b5061028f6103033660046114cb565b610814565b34801561031457600080fd5b5061028f610323366004611593565b61082f565b34801561033457600080fd5b50610207600e5481565b34801561034a57600080fd5b5061025761035936600461146c565b610869565b34801561036a57600080fd5b5061022a610874565b34801561037f57600080fd5b5061020761038e3660046115dc565b610902565b34801561039f57600080fd5b5061028f610951565b3480156103b457600080fd5b506008546001600160a01b0316610257565b3480156103d257600080fd5b5061028f6103e136600461146c565b610987565b3480156103f257600080fd5b5061028f61040136600461146c565b6109b6565b34801561041257600080fd5b5061022a6109e5565b34801561042757600080fd5b50610207600d5481565b61028f61043f36600461146c565b6109f4565b34801561045057600080fd5b5061028f61045f3660046115f7565b610baa565b34801561047057600080fd5b5061028f61047f366004611633565b610c3f565b34801561049057600080fd5b5061022a61049f36600461146c565b610c89565b3480156104b057600080fd5b50610207600c5481565b3480156104c657600080fd5b506101dc6104d53660046116af565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050f57600080fd5b5061028f61051e3660046115dc565b610d2a565b60006301ffc9a760e01b6001600160e01b03198316148061055457506380ac58cd60e01b6001600160e01b03198316145b8061056f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610584906116e2565b80601f01602080910402602001604051908101604052809291908181526020018280546105b0906116e2565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b600061061282610dc5565b61062f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061065682610dec565b9050806001600160a01b0316836001600160a01b03160361068a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106c1576106a481336104d5565b6106c1576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610728838383610e5a565b505050565b6008546001600160a01b031633146107605760405162461bcd60e51b81526004016107579061171c565b60405180910390fd5b6002600954036107b25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610757565b6002600955604051600090339047908381818185875af1925050503d80600081146107f9576040519150601f19603f3d011682016040523d82523d6000602084013e6107fe565b606091505b505090508061080c57600080fd5b506001600955565b61072883838360405180602001604052806000815250610c3f565b6008546001600160a01b031633146108595760405162461bcd60e51b81526004016107579061171c565b600f610865828261179f565b5050565b600061056f82610dec565b600f8054610881906116e2565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad906116e2565b80156108fa5780601f106108cf576101008083540402835291602001916108fa565b820191906000526020600020905b8154815290600101906020018083116108dd57829003601f168201915b505050505081565b60006001600160a01b03821661092b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461097b5760405162461bcd60e51b81526004016107579061171c565b6109856000611001565b565b6008546001600160a01b031633146109b15760405162461bcd60e51b81526004016107579061171c565b600b55565b6008546001600160a01b031633146109e05760405162461bcd60e51b81526004016107579061171c565b600e55565b606060038054610584906116e2565b600b54600e54600090610a08906001611875565b83610a166001546000540390565b610a209190611875565b108015610a495750600d5433600090815260106020526040902054610a46908590611875565b11155b80610a5e57506008546001600160a01b031633145b90508015610a6b57600091505b610a75828461188d565b341015610ac45760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610757565b600a54610ad2906001611875565b83610ae06001546000540390565b610aea9190611875565b10610b235760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610757565b600c54610b31906001611875565b8310610b755760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610757565b8015610ba0573360009081526010602052604081208054859290610b9a908490611875565b90915550505b6107283384611053565b336001600160a01b03831603610bd35760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c4a848484610e5a565b6001600160a01b0383163b15610c8357610c668484848461106d565b610c83576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c9482610dc5565b610cf85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610757565b600f610d0383611159565b604051602001610d149291906118ac565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610d545760405162461bcd60e51b81526004016107579061171c565b6001600160a01b038116610db95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610757565b610dc281611001565b50565b600080548210801561056f575050600090815260046020526040902054600160e01b161590565b600081600054811015610e415760008181526004602052604081205490600160e01b82169003610e3f575b80600003610e38575060001901600081815260046020526040902054610e17565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e6582610dec565b9050836001600160a01b0316816001600160a01b031614610e985760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610eb65750610eb685336104d5565b80610ed1575033610ec684610607565b6001600160a01b0316145b905080610ef157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f1857604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003610fb957600183016000818152600460205260408120549003610fb7576000548114610fb75760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61086582826040518060200160405280600081525061125a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110a2903390899088908890600401611943565b6020604051808303816000875af19250505080156110dd575060408051601f3d908101601f191682019092526110da91810190611980565b60015b61113b573d80801561110b576040519150601f19603f3d011682016040523d82523d6000602084013e611110565b606091505b508051600003611133576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036111805750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111aa57806111948161199d565b91506111a39050600a836119cc565b9150611184565b60008167ffffffffffffffff8111156111c5576111c5611507565b6040519080825280601f01601f1916602001820160405280156111ef576020820181803683370190505b5090505b8415611151576112046001836119e0565b9150611211600a866119f7565b61121c906030611875565b60f81b81838151811061123157611231611a0b565b60200101906001600160f81b031916908160001a905350611253600a866119cc565b94506111f3565b6000546001600160a01b03841661128357604051622e076360e81b815260040160405180910390fd5b826000036112a45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611379575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611342600087848060010195508761106d565b61135f576040516368d2bf6b60e11b815260040160405180910390fd5b8082106112f757826000541461137457600080fd5b6113be565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061137a575b506000908155610c839085838684565b6001600160e01b031981168114610dc257600080fd5b6000602082840312156113f657600080fd5b8135610e38816113ce565b60005b8381101561141c578181015183820152602001611404565b83811115610c835750506000910152565b60008151808452611445816020860160208601611401565b601f01601f19169290920160200192915050565b602081526000610e38602083018461142d565b60006020828403121561147e57600080fd5b5035919050565b80356001600160a01b038116811461149c57600080fd5b919050565b600080604083850312156114b457600080fd5b6114bd83611485565b946020939093013593505050565b6000806000606084860312156114e057600080fd5b6114e984611485565b92506114f760208501611485565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561153857611538611507565b604051601f8501601f19908116603f0116810190828211818310171561156057611560611507565b8160405280935085815286868601111561157957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156115a557600080fd5b813567ffffffffffffffff8111156115bc57600080fd5b8201601f810184136115cd57600080fd5b6111518482356020840161151d565b6000602082840312156115ee57600080fd5b610e3882611485565b6000806040838503121561160a57600080fd5b61161383611485565b91506020830135801515811461162857600080fd5b809150509250929050565b6000806000806080858703121561164957600080fd5b61165285611485565b935061166060208601611485565b925060408501359150606085013567ffffffffffffffff81111561168357600080fd5b8501601f8101871361169457600080fd5b6116a38782356020840161151d565b91505092959194509250565b600080604083850312156116c257600080fd5b6116cb83611485565b91506116d960208401611485565b90509250929050565b600181811c908216806116f657607f821691505b60208210810361171657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561072857600081815260208120601f850160051c810160208610156117785750805b601f850160051c820191505b8181101561179757828155600101611784565b505050505050565b815167ffffffffffffffff8111156117b9576117b9611507565b6117cd816117c784546116e2565b84611751565b602080601f83116001811461180257600084156117ea5750858301515b600019600386901b1c1916600185901b178555611797565b600085815260208120601f198616915b8281101561183157888601518255948401946001909101908401611812565b508582101561184f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600082198211156118885761188861185f565b500190565b60008160001904831182151516156118a7576118a761185f565b500290565b60008084546118ba816116e2565b600182811680156118d257600181146118e757611916565b60ff1984168752821515830287019450611916565b8860005260208060002060005b8581101561190d5781548a8201529084019082016118f4565b50505082870194505b50505050835161192a818360208801611401565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119769083018461142d565b9695505050505050565b60006020828403121561199257600080fd5b8151610e38816113ce565b6000600182016119af576119af61185f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826119db576119db6119b6565b500490565b6000828210156119f2576119f261185f565b500390565b600082611a0657611a066119b6565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f927e599763a4def0283c1e2c08d4e475ca8329169987ecabe253e99241e71a364736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64444d7542725a7a3469664e786d39434c547257744c3461596a644d566935665262585854714b47435542392f00000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a0712d681161008a578063c87b56dd11610064578063c87b56dd14610484578063de314a59146104a4578063e985e9c5146104ba578063f2fde38b1461050357600080fd5b8063a0712d6814610431578063a22cb46514610444578063b88d4fde1461046457600080fd5b806391b7f5ed116100c657806391b7f5ed146103c657806392910eec146103e657806395d89b41146104065780639cb57d201461041b57600080fd5b806370a0823114610373578063715018a6146103935780638da5cb5b146103a857600080fd5b806323b872dd1161015957806355f804b31161013357806355f804b3146103085780635e1c4b60146103285780636352211e1461033e5780636c0360eb1461035e57600080fd5b806323b872dd146102c05780633ccfd60b146102e057806342842e0e146102e857600080fd5b8063081812fc11610195578063081812fc14610237578063095ea7b31461026f57806318160ddd1461029157806322f4596f146102aa57600080fd5b806301ffc9a7146101bc5780630387da42146101f157806306fdde0314610215575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046113e4565b610523565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610207600b5481565b6040519081526020016101e8565b34801561022157600080fd5b5061022a610575565b6040516101e89190611459565b34801561024357600080fd5b5061025761025236600461146c565b610607565b6040516001600160a01b0390911681526020016101e8565b34801561027b57600080fd5b5061028f61028a3660046114a1565b61064b565b005b34801561029d57600080fd5b5060015460005403610207565b3480156102b657600080fd5b50610207600a5481565b3480156102cc57600080fd5b5061028f6102db3660046114cb565b61071d565b61028f61072d565b3480156102f457600080fd5b5061028f6103033660046114cb565b610814565b34801561031457600080fd5b5061028f610323366004611593565b61082f565b34801561033457600080fd5b50610207600e5481565b34801561034a57600080fd5b5061025761035936600461146c565b610869565b34801561036a57600080fd5b5061022a610874565b34801561037f57600080fd5b5061020761038e3660046115dc565b610902565b34801561039f57600080fd5b5061028f610951565b3480156103b457600080fd5b506008546001600160a01b0316610257565b3480156103d257600080fd5b5061028f6103e136600461146c565b610987565b3480156103f257600080fd5b5061028f61040136600461146c565b6109b6565b34801561041257600080fd5b5061022a6109e5565b34801561042757600080fd5b50610207600d5481565b61028f61043f36600461146c565b6109f4565b34801561045057600080fd5b5061028f61045f3660046115f7565b610baa565b34801561047057600080fd5b5061028f61047f366004611633565b610c3f565b34801561049057600080fd5b5061022a61049f36600461146c565b610c89565b3480156104b057600080fd5b50610207600c5481565b3480156104c657600080fd5b506101dc6104d53660046116af565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561050f57600080fd5b5061028f61051e3660046115dc565b610d2a565b60006301ffc9a760e01b6001600160e01b03198316148061055457506380ac58cd60e01b6001600160e01b03198316145b8061056f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610584906116e2565b80601f01602080910402602001604051908101604052809291908181526020018280546105b0906116e2565b80156105fd5780601f106105d2576101008083540402835291602001916105fd565b820191906000526020600020905b8154815290600101906020018083116105e057829003601f168201915b5050505050905090565b600061061282610dc5565b61062f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061065682610dec565b9050806001600160a01b0316836001600160a01b03160361068a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106c1576106a481336104d5565b6106c1576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610728838383610e5a565b505050565b6008546001600160a01b031633146107605760405162461bcd60e51b81526004016107579061171c565b60405180910390fd5b6002600954036107b25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610757565b6002600955604051600090339047908381818185875af1925050503d80600081146107f9576040519150601f19603f3d011682016040523d82523d6000602084013e6107fe565b606091505b505090508061080c57600080fd5b506001600955565b61072883838360405180602001604052806000815250610c3f565b6008546001600160a01b031633146108595760405162461bcd60e51b81526004016107579061171c565b600f610865828261179f565b5050565b600061056f82610dec565b600f8054610881906116e2565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad906116e2565b80156108fa5780601f106108cf576101008083540402835291602001916108fa565b820191906000526020600020905b8154815290600101906020018083116108dd57829003601f168201915b505050505081565b60006001600160a01b03821661092b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461097b5760405162461bcd60e51b81526004016107579061171c565b6109856000611001565b565b6008546001600160a01b031633146109b15760405162461bcd60e51b81526004016107579061171c565b600b55565b6008546001600160a01b031633146109e05760405162461bcd60e51b81526004016107579061171c565b600e55565b606060038054610584906116e2565b600b54600e54600090610a08906001611875565b83610a166001546000540390565b610a209190611875565b108015610a495750600d5433600090815260106020526040902054610a46908590611875565b11155b80610a5e57506008546001600160a01b031633145b90508015610a6b57600091505b610a75828461188d565b341015610ac45760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e0000006044820152606401610757565b600a54610ad2906001611875565b83610ae06001546000540390565b610aea9190611875565b10610b235760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610757565b600c54610b31906001611875565b8310610b755760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610757565b8015610ba0573360009081526010602052604081208054859290610b9a908490611875565b90915550505b6107283384611053565b336001600160a01b03831603610bd35760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c4a848484610e5a565b6001600160a01b0383163b15610c8357610c668484848461106d565b610c83576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c9482610dc5565b610cf85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610757565b600f610d0383611159565b604051602001610d149291906118ac565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610d545760405162461bcd60e51b81526004016107579061171c565b6001600160a01b038116610db95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610757565b610dc281611001565b50565b600080548210801561056f575050600090815260046020526040902054600160e01b161590565b600081600054811015610e415760008181526004602052604081205490600160e01b82169003610e3f575b80600003610e38575060001901600081815260046020526040902054610e17565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e6582610dec565b9050836001600160a01b0316816001600160a01b031614610e985760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610eb65750610eb685336104d5565b80610ed1575033610ec684610607565b6001600160a01b0316145b905080610ef157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f1857604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003610fb957600183016000818152600460205260408120549003610fb7576000548114610fb75760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61086582826040518060200160405280600081525061125a565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110a2903390899088908890600401611943565b6020604051808303816000875af19250505080156110dd575060408051601f3d908101601f191682019092526110da91810190611980565b60015b61113b573d80801561110b576040519150601f19603f3d011682016040523d82523d6000602084013e611110565b606091505b508051600003611133576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036111805750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111aa57806111948161199d565b91506111a39050600a836119cc565b9150611184565b60008167ffffffffffffffff8111156111c5576111c5611507565b6040519080825280601f01601f1916602001820160405280156111ef576020820181803683370190505b5090505b8415611151576112046001836119e0565b9150611211600a866119f7565b61121c906030611875565b60f81b81838151811061123157611231611a0b565b60200101906001600160f81b031916908160001a905350611253600a866119cc565b94506111f3565b6000546001600160a01b03841661128357604051622e076360e81b815260040160405180910390fd5b826000036112a45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611379575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611342600087848060010195508761106d565b61135f576040516368d2bf6b60e11b815260040160405180910390fd5b8082106112f757826000541461137457600080fd5b6113be565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061137a575b506000908155610c839085838684565b6001600160e01b031981168114610dc257600080fd5b6000602082840312156113f657600080fd5b8135610e38816113ce565b60005b8381101561141c578181015183820152602001611404565b83811115610c835750506000910152565b60008151808452611445816020860160208601611401565b601f01601f19169290920160200192915050565b602081526000610e38602083018461142d565b60006020828403121561147e57600080fd5b5035919050565b80356001600160a01b038116811461149c57600080fd5b919050565b600080604083850312156114b457600080fd5b6114bd83611485565b946020939093013593505050565b6000806000606084860312156114e057600080fd5b6114e984611485565b92506114f760208501611485565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561153857611538611507565b604051601f8501601f19908116603f0116810190828211818310171561156057611560611507565b8160405280935085815286868601111561157957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156115a557600080fd5b813567ffffffffffffffff8111156115bc57600080fd5b8201601f810184136115cd57600080fd5b6111518482356020840161151d565b6000602082840312156115ee57600080fd5b610e3882611485565b6000806040838503121561160a57600080fd5b61161383611485565b91506020830135801515811461162857600080fd5b809150509250929050565b6000806000806080858703121561164957600080fd5b61165285611485565b935061166060208601611485565b925060408501359150606085013567ffffffffffffffff81111561168357600080fd5b8501601f8101871361169457600080fd5b6116a38782356020840161151d565b91505092959194509250565b600080604083850312156116c257600080fd5b6116cb83611485565b91506116d960208401611485565b90509250929050565b600181811c908216806116f657607f821691505b60208210810361171657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561072857600081815260208120601f850160051c810160208610156117785750805b601f850160051c820191505b8181101561179757828155600101611784565b505050505050565b815167ffffffffffffffff8111156117b9576117b9611507565b6117cd816117c784546116e2565b84611751565b602080601f83116001811461180257600084156117ea5750858301515b600019600386901b1c1916600185901b178555611797565b600085815260208120601f198616915b8281101561183157888601518255948401946001909101908401611812565b508582101561184f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600082198211156118885761188861185f565b500190565b60008160001904831182151516156118a7576118a761185f565b500290565b60008084546118ba816116e2565b600182811680156118d257600181146118e757611916565b60ff1984168752821515830287019450611916565b8860005260208060002060005b8581101561190d5781548a8201529084019082016118f4565b50505082870194505b50505050835161192a818360208801611401565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119769083018461142d565b9695505050505050565b60006020828403121561199257600080fd5b8151610e38816113ce565b6000600182016119af576119af61185f565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826119db576119db6119b6565b500490565b6000828210156119f2576119f261185f565b500390565b600082611a0657611a066119b6565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220f927e599763a4def0283c1e2c08d4e475ca8329169987ecabe253e99241e71a364736f6c634300080f0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d64444d7542725a7a3469664e786d39434c547257744c3461596a644d566935665262585854714b47435542392f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmdDMuBrZz4ifNxm9CLTrWtL4aYjdMVi5fRbXXTqKGCUB9/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d64444d7542725a7a3469664e786d39434c547257744c34
Arg [3] : 61596a644d566935665262585854714b47435542392f00000000000000000000


Deployed Bytecode Sourcemap

47198:2218:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21867:615;;;;;;;;;;-1:-1:-1;21867:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21867:615:0;;;;;;;;47302:39;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;47302:39:0;592:177:1;26880:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28948:204::-;;;;;;;;;;-1:-1:-1;28948:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;28948:204:0;1710:203:1;28408:474:0;;;;;;;;;;-1:-1:-1;28408:474:0;;;;;:::i;:::-;;:::i;:::-;;20921:315;;;;;;;;;;-1:-1:-1;21187:12:0;;20974:7;21171:13;:28;20921:315;;47263:32;;;;;;;;;;;;;;;;29834:170;;;;;;;;;;-1:-1:-1;29834:170:0;;;;;:::i;:::-;;:::i;49208:205::-;;;:::i;30075:185::-;;;;;;;;;;-1:-1:-1;30075:185:0;;;;;:::i;:::-;;:::i;48895:88::-;;;;;;;;;;-1:-1:-1;48895:88:0;;;;;:::i;:::-;;:::i;47435:40::-;;;;;;;;;;;;;;;;26669:144;;;;;;;;;;-1:-1:-1;26669:144:0;;;;;:::i;:::-;;:::i;47516:21::-;;;;;;;;;;;;;:::i;22546:224::-;;;;;;;;;;-1:-1:-1;22546:224:0;;;;;:::i;:::-;;:::i;7977:103::-;;;;;;;;;;;;;:::i;7326:87::-;;;;;;;;;;-1:-1:-1;7399:6:0;;-1:-1:-1;;;;;7399:6:0;7326:87;;49103:97;;;;;;;;;;-1:-1:-1;49103:97:0;;;;;:::i;:::-;;:::i;48991:104::-;;;;;;;;;;-1:-1:-1;48991:104:0;;;;;:::i;:::-;;:::i;27049:::-;;;;;;;;;;;;;:::i;47390:38::-;;;;;;;;;;;;;;;;47721:692;;;;;;:::i;:::-;;:::i;29224:308::-;;;;;;;;;;-1:-1:-1;29224:308:0;;;;;:::i;:::-;;:::i;30331:396::-;;;;;;;;;;-1:-1:-1;30331:396:0;;;;;:::i;:::-;;:::i;48537:350::-;;;;;;;;;;-1:-1:-1;48537:350:0;;;;;:::i;:::-;;:::i;47348:33::-;;;;;;;;;;;;;;;;29603:164;;;;;;;;;;-1:-1:-1;29603:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29724:25:0;;;29700:4;29724:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29603:164;8235:201;;;;;;;;;;-1:-1:-1;8235:201:0;;;;;:::i;:::-;;:::i;21867:615::-;21952:4;-1:-1:-1;;;;;;;;;22252:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22329:25:0;;;22252:102;:179;;;-1:-1:-1;;;;;;;;;;22406:25:0;;;22252:179;22232:199;21867:615;-1:-1:-1;;21867:615:0:o;26880:100::-;26934:13;26967:5;26960:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26880:100;:::o;28948:204::-;29016:7;29041:16;29049:7;29041;:16::i;:::-;29036:64;;29066:34;;-1:-1:-1;;;29066:34:0;;;;;;;;;;;29036:64;-1:-1:-1;29120:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29120:24:0;;28948:204::o;28408:474::-;28481:13;28513:27;28532:7;28513:18;:27::i;:::-;28481:61;;28563:5;-1:-1:-1;;;;;28557:11:0;:2;-1:-1:-1;;;;;28557:11:0;;28553:48;;28577:24;;-1:-1:-1;;;28577:24:0;;;;;;;;;;;28553:48;45051:10;-1:-1:-1;;;;;28618:28:0;;;28614:175;;28666:44;28683:5;45051:10;29603:164;:::i;28666:44::-;28661:128;;28738:35;;-1:-1:-1;;;28738:35:0;;;;;;;;;;;28661:128;28801:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;28801:29:0;-1:-1:-1;;;;;28801:29:0;;;;;;;;;28846:28;;28801:24;;28846:28;;;;;;;28470:412;28408:474;;:::o;29834:170::-;29968:28;29978:4;29984:2;29988:7;29968:9;:28::i;:::-;29834:170;;;:::o;49208:205::-;7399:6;;-1:-1:-1;;;;;7399:6:0;45051:10;7546:23;7538:68;;;;-1:-1:-1;;;7538:68:0;;;;;;;:::i;:::-;;;;;;;;;4424:1:::1;5022:7;;:19:::0;5014:63:::1;;;::::0;-1:-1:-1;;;5014:63:0;;6341:2:1;5014:63:0::1;::::0;::::1;6323:21:1::0;6380:2;6360:18;;;6353:30;6419:33;6399:18;;;6392:61;6470:18;;5014:63:0::1;6139:355:1::0;5014:63:0::1;4424:1;5155:7;:18:::0;49296:82:::2;::::0;49278:12:::2;::::0;49304:10:::2;::::0;49342:21:::2;::::0;49278:12;49296:82;49278:12;49296:82;49342:21;49304:10;49296:82:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49277:101;;;49397:7;49389:16;;;::::0;::::2;;-1:-1:-1::0;4380:1:0::1;5334:7;:22:::0;49208:205::o;30075:185::-;30213:39;30230:4;30236:2;30240:7;30213:39;;;;;;;;;;;;:16;:39::i;48895:88::-;7399:6;;-1:-1:-1;;;;;7399:6:0;45051:10;7546:23;7538:68;;;;-1:-1:-1;;;7538:68:0;;;;;;;:::i;:::-;48962:7:::1;:13;48972:3:::0;48962:7;:13:::1;:::i;:::-;;48895:88:::0;:::o;26669:144::-;26733:7;26776:27;26795:7;26776:18;:27::i;47516:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22546:224::-;22610:7;-1:-1:-1;;;;;22634:19:0;;22630:60;;22662:28;;-1:-1:-1;;;22662:28:0;;;;;;;;;;;22630:60;-1:-1:-1;;;;;;22708:25:0;;;;;:18;:25;;;;;;17885:13;22708:54;;22546:224::o;7977:103::-;7399:6;;-1:-1:-1;;;;;7399:6:0;45051:10;7546:23;7538:68;;;;-1:-1:-1;;;7538:68:0;;;;;;;:::i;:::-;8042:30:::1;8069:1;8042:18;:30::i;:::-;7977:103::o:0;49103:97::-;7399:6;;-1:-1:-1;;;;;7399:6:0;45051:10;7546:23;7538:68;;;;-1:-1:-1;;;7538:68:0;;;;;;;:::i;:::-;49170:10:::1;:22:::0;49103:97::o;48991:104::-;7399:6;;-1:-1:-1;;;;;7399:6:0;45051:10;7546:23;7538:68;;;;-1:-1:-1;;;7538:68:0;;;;;;;:::i;:::-;49060:18:::1;:27:::0;48991:104::o;27049:::-;27105:13;27138:7;27131:14;;;;;:::i;47721:692::-;47793:10;;47854:18;;47778:12;;47854:22;;47875:1;47854:22;:::i;:::-;47846:5;47830:13;21187:12;;20974:7;21171:13;:28;;20921:315;47830:13;:21;;;;:::i;:::-;:46;47829:127;;;;-1:-1:-1;47936:19:0;;47913:10;47895:29;;;;:17;:29;;;;;;:37;;47927:5;;47895:37;:::i;:::-;:60;;47829:127;47828:169;;;-1:-1:-1;7399:6:0;;-1:-1:-1;;;;;7399:6:0;47975:10;:21;47828:169;47814:183;;48014:6;48010:47;;;48044:1;48037:8;;48010:47;48090:12;48098:4;48090:5;:12;:::i;:::-;48077:9;:25;;48069:67;;;;-1:-1:-1;;;48069:67:0;;9553:2:1;48069:67:0;;;9535:21:1;9592:2;9572:18;;;9565:30;9631:31;9611:18;;;9604:59;9680:18;;48069:67:0;9351:353:1;48069:67:0;48179:10;;:14;;48192:1;48179:14;:::i;:::-;48171:5;48155:13;21187:12;;20974:7;21171:13;:28;;20921:315;48155:13;:21;;;;:::i;:::-;:38;48147:60;;;;-1:-1:-1;;;48147:60:0;;9911:2:1;48147:60:0;;;9893:21:1;9950:1;9930:18;;;9923:29;-1:-1:-1;;;9968:18:1;;;9961:39;10017:18;;48147:60:0;9709:332:1;48147:60:0;48234:13;;:17;;48250:1;48234:17;:::i;:::-;48226:5;:25;48218:57;;;;-1:-1:-1;;;48218:57:0;;10248:2:1;48218:57:0;;;10230:21:1;10287:2;10267:18;;;10260:30;-1:-1:-1;;;10306:18:1;;;10299:49;10365:18;;48218:57:0;10046:343:1;48218:57:0;48292:6;48288:77;;;48333:10;48315:29;;;;:17;:29;;;;;:38;;48348:5;;48315:29;:38;;48348:5;;48315:38;:::i;:::-;;;;-1:-1:-1;;48288:77:0;48377:28;48387:10;48399:5;48377:9;:28::i;29224:308::-;45051:10;-1:-1:-1;;;;;29323:31:0;;;29319:61;;29363:17;;-1:-1:-1;;;29363:17:0;;;;;;;;;;;29319:61;45051:10;29393:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;29393:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;29393:60:0;;;;;;;;;;29469:55;;540:41:1;;;29393:49:0;;45051:10;29469:55;;513:18:1;29469:55:0;;;;;;;29224:308;;:::o;30331:396::-;30498:28;30508:4;30514:2;30518:7;30498:9;:28::i;:::-;-1:-1:-1;;;;;30541:14:0;;;:19;30537:183;;30580:56;30611:4;30617:2;30621:7;30630:5;30580:30;:56::i;:::-;30575:145;;30664:40;;-1:-1:-1;;;30664:40:0;;;;;;;;;;;30575:145;30331:396;;;;:::o;48537:350::-;48655:13;48708:16;48716:7;48708;:16::i;:::-;48686:113;;;;-1:-1:-1;;;48686:113:0;;10596:2:1;48686:113:0;;;10578:21:1;10635:2;10615:18;;;10608:30;10674:34;10654:18;;;10647:62;-1:-1:-1;;;10725:18:1;;;10718:45;10780:19;;48686:113:0;10394:411:1;48686:113:0;48841:7;48850:18;:7;:16;:18::i;:::-;48824:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48810:69;;48537:350;;;:::o;8235:201::-;7399:6;;-1:-1:-1;;;;;7399:6:0;45051:10;7546:23;7538:68;;;;-1:-1:-1;;;7538:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8324:22:0;::::1;8316:73;;;::::0;-1:-1:-1;;;8316:73:0;;12191:2:1;8316:73:0::1;::::0;::::1;12173:21:1::0;12230:2;12210:18;;;12203:30;12269:34;12249:18;;;12242:62;-1:-1:-1;;;12320:18:1;;;12313:36;12366:19;;8316:73:0::1;11989:402:1::0;8316:73:0::1;8400:28;8419:8;8400:18;:28::i;:::-;8235:201:::0;:::o;30982:273::-;31039:4;31129:13;;31119:7;:23;31076:152;;;;-1:-1:-1;;31180:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;31180:43:0;:48;;30982:273::o;24184:1129::-;24251:7;24286;24388:13;;24381:4;:20;24377:869;;;24426:14;24443:23;;;:17;:23;;;;;;;-1:-1:-1;;;24532:23:0;;:28;;24528:699;;25051:113;25058:6;25068:1;25058:11;25051:113;;-1:-1:-1;;;25129:6:0;25111:25;;;;:17;:25;;;;;;25051:113;;;25197:6;24184:1129;-1:-1:-1;;;24184:1129:0:o;24528:699::-;24403:843;24377:869;25274:31;;-1:-1:-1;;;25274:31:0;;;;;;;;;;;36221:2515;36336:27;36366;36385:7;36366:18;:27::i;:::-;36336:57;;36451:4;-1:-1:-1;;;;;36410:45:0;36426:19;-1:-1:-1;;;;;36410:45:0;;36406:86;;36464:28;;-1:-1:-1;;;36464:28:0;;;;;;;;;;;36406:86;36505:22;45051:10;-1:-1:-1;;;;;36531:27:0;;;;:87;;-1:-1:-1;36575:43:0;36592:4;45051:10;29603:164;:::i;36575:43::-;36531:147;;;-1:-1:-1;45051:10:0;36635:20;36647:7;36635:11;:20::i;:::-;-1:-1:-1;;;;;36635:43:0;;36531:147;36505:174;;36697:17;36692:66;;36723:35;;-1:-1:-1;;;36723:35:0;;;;;;;;;;;36692:66;-1:-1:-1;;;;;36773:16:0;;36769:52;;36798:23;;-1:-1:-1;;;36798:23:0;;;;;;;;;;;36769:52;36950:24;;;;:15;:24;;;;;;;;36943:31;;-1:-1:-1;;;;;;36943:31:0;;;-1:-1:-1;;;;;37342:24:0;;;;;:18;:24;;;;;37340:26;;-1:-1:-1;;37340:26:0;;;37411:22;;;;;;;37409:24;;-1:-1:-1;37409:24:0;;;37704:26;;;:17;:26;;;;;-1:-1:-1;;;37792:15:0;18539:3;37792:41;37750:84;;:128;;37704:174;;;37998:46;;:51;;37994:626;;38102:1;38092:11;;38070:19;38225:30;;;:17;:30;;;;;;:35;;38221:384;;38363:13;;38348:11;:28;38344:242;;38510:30;;;;:17;:30;;;;;:52;;;38344:242;38051:569;37994:626;38667:7;38663:2;-1:-1:-1;;;;;38648:27:0;38657:4;-1:-1:-1;;;;;38648:27:0;;;;;;;;;;;36325:2411;;36221:2515;;;:::o;8596:191::-;8689:6;;;-1:-1:-1;;;;;8706:17:0;;;-1:-1:-1;;;;;;8706:17:0;;;;;;;8739:40;;8689:6;;;8706:17;8689:6;;8739:40;;8670:16;;8739:40;8659:128;8596:191;:::o;31339:104::-;31408:27;31418:2;31422:8;31408:27;;;;;;;;;;;;:9;:27::i;42433:716::-;42617:88;;-1:-1:-1;;;42617:88:0;;42596:4;;-1:-1:-1;;;;;42617:45:0;;;;;:88;;45051:10;;42684:4;;42690:7;;42699:5;;42617:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42617:88:0;;;;;;;;-1:-1:-1;;42617:88:0;;;;;;;;;;;;:::i;:::-;;;42613:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42900:6;:13;42917:1;42900:18;42896:235;;42946:40;;-1:-1:-1;;;42946:40:0;;;;;;;;;;;42896:235;43089:6;43083:13;43074:6;43070:2;43066:15;43059:38;42613:529;-1:-1:-1;;;;;;42776:64:0;-1:-1:-1;;;42776:64:0;;-1:-1:-1;42613:529:0;42433:716;;;;;;:::o;853:723::-;909:13;1130:5;1139:1;1130:10;1126:53;;-1:-1:-1;;1157:10:0;;;;;;;;;;;;-1:-1:-1;;;1157:10:0;;;;;853:723::o;1126:53::-;1204:5;1189:12;1245:78;1252:9;;1245:78;;1278:8;;;;:::i;:::-;;-1:-1:-1;1301:10:0;;-1:-1:-1;1309:2:0;1301:10;;:::i;:::-;;;1245:78;;;1333:19;1365:6;1355:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1355:17:0;;1333:39;;1383:154;1390:10;;1383:154;;1417:11;1427:1;1417:11;;:::i;:::-;;-1:-1:-1;1486:10:0;1494:2;1486:5;:10;:::i;:::-;1473:24;;:2;:24;:::i;:::-;1460:39;;1443:6;1450;1443:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1443:56:0;;;;;;;;-1:-1:-1;1514:11:0;1523:2;1514:11;;:::i;:::-;;;1383:154;;31816:2236;31939:20;31962:13;-1:-1:-1;;;;;31990:16:0;;31986:48;;32015:19;;-1:-1:-1;;;32015:19:0;;;;;;;;;;;31986:48;32049:8;32061:1;32049:13;32045:44;;32071:18;;-1:-1:-1;;;32071:18:0;;;;;;;;;;;32045:44;-1:-1:-1;;;;;32638:22:0;;;;;;:18;:22;;;;18022:2;32638:22;;;:70;;32676:31;32664:44;;32638:70;;;32951:31;;;:17;:31;;;;;33044:15;18539:3;33044:41;33002:84;;-1:-1:-1;33122:13:0;;18802:3;33107:56;33002:162;32951:213;;:31;;33245:23;;;;33289:14;:19;33285:635;;33329:313;33360:38;;33385:12;;-1:-1:-1;;;;;33360:38:0;;;33377:1;;33360:38;;33377:1;;33360:38;33426:69;33465:1;33469:2;33473:14;;;;;;33489:5;33426:30;:69::i;:::-;33421:174;;33531:40;;-1:-1:-1;;;33531:40:0;;;;;;;;;;;33421:174;33637:3;33622:12;:18;33329:313;;33723:12;33706:13;;:29;33702:43;;33737:8;;;33702:43;33285:635;;;33786:119;33817:40;;33842:14;;;;;-1:-1:-1;;;;;33817:40:0;;;33834:1;;33817:40;;33834:1;;33817:40;33900:3;33885:12;:18;33786:119;;33285:635;-1:-1:-1;33934:13:0;:28;;;33984:60;;34017:2;34021:12;34035:8;33984:60;:::i;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:1;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:1:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:173::-;1986:20;;-1:-1:-1;;;;;2035:31:1;;2025:42;;2015:70;;2081:1;2078;2071:12;2015:70;1918:173;;;:::o;2096:254::-;2164:6;2172;2225:2;2213:9;2204:7;2200:23;2196:32;2193:52;;;2241:1;2238;2231:12;2193:52;2264:29;2283:9;2264:29;:::i;:::-;2254:39;2340:2;2325:18;;;;2312:32;;-1:-1:-1;;;2096:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;5778:356::-;5980:2;5962:21;;;5999:18;;;5992:30;6058:34;6053:2;6038:18;;6031:62;6125:2;6110:18;;5778:356::o;6835:545::-;6937:2;6932:3;6929:11;6926:448;;;6973:1;6998:5;6994:2;6987:17;7043:4;7039:2;7029:19;7113:2;7101:10;7097:19;7094:1;7090:27;7084:4;7080:38;7149:4;7137:10;7134:20;7131:47;;;-1:-1:-1;7172:4:1;7131:47;7227:2;7222:3;7218:12;7215:1;7211:20;7205:4;7201:31;7191:41;;7282:82;7300:2;7293:5;7290:13;7282:82;;;7345:17;;;7326:1;7315:13;7282:82;;;7286:3;;;6835:545;;;:::o;7556:1352::-;7682:3;7676:10;7709:18;7701:6;7698:30;7695:56;;;7731:18;;:::i;:::-;7760:97;7850:6;7810:38;7842:4;7836:11;7810:38;:::i;:::-;7804:4;7760:97;:::i;:::-;7912:4;;7976:2;7965:14;;7993:1;7988:663;;;;8695:1;8712:6;8709:89;;;-1:-1:-1;8764:19:1;;;8758:26;8709:89;-1:-1:-1;;7513:1:1;7509:11;;;7505:24;7501:29;7491:40;7537:1;7533:11;;;7488:57;8811:81;;7958:944;;7988:663;6782:1;6775:14;;;6819:4;6806:18;;-1:-1:-1;;8024:20:1;;;8142:236;8156:7;8153:1;8150:14;8142:236;;;8245:19;;;8239:26;8224:42;;8337:27;;;;8305:1;8293:14;;;;8172:19;;8142:236;;;8146:3;8406:6;8397:7;8394:19;8391:201;;;8467:19;;;8461:26;-1:-1:-1;;8550:1:1;8546:14;;;8562:3;8542:24;8538:37;8534:42;8519:58;8504:74;;8391:201;-1:-1:-1;;;;;8638:1:1;8622:14;;;8618:22;8605:36;;-1:-1:-1;7556:1352:1:o;8913:127::-;8974:10;8969:3;8965:20;8962:1;8955:31;9005:4;9002:1;8995:15;9029:4;9026:1;9019:15;9045:128;9085:3;9116:1;9112:6;9109:1;9106:13;9103:39;;;9122:18;;:::i;:::-;-1:-1:-1;9158:9:1;;9045:128::o;9178:168::-;9218:7;9284:1;9280;9276:6;9272:14;9269:1;9266:21;9261:1;9254:9;9247:17;9243:45;9240:71;;;9291:18;;:::i;:::-;-1:-1:-1;9331:9:1;;9178:168::o;10810:1174::-;11087:3;11116:1;11149:6;11143:13;11179:36;11205:9;11179:36;:::i;:::-;11234:1;11251:18;;;11278:133;;;;11425:1;11420:356;;;;11244:532;;11278:133;-1:-1:-1;;11311:24:1;;11299:37;;11384:14;;11377:22;11365:35;;11356:45;;;-1:-1:-1;11278:133:1;;11420:356;11451:6;11448:1;11441:17;11481:4;11526:2;11523:1;11513:16;11551:1;11565:165;11579:6;11576:1;11573:13;11565:165;;;11657:14;;11644:11;;;11637:35;11700:16;;;;11594:10;;11565:165;;;11569:3;;;11759:6;11754:3;11750:16;11743:23;;11244:532;;;;;11807:6;11801:13;11823:55;11869:8;11864:3;11857:4;11849:6;11845:17;11823:55;:::i;:::-;-1:-1:-1;;;11900:18:1;;11927:22;;;11976:1;11965:13;;10810:1174;-1:-1:-1;;;;10810:1174:1:o;12396:489::-;-1:-1:-1;;;;;12665:15:1;;;12647:34;;12717:15;;12712:2;12697:18;;12690:43;12764:2;12749:18;;12742:34;;;12812:3;12807:2;12792:18;;12785:31;;;12590:4;;12833:46;;12859:19;;12851:6;12833:46;:::i;:::-;12825:54;12396:489;-1:-1:-1;;;;;;12396:489:1:o;12890:249::-;12959:6;13012:2;13000:9;12991:7;12987:23;12983:32;12980:52;;;13028:1;13025;13018:12;12980:52;13060:9;13054:16;13079:30;13103:5;13079:30;:::i;13144:135::-;13183:3;13204:17;;;13201:43;;13224:18;;:::i;:::-;-1:-1:-1;13271:1:1;13260:13;;13144:135::o;13284:127::-;13345:10;13340:3;13336:20;13333:1;13326:31;13376:4;13373:1;13366:15;13400:4;13397:1;13390:15;13416:120;13456:1;13482;13472:35;;13487:18;;:::i;:::-;-1:-1:-1;13521:9:1;;13416:120::o;13541:125::-;13581:4;13609:1;13606;13603:8;13600:34;;;13614:18;;:::i;:::-;-1:-1:-1;13651:9:1;;13541:125::o;13671:112::-;13703:1;13729;13719:35;;13734:18;;:::i;:::-;-1:-1:-1;13768:9:1;;13671:112::o;13788:127::-;13849:10;13844:3;13840:20;13837:1;13830:31;13880:4;13877:1;13870:15;13904:4;13901:1;13894:15

Swarm Source

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