ETH Price: $3,322.81 (-4.60%)
Gas: 2 Gwei

Token

Zombie Banana Bunch (ZBB)
 

Overview

Max Total Supply

6,969 ZBB

Holders

818

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ZBB
0x857d0d9c5562c84f17b25657e113f5acf9e73ef2
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:
ZombieBananaBunch

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-02
*/

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// 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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// 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: contracts/ZombieBananaBunch.sol


pragma solidity ^0.8.7;







// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol

pragma solidity ^0.8.4;

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

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

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

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used). 
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract ZombieBananaBunch is ERC721A, Ownable {
    using Strings for uint256;
    
    uint256 public MAX_SUPPLY = 6969;
    uint256 public FREE_SUPPLY = 696;

    string private BASE_URI;
    string private UNREVEAL_URI;

    uint256 public FREE_MINT_LIMIT = 1;
    
    uint256 public COST = 0.01 ether;

    uint256 public SALE_STEP = 0; // 0 => NONE, 1 => OPEN

    constructor() ERC721A("Zombie Banana Bunch", "ZBB") {}

    function setFreeMintLimit(uint256 _freeMintLimit) external onlyOwner {
        FREE_MINT_LIMIT = _freeMintLimit;
    }
    
    function setCost(uint256 _cost) external onlyOwner {
        COST = _cost;
    }

    function numberMinted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function mint(uint256 _mintAmount) external payable {
        require(SALE_STEP == 1, "Sale is not opened");

        if (totalSupply() < FREE_SUPPLY) {
            require(numberMinted(msg.sender) < FREE_MINT_LIMIT, "Exceeds Free Mint Amount");

            _mintLoop(msg.sender, 1);
        } else {
            require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");

            require(msg.value >= COST * _mintAmount, "Insuffient funds");

            _mintLoop(msg.sender, _mintAmount);
        }
    }

    function airdrop(address[] memory _airdropAddresses, uint256 _mintAmount) external onlyOwner {
        require(totalSupply() + _airdropAddresses.length * _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");

        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, _mintAmount);
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : UNREVEAL_URI;
    }

    function setMaxSupply(uint256 _supply) external onlyOwner {
        MAX_SUPPLY = _supply;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        BASE_URI = _newBaseURI;
    }

    function setUnrevealURI(string memory _newUnrevealURI) external onlyOwner {
        UNREVEAL_URI = _newUnrevealURI;
    }

    function setSaleStep(uint256 _saleStep) external onlyOwner {
        SALE_STEP = _saleStep;
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","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"},{"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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_STEP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintLimit","type":"uint256"}],"name":"setFreeMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStep","type":"uint256"}],"name":"setSaleStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUnrevealURI","type":"string"}],"name":"setUnrevealURI","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":"nonpayable","type":"function"}]

6080604052611b396009556102b8600a556001600d55662386f26fc10000600e556000600f553480156200003257600080fd5b50604080518082018252601381527f5a6f6d6269652042616e616e612042756e6368000000000000000000000000006020808301918252835180850190945260038452622d212160e91b908401528151919291620000939160029162000122565b508051620000a990600390602084019062000122565b505050620000c6620000c0620000cc60201b60201c565b620000d0565b62000204565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013090620001c8565b90600052602060002090601f0160209004810192826200015457600085556200019f565b82601f106200016f57805160ff19168380011785556200019f565b828001600101855582156200019f579182015b828111156200019f57825182559160200191906001019062000182565b50620001ad929150620001b1565b5090565b5b80821115620001ad5760008155600101620001b2565b600181811c90821680620001dd57607f821691505b602082108103620001fe57634e487b7160e01b600052602260045260246000fd5b50919050565b611df380620002146000396000f3fe6080604052600436106101ee5760003560e01c806384b9a4a51161010d578063a7048ae1116100a0578063c204642c1161006f578063c204642c1461057b578063c87b56dd1461059b578063dc33e681146105bb578063e985e9c5146105db578063f2fde38b1461062457600080fd5b8063a7048ae11461050f578063b88d4fde14610525578063bd2f6eb814610545578063bf8fbbd21461056557600080fd5b806397bc411c116100dc57806397bc411c146104a65780639858cf19146104c6578063a0712d68146104dc578063a22cb465146104ef57600080fd5b806384b9a4a5146104075780638da5cb5b1461041d5780639231ab2a1461043b57806395d89b411461049157600080fd5b806342842e0e116101855780636352211e116101545780636352211e146103925780636f8b44b0146103b257806370a08231146103d2578063715018a6146103f257600080fd5b806342842e0e1461031257806344a0d68a1461033257806353e90cbd1461035257806355f804b31461037257600080fd5b806318160ddd116101c157806318160ddd146102a457806323b872dd146102c757806332cb6b0c146102e75780633ccfd60b146102fd57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611835565b610644565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610696565b60405161021f91906118aa565b34801561025657600080fd5b5061026a6102653660046118bd565b610728565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d3660046118f2565b61076c565b005b3480156102b057600080fd5b50600154600054035b60405190815260200161021f565b3480156102d357600080fd5b506102a26102e236600461191c565b6107f9565b3480156102f357600080fd5b506102b960095481565b34801561030957600080fd5b506102a2610804565b34801561031e57600080fd5b506102a261032d36600461191c565b61086a565b34801561033e57600080fd5b506102a261034d3660046118bd565b610885565b34801561035e57600080fd5b506102a261036d3660046118bd565b6108b4565b34801561037e57600080fd5b506102a261038d3660046119f5565b6108e3565b34801561039e57600080fd5b5061026a6103ad3660046118bd565b610920565b3480156103be57600080fd5b506102a26103cd3660046118bd565b610932565b3480156103de57600080fd5b506102b96103ed366004611a3d565b610961565b3480156103fe57600080fd5b506102a26109af565b34801561041357600080fd5b506102b9600f5481565b34801561042957600080fd5b506008546001600160a01b031661026a565b34801561044757600080fd5b5061045b6104563660046118bd565b6109e5565b6040805182516001600160a01b031681526020808401516001600160401b0316908201529181015115159082015260600161021f565b34801561049d57600080fd5b5061023d610a0b565b3480156104b257600080fd5b506102a26104c13660046119f5565b610a1a565b3480156104d257600080fd5b506102b9600a5481565b6102a26104ea3660046118bd565b610a57565b3480156104fb57600080fd5b506102a261050a366004611a58565b610bcd565b34801561051b57600080fd5b506102b9600d5481565b34801561053157600080fd5b506102a2610540366004611a94565b610c62565b34801561055157600080fd5b506102a26105603660046118bd565b610c9c565b34801561057157600080fd5b506102b9600e5481565b34801561058757600080fd5b506102a2610596366004611b0f565b610ccb565b3480156105a757600080fd5b5061023d6105b63660046118bd565b610da0565b3480156105c757600080fd5b506102b96105d6366004611a3d565b610ee6565b3480156105e757600080fd5b506102136105f6366004611bc1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063057600080fd5b506102a261063f366004611a3d565b610ef1565b60006001600160e01b031982166380ac58cd60e01b148061067557506001600160e01b03198216635b5e139f60e01b145b8061069057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106a590611bf4565b80601f01602080910402602001604051908101604052809291908181526020018280546106d190611bf4565b801561071e5780601f106106f35761010080835404028352916020019161071e565b820191906000526020600020905b81548152906001019060200180831161070157829003601f168201915b5050505050905090565b600061073382610f89565b610750576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061077782610920565b9050806001600160a01b0316836001600160a01b0316036107ab5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107cb57506107c981336105f6565b155b156107e9576040516367d9dca160e11b815260040160405180910390fd5b6107f4838383610fb4565b505050565b6107f4838383611010565b6008546001600160a01b031633146108375760405162461bcd60e51b815260040161082e90611c2e565b60405180910390fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610866573d6000803e3d6000fd5b5050565b6107f483838360405180602001604052806000815250610c62565b6008546001600160a01b031633146108af5760405162461bcd60e51b815260040161082e90611c2e565b600e55565b6008546001600160a01b031633146108de5760405162461bcd60e51b815260040161082e90611c2e565b600f55565b6008546001600160a01b0316331461090d5760405162461bcd60e51b815260040161082e90611c2e565b805161086690600b906020840190611786565b600061092b82611224565b5192915050565b6008546001600160a01b0316331461095c5760405162461bcd60e51b815260040161082e90611c2e565b600955565b60006001600160a01b03821661098a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146109d95760405162461bcd60e51b815260040161082e90611c2e565b6109e3600061133d565b565b604080516060810182526000808252602082018190529181019190915261069082611224565b6060600380546106a590611bf4565b6008546001600160a01b03163314610a445760405162461bcd60e51b815260040161082e90611c2e565b805161086690600c906020840190611786565b600f54600114610a9e5760405162461bcd60e51b815260206004820152601260248201527114d85b19481a5cc81b9bdd081bdc195b995960721b604482015260640161082e565b600a54600154600054031015610b1557600d54610aba33610ee6565b10610b075760405162461bcd60e51b815260206004820152601860248201527f457863656564732046726565204d696e7420416d6f756e740000000000000000604482015260640161082e565b610b1233600161138f565b50565b60095481610b266001546000540390565b610b309190611c79565b1115610b735760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b604482015260640161082e565b80600e54610b819190611c91565b341015610bc35760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b604482015260640161082e565b610b12338261138f565b336001600160a01b03831603610bf65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c6d848484611010565b610c7984848484611399565b610c96576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610cc65760405162461bcd60e51b815260040161082e90611c2e565b600d55565b6008546001600160a01b03163314610cf55760405162461bcd60e51b815260040161082e90611c2e565b600954818351610d059190611c91565b60015460005403610d169190611c79565b1115610d595760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b604482015260640161082e565b60005b82518110156107f4576000838281518110610d7957610d79611cb0565b60200260200101519050610d8d818461138f565b5080610d9881611cc6565b915050610d5c565b6060610dab82610f89565b610e0f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161082e565b6000610e1961149c565b90506000815111610eb457600c8054610e3190611bf4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5d90611bf4565b8015610eaa5780601f10610e7f57610100808354040283529160200191610eaa565b820191906000526020600020905b815481529060010190602001808311610e8d57829003601f168201915b5050505050610edf565b80610ebe846114ab565b604051602001610ecf929190611cdf565b6040516020818303038152906040525b9392505050565b6000610690826115ab565b6008546001600160a01b03163314610f1b5760405162461bcd60e51b815260040161082e90611c2e565b6001600160a01b038116610f805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082e565b610b128161133d565b6000805482108015610690575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061101b82611224565b80519091506000906001600160a01b0316336001600160a01b031614806110495750815161104990336105f6565b8061106457503361105984610728565b6001600160a01b0316145b90508061108457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110b95760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166110e057604051633a954ecd60e21b815260040160405180910390fd5b6110f06000848460000151610fb4565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166111da576000548110156111da57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181018290529054829081101561132457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906113225780516001600160a01b0316156112b9579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561131d579392505050565b6112b9565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108668282611600565b60006001600160a01b0384163b1561149057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113dd903390899088908890600401611d0e565b6020604051808303816000875af1925050508015611418575060408051601f3d908101601f1916820190925261141591810190611d4b565b60015b611476573d808015611446576040519150601f19603f3d011682016040523d82523d6000602084013e61144b565b606091505b50805160000361146e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611494565b5060015b949350505050565b6060600b80546106a590611bf4565b6060816000036114d25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114fc57806114e681611cc6565b91506114f59050600a83611d7e565b91506114d6565b6000816001600160401b0381111561151657611516611958565b6040519080825280601f01601f191660200182016040528015611540576020820181803683370190505b5090505b841561149457611555600183611d92565b9150611562600a86611da9565b61156d906030611c79565b60f81b81838151811061158257611582611cb0565b60200101906001600160f81b031916908160001a9053506115a4600a86611d7e565b9450611544565b60006001600160a01b0382166115d4576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b6108668282604051806020016040528060008152506107f483838360016000546001600160a01b03851661164657604051622e076360e81b815260040160405180910390fd5b836000036116675760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561177d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561175357506117516000888488611399565b155b15611771576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016116fc565b5060005561121d565b82805461179290611bf4565b90600052602060002090601f0160209004810192826117b457600085556117fa565b82601f106117cd57805160ff19168380011785556117fa565b828001600101855582156117fa579182015b828111156117fa5782518255916020019190600101906117df565b5061180692915061180a565b5090565b5b80821115611806576000815560010161180b565b6001600160e01b031981168114610b1257600080fd5b60006020828403121561184757600080fd5b8135610edf8161181f565b60005b8381101561186d578181015183820152602001611855565b83811115610c965750506000910152565b60008151808452611896816020860160208601611852565b601f01601f19169290920160200192915050565b602081526000610edf602083018461187e565b6000602082840312156118cf57600080fd5b5035919050565b80356001600160a01b03811681146118ed57600080fd5b919050565b6000806040838503121561190557600080fd5b61190e836118d6565b946020939093013593505050565b60008060006060848603121561193157600080fd5b61193a846118d6565b9250611948602085016118d6565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561199657611996611958565b604052919050565b60006001600160401b038311156119b7576119b7611958565b6119ca601f8401601f191660200161196e565b90508281528383830111156119de57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611a0757600080fd5b81356001600160401b03811115611a1d57600080fd5b8201601f81018413611a2e57600080fd5b6114948482356020840161199e565b600060208284031215611a4f57600080fd5b610edf826118d6565b60008060408385031215611a6b57600080fd5b611a74836118d6565b915060208301358015158114611a8957600080fd5b809150509250929050565b60008060008060808587031215611aaa57600080fd5b611ab3856118d6565b9350611ac1602086016118d6565b92506040850135915060608501356001600160401b03811115611ae357600080fd5b8501601f81018713611af457600080fd5b611b038782356020840161199e565b91505092959194509250565b60008060408385031215611b2257600080fd5b82356001600160401b0380821115611b3957600080fd5b818501915085601f830112611b4d57600080fd5b8135602082821115611b6157611b61611958565b8160051b9250611b7281840161196e565b8281529284018101928181019089851115611b8c57600080fd5b948201945b84861015611bb157611ba2866118d6565b82529482019490820190611b91565b9997909101359750505050505050565b60008060408385031215611bd457600080fd5b611bdd836118d6565b9150611beb602084016118d6565b90509250929050565b600181811c90821680611c0857607f821691505b602082108103611c2857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c8c57611c8c611c63565b500190565b6000816000190483118215151615611cab57611cab611c63565b500290565b634e487b7160e01b600052603260045260246000fd5b600060018201611cd857611cd8611c63565b5060010190565b60008351611cf1818460208801611852565b835190830190611d05818360208801611852565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d419083018461187e565b9695505050505050565b600060208284031215611d5d57600080fd5b8151610edf8161181f565b634e487b7160e01b600052601260045260246000fd5b600082611d8d57611d8d611d68565b500490565b600082821015611da457611da4611c63565b500390565b600082611db857611db8611d68565b50069056fea26469706673582212203816175b75b78b97a057244a6abf62f5e9c6b71baff2517d9c9455aea95b84cf64736f6c634300080e0033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806384b9a4a51161010d578063a7048ae1116100a0578063c204642c1161006f578063c204642c1461057b578063c87b56dd1461059b578063dc33e681146105bb578063e985e9c5146105db578063f2fde38b1461062457600080fd5b8063a7048ae11461050f578063b88d4fde14610525578063bd2f6eb814610545578063bf8fbbd21461056557600080fd5b806397bc411c116100dc57806397bc411c146104a65780639858cf19146104c6578063a0712d68146104dc578063a22cb465146104ef57600080fd5b806384b9a4a5146104075780638da5cb5b1461041d5780639231ab2a1461043b57806395d89b411461049157600080fd5b806342842e0e116101855780636352211e116101545780636352211e146103925780636f8b44b0146103b257806370a08231146103d2578063715018a6146103f257600080fd5b806342842e0e1461031257806344a0d68a1461033257806353e90cbd1461035257806355f804b31461037257600080fd5b806318160ddd116101c157806318160ddd146102a457806323b872dd146102c757806332cb6b0c146102e75780633ccfd60b146102fd57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611835565b610644565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610696565b60405161021f91906118aa565b34801561025657600080fd5b5061026a6102653660046118bd565b610728565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d3660046118f2565b61076c565b005b3480156102b057600080fd5b50600154600054035b60405190815260200161021f565b3480156102d357600080fd5b506102a26102e236600461191c565b6107f9565b3480156102f357600080fd5b506102b960095481565b34801561030957600080fd5b506102a2610804565b34801561031e57600080fd5b506102a261032d36600461191c565b61086a565b34801561033e57600080fd5b506102a261034d3660046118bd565b610885565b34801561035e57600080fd5b506102a261036d3660046118bd565b6108b4565b34801561037e57600080fd5b506102a261038d3660046119f5565b6108e3565b34801561039e57600080fd5b5061026a6103ad3660046118bd565b610920565b3480156103be57600080fd5b506102a26103cd3660046118bd565b610932565b3480156103de57600080fd5b506102b96103ed366004611a3d565b610961565b3480156103fe57600080fd5b506102a26109af565b34801561041357600080fd5b506102b9600f5481565b34801561042957600080fd5b506008546001600160a01b031661026a565b34801561044757600080fd5b5061045b6104563660046118bd565b6109e5565b6040805182516001600160a01b031681526020808401516001600160401b0316908201529181015115159082015260600161021f565b34801561049d57600080fd5b5061023d610a0b565b3480156104b257600080fd5b506102a26104c13660046119f5565b610a1a565b3480156104d257600080fd5b506102b9600a5481565b6102a26104ea3660046118bd565b610a57565b3480156104fb57600080fd5b506102a261050a366004611a58565b610bcd565b34801561051b57600080fd5b506102b9600d5481565b34801561053157600080fd5b506102a2610540366004611a94565b610c62565b34801561055157600080fd5b506102a26105603660046118bd565b610c9c565b34801561057157600080fd5b506102b9600e5481565b34801561058757600080fd5b506102a2610596366004611b0f565b610ccb565b3480156105a757600080fd5b5061023d6105b63660046118bd565b610da0565b3480156105c757600080fd5b506102b96105d6366004611a3d565b610ee6565b3480156105e757600080fd5b506102136105f6366004611bc1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561063057600080fd5b506102a261063f366004611a3d565b610ef1565b60006001600160e01b031982166380ac58cd60e01b148061067557506001600160e01b03198216635b5e139f60e01b145b8061069057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106a590611bf4565b80601f01602080910402602001604051908101604052809291908181526020018280546106d190611bf4565b801561071e5780601f106106f35761010080835404028352916020019161071e565b820191906000526020600020905b81548152906001019060200180831161070157829003601f168201915b5050505050905090565b600061073382610f89565b610750576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061077782610920565b9050806001600160a01b0316836001600160a01b0316036107ab5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107cb57506107c981336105f6565b155b156107e9576040516367d9dca160e11b815260040160405180910390fd5b6107f4838383610fb4565b505050565b6107f4838383611010565b6008546001600160a01b031633146108375760405162461bcd60e51b815260040161082e90611c2e565b60405180910390fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610866573d6000803e3d6000fd5b5050565b6107f483838360405180602001604052806000815250610c62565b6008546001600160a01b031633146108af5760405162461bcd60e51b815260040161082e90611c2e565b600e55565b6008546001600160a01b031633146108de5760405162461bcd60e51b815260040161082e90611c2e565b600f55565b6008546001600160a01b0316331461090d5760405162461bcd60e51b815260040161082e90611c2e565b805161086690600b906020840190611786565b600061092b82611224565b5192915050565b6008546001600160a01b0316331461095c5760405162461bcd60e51b815260040161082e90611c2e565b600955565b60006001600160a01b03821661098a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146109d95760405162461bcd60e51b815260040161082e90611c2e565b6109e3600061133d565b565b604080516060810182526000808252602082018190529181019190915261069082611224565b6060600380546106a590611bf4565b6008546001600160a01b03163314610a445760405162461bcd60e51b815260040161082e90611c2e565b805161086690600c906020840190611786565b600f54600114610a9e5760405162461bcd60e51b815260206004820152601260248201527114d85b19481a5cc81b9bdd081bdc195b995960721b604482015260640161082e565b600a54600154600054031015610b1557600d54610aba33610ee6565b10610b075760405162461bcd60e51b815260206004820152601860248201527f457863656564732046726565204d696e7420416d6f756e740000000000000000604482015260640161082e565b610b1233600161138f565b50565b60095481610b266001546000540390565b610b309190611c79565b1115610b735760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b604482015260640161082e565b80600e54610b819190611c91565b341015610bc35760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b604482015260640161082e565b610b12338261138f565b336001600160a01b03831603610bf65760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c6d848484611010565b610c7984848484611399565b610c96576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610cc65760405162461bcd60e51b815260040161082e90611c2e565b600d55565b6008546001600160a01b03163314610cf55760405162461bcd60e51b815260040161082e90611c2e565b600954818351610d059190611c91565b60015460005403610d169190611c79565b1115610d595760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b604482015260640161082e565b60005b82518110156107f4576000838281518110610d7957610d79611cb0565b60200260200101519050610d8d818461138f565b5080610d9881611cc6565b915050610d5c565b6060610dab82610f89565b610e0f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161082e565b6000610e1961149c565b90506000815111610eb457600c8054610e3190611bf4565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5d90611bf4565b8015610eaa5780601f10610e7f57610100808354040283529160200191610eaa565b820191906000526020600020905b815481529060010190602001808311610e8d57829003601f168201915b5050505050610edf565b80610ebe846114ab565b604051602001610ecf929190611cdf565b6040516020818303038152906040525b9392505050565b6000610690826115ab565b6008546001600160a01b03163314610f1b5760405162461bcd60e51b815260040161082e90611c2e565b6001600160a01b038116610f805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082e565b610b128161133d565b6000805482108015610690575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061101b82611224565b80519091506000906001600160a01b0316336001600160a01b031614806110495750815161104990336105f6565b8061106457503361105984610728565b6001600160a01b0316145b90508061108457604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110b95760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166110e057604051633a954ecd60e21b815260040160405180910390fd5b6110f06000848460000151610fb4565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166111da576000548110156111da57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181018290529054829081101561132457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906113225780516001600160a01b0316156112b9579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561131d579392505050565b6112b9565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108668282611600565b60006001600160a01b0384163b1561149057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113dd903390899088908890600401611d0e565b6020604051808303816000875af1925050508015611418575060408051601f3d908101601f1916820190925261141591810190611d4b565b60015b611476573d808015611446576040519150601f19603f3d011682016040523d82523d6000602084013e61144b565b606091505b50805160000361146e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611494565b5060015b949350505050565b6060600b80546106a590611bf4565b6060816000036114d25750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114fc57806114e681611cc6565b91506114f59050600a83611d7e565b91506114d6565b6000816001600160401b0381111561151657611516611958565b6040519080825280601f01601f191660200182016040528015611540576020820181803683370190505b5090505b841561149457611555600183611d92565b9150611562600a86611da9565b61156d906030611c79565b60f81b81838151811061158257611582611cb0565b60200101906001600160f81b031916908160001a9053506115a4600a86611d7e565b9450611544565b60006001600160a01b0382166115d4576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b6108668282604051806020016040528060008152506107f483838360016000546001600160a01b03851661164657604051622e076360e81b815260040160405180910390fd5b836000036116675760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561177d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483801561175357506117516000888488611399565b155b15611771576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016116fc565b5060005561121d565b82805461179290611bf4565b90600052602060002090601f0160209004810192826117b457600085556117fa565b82601f106117cd57805160ff19168380011785556117fa565b828001600101855582156117fa579182015b828111156117fa5782518255916020019190600101906117df565b5061180692915061180a565b5090565b5b80821115611806576000815560010161180b565b6001600160e01b031981168114610b1257600080fd5b60006020828403121561184757600080fd5b8135610edf8161181f565b60005b8381101561186d578181015183820152602001611855565b83811115610c965750506000910152565b60008151808452611896816020860160208601611852565b601f01601f19169290920160200192915050565b602081526000610edf602083018461187e565b6000602082840312156118cf57600080fd5b5035919050565b80356001600160a01b03811681146118ed57600080fd5b919050565b6000806040838503121561190557600080fd5b61190e836118d6565b946020939093013593505050565b60008060006060848603121561193157600080fd5b61193a846118d6565b9250611948602085016118d6565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561199657611996611958565b604052919050565b60006001600160401b038311156119b7576119b7611958565b6119ca601f8401601f191660200161196e565b90508281528383830111156119de57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611a0757600080fd5b81356001600160401b03811115611a1d57600080fd5b8201601f81018413611a2e57600080fd5b6114948482356020840161199e565b600060208284031215611a4f57600080fd5b610edf826118d6565b60008060408385031215611a6b57600080fd5b611a74836118d6565b915060208301358015158114611a8957600080fd5b809150509250929050565b60008060008060808587031215611aaa57600080fd5b611ab3856118d6565b9350611ac1602086016118d6565b92506040850135915060608501356001600160401b03811115611ae357600080fd5b8501601f81018713611af457600080fd5b611b038782356020840161199e565b91505092959194509250565b60008060408385031215611b2257600080fd5b82356001600160401b0380821115611b3957600080fd5b818501915085601f830112611b4d57600080fd5b8135602082821115611b6157611b61611958565b8160051b9250611b7281840161196e565b8281529284018101928181019089851115611b8c57600080fd5b948201945b84861015611bb157611ba2866118d6565b82529482019490820190611b91565b9997909101359750505050505050565b60008060408385031215611bd457600080fd5b611bdd836118d6565b9150611beb602084016118d6565b90509250929050565b600181811c90821680611c0857607f821691505b602082108103611c2857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611c8c57611c8c611c63565b500190565b6000816000190483118215151615611cab57611cab611c63565b500290565b634e487b7160e01b600052603260045260246000fd5b600060018201611cd857611cd8611c63565b5060010190565b60008351611cf1818460208801611852565b835190830190611d05818360208801611852565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d419083018461187e565b9695505050505050565b600060208284031215611d5d57600080fd5b8151610edf8161181f565b634e487b7160e01b600052601260045260246000fd5b600082611d8d57611d8d611d68565b500490565b600082821015611da457611da4611c63565b500390565b600082611db857611db8611d68565b50069056fea26469706673582212203816175b75b78b97a057244a6abf62f5e9c6b71baff2517d9c9455aea95b84cf64736f6c634300080e0033

Deployed Bytecode Sourcemap

43738:3101:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26536:305;;;;;;;;;;-1:-1:-1;26536:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26536:305:0;;;;;;;;29896:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31399:204::-;;;;;;;;;;-1:-1:-1;31399:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;31399:204:0;1528:203:1;30962:371:0;;;;;;;;;;-1:-1:-1;30962:371:0;;;;;:::i;:::-;;:::i;:::-;;26193:271;;;;;;;;;;-1:-1:-1;26429:12:0;;26237:7;26413:13;:28;26193:271;;;2319:25:1;;;2307:2;2292:18;26193:271:0;2173:177:1;32256:170:0;;;;;;;;;;-1:-1:-1;32256:170:0;;;;;:::i;:::-;;:::i;43830:32::-;;;;;;;;;;;;;;;;46685:151;;;;;;;;;;;;;:::i;32497:185::-;;;;;;;;;;-1:-1:-1;32497:185:0;;;;;:::i;:::-;;:::i;44319:82::-;;;;;;;;;;-1:-1:-1;44319:82:0;;;;;:::i;:::-;;:::i;46307:99::-;;;;;;;;;;-1:-1:-1;46307:99:0;;;;;:::i;:::-;;:::i;46061:107::-;;;;;;;;;;-1:-1:-1;46061:107:0;;;;;:::i;:::-;;:::i;29705:124::-;;;;;;;;;;-1:-1:-1;29705:124:0;;;;;:::i;:::-;;:::i;45956:97::-;;;;;;;;;;-1:-1:-1;45956:97:0;;;;;:::i;:::-;;:::i;26905:206::-;;;;;;;;;;-1:-1:-1;26905:206:0;;;;;:::i;:::-;;:::i;11296:103::-;;;;;;;;;;;;;:::i;44064:28::-;;;;;;;;;;;;;;;;10645:87;;;;;;;;;;-1:-1:-1;10718:6:0;;-1:-1:-1;;;;;10718:6:0;10645:87;;46542:135;;;;;;;;;;-1:-1:-1;46542:135:0;;;;;:::i;:::-;;:::i;:::-;;;;4389:13:1;;-1:-1:-1;;;;;4385:39:1;4367:58;;4485:4;4473:17;;;4467:24;-1:-1:-1;;;;;4463:49:1;4441:20;;;4434:79;4571:17;;;4565:24;4558:32;4551:40;4529:20;;;4522:70;4355:2;4340:18;46542:135:0;4159:439:1;30065:104:0;;;;;;;;;;;;;:::i;46176:123::-;;;;;;;;;;-1:-1:-1;46176:123:0;;;;;:::i;:::-;;:::i;43869:32::-;;;;;;;;;;;;;;;;44532:541;;;;;;:::i;:::-;;:::i;31675:279::-;;;;;;;;;;-1:-1:-1;31675:279:0;;;;;:::i;:::-;;:::i;43976:34::-;;;;;;;;;;;;;;;;32753:342;;;;;;;;;;-1:-1:-1;32753:342:0;;;;;:::i;:::-;;:::i;44187:120::-;;;;;;;;;;-1:-1:-1;44187:120:0;;;;;:::i;:::-;;:::i;44023:32::-;;;;;;;;;;;;;;;;45081:379;;;;;;;;;;-1:-1:-1;45081:379:0;;;;;:::i;:::-;;:::i;45585:363::-;;;;;;;;;;-1:-1:-1;45585:363:0;;;;;:::i;:::-;;:::i;44409:115::-;;;;;;;;;;-1:-1:-1;44409:115:0;;;;;:::i;:::-;;:::i;32025:164::-;;;;;;;;;;-1:-1:-1;32025:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32146:25:0;;;32122:4;32146:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32025:164;11554:201;;;;;;;;;;-1:-1:-1;11554:201:0;;;;;:::i;:::-;;:::i;26536:305::-;26638:4;-1:-1:-1;;;;;;26675:40:0;;-1:-1:-1;;;26675:40:0;;:105;;-1:-1:-1;;;;;;;26732:48:0;;-1:-1:-1;;;26732:48:0;26675:105;:158;;;-1:-1:-1;;;;;;;;;;7581:40:0;;;26797:36;26655:178;26536:305;-1:-1:-1;;26536:305:0:o;29896:100::-;29950:13;29983:5;29976:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29896:100;:::o;31399:204::-;31467:7;31492:16;31500:7;31492;:16::i;:::-;31487:64;;31517:34;;-1:-1:-1;;;31517:34:0;;;;;;;;;;;31487:64;-1:-1:-1;31571:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31571:24:0;;31399:204::o;30962:371::-;31035:13;31051:24;31067:7;31051:15;:24::i;:::-;31035:40;;31096:5;-1:-1:-1;;;;;31090:11:0;:2;-1:-1:-1;;;;;31090:11:0;;31086:48;;31110:24;;-1:-1:-1;;;31110:24:0;;;;;;;;;;;31086:48;9449:10;-1:-1:-1;;;;;31151:21:0;;;;;;:63;;-1:-1:-1;31177:37:0;31194:5;9449:10;32025:164;:::i;31177:37::-;31176:38;31151:63;31147:138;;;31238:35;;-1:-1:-1;;;31238:35:0;;;;;;;;;;;31147:138;31297:28;31306:2;31310:7;31319:5;31297:8;:28::i;:::-;31024:309;30962:371;;:::o;32256:170::-;32390:28;32400:4;32406:2;32410:7;32390:9;:28::i;46685:151::-;10718:6;;-1:-1:-1;;;;;10718:6:0;9449:10;10865:23;10857:68;;;;-1:-1:-1;;;10857:68:0;;;;;;;:::i;:::-;;;;;;;;;46788:40:::1;::::0;46756:21:::1;::::0;46796:10:::1;::::0;46788:40;::::1;;;::::0;46756:21;;46735:18:::1;46788:40:::0;46735:18;46788:40;46756:21;46796:10;46788:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46724:112;46685:151::o:0;32497:185::-;32635:39;32652:4;32658:2;32662:7;32635:39;;;;;;;;;;;;:16;:39::i;44319:82::-;10718:6;;-1:-1:-1;;;;;10718:6:0;9449:10;10865:23;10857:68;;;;-1:-1:-1;;;10857:68:0;;;;;;;:::i;:::-;44381:4:::1;:12:::0;44319:82::o;46307:99::-;10718:6;;-1:-1:-1;;;;;10718:6:0;9449:10;10865:23;10857:68;;;;-1:-1:-1;;;10857:68:0;;;;;;;:::i;:::-;46377:9:::1;:21:::0;46307:99::o;46061:107::-;10718:6;;-1:-1:-1;;;;;10718:6:0;9449:10;10865:23;10857:68;;;;-1:-1:-1;;;10857:68:0;;;;;;;:::i;:::-;46138:22;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;29705:124::-:0;29769:7;29796:20;29808:7;29796:11;:20::i;:::-;:25;;29705:124;-1:-1:-1;;29705:124:0:o;45956:97::-;10718:6;;-1:-1:-1;;;;;10718:6:0;9449:10;10865:23;10857:68;;;;-1:-1:-1;;;10857:68:0;;;;;;;:::i;:::-;46025:10:::1;:20:::0;45956:97::o;26905:206::-;26969:7;-1:-1:-1;;;;;26993:19:0;;26989:60;;27021:28;;-1:-1:-1;;;27021:28:0;;;;;;;;;;;26989:60;-1:-1:-1;;;;;;27075:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27075:27:0;;26905:206::o;11296:103::-;10718:6;;-1:-1:-1;;;;;10718:6:0;9449:10;10865:23;10857:68;;;;-1:-1:-1;;;10857:68:0;;;;;;;:::i;:::-;11361:30:::1;11388:1;11361:18;:30::i;:::-;11296:103::o:0;46542:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;46649:20:0;46661:7;46649:11;:20::i;30065:104::-;30121:13;30154:7;30147:14;;;;;:::i;46176:123::-;10718:6;;-1:-1:-1;;;;;10718:6:0;9449:10;10865:23;10857:68;;;;-1:-1:-1;;;10857:68:0;;;;;;;:::i;:::-;46261:30;;::::1;::::0;:12:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;44532:541::-:0;44603:9;;44616:1;44603:14;44595:45;;;;-1:-1:-1;;;44595:45:0;;7867:2:1;44595:45:0;;;7849:21:1;7906:2;7886:18;;;7879:30;-1:-1:-1;;;7925:18:1;;;7918:48;7983:18;;44595:45:0;7665:342:1;44595:45:0;44673:11;;26429:12;;26237:7;26413:13;:28;44657:27;44653:413;;;44736:15;;44709:24;44722:10;44709:12;:24::i;:::-;:42;44701:79;;;;-1:-1:-1;;;44701:79:0;;8214:2:1;44701:79:0;;;8196:21:1;8253:2;8233:18;;;8226:30;8292:26;8272:18;;;8265:54;8336:18;;44701:79:0;8012:348:1;44701:79:0;44797:24;44807:10;44819:1;44797:9;:24::i;:::-;44532:541;:::o;44653:413::-;44893:10;;44878:11;44862:13;26429:12;;26237:7;26413:13;:28;;26193:271;44862:13;:27;;;;:::i;:::-;:41;;44854:72;;;;-1:-1:-1;;;44854:72:0;;8832:2:1;44854:72:0;;;8814:21:1;8871:2;8851:18;;;8844:30;-1:-1:-1;;;8890:18:1;;;8883:48;8948:18;;44854:72:0;8630:342:1;44854:72:0;44971:11;44964:4;;:18;;;;:::i;:::-;44951:9;:31;;44943:60;;;;-1:-1:-1;;;44943:60:0;;9352:2:1;44943:60:0;;;9334:21:1;9391:2;9371:18;;;9364:30;-1:-1:-1;;;9410:18:1;;;9403:46;9466:18;;44943:60:0;9150:340:1;44943:60:0;45020:34;45030:10;45042:11;45020:9;:34::i;31675:279::-;9449:10;-1:-1:-1;;;;;31766:24:0;;;31762:54;;31799:17;;-1:-1:-1;;;31799:17:0;;;;;;;;;;;31762:54;9449:10;31829:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31829:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31829:53:0;;;;;;;;;;31898:48;;540:41:1;;;31829:42:0;;9449:10;31898:48;;513:18:1;31898:48:0;;;;;;;31675:279;;:::o;32753:342::-;32920:28;32930:4;32936:2;32940:7;32920:9;:28::i;:::-;32964:48;32987:4;32993:2;32997:7;33006:5;32964:22;:48::i;:::-;32959:129;;33036:40;;-1:-1:-1;;;33036:40:0;;;;;;;;;;;32959:129;32753:342;;;;:::o;44187:120::-;10718:6;;-1:-1:-1;;;;;10718:6:0;9449:10;10865:23;10857:68;;;;-1:-1:-1;;;10857:68:0;;;;;;;:::i;:::-;44267:15:::1;:32:::0;44187:120::o;45081:379::-;10718:6;;-1:-1:-1;;;;;10718:6:0;9449:10;10865:23;10857:68;;;;-1:-1:-1;;;10857:68:0;;;;;;;:::i;:::-;45251:10:::1;;45236:11;45209:17;:24;:38;;;;:::i;:::-;26429:12:::0;;26237:7;26413:13;:28;45193:54:::1;;;;:::i;:::-;:68;;45185:99;;;::::0;-1:-1:-1;;;45185:99:0;;8832:2:1;45185:99:0::1;::::0;::::1;8814:21:1::0;8871:2;8851:18;;;8844:30;-1:-1:-1;;;8890:18:1;;;8883:48;8948:18;;45185:99:0::1;8630:342:1::0;45185:99:0::1;45302:9;45297:156;45321:17;:24;45317:1;:28;45297:156;;;45367:10;45380:17;45398:1;45380:20;;;;;;;;:::i;:::-;;;;;;;45367:33;;45415:26;45425:2;45429:11;45415:9;:26::i;:::-;-1:-1:-1::0;45347:3:0;::::1;::::0;::::1;:::i;:::-;;;;45297:156;;45585:363:::0;45658:13;45692:16;45700:7;45692;:16::i;:::-;45684:76;;;;-1:-1:-1;;;45684:76:0;;9969:2:1;45684:76:0;;;9951:21:1;10008:2;9988:18;;;9981:30;10047:34;10027:18;;;10020:62;-1:-1:-1;;;10098:18:1;;;10091:45;10153:19;;45684:76:0;9767:411:1;45684:76:0;45771:28;45802:10;:8;:10::i;:::-;45771:41;;45861:1;45836:14;45830:28;:32;:110;;45928:12;45830:110;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45889:14;45905:18;:7;:16;:18::i;:::-;45872:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45830:110;45823:117;45585:363;-1:-1:-1;;;45585:363:0:o;44409:115::-;44468:7;44495:21;44509:6;44495:13;:21::i;11554:201::-;10718:6;;-1:-1:-1;;;;;10718:6:0;9449:10;10865:23;10857:68;;;;-1:-1:-1;;;10857:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11643:22:0;::::1;11635:73;;;::::0;-1:-1:-1;;;11635:73:0;;10860:2:1;11635:73:0::1;::::0;::::1;10842:21:1::0;10899:2;10879:18;;;10872:30;10938:34;10918:18;;;10911:62;-1:-1:-1;;;10989:18:1;;;10982:36;11035:19;;11635:73:0::1;10658:402:1::0;11635:73:0::1;11719:28;11738:8;11719:18;:28::i;33350:144::-:0;33407:4;33441:13;;33431:7;:23;:55;;;;-1:-1:-1;;33459:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33459:27:0;;;;33458:28;;33350:144::o;40556:196::-;40671:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40671:29:0;-1:-1:-1;;;;;40671:29:0;;;;;;;;;40716:28;;40671:24;;40716:28;;;;;;;40556:196;;;:::o;36057:2112::-;36172:35;36210:20;36222:7;36210:11;:20::i;:::-;36285:18;;36172:58;;-1:-1:-1;36243:22:0;;-1:-1:-1;;;;;36269:34:0;9449:10;-1:-1:-1;;;;;36269:34:0;;:101;;;-1:-1:-1;36337:18:0;;36320:50;;9449:10;32025:164;:::i;36320:50::-;36269:154;;;-1:-1:-1;9449:10:0;36387:20;36399:7;36387:11;:20::i;:::-;-1:-1:-1;;;;;36387:36:0;;36269:154;36243:181;;36442:17;36437:66;;36468:35;;-1:-1:-1;;;36468:35:0;;;;;;;;;;;36437:66;36540:4;-1:-1:-1;;;;;36518:26:0;:13;:18;;;-1:-1:-1;;;;;36518:26:0;;36514:67;;36553:28;;-1:-1:-1;;;36553:28:0;;;;;;;;;;;36514:67;-1:-1:-1;;;;;36596:16:0;;36592:52;;36621:23;;-1:-1:-1;;;36621:23:0;;;;;;;;;;;36592:52;36765:49;36782:1;36786:7;36795:13;:18;;;36765:8;:49::i;:::-;-1:-1:-1;;;;;37110:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37110:31:0;;;-1:-1:-1;;;;;37110:31:0;;;-1:-1:-1;;37110:31:0;;;;;;;37156:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37156:29:0;;;;;;;;;;;37202:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;37247:61:0;;;;-1:-1:-1;;;37292:15:0;37247:61;;;;;;;;;;;37582:11;;;37612:24;;;;;:29;37582:11;;37612:29;37608:445;;37837:13;;37823:11;:27;37819:219;;;37907:18;;;37875:24;;;:11;:24;;;;;;;;:50;;37990:28;;;;-1:-1:-1;;;;;37948:70:0;-1:-1:-1;;;37948:70:0;-1:-1:-1;;;;;;37948:70:0;;;-1:-1:-1;;;;;37875:50:0;;;37948:70;;;;;;;37819:219;37085:979;38100:7;38096:2;-1:-1:-1;;;;;38081:27:0;38090:4;-1:-1:-1;;;;;38081:27:0;;;;;;;;;;;38119:42;36161:2008;;36057:2112;;;:::o;28560:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;28726:13:0;;28670:7;;28719:20;;28715:861;;;28760:31;28794:17;;;:11;:17;;;;;;;;;28760:51;;;;;;;;;-1:-1:-1;;;;;28760:51:0;;;;-1:-1:-1;;;28760:51:0;;-1:-1:-1;;;;;28760:51:0;;;;;;;;-1:-1:-1;;;28760:51:0;;;;;;;;;;;;;;28830:731;;28880:14;;-1:-1:-1;;;;;28880:28:0;;28876:101;;28944:9;28560:1083;-1:-1:-1;;;28560:1083:0:o;28876:101::-;-1:-1:-1;;;29321:6:0;29366:17;;;;:11;:17;;;;;;;;;29354:29;;;;;;;;;-1:-1:-1;;;;;29354:29:0;;;;;-1:-1:-1;;;29354:29:0;;-1:-1:-1;;;;;29354:29:0;;;;;;;;-1:-1:-1;;;29354:29:0;;;;;;;;;;;;;29414:28;29410:109;;29482:9;28560:1083;-1:-1:-1;;;28560:1083:0:o;29410:109::-;29281:261;;;28741:835;28715:861;29604:31;;-1:-1:-1;;;29604:31:0;;;;;;;;;;;11915:191;12008:6;;;-1:-1:-1;;;;;12025:17:0;;;-1:-1:-1;;;;;;12025:17:0;;;;;;;12058:40;;12008:6;;;12025:17;12008:6;;12058:40;;11989:16;;12058:40;11978:128;11915:191;:::o;46414:120::-;46493:33;46503:9;46514:11;46493:9;:33::i;41317:790::-;41472:4;-1:-1:-1;;;;;41493:13:0;;13641:19;:23;41489:611;;41529:72;;-1:-1:-1;;;41529:72:0;;-1:-1:-1;;;;;41529:36:0;;;;;:72;;9449:10;;41580:4;;41586:7;;41595:5;;41529:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41529:72:0;;;;;;;;-1:-1:-1;;41529:72:0;;;;;;;;;;;;:::i;:::-;;;41525:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41775:6;:13;41792:1;41775:18;41771:259;;41825:40;;-1:-1:-1;;;41825:40:0;;;;;;;;;;;41771:259;41980:6;41974:13;41965:6;41961:2;41957:15;41950:38;41525:520;-1:-1:-1;;;;;;41652:55:0;-1:-1:-1;;;41652:55:0;;-1:-1:-1;41645:62:0;;41489:611;-1:-1:-1;42084:4:0;41489:611;41317:790;;;;;;:::o;45468:109::-;45528:13;45561:8;45554:15;;;;;:::i;20981:723::-;21037:13;21258:5;21267:1;21258:10;21254:53;;-1:-1:-1;;21285:10:0;;;;;;;;;;;;-1:-1:-1;;;21285:10:0;;;;;20981:723::o;21254:53::-;21332:5;21317:12;21373:78;21380:9;;21373:78;;21406:8;;;;:::i;:::-;;-1:-1:-1;21429:10:0;;-1:-1:-1;21437:2:0;21429:10;;:::i;:::-;;;21373:78;;;21461:19;21493:6;-1:-1:-1;;;;;21483:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21483:17:0;;21461:39;;21511:154;21518:10;;21511:154;;21545:11;21555:1;21545:11;;:::i;:::-;;-1:-1:-1;21614:10:0;21622:2;21614:5;:10;:::i;:::-;21601:24;;:2;:24;:::i;:::-;21588:39;;21571:6;21578;21571:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21571:56:0;;;;;;;;-1:-1:-1;21642:11:0;21651:2;21642:11;;:::i;:::-;;;21511:154;;27193:207;27254:7;-1:-1:-1;;;;;27278:19:0;;27274:59;;27306:27;;-1:-1:-1;;;27306:27:0;;;;;;;;;;;27274:59;-1:-1:-1;;;;;;27359:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;27359:32:0;;-1:-1:-1;;;;;27359:32:0;;27193:207::o;33502:104::-;33571:27;33581:2;33585:8;33571:27;;;;;;;;;;;;34092:32;34098:2;34102:8;34112:5;34119:4;34530:20;34553:13;-1:-1:-1;;;;;34581:16:0;;34577:48;;34606:19;;-1:-1:-1;;;34606:19:0;;;;;;;;;;;34577:48;34640:8;34652:1;34640:13;34636:44;;34662:18;;-1:-1:-1;;;34662:18:0;;;;;;;;;;;34636:44;-1:-1:-1;;;;;35031:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35090:49:0;;-1:-1:-1;;;;;35031:44:0;;;;;;;35090:49;;;-1:-1:-1;;;;;35031:44:0;;;;;;35090:49;;;;;;;;;;;;;;;;35156:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;35206:66:0;;;;-1:-1:-1;;;35256:15:0;35206:66;;;;;;;;;;;35156:25;;35341:328;35361:8;35357:1;:12;35341:328;;;35400:38;;35425:12;;-1:-1:-1;;;;;35400:38:0;;;35417:1;;35400:38;;35417:1;;35400:38;35461:4;:68;;;;;35470:59;35501:1;35505:2;35509:12;35523:5;35470:22;:59::i;:::-;35469:60;35461:68;35457:164;;;35561:40;;-1:-1:-1;;;35561:40:0;;;;;;;;;;;35457:164;35639:14;;;;;35371:3;35341:328;;;-1:-1:-1;35685:13:0;:28;35735:60;32753:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914: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:275;2891:2;2885:9;2956:2;2937:13;;-1:-1:-1;;2933:27:1;2921:40;;-1:-1:-1;;;;;2976:34:1;;3012:22;;;2973:62;2970:88;;;3038:18;;:::i;:::-;3074:2;3067:22;2820:275;;-1:-1:-1;2820:275:1:o;3100:407::-;3165:5;-1:-1:-1;;;;;3191:6:1;3188:30;3185:56;;;3221:18;;:::i;:::-;3259:57;3304:2;3283:15;;-1:-1:-1;;3279:29:1;3310:4;3275:40;3259:57;:::i;:::-;3250:66;;3339:6;3332:5;3325:21;3379:3;3370:6;3365:3;3361:16;3358:25;3355:45;;;3396:1;3393;3386:12;3355:45;3445:6;3440:3;3433:4;3426:5;3422:16;3409:43;3499:1;3492:4;3483:6;3476:5;3472:18;3468:29;3461:40;3100:407;;;;;:::o;3512:451::-;3581:6;3634:2;3622:9;3613:7;3609:23;3605:32;3602:52;;;3650:1;3647;3640:12;3602:52;3690:9;3677:23;-1:-1:-1;;;;;3715:6:1;3712:30;3709:50;;;3755:1;3752;3745:12;3709:50;3778:22;;3831:4;3823:13;;3819:27;-1:-1:-1;3809:55:1;;3860:1;3857;3850:12;3809:55;3883:74;3949:7;3944:2;3931:16;3926:2;3922;3918:11;3883:74;:::i;3968:186::-;4027:6;4080:2;4068:9;4059:7;4055:23;4051:32;4048:52;;;4096:1;4093;4086:12;4048:52;4119:29;4138:9;4119:29;:::i;4603:347::-;4668:6;4676;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;4768:29;4787:9;4768:29;:::i;:::-;4758:39;;4847:2;4836:9;4832:18;4819:32;4894:5;4887:13;4880:21;4873:5;4870:32;4860:60;;4916:1;4913;4906:12;4860:60;4939:5;4929:15;;;4603:347;;;;;:::o;4955:667::-;5050:6;5058;5066;5074;5127:3;5115:9;5106:7;5102:23;5098:33;5095:53;;;5144:1;5141;5134:12;5095:53;5167:29;5186:9;5167:29;:::i;:::-;5157:39;;5215:38;5249:2;5238:9;5234:18;5215:38;:::i;:::-;5205:48;;5300:2;5289:9;5285:18;5272:32;5262:42;;5355:2;5344:9;5340:18;5327:32;-1:-1:-1;;;;;5374:6:1;5371:30;5368:50;;;5414:1;5411;5404:12;5368:50;5437:22;;5490:4;5482:13;;5478:27;-1:-1:-1;5468:55:1;;5519:1;5516;5509:12;5468:55;5542:74;5608:7;5603:2;5590:16;5585:2;5581;5577:11;5542:74;:::i;:::-;5532:84;;;4955:667;;;;;;;:::o;5627:1022::-;5720:6;5728;5781:2;5769:9;5760:7;5756:23;5752:32;5749:52;;;5797:1;5794;5787:12;5749:52;5837:9;5824:23;-1:-1:-1;;;;;5907:2:1;5899:6;5896:14;5893:34;;;5923:1;5920;5913:12;5893:34;5961:6;5950:9;5946:22;5936:32;;6006:7;5999:4;5995:2;5991:13;5987:27;5977:55;;6028:1;6025;6018:12;5977:55;6064:2;6051:16;6086:4;6109:2;6105;6102:10;6099:36;;;6115:18;;:::i;:::-;6161:2;6158:1;6154:10;6144:20;;6184:28;6208:2;6204;6200:11;6184:28;:::i;:::-;6246:15;;;6316:11;;;6312:20;;;6277:12;;;;6344:19;;;6341:39;;;6376:1;6373;6366:12;6341:39;6400:11;;;;6420:148;6436:6;6431:3;6428:15;6420:148;;;6502:23;6521:3;6502:23;:::i;:::-;6490:36;;6453:12;;;;6546;;;;6420:148;;;6587:5;6624:18;;;;6611:32;;-1:-1:-1;;;;;;;5627:1022:1:o;6654:260::-;6722:6;6730;6783:2;6771:9;6762:7;6758:23;6754:32;6751:52;;;6799:1;6796;6789:12;6751:52;6822:29;6841:9;6822:29;:::i;:::-;6812:39;;6870:38;6904:2;6893:9;6889:18;6870:38;:::i;:::-;6860:48;;6654:260;;;;;:::o;6919:380::-;6998:1;6994:12;;;;7041;;;7062:61;;7116:4;7108:6;7104:17;7094:27;;7062:61;7169:2;7161:6;7158:14;7138:18;7135:38;7132:161;;7215:10;7210:3;7206:20;7203:1;7196:31;7250:4;7247:1;7240:15;7278:4;7275:1;7268:15;7132:161;;6919:380;;;:::o;7304:356::-;7506:2;7488:21;;;7525:18;;;7518:30;7584:34;7579:2;7564:18;;7557:62;7651:2;7636:18;;7304:356::o;8365:127::-;8426:10;8421:3;8417:20;8414:1;8407:31;8457:4;8454:1;8447:15;8481:4;8478:1;8471:15;8497:128;8537:3;8568:1;8564:6;8561:1;8558:13;8555:39;;;8574:18;;:::i;:::-;-1:-1:-1;8610:9:1;;8497:128::o;8977:168::-;9017:7;9083:1;9079;9075:6;9071:14;9068:1;9065:21;9060:1;9053:9;9046:17;9042:45;9039:71;;;9090:18;;:::i;:::-;-1:-1:-1;9130:9:1;;8977:168::o;9495:127::-;9556:10;9551:3;9547:20;9544:1;9537:31;9587:4;9584:1;9577:15;9611:4;9608:1;9601:15;9627:135;9666:3;9687:17;;;9684:43;;9707:18;;:::i;:::-;-1:-1:-1;9754:1:1;9743:13;;9627:135::o;10183:470::-;10362:3;10400:6;10394:13;10416:53;10462:6;10457:3;10450:4;10442:6;10438:17;10416:53;:::i;:::-;10532:13;;10491:16;;;;10554:57;10532:13;10491:16;10588:4;10576:17;;10554:57;:::i;:::-;10627:20;;10183:470;-1:-1:-1;;;;10183:470:1:o;11065:489::-;-1:-1:-1;;;;;11334:15:1;;;11316:34;;11386:15;;11381:2;11366:18;;11359:43;11433:2;11418:18;;11411:34;;;11481:3;11476:2;11461:18;;11454:31;;;11259:4;;11502:46;;11528:19;;11520:6;11502:46;:::i;:::-;11494:54;11065:489;-1:-1:-1;;;;;;11065:489:1:o;11559:249::-;11628:6;11681:2;11669:9;11660:7;11656:23;11652:32;11649:52;;;11697:1;11694;11687:12;11649:52;11729:9;11723:16;11748:30;11772:5;11748:30;:::i;11813:127::-;11874:10;11869:3;11865:20;11862:1;11855:31;11905:4;11902:1;11895:15;11929:4;11926:1;11919:15;11945:120;11985:1;12011;12001:35;;12016:18;;:::i;:::-;-1:-1:-1;12050:9:1;;11945:120::o;12070:125::-;12110:4;12138:1;12135;12132:8;12129:34;;;12143:18;;:::i;:::-;-1:-1:-1;12180:9:1;;12070:125::o;12200:112::-;12232:1;12258;12248:35;;12263:18;;:::i;:::-;-1:-1:-1;12297:9:1;;12200:112::o

Swarm Source

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