ETH Price: $2,283.98 (-3.13%)

Token

Undead Baby Ape Club (UBAC)
 

Overview

Max Total Supply

412 UBAC

Holders

104

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vv23-ct.eth
Balance
1 UBAC
0x62b0184F1C852601Bf57dF64EBa15D54F1c2dB2B
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:
UndeadBabyApeClub

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// 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: @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/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @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/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/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @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/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: ubac.sol



pragma solidity >=0.7.0 <0.9.0;



contract UndeadBabyApeClub is ERC721Enumerable, Ownable {

  using Strings for uint256;
  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  address[] public WW;
  bool public RevealedActive = false;
  bool public isPauseMode = false;
  bool public isPresalesMode = true;
  uint256 public PriceNFT = 0.05 ether;
  uint256 public MaxCollection = 5000;

  constructor(string memory _initBaseURI,string memory _initNotRevealedUri)
    ERC721("Undead Baby Ape Club", "UBAC") 
    {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
  {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
    if(RevealedActive == false) {
        return notRevealedUri;
    }

    string memory currentBaseURI = _baseURI();
      return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }
  
   function isWW(address _user) public view returns (bool) {
    for (uint i = 0; i < WW.length; i++) {
      if (WW[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);

    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function mint(uint256 _mintAmount) public payable {
    require(!isPauseMode, "Pause Mode ON");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "Select 1 NFT");
    require(supply + _mintAmount <= MaxCollection, "Sold Out");   
   if (msg.sender != owner()) {
        if (isPresalesMode == true) {
            require(isWW(msg.sender), "Wallet not Whitelisted");
            require(msg.value >= PriceNFT * _mintAmount, "PS: Balance Insufficient");
        }
        else {
            require(!isPresalesMode, "Presales ON");
            require(msg.value >= PriceNFT * _mintAmount, "MS: Balance Insufficient"); 
        }
    }
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

  function TurnRevealMode() public onlyOwner {
    RevealedActive = true;
  }

  function Airdrop(address _to, uint256 _mintAmount) external onlyOwner() {
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= MaxCollection, "Cant airdrop more NFTs" );
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, supply + i);
        }
  }

  function addWhitelistedWallets(address[] calldata _users) public onlyOwner {
    delete WW;
    WW = _users;
  }

  function SetisPauseMode(bool _state) public onlyOwner {
    isPauseMode = _state;
  }

  function SetisPresalesMode(bool _state) public onlyOwner {
    isPresalesMode = _state;
  }

  function setPriceNFT(uint256 _newPriceNFT) public onlyOwner {
    PriceNFT = _newPriceNFT;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }
 
  function withdraw() public payable onlyOwner {
    (bool ow, ) = payable(owner()).call{value: address(this).balance}("");
    require(ow);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MaxCollection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PriceNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RevealedActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"SetisPauseMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"SetisPresalesMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TurnRevealMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"WW","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addWhitelistedWallets","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPauseMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresalesMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWW","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":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPriceNFT","type":"uint256"}],"name":"setPriceNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000246565b50600f805462ffffff19166201000017905566b1a2bc2ec500006010556113886011553480156200005857600080fd5b5060405162002d8238038062002d828339810160408190526200007b91620003b9565b604080518082018252601481527f556e6465616420426162792041706520436c75620000000000000000000000006020808301918252835180850190945260048452635542414360e01b908401528151919291620000dc9160009162000246565b508051620000f290600190602084019062000246565b5050506200010f620001096200012d60201b60201c565b62000131565b6200011a8262000183565b6200012581620001eb565b505062000460565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001d25760405162461bcd60e51b8152602060048201819052602482015260008051602062002d6283398151915260448201526064015b60405180910390fd5b8051620001e790600b90602084019062000246565b5050565b600a546001600160a01b03163314620002365760405162461bcd60e51b8152602060048201819052602482015260008051602062002d628339815191526044820152606401620001c9565b8051620001e790600d9060208401905b828054620002549062000423565b90600052602060002090601f016020900481019282620002785760008555620002c3565b82601f106200029357805160ff1916838001178555620002c3565b82800160010185558215620002c3579182015b82811115620002c3578251825591602001919060010190620002a6565b50620002d1929150620002d5565b5090565b5b80821115620002d15760008155600101620002d6565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200031457600080fd5b81516001600160401b0380821115620003315762000331620002ec565b604051601f8301601f19908116603f011681019082821181831017156200035c576200035c620002ec565b816040528381526020925086838588010111156200037957600080fd5b600091505b838210156200039d57858201830151818301840152908201906200037e565b83821115620003af5760008385830101525b9695505050505050565b60008060408385031215620003cd57600080fd5b82516001600160401b0380821115620003e557600080fd5b620003f38683870162000302565b935060208501519150808211156200040a57600080fd5b50620004198582860162000302565b9150509250929050565b600181811c908216806200043857607f821691505b602082108114156200045a57634e487b7160e01b600052602260045260246000fd5b50919050565b6128f280620004706000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063bc0ac746116100ab578063dad8d8ca1161006f578063dad8d8ca14610660578063e793c9601461067a578063e985e9c514610699578063f2c4ce1e146106e2578063f2fde38b1461070257600080fd5b8063bc0ac746146105e0578063bf9bbad2146105f5578063c66828621461060b578063c87b56dd14610620578063d95d75b11461064057600080fd5b80638da5cb5b116100f25780638da5cb5b1461055a57806395d89b4114610578578063a0712d681461058d578063a22cb465146105a0578063b88d4fde146105c057600080fd5b806370a08231146104c5578063715018a6146104e5578063761ef7b6146104fa578063899b97201461051a5780638c32c5681461053a57600080fd5b806328898c9a116101bc5780634f6ccce7116101805780634f6ccce71461043a57806355f804b31461045a5780635d4ddb0d1461047a5780636352211e146104905780636c0360eb146104b057600080fd5b806328898c9a146103a55780632f745c59146103c55780633ccfd60b146103e557806342842e0e146103ed578063438b63001461040d57600080fd5b80630fdcab57116102035780630fdcab5714610306578063109e49181461032657806318160ddd146103465780632386cc0c1461036557806323b872dd1461038557600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063081c8c44146102cf578063095ea7b3146102e4575b600080fd5b34801561024c57600080fd5b5061026061025b3660046121d2565b610722565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61074d565b60405161026c9190612247565b3480156102a357600080fd5b506102b76102b236600461225a565b6107df565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b5061028a610879565b3480156102f057600080fd5b506103046102ff36600461228f565b610907565b005b34801561031257600080fd5b506102b761032136600461225a565b610a1d565b34801561033257600080fd5b50600f546102609062010000900460ff1681565b34801561035257600080fd5b506008545b60405190815260200161026c565b34801561037157600080fd5b506103046103803660046122b9565b610a47565b34801561039157600080fd5b506103046103a036600461232e565b610a89565b3480156103b157600080fd5b506102606103c036600461236a565b610aba565b3480156103d157600080fd5b506103576103e036600461228f565b610b24565b610304610bba565b3480156103f957600080fd5b5061030461040836600461232e565b610c58565b34801561041957600080fd5b5061042d61042836600461236a565b610c73565b60405161026c9190612385565b34801561044657600080fd5b5061035761045536600461225a565b610d15565b34801561046657600080fd5b50610304610475366004612455565b610da8565b34801561048657600080fd5b5061035760115481565b34801561049c57600080fd5b506102b76104ab36600461225a565b610de9565b3480156104bc57600080fd5b5061028a610e60565b3480156104d157600080fd5b506103576104e036600461236a565b610e6d565b3480156104f157600080fd5b50610304610ef4565b34801561050657600080fd5b5061030461051536600461225a565b610f2a565b34801561052657600080fd5b506103046105353660046124ae565b610f59565b34801561054657600080fd5b5061030461055536600461228f565b610f9d565b34801561056657600080fd5b50600a546001600160a01b03166102b7565b34801561058457600080fd5b5061028a61105e565b61030461059b36600461225a565b61106d565b3480156105ac57600080fd5b506103046105bb3660046124c9565b6112ed565b3480156105cc57600080fd5b506103046105db3660046124fc565b6112f8565b3480156105ec57600080fd5b5061030461132a565b34801561060157600080fd5b5061035760105481565b34801561061757600080fd5b5061028a611363565b34801561062c57600080fd5b5061028a61063b36600461225a565b611370565b34801561064c57600080fd5b5061030461065b3660046124ae565b6114ea565b34801561066c57600080fd5b50600f546102609060ff1681565b34801561068657600080fd5b50600f5461026090610100900460ff1681565b3480156106a557600080fd5b506102606106b4366004612578565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106ee57600080fd5b506103046106fd366004612455565b611530565b34801561070e57600080fd5b5061030461071d36600461236a565b61156d565b60006001600160e01b0319821663780e9d6360e01b1480610747575061074782611605565b92915050565b60606000805461075c906125a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610788906125a2565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661085d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600d8054610886906125a2565b80601f01602080910402602001604051908101604052809291908181526020018280546108b2906125a2565b80156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b505050505081565b600061091282610de9565b9050806001600160a01b0316836001600160a01b031614156109805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610854565b336001600160a01b038216148061099c575061099c81336106b4565b610a0e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610854565b610a188383611655565b505050565b600e8181548110610a2d57600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b03163314610a715760405162461bcd60e51b8152600401610854906125dd565b610a7d600e60006120b2565b610a18600e83836120d0565b610a9333826116c3565b610aaf5760405162461bcd60e51b815260040161085490612612565b610a188383836117ba565b6000805b600e54811015610b1b57826001600160a01b0316600e8281548110610ae557610ae5612663565b6000918252602090912001546001600160a01b03161415610b095750600192915050565b80610b138161268f565b915050610abe565b50600092915050565b6000610b2f83610e6d565b8210610b915760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610854565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610be45760405162461bcd60e51b8152600401610854906125dd565b6000610bf8600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c42576040519150601f19603f3d011682016040523d82523d6000602084013e610c47565b606091505b5050905080610c5557600080fd5b50565b610a18838383604051806020016040528060008152506112f8565b60606000610c8083610e6d565b905060008167ffffffffffffffff811115610c9d57610c9d6123c9565b604051908082528060200260200182016040528015610cc6578160200160208202803683370190505b50905060005b82811015610d0d57610cde8582610b24565b828281518110610cf057610cf0612663565b602090810291909101015280610d058161268f565b915050610ccc565b509392505050565b6000610d2060085490565b8210610d835760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610854565b60088281548110610d9657610d96612663565b90600052602060002001549050919050565b600a546001600160a01b03163314610dd25760405162461bcd60e51b8152600401610854906125dd565b8051610de590600b906020840190612133565b5050565b6000818152600260205260408120546001600160a01b0316806107475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610854565b600b8054610886906125a2565b60006001600160a01b038216610ed85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610854565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f1e5760405162461bcd60e51b8152600401610854906125dd565b610f286000611961565b565b600a546001600160a01b03163314610f545760405162461bcd60e51b8152600401610854906125dd565b601055565b600a546001600160a01b03163314610f835760405162461bcd60e51b8152600401610854906125dd565b600f80549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610fc75760405162461bcd60e51b8152600401610854906125dd565b6000610fd260085490565b601154909150610fe283836126aa565b11156110295760405162461bcd60e51b815260206004820152601660248201527543616e742061697264726f70206d6f7265204e46547360501b6044820152606401610854565b60015b828111611058576110468461104183856126aa565b6119b3565b806110508161268f565b91505061102c565b50505050565b60606001805461075c906125a2565b600f54610100900460ff16156110b55760405162461bcd60e51b815260206004820152600d60248201526c2830bab9b29026b7b2329027a760991b6044820152606401610854565b60006110c060085490565b9050600082116111015760405162461bcd60e51b815260206004820152600c60248201526b14d95b1958dd080c4813919560a21b6044820152606401610854565b60115461110e83836126aa565b11156111475760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610854565b600a546001600160a01b031633146112c357600f5462010000900460ff1615156001141561121f5761117833610aba565b6111bd5760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d081b9bdd0815da1a5d195b1a5cdd195960521b6044820152606401610854565b816010546111cb91906126c2565b34101561121a5760405162461bcd60e51b815260206004820152601860248201527f50533a2042616c616e636520496e73756666696369656e7400000000000000006044820152606401610854565b6112c3565b600f5462010000900460ff16156112665760405162461bcd60e51b815260206004820152600b60248201526a283932b9b0b632b99027a760a91b6044820152606401610854565b8160105461127491906126c2565b3410156112c35760405162461bcd60e51b815260206004820152601860248201527f4d533a2042616c616e636520496e73756666696369656e7400000000000000006044820152606401610854565b60015b828111610a18576112db3361104183856126aa565b806112e58161268f565b9150506112c6565b610de53383836119cd565b61130233836116c3565b61131e5760405162461bcd60e51b815260040161085490612612565b61105884848484611a9c565b600a546001600160a01b031633146113545760405162461bcd60e51b8152600401610854906125dd565b600f805460ff19166001179055565b600c8054610886906125a2565b6000818152600260205260409020546060906001600160a01b03166113ef5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610854565b600f5460ff1661148b57600d8054611406906125a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611432906125a2565b801561147f5780601f106114545761010080835404028352916020019161147f565b820191906000526020600020905b81548152906001019060200180831161146257829003601f168201915b50505050509050919050565b6000611495611acf565b905060008151116114b557604051806020016040528060008152506114e3565b806114bf84611ade565b600c6040516020016114d3939291906126e1565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115145760405162461bcd60e51b8152600401610854906125dd565b600f8054911515620100000262ff000019909216919091179055565b600a546001600160a01b0316331461155a5760405162461bcd60e51b8152600401610854906125dd565b8051610de590600d906020840190612133565b600a546001600160a01b031633146115975760405162461bcd60e51b8152600401610854906125dd565b6001600160a01b0381166115fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610854565b610c5581611961565b60006001600160e01b031982166380ac58cd60e01b148061163657506001600160e01b03198216635b5e139f60e01b145b8061074757506301ffc9a760e01b6001600160e01b0319831614610747565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061168a82610de9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661173c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610854565b600061174783610de9565b9050806001600160a01b0316846001600160a01b031614806117825750836001600160a01b0316611777846107df565b6001600160a01b0316145b806117b257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117cd82610de9565b6001600160a01b0316146118315760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610854565b6001600160a01b0382166118935760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610854565b61189e838383611bdc565b6118a9600082611655565b6001600160a01b03831660009081526003602052604081208054600192906118d29084906127a5565b90915550506001600160a01b03821660009081526003602052604081208054600192906119009084906126aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610de5828260405180602001604052806000815250611c94565b816001600160a01b0316836001600160a01b03161415611a2f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610854565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611aa78484846117ba565b611ab384848484611cc7565b6110585760405162461bcd60e51b8152600401610854906127bc565b6060600b805461075c906125a2565b606081611b025750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b2c5780611b168161268f565b9150611b259050600a83612824565b9150611b06565b60008167ffffffffffffffff811115611b4757611b476123c9565b6040519080825280601f01601f191660200182016040528015611b71576020820181803683370190505b5090505b84156117b257611b866001836127a5565b9150611b93600a86612838565b611b9e9060306126aa565b60f81b818381518110611bb357611bb3612663565b60200101906001600160f81b031916908160001a905350611bd5600a86612824565b9450611b75565b6001600160a01b038316611c3757611c3281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c5a565b816001600160a01b0316836001600160a01b031614611c5a57611c5a8382611dd4565b6001600160a01b038216611c7157610a1881611e71565b826001600160a01b0316826001600160a01b031614610a1857610a188282611f20565b611c9e8383611f64565b611cab6000848484611cc7565b610a185760405162461bcd60e51b8152600401610854906127bc565b60006001600160a01b0384163b15611dc957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d0b90339089908890889060040161284c565b602060405180830381600087803b158015611d2557600080fd5b505af1925050508015611d55575060408051601f3d908101601f19168201909252611d5291810190612889565b60015b611daf573d808015611d83576040519150601f19603f3d011682016040523d82523d6000602084013e611d88565b606091505b508051611da75760405162461bcd60e51b8152600401610854906127bc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117b2565b506001949350505050565b60006001611de184610e6d565b611deb91906127a5565b600083815260076020526040902054909150808214611e3e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e83906001906127a5565b60008381526009602052604081205460088054939450909284908110611eab57611eab612663565b906000526020600020015490508060088381548110611ecc57611ecc612663565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f0457611f046128a6565b6001900381819060005260206000200160009055905550505050565b6000611f2b83610e6d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611fba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610854565b6000818152600260205260409020546001600160a01b03161561201f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610854565b61202b60008383611bdc565b6001600160a01b03821660009081526003602052604081208054600192906120549084906126aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610c5591906121a7565b828054828255906000526020600020908101928215612123579160200282015b828111156121235781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906120f0565b5061212f9291506121a7565b5090565b82805461213f906125a2565b90600052602060002090601f0160209004810192826121615760008555612123565b82601f1061217a57805160ff1916838001178555612123565b82800160010185558215612123579182015b8281111561212357825182559160200191906001019061218c565b5b8082111561212f57600081556001016121a8565b6001600160e01b031981168114610c5557600080fd5b6000602082840312156121e457600080fd5b81356114e3816121bc565b60005b8381101561220a5781810151838201526020016121f2565b838111156110585750506000910152565b600081518084526122338160208601602086016121ef565b601f01601f19169290920160200192915050565b6020815260006114e3602083018461221b565b60006020828403121561226c57600080fd5b5035919050565b80356001600160a01b038116811461228a57600080fd5b919050565b600080604083850312156122a257600080fd5b6122ab83612273565b946020939093013593505050565b600080602083850312156122cc57600080fd5b823567ffffffffffffffff808211156122e457600080fd5b818501915085601f8301126122f857600080fd5b81358181111561230757600080fd5b8660208260051b850101111561231c57600080fd5b60209290920196919550909350505050565b60008060006060848603121561234357600080fd5b61234c84612273565b925061235a60208501612273565b9150604084013590509250925092565b60006020828403121561237c57600080fd5b6114e382612273565b6020808252825182820181905260009190848201906040850190845b818110156123bd578351835292840192918401916001016123a1565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123fa576123fa6123c9565b604051601f8501601f19908116603f01168101908282118183101715612422576124226123c9565b8160405280935085815286868601111561243b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561246757600080fd5b813567ffffffffffffffff81111561247e57600080fd5b8201601f8101841361248f57600080fd5b6117b2848235602084016123df565b8035801515811461228a57600080fd5b6000602082840312156124c057600080fd5b6114e38261249e565b600080604083850312156124dc57600080fd5b6124e583612273565b91506124f36020840161249e565b90509250929050565b6000806000806080858703121561251257600080fd5b61251b85612273565b935061252960208601612273565b925060408501359150606085013567ffffffffffffffff81111561254c57600080fd5b8501601f8101871361255d57600080fd5b61256c878235602084016123df565b91505092959194509250565b6000806040838503121561258b57600080fd5b61259483612273565b91506124f360208401612273565b600181811c908216806125b657607f821691505b602082108114156125d757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156126a3576126a3612679565b5060010190565b600082198211156126bd576126bd612679565b500190565b60008160001904831182151516156126dc576126dc612679565b500290565b6000845160206126f48285838a016121ef565b8551918401916127078184848a016121ef565b8554920191600090600181811c908083168061272457607f831692505b85831081141561274257634e487b7160e01b85526022600452602485fd5b808015612756576001811461276757612794565b60ff19851688528388019550612794565b60008b81526020902060005b8581101561278c5781548a820152908401908801612773565b505083880195505b50939b9a5050505050505050505050565b6000828210156127b7576127b7612679565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826128335761283361280e565b500490565b6000826128475761284761280e565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061287f9083018461221b565b9695505050505050565b60006020828403121561289b57600080fd5b81516114e3816121bc565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b7eb7cbf780ef77a44133c61c435e78ca3a72c45fdc9c6fa22a5eb26d3eb32ff64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51466f727358523844424b79393131683932566f416479387865484e6f5235686f72445a754e31674c6f57722f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d62707153484d79653855336335724c557876485341636d733357797359526f68526a767a794c626e666673670000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063bc0ac746116100ab578063dad8d8ca1161006f578063dad8d8ca14610660578063e793c9601461067a578063e985e9c514610699578063f2c4ce1e146106e2578063f2fde38b1461070257600080fd5b8063bc0ac746146105e0578063bf9bbad2146105f5578063c66828621461060b578063c87b56dd14610620578063d95d75b11461064057600080fd5b80638da5cb5b116100f25780638da5cb5b1461055a57806395d89b4114610578578063a0712d681461058d578063a22cb465146105a0578063b88d4fde146105c057600080fd5b806370a08231146104c5578063715018a6146104e5578063761ef7b6146104fa578063899b97201461051a5780638c32c5681461053a57600080fd5b806328898c9a116101bc5780634f6ccce7116101805780634f6ccce71461043a57806355f804b31461045a5780635d4ddb0d1461047a5780636352211e146104905780636c0360eb146104b057600080fd5b806328898c9a146103a55780632f745c59146103c55780633ccfd60b146103e557806342842e0e146103ed578063438b63001461040d57600080fd5b80630fdcab57116102035780630fdcab5714610306578063109e49181461032657806318160ddd146103465780632386cc0c1461036557806323b872dd1461038557600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063081c8c44146102cf578063095ea7b3146102e4575b600080fd5b34801561024c57600080fd5b5061026061025b3660046121d2565b610722565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61074d565b60405161026c9190612247565b3480156102a357600080fd5b506102b76102b236600461225a565b6107df565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b5061028a610879565b3480156102f057600080fd5b506103046102ff36600461228f565b610907565b005b34801561031257600080fd5b506102b761032136600461225a565b610a1d565b34801561033257600080fd5b50600f546102609062010000900460ff1681565b34801561035257600080fd5b506008545b60405190815260200161026c565b34801561037157600080fd5b506103046103803660046122b9565b610a47565b34801561039157600080fd5b506103046103a036600461232e565b610a89565b3480156103b157600080fd5b506102606103c036600461236a565b610aba565b3480156103d157600080fd5b506103576103e036600461228f565b610b24565b610304610bba565b3480156103f957600080fd5b5061030461040836600461232e565b610c58565b34801561041957600080fd5b5061042d61042836600461236a565b610c73565b60405161026c9190612385565b34801561044657600080fd5b5061035761045536600461225a565b610d15565b34801561046657600080fd5b50610304610475366004612455565b610da8565b34801561048657600080fd5b5061035760115481565b34801561049c57600080fd5b506102b76104ab36600461225a565b610de9565b3480156104bc57600080fd5b5061028a610e60565b3480156104d157600080fd5b506103576104e036600461236a565b610e6d565b3480156104f157600080fd5b50610304610ef4565b34801561050657600080fd5b5061030461051536600461225a565b610f2a565b34801561052657600080fd5b506103046105353660046124ae565b610f59565b34801561054657600080fd5b5061030461055536600461228f565b610f9d565b34801561056657600080fd5b50600a546001600160a01b03166102b7565b34801561058457600080fd5b5061028a61105e565b61030461059b36600461225a565b61106d565b3480156105ac57600080fd5b506103046105bb3660046124c9565b6112ed565b3480156105cc57600080fd5b506103046105db3660046124fc565b6112f8565b3480156105ec57600080fd5b5061030461132a565b34801561060157600080fd5b5061035760105481565b34801561061757600080fd5b5061028a611363565b34801561062c57600080fd5b5061028a61063b36600461225a565b611370565b34801561064c57600080fd5b5061030461065b3660046124ae565b6114ea565b34801561066c57600080fd5b50600f546102609060ff1681565b34801561068657600080fd5b50600f5461026090610100900460ff1681565b3480156106a557600080fd5b506102606106b4366004612578565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106ee57600080fd5b506103046106fd366004612455565b611530565b34801561070e57600080fd5b5061030461071d36600461236a565b61156d565b60006001600160e01b0319821663780e9d6360e01b1480610747575061074782611605565b92915050565b60606000805461075c906125a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610788906125a2565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661085d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600d8054610886906125a2565b80601f01602080910402602001604051908101604052809291908181526020018280546108b2906125a2565b80156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b505050505081565b600061091282610de9565b9050806001600160a01b0316836001600160a01b031614156109805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610854565b336001600160a01b038216148061099c575061099c81336106b4565b610a0e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610854565b610a188383611655565b505050565b600e8181548110610a2d57600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b03163314610a715760405162461bcd60e51b8152600401610854906125dd565b610a7d600e60006120b2565b610a18600e83836120d0565b610a9333826116c3565b610aaf5760405162461bcd60e51b815260040161085490612612565b610a188383836117ba565b6000805b600e54811015610b1b57826001600160a01b0316600e8281548110610ae557610ae5612663565b6000918252602090912001546001600160a01b03161415610b095750600192915050565b80610b138161268f565b915050610abe565b50600092915050565b6000610b2f83610e6d565b8210610b915760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610854565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610be45760405162461bcd60e51b8152600401610854906125dd565b6000610bf8600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c42576040519150601f19603f3d011682016040523d82523d6000602084013e610c47565b606091505b5050905080610c5557600080fd5b50565b610a18838383604051806020016040528060008152506112f8565b60606000610c8083610e6d565b905060008167ffffffffffffffff811115610c9d57610c9d6123c9565b604051908082528060200260200182016040528015610cc6578160200160208202803683370190505b50905060005b82811015610d0d57610cde8582610b24565b828281518110610cf057610cf0612663565b602090810291909101015280610d058161268f565b915050610ccc565b509392505050565b6000610d2060085490565b8210610d835760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610854565b60088281548110610d9657610d96612663565b90600052602060002001549050919050565b600a546001600160a01b03163314610dd25760405162461bcd60e51b8152600401610854906125dd565b8051610de590600b906020840190612133565b5050565b6000818152600260205260408120546001600160a01b0316806107475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610854565b600b8054610886906125a2565b60006001600160a01b038216610ed85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610854565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f1e5760405162461bcd60e51b8152600401610854906125dd565b610f286000611961565b565b600a546001600160a01b03163314610f545760405162461bcd60e51b8152600401610854906125dd565b601055565b600a546001600160a01b03163314610f835760405162461bcd60e51b8152600401610854906125dd565b600f80549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314610fc75760405162461bcd60e51b8152600401610854906125dd565b6000610fd260085490565b601154909150610fe283836126aa565b11156110295760405162461bcd60e51b815260206004820152601660248201527543616e742061697264726f70206d6f7265204e46547360501b6044820152606401610854565b60015b828111611058576110468461104183856126aa565b6119b3565b806110508161268f565b91505061102c565b50505050565b60606001805461075c906125a2565b600f54610100900460ff16156110b55760405162461bcd60e51b815260206004820152600d60248201526c2830bab9b29026b7b2329027a760991b6044820152606401610854565b60006110c060085490565b9050600082116111015760405162461bcd60e51b815260206004820152600c60248201526b14d95b1958dd080c4813919560a21b6044820152606401610854565b60115461110e83836126aa565b11156111475760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610854565b600a546001600160a01b031633146112c357600f5462010000900460ff1615156001141561121f5761117833610aba565b6111bd5760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d081b9bdd0815da1a5d195b1a5cdd195960521b6044820152606401610854565b816010546111cb91906126c2565b34101561121a5760405162461bcd60e51b815260206004820152601860248201527f50533a2042616c616e636520496e73756666696369656e7400000000000000006044820152606401610854565b6112c3565b600f5462010000900460ff16156112665760405162461bcd60e51b815260206004820152600b60248201526a283932b9b0b632b99027a760a91b6044820152606401610854565b8160105461127491906126c2565b3410156112c35760405162461bcd60e51b815260206004820152601860248201527f4d533a2042616c616e636520496e73756666696369656e7400000000000000006044820152606401610854565b60015b828111610a18576112db3361104183856126aa565b806112e58161268f565b9150506112c6565b610de53383836119cd565b61130233836116c3565b61131e5760405162461bcd60e51b815260040161085490612612565b61105884848484611a9c565b600a546001600160a01b031633146113545760405162461bcd60e51b8152600401610854906125dd565b600f805460ff19166001179055565b600c8054610886906125a2565b6000818152600260205260409020546060906001600160a01b03166113ef5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610854565b600f5460ff1661148b57600d8054611406906125a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611432906125a2565b801561147f5780601f106114545761010080835404028352916020019161147f565b820191906000526020600020905b81548152906001019060200180831161146257829003601f168201915b50505050509050919050565b6000611495611acf565b905060008151116114b557604051806020016040528060008152506114e3565b806114bf84611ade565b600c6040516020016114d3939291906126e1565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115145760405162461bcd60e51b8152600401610854906125dd565b600f8054911515620100000262ff000019909216919091179055565b600a546001600160a01b0316331461155a5760405162461bcd60e51b8152600401610854906125dd565b8051610de590600d906020840190612133565b600a546001600160a01b031633146115975760405162461bcd60e51b8152600401610854906125dd565b6001600160a01b0381166115fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610854565b610c5581611961565b60006001600160e01b031982166380ac58cd60e01b148061163657506001600160e01b03198216635b5e139f60e01b145b8061074757506301ffc9a760e01b6001600160e01b0319831614610747565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061168a82610de9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661173c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610854565b600061174783610de9565b9050806001600160a01b0316846001600160a01b031614806117825750836001600160a01b0316611777846107df565b6001600160a01b0316145b806117b257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117cd82610de9565b6001600160a01b0316146118315760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610854565b6001600160a01b0382166118935760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610854565b61189e838383611bdc565b6118a9600082611655565b6001600160a01b03831660009081526003602052604081208054600192906118d29084906127a5565b90915550506001600160a01b03821660009081526003602052604081208054600192906119009084906126aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610de5828260405180602001604052806000815250611c94565b816001600160a01b0316836001600160a01b03161415611a2f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610854565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611aa78484846117ba565b611ab384848484611cc7565b6110585760405162461bcd60e51b8152600401610854906127bc565b6060600b805461075c906125a2565b606081611b025750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b2c5780611b168161268f565b9150611b259050600a83612824565b9150611b06565b60008167ffffffffffffffff811115611b4757611b476123c9565b6040519080825280601f01601f191660200182016040528015611b71576020820181803683370190505b5090505b84156117b257611b866001836127a5565b9150611b93600a86612838565b611b9e9060306126aa565b60f81b818381518110611bb357611bb3612663565b60200101906001600160f81b031916908160001a905350611bd5600a86612824565b9450611b75565b6001600160a01b038316611c3757611c3281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c5a565b816001600160a01b0316836001600160a01b031614611c5a57611c5a8382611dd4565b6001600160a01b038216611c7157610a1881611e71565b826001600160a01b0316826001600160a01b031614610a1857610a188282611f20565b611c9e8383611f64565b611cab6000848484611cc7565b610a185760405162461bcd60e51b8152600401610854906127bc565b60006001600160a01b0384163b15611dc957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d0b90339089908890889060040161284c565b602060405180830381600087803b158015611d2557600080fd5b505af1925050508015611d55575060408051601f3d908101601f19168201909252611d5291810190612889565b60015b611daf573d808015611d83576040519150601f19603f3d011682016040523d82523d6000602084013e611d88565b606091505b508051611da75760405162461bcd60e51b8152600401610854906127bc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117b2565b506001949350505050565b60006001611de184610e6d565b611deb91906127a5565b600083815260076020526040902054909150808214611e3e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e83906001906127a5565b60008381526009602052604081205460088054939450909284908110611eab57611eab612663565b906000526020600020015490508060088381548110611ecc57611ecc612663565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f0457611f046128a6565b6001900381819060005260206000200160009055905550505050565b6000611f2b83610e6d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611fba5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610854565b6000818152600260205260409020546001600160a01b03161561201f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610854565b61202b60008383611bdc565b6001600160a01b03821660009081526003602052604081208054600192906120549084906126aa565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610c5591906121a7565b828054828255906000526020600020908101928215612123579160200282015b828111156121235781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906120f0565b5061212f9291506121a7565b5090565b82805461213f906125a2565b90600052602060002090601f0160209004810192826121615760008555612123565b82601f1061217a57805160ff1916838001178555612123565b82800160010185558215612123579182015b8281111561212357825182559160200191906001019061218c565b5b8082111561212f57600081556001016121a8565b6001600160e01b031981168114610c5557600080fd5b6000602082840312156121e457600080fd5b81356114e3816121bc565b60005b8381101561220a5781810151838201526020016121f2565b838111156110585750506000910152565b600081518084526122338160208601602086016121ef565b601f01601f19169290920160200192915050565b6020815260006114e3602083018461221b565b60006020828403121561226c57600080fd5b5035919050565b80356001600160a01b038116811461228a57600080fd5b919050565b600080604083850312156122a257600080fd5b6122ab83612273565b946020939093013593505050565b600080602083850312156122cc57600080fd5b823567ffffffffffffffff808211156122e457600080fd5b818501915085601f8301126122f857600080fd5b81358181111561230757600080fd5b8660208260051b850101111561231c57600080fd5b60209290920196919550909350505050565b60008060006060848603121561234357600080fd5b61234c84612273565b925061235a60208501612273565b9150604084013590509250925092565b60006020828403121561237c57600080fd5b6114e382612273565b6020808252825182820181905260009190848201906040850190845b818110156123bd578351835292840192918401916001016123a1565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123fa576123fa6123c9565b604051601f8501601f19908116603f01168101908282118183101715612422576124226123c9565b8160405280935085815286868601111561243b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561246757600080fd5b813567ffffffffffffffff81111561247e57600080fd5b8201601f8101841361248f57600080fd5b6117b2848235602084016123df565b8035801515811461228a57600080fd5b6000602082840312156124c057600080fd5b6114e38261249e565b600080604083850312156124dc57600080fd5b6124e583612273565b91506124f36020840161249e565b90509250929050565b6000806000806080858703121561251257600080fd5b61251b85612273565b935061252960208601612273565b925060408501359150606085013567ffffffffffffffff81111561254c57600080fd5b8501601f8101871361255d57600080fd5b61256c878235602084016123df565b91505092959194509250565b6000806040838503121561258b57600080fd5b61259483612273565b91506124f360208401612273565b600181811c908216806125b657607f821691505b602082108114156125d757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156126a3576126a3612679565b5060010190565b600082198211156126bd576126bd612679565b500190565b60008160001904831182151516156126dc576126dc612679565b500290565b6000845160206126f48285838a016121ef565b8551918401916127078184848a016121ef565b8554920191600090600181811c908083168061272457607f831692505b85831081141561274257634e487b7160e01b85526022600452602485fd5b808015612756576001811461276757612794565b60ff19851688528388019550612794565b60008b81526020902060005b8581101561278c5781548a820152908401908801612773565b505083880195505b50939b9a5050505050505050505050565b6000828210156127b7576127b7612679565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826128335761283361280e565b500490565b6000826128475761284761280e565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061287f9083018461221b565b9695505050505050565b60006020828403121561289b57600080fd5b81516114e3816121bc565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b7eb7cbf780ef77a44133c61c435e78ca3a72c45fdc9c6fa22a5eb26d3eb32ff64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51466f727358523844424b79393131683932566f416479387865484e6f5235686f72445a754e31674c6f57722f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d62707153484d79653855336335724c557876485341636d733357797359526f68526a767a794c626e666673670000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmQForsXR8DBKy911h92VoAdy8xeHNoR5horDZuN1gLoWr/
Arg [1] : _initNotRevealedUri (string): ipfs://QmbpqSHMye8U3c5rLUxvHSAcms3WysYRohRjvzyLbnffsg

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d51466f727358523844424b79393131683932566f416479
Arg [4] : 387865484e6f5235686f72445a754e31674c6f57722f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [6] : 697066733a2f2f516d62707153484d79653855336335724c557876485341636d
Arg [7] : 733357797359526f68526a767a794c626e666673670000000000000000000000


Deployed Bytecode Sourcemap

45526:3685:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39314:224;;;;;;;;;;-1:-1:-1;39314:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39314:224:0;;;;;;;;26134:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27693:221::-;;;;;;;;;;-1:-1:-1;27693:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;27693:221:0;1528:203:1;45687:28:0;;;;;;;;;;;;;:::i;27216:411::-;;;;;;;;;;-1:-1:-1;27216:411:0;;;;;:::i;:::-;;:::i;:::-;;45720:19;;;;;;;;;;-1:-1:-1;45720:19:0;;;;;:::i;:::-;;:::i;45819:33::-;;;;;;;;;;-1:-1:-1;45819:33:0;;;;;;;;;;;39954:113;;;;;;;;;;-1:-1:-1;40042:10:0;:17;39954:113;;;2319:25:1;;;2307:2;2292:18;39954:113:0;2173:177:1;48415:115:0;;;;;;;;;;-1:-1:-1;48415:115:0;;;;;:::i;:::-;;:::i;28443:339::-;;;;;;;;;;-1:-1:-1;28443:339:0;;;;;:::i;:::-;;:::i;46724:194::-;;;;;;;;;;-1:-1:-1;46724:194:0;;;;;:::i;:::-;;:::i;39622:256::-;;;;;;;;;;-1:-1:-1;39622:256:0;;;;;:::i;:::-;;:::i;49063:145::-;;;:::i;28853:185::-;;;;;;;;;;-1:-1:-1;28853:185:0;;;;;:::i;:::-;;:::i;46924:335::-;;;;;;;;;;-1:-1:-1;46924:335:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40144:233::-;;;;;;;;;;-1:-1:-1;40144:233:0;;;;;:::i;:::-;;:::i;48830:98::-;;;;;;;;;;-1:-1:-1;48830:98:0;;;;;:::i;:::-;;:::i;45898:35::-;;;;;;;;;;;;;;;;25828:239;;;;;;;;;;-1:-1:-1;25828:239:0;;;;;:::i;:::-;;:::i;45619:21::-;;;;;;;;;;;;;:::i;25558:208::-;;;;;;;;;;-1:-1:-1;25558:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;48728:96::-;;;;;;;;;;-1:-1:-1;48728:96:0;;;;;:::i;:::-;;:::i;48536:87::-;;;;;;;;;;-1:-1:-1;48536:87:0;;;;;:::i;:::-;;:::i;48118:291::-;;;;;;;;;;-1:-1:-1;48118:291:0;;;;;:::i;:::-;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;26303:104;;;;;;;;;;;;;:::i;47265:764::-;;;;;;:::i;:::-;;:::i;27986:155::-;;;;;;;;;;-1:-1:-1;27986:155:0;;;;;:::i;:::-;;:::i;29109:328::-;;;;;;;;;;-1:-1:-1;29109:328:0;;;;;:::i;:::-;;:::i;48035:77::-;;;;;;;;;;;;;:::i;45857:36::-;;;;;;;;;;;;;;;;45645:37;;;;;;;;;;;;;:::i;46262:453::-;;;;;;;;;;-1:-1:-1;46262:453:0;;;;;:::i;:::-;;:::i;48629:93::-;;;;;;;;;;-1:-1:-1;48629:93:0;;;;;:::i;:::-;;:::i;45744:34::-;;;;;;;;;;-1:-1:-1;45744:34:0;;;;;;;;45783:31;;;;;;;;;;-1:-1:-1;45783:31:0;;;;;;;;;;;28212:164;;;;;;;;;;-1:-1:-1;28212:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28333:25:0;;;28309:4;28333:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28212:164;48936:120;;;;;;;;;;-1:-1:-1;48936:120:0;;;;;:::i;:::-;;:::i;4988:201::-;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;39314:224::-;39416:4;-1:-1:-1;;;;;;39440:50:0;;-1:-1:-1;;;39440:50:0;;:90;;;39494:36;39518:11;39494:23;:36::i;:::-;39433:97;39314:224;-1:-1:-1;;39314:224:0:o;26134:100::-;26188:13;26221:5;26214:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26134:100;:::o;27693:221::-;27769:7;31036:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31036:16:0;27789:73;;;;-1:-1:-1;;;27789:73:0;;7494:2:1;27789:73:0;;;7476:21:1;7533:2;7513:18;;;7506:30;7572:34;7552:18;;;7545:62;-1:-1:-1;;;7623:18:1;;;7616:42;7675:19;;27789:73:0;;;;;;;;;-1:-1:-1;27882:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27882:24:0;;27693:221::o;45687:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27216:411::-;27297:13;27313:23;27328:7;27313:14;:23::i;:::-;27297:39;;27361:5;-1:-1:-1;;;;;27355:11:0;:2;-1:-1:-1;;;;;27355:11:0;;;27347:57;;;;-1:-1:-1;;;27347:57:0;;7907:2:1;27347:57:0;;;7889:21:1;7946:2;7926:18;;;7919:30;7985:34;7965:18;;;7958:62;-1:-1:-1;;;8036:18:1;;;8029:31;8077:19;;27347:57:0;7705:397:1;27347:57:0;2883:10;-1:-1:-1;;;;;27439:21:0;;;;:62;;-1:-1:-1;27464:37:0;27481:5;2883:10;28212:164;:::i;27464:37::-;27417:168;;;;-1:-1:-1;;;27417:168:0;;8309:2:1;27417:168:0;;;8291:21:1;8348:2;8328:18;;;8321:30;8387:34;8367:18;;;8360:62;8458:26;8438:18;;;8431:54;8502:19;;27417:168:0;8107:420:1;27417:168:0;27598:21;27607:2;27611:7;27598:8;:21::i;:::-;27286:341;27216:411;;:::o;45720:19::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45720:19:0;;-1:-1:-1;45720:19:0;:::o;48415:115::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48497:9:::1;48504:2;;48497:9;:::i;:::-;48513:11;:2;48518:6:::0;;48513:11:::1;:::i;28443:339::-:0;28638:41;2883:10;28671:7;28638:18;:41::i;:::-;28630:103;;;;-1:-1:-1;;;28630:103:0;;;;;;;:::i;:::-;28746:28;28756:4;28762:2;28766:7;28746:9;:28::i;46724:194::-;46774:4;;46787:107;46808:2;:9;46804:13;;46787:107;;;46846:5;-1:-1:-1;;;;;46837:14:0;:2;46840:1;46837:5;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;46837:5:0;:14;46833:54;;;-1:-1:-1;46873:4:0;;46724:194;-1:-1:-1;;46724:194:0:o;46833:54::-;46819:3;;;;:::i;:::-;;;;46787:107;;;-1:-1:-1;46907:5:0;;46724:194;-1:-1:-1;;46724:194:0:o;39622:256::-;39719:7;39755:23;39772:5;39755:16;:23::i;:::-;39747:5;:31;39739:87;;;;-1:-1:-1;;;39739:87:0;;9917:2:1;39739:87:0;;;9899:21:1;9956:2;9936:18;;;9929:30;9995:34;9975:18;;;9968:62;-1:-1:-1;;;10046:18:1;;;10039:41;10097:19;;39739:87:0;9715:407:1;39739:87:0;-1:-1:-1;;;;;;39844:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39622:256::o;49063:145::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49116:7:::1;49137;4152:6:::0;;-1:-1:-1;;;;;4152:6:0;;4079:87;49137:7:::1;-1:-1:-1::0;;;;;49129:21:0::1;49158;49129:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49115:69;;;49199:2;49191:11;;;::::0;::::1;;49108:100;49063:145::o:0;28853:185::-;28991:39;29008:4;29014:2;29018:7;28991:39;;;;;;;;;;;;:16;:39::i;46924:335::-;46984:16;47012:23;47038:17;47048:6;47038:9;:17::i;:::-;47012:43;;47064:25;47106:15;47092:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47092:30:0;;47064:58;;47134:9;47129:103;47149:15;47145:1;:19;47129:103;;;47194:30;47214:6;47222:1;47194:19;:30::i;:::-;47180:8;47189:1;47180:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47166:3;;;;:::i;:::-;;;;47129:103;;;-1:-1:-1;47245:8:0;46924:335;-1:-1:-1;;;46924:335:0:o;40144:233::-;40219:7;40255:30;40042:10;:17;;39954:113;40255:30;40247:5;:38;40239:95;;;;-1:-1:-1;;;40239:95:0;;10539:2:1;40239:95:0;;;10521:21:1;10578:2;10558:18;;;10551:30;10617:34;10597:18;;;10590:62;-1:-1:-1;;;10668:18:1;;;10661:42;10720:19;;40239:95:0;10337:408:1;40239:95:0;40352:10;40363:5;40352:17;;;;;;;;:::i;:::-;;;;;;;;;40345:24;;40144:233;;;:::o;48830:98::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48901:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48830:98:::0;:::o;25828:239::-;25900:7;25936:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25936:16:0;25971:19;25963:73;;;;-1:-1:-1;;;25963:73:0;;10952:2:1;25963:73:0;;;10934:21:1;10991:2;10971:18;;;10964:30;11030:34;11010:18;;;11003:62;-1:-1:-1;;;11081:18:1;;;11074:39;11130:19;;25963:73:0;10750:405:1;45619:21:0;;;;;;;:::i;25558:208::-;25630:7;-1:-1:-1;;;;;25658:19:0;;25650:74;;;;-1:-1:-1;;;25650:74:0;;11362:2:1;25650:74:0;;;11344:21:1;11401:2;11381:18;;;11374:30;11440:34;11420:18;;;11413:62;-1:-1:-1;;;11491:18:1;;;11484:40;11541:19;;25650:74:0;11160:406:1;25650:74:0;-1:-1:-1;;;;;;25742:16:0;;;;;:9;:16;;;;;;;25558:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;48728:96::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48795:8:::1;:23:::0;48728:96::o;48536:87::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48597:11:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;48597:20:0;;::::1;::::0;;;::::1;::::0;;48536:87::o;48118:291::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48197:14:::1;48214:13;40042:10:::0;:17;;39954:113;48214:13:::1;48266;::::0;48197:30;;-1:-1:-1;48242:20:0::1;48251:11:::0;48197:30;48242:20:::1;:::i;:::-;:37;;48234:73;;;::::0;-1:-1:-1;;;48234:73:0;;11906:2:1;48234:73:0::1;::::0;::::1;11888:21:1::0;11945:2;11925:18;;;11918:30;-1:-1:-1;;;11964:18:1;;;11957:52;12026:18;;48234:73:0::1;11704:346:1::0;48234:73:0::1;48331:1;48314:90;48339:11;48334:1;:16;48314:90;;48366:26;48376:3:::0;48381:10:::1;48390:1:::0;48381:6;:10:::1;:::i;:::-;48366:9;:26::i;:::-;48352:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48314:90;;;;48190:219;48118:291:::0;;:::o;26303:104::-;26359:13;26392:7;26385:14;;;;;:::i;47265:764::-;47331:11;;;;;;;47330:12;47322:38;;;;-1:-1:-1;;;47322:38:0;;12257:2:1;47322:38:0;;;12239:21:1;12296:2;12276:18;;;12269:30;-1:-1:-1;;;12315:18:1;;;12308:43;12368:18;;47322:38:0;12055:337:1;47322:38:0;47367:14;47384:13;40042:10;:17;;39954:113;47384:13;47367:30;;47426:1;47412:11;:15;47404:40;;;;-1:-1:-1;;;47404:40:0;;12599:2:1;47404:40:0;;;12581:21:1;12638:2;12618:18;;;12611:30;-1:-1:-1;;;12657:18:1;;;12650:42;12709:18;;47404:40:0;12397:336:1;47404:40:0;47483:13;;47459:20;47468:11;47459:6;:20;:::i;:::-;:37;;47451:58;;;;-1:-1:-1;;;47451:58:0;;12940:2:1;47451:58:0;;;12922:21:1;12979:1;12959:18;;;12952:29;-1:-1:-1;;;12997:18:1;;;12990:38;13045:18;;47451:58:0;12738:331:1;47451:58:0;4152:6;;-1:-1:-1;;;;;4152:6:0;47522:10;:21;47518:407;;47560:14;;;;;;;:22;;47578:4;47560:22;47556:362;;;47607:16;47612:10;47607:4;:16::i;:::-;47599:51;;;;-1:-1:-1;;;47599:51:0;;13276:2:1;47599:51:0;;;13258:21:1;13315:2;13295:18;;;13288:30;-1:-1:-1;;;13334:18:1;;;13327:52;13396:18;;47599:51:0;13074:346:1;47599:51:0;47697:11;47686:8;;:22;;;;:::i;:::-;47673:9;:35;;47665:72;;;;-1:-1:-1;;;47665:72:0;;13800:2:1;47665:72:0;;;13782:21:1;13839:2;13819:18;;;13812:30;13878:26;13858:18;;;13851:54;13922:18;;47665:72:0;13598:348:1;47665:72:0;47556:362;;;47788:14;;;;;;;47787:15;47779:39;;;;-1:-1:-1;;;47779:39:0;;14153:2:1;47779:39:0;;;14135:21:1;14192:2;14172:18;;;14165:30;-1:-1:-1;;;14211:18:1;;;14204:41;14262:18;;47779:39:0;13951:335:1;47779:39:0;47865:11;47854:8;;:22;;;;:::i;:::-;47841:9;:35;;47833:72;;;;-1:-1:-1;;;47833:72:0;;14493:2:1;47833:72:0;;;14475:21:1;14532:2;14512:18;;;14505:30;14571:26;14551:18;;;14544:54;14615:18;;47833:72:0;14291:348:1;47833:72:0;47948:1;47931:93;47956:11;47951:1;:16;47931:93;;47983:33;47993:10;48005;48014:1;48005:6;:10;:::i;47983:33::-;47969:3;;;;:::i;:::-;;;;47931:93;;27986:155;28081:52;2883:10;28114:8;28124;28081:18;:52::i;29109:328::-;29284:41;2883:10;29317:7;29284:18;:41::i;:::-;29276:103;;;;-1:-1:-1;;;29276:103:0;;;;;;;:::i;:::-;29390:39;29404:4;29410:2;29414:7;29423:5;29390:13;:39::i;48035:77::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48085:14:::1;:21:::0;;-1:-1:-1;;48085:21:0::1;48102:4;48085:21;::::0;;48035:77::o;45645:37::-;;;;;;;:::i;46262:453::-;31012:4;31036:16;;;:7;:16;;;;;;46335:13;;-1:-1:-1;;;;;31036:16:0;46360:76;;;;-1:-1:-1;;;46360:76:0;;14846:2:1;46360:76:0;;;14828:21:1;14885:2;14865:18;;;14858:30;14924:34;14904:18;;;14897:62;-1:-1:-1;;;14975:18:1;;;14968:45;15030:19;;46360:76:0;14644:411:1;46360:76:0;46446:14;;;;46443:68;;46489:14;46482:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46262:453;;;:::o;46443:68::-;46519:28;46550:10;:8;:10::i;:::-;46519:41;;46607:1;46582:14;46576:28;:32;:133;;;;;;;;;;;;;;;;;46644:14;46660:18;:7;:16;:18::i;:::-;46680:13;46627:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46576:133;46569:140;46262:453;-1:-1:-1;;;46262:453:0:o;48629:93::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48693:14:::1;:23:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48693:23:0;;::::1;::::0;;;::::1;::::0;;48629:93::o;48936:120::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49018:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;4988:201::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;16920:2:1;5069:73:0::1;::::0;::::1;16902:21:1::0;16959:2;16939:18;;;16932:30;16998:34;16978:18;;;16971:62;-1:-1:-1;;;17049:18:1;;;17042:36;17095:19;;5069:73:0::1;16718:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;25189:305::-:0;25291:4;-1:-1:-1;;;;;;25328:40:0;;-1:-1:-1;;;25328:40:0;;:105;;-1:-1:-1;;;;;;;25385:48:0;;-1:-1:-1;;;25385:48:0;25328:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;25450:36;16863:157;35093:174;35168:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35168:29:0;-1:-1:-1;;;;;35168:29:0;;;;;;;;:24;;35222:23;35168:24;35222:14;:23::i;:::-;-1:-1:-1;;;;;35213:46:0;;;;;;;;;;;35093:174;;:::o;31241:348::-;31334:4;31036:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31036:16:0;31351:73;;;;-1:-1:-1;;;31351:73:0;;17327:2:1;31351:73:0;;;17309:21:1;17366:2;17346:18;;;17339:30;17405:34;17385:18;;;17378:62;-1:-1:-1;;;17456:18:1;;;17449:42;17508:19;;31351:73:0;17125:408:1;31351:73:0;31435:13;31451:23;31466:7;31451:14;:23::i;:::-;31435:39;;31504:5;-1:-1:-1;;;;;31493:16:0;:7;-1:-1:-1;;;;;31493:16:0;;:51;;;;31537:7;-1:-1:-1;;;;;31513:31:0;:20;31525:7;31513:11;:20::i;:::-;-1:-1:-1;;;;;31513:31:0;;31493:51;:87;;;-1:-1:-1;;;;;;28333:25:0;;;28309:4;28333:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31548:32;31485:96;31241:348;-1:-1:-1;;;;31241:348:0:o;34350:625::-;34509:4;-1:-1:-1;;;;;34482:31:0;:23;34497:7;34482:14;:23::i;:::-;-1:-1:-1;;;;;34482:31:0;;34474:81;;;;-1:-1:-1;;;34474:81:0;;17740:2:1;34474:81:0;;;17722:21:1;17779:2;17759:18;;;17752:30;17818:34;17798:18;;;17791:62;-1:-1:-1;;;17869:18:1;;;17862:35;17914:19;;34474:81:0;17538:401:1;34474:81:0;-1:-1:-1;;;;;34574:16:0;;34566:65;;;;-1:-1:-1;;;34566:65:0;;18146:2:1;34566:65:0;;;18128:21:1;18185:2;18165:18;;;18158:30;18224:34;18204:18;;;18197:62;-1:-1:-1;;;18275:18:1;;;18268:34;18319:19;;34566:65:0;17944:400:1;34566:65:0;34644:39;34665:4;34671:2;34675:7;34644:20;:39::i;:::-;34748:29;34765:1;34769:7;34748:8;:29::i;:::-;-1:-1:-1;;;;;34790:15:0;;;;;;:9;:15;;;;;:20;;34809:1;;34790:15;:20;;34809:1;;34790:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34821:13:0;;;;;;:9;:13;;;;;:18;;34838:1;;34821:13;:18;;34838:1;;34821:18;:::i;:::-;;;;-1:-1:-1;;34850:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34850:21:0;-1:-1:-1;;;;;34850:21:0;;;;;;;;;34889:27;;34850:16;;34889:27;;;;;;;27286:341;27216:411;;:::o;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;31931:110::-;32007:26;32017:2;32021:7;32007:26;;;;;;;;;;;;:9;:26::i;35409:315::-;35564:8;-1:-1:-1;;;;;35555:17:0;:5;-1:-1:-1;;;;;35555:17:0;;;35547:55;;;;-1:-1:-1;;;35547:55:0;;18681:2:1;35547:55:0;;;18663:21:1;18720:2;18700:18;;;18693:30;18759:27;18739:18;;;18732:55;18804:18;;35547:55:0;18479:349:1;35547:55:0;-1:-1:-1;;;;;35613:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35613:46:0;;;;;;;;;;35675:41;;540::1;;;35675::0;;513:18:1;35675:41:0;;;;;;;35409:315;;;:::o;30319:::-;30476:28;30486:4;30492:2;30496:7;30476:9;:28::i;:::-;30523:48;30546:4;30552:2;30556:7;30565:5;30523:22;:48::i;:::-;30515:111;;;;-1:-1:-1;;;30515:111:0;;;;;;;:::i;46152:102::-;46212:13;46241:7;46234:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;40990:589;-1:-1:-1;;;;;41196:18:0;;41192:187;;41231:40;41263:7;42406:10;:17;;42379:24;;;;:15;:24;;;;;:44;;;42434:24;;;;;;;;;;;;42302:164;41231:40;41192:187;;;41301:2;-1:-1:-1;;;;;41293:10:0;:4;-1:-1:-1;;;;;41293:10:0;;41289:90;;41320:47;41353:4;41359:7;41320:32;:47::i;:::-;-1:-1:-1;;;;;41393:16:0;;41389:183;;41426:45;41463:7;41426:36;:45::i;41389:183::-;41499:4;-1:-1:-1;;;;;41493:10:0;:2;-1:-1:-1;;;;;41493:10:0;;41489:83;;41520:40;41548:2;41552:7;41520:27;:40::i;32268:321::-;32398:18;32404:2;32408:7;32398:5;:18::i;:::-;32449:54;32480:1;32484:2;32488:7;32497:5;32449:22;:54::i;:::-;32427:154;;;;-1:-1:-1;;;32427:154:0;;;;;;;:::i;36289:799::-;36444:4;-1:-1:-1;;;;;36465:13:0;;7075:19;:23;36461:620;;36501:72;;-1:-1:-1;;;36501:72:0;;-1:-1:-1;;;;;36501:36:0;;;;;:72;;2883:10;;36552:4;;36558:7;;36567:5;;36501:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36501:72:0;;;;;;;;-1:-1:-1;;36501:72:0;;;;;;;;;;;;:::i;:::-;;;36497:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36743:13:0;;36739:272;;36786:60;;-1:-1:-1;;;36786:60:0;;;;;;;:::i;36739:272::-;36961:6;36955:13;36946:6;36942:2;36938:15;36931:38;36497:529;-1:-1:-1;;;;;;36624:51:0;-1:-1:-1;;;36624:51:0;;-1:-1:-1;36617:58:0;;36461:620;-1:-1:-1;37065:4:0;36289:799;;;;;;:::o;43093:988::-;43359:22;43409:1;43384:22;43401:4;43384:16;:22::i;:::-;:26;;;;:::i;:::-;43421:18;43442:26;;;:17;:26;;;;;;43359:51;;-1:-1:-1;43575:28:0;;;43571:328;;-1:-1:-1;;;;;43642:18:0;;43620:19;43642:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43693:30;;;;;;:44;;;43810:30;;:17;:30;;;;;:43;;;43571:328;-1:-1:-1;43995:26:0;;;;:17;:26;;;;;;;;43988:33;;;-1:-1:-1;;;;;44039:18:0;;;;;:12;:18;;;;;:34;;;;;;;44032:41;43093:988::o;44376:1079::-;44654:10;:17;44629:22;;44654:21;;44674:1;;44654:21;:::i;:::-;44686:18;44707:24;;;:15;:24;;;;;;45080:10;:26;;44629:46;;-1:-1:-1;44707:24:0;;44629:46;;45080:26;;;;;;:::i;:::-;;;;;;;;;45058:48;;45144:11;45119:10;45130;45119:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45224:28;;;:15;:28;;;;;;;:41;;;45396:24;;;;;45389:31;45431:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44447:1008;;;44376:1079;:::o;41880:221::-;41965:14;41982:20;41999:2;41982:16;:20::i;:::-;-1:-1:-1;;;;;42013:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42058:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41880:221:0:o;32925:439::-;-1:-1:-1;;;;;33005:16:0;;32997:61;;;;-1:-1:-1;;;32997:61:0;;20708:2:1;32997:61:0;;;20690:21:1;;;20727:18;;;20720:30;20786:34;20766:18;;;20759:62;20838:18;;32997:61:0;20506:356:1;32997:61:0;31012:4;31036:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31036:16:0;:30;33069:58;;;;-1:-1:-1;;;33069:58:0;;21069:2:1;33069:58:0;;;21051:21:1;21108:2;21088:18;;;21081:30;21147;21127:18;;;21120:58;21195:18;;33069:58:0;20867:352:1;33069:58:0;33140:45;33169:1;33173:2;33177:7;33140:20;:45::i;:::-;-1:-1:-1;;;;;33198:13:0;;;;;;:9;:13;;;;;:18;;33215:1;;33198:13;:18;;33215:1;;33198:18;:::i;:::-;;;;-1:-1:-1;;33227:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33227:21:0;-1:-1:-1;;;;;33227:21:0;;;;;;;;33266:33;;33227:16;;;33266:33;;33227:16;;33266:33;48901:21:::1;48830:98:::0;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;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:615::-;2441:6;2449;2502:2;2490:9;2481:7;2477:23;2473:32;2470:52;;;2518:1;2515;2508:12;2470:52;2558:9;2545:23;2587:18;2628:2;2620:6;2617:14;2614:34;;;2644:1;2641;2634:12;2614:34;2682:6;2671:9;2667:22;2657:32;;2727:7;2720:4;2716:2;2712:13;2708:27;2698:55;;2749:1;2746;2739:12;2698:55;2789:2;2776:16;2815:2;2807:6;2804:14;2801:34;;;2831:1;2828;2821:12;2801:34;2884:7;2879:2;2869:6;2866:1;2862:14;2858:2;2854:23;2850:32;2847:45;2844:65;;;2905:1;2902;2895:12;2844:65;2936:2;2928:11;;;;;2958:6;;-1:-1:-1;2355:615:1;;-1:-1:-1;;;;2355:615:1:o;2975:328::-;3052:6;3060;3068;3121:2;3109:9;3100:7;3096:23;3092:32;3089:52;;;3137:1;3134;3127:12;3089:52;3160:29;3179:9;3160:29;:::i;:::-;3150:39;;3208:38;3242:2;3231:9;3227:18;3208:38;:::i;:::-;3198:48;;3293:2;3282:9;3278:18;3265:32;3255:42;;2975:328;;;;;:::o;3308:186::-;3367:6;3420:2;3408:9;3399:7;3395:23;3391:32;3388:52;;;3436:1;3433;3426:12;3388:52;3459:29;3478:9;3459:29;:::i;3499:632::-;3670:2;3722:21;;;3792:13;;3695:18;;;3814:22;;;3641:4;;3670:2;3893:15;;;;3867:2;3852:18;;;3641:4;3936:169;3950:6;3947:1;3944:13;3936:169;;;4011:13;;3999:26;;4080:15;;;;4045:12;;;;3972:1;3965:9;3936:169;;;-1:-1:-1;4122:3:1;;3499:632;-1:-1:-1;;;;;;3499:632:1:o;4136:127::-;4197:10;4192:3;4188:20;4185:1;4178:31;4228:4;4225:1;4218:15;4252:4;4249:1;4242:15;4268:632;4333:5;4363:18;4404:2;4396:6;4393:14;4390:40;;;4410:18;;:::i;:::-;4485:2;4479:9;4453:2;4539:15;;-1:-1:-1;;4535:24:1;;;4561:2;4531:33;4527:42;4515:55;;;4585:18;;;4605:22;;;4582:46;4579:72;;;4631:18;;:::i;:::-;4671:10;4667:2;4660:22;4700:6;4691:15;;4730:6;4722;4715:22;4770:3;4761:6;4756:3;4752:16;4749:25;4746:45;;;4787:1;4784;4777:12;4746:45;4837:6;4832:3;4825:4;4817:6;4813:17;4800:44;4892:1;4885:4;4876:6;4868;4864:19;4860:30;4853:41;;;;4268:632;;;;;:::o;4905:451::-;4974:6;5027:2;5015:9;5006:7;5002:23;4998:32;4995:52;;;5043:1;5040;5033:12;4995:52;5083:9;5070:23;5116:18;5108:6;5105:30;5102:50;;;5148:1;5145;5138:12;5102:50;5171:22;;5224:4;5216:13;;5212:27;-1:-1:-1;5202:55:1;;5253:1;5250;5243:12;5202:55;5276:74;5342:7;5337:2;5324:16;5319:2;5315;5311:11;5276:74;:::i;5361:160::-;5426:20;;5482:13;;5475:21;5465:32;;5455:60;;5511:1;5508;5501:12;5526:180;5582:6;5635:2;5623:9;5614:7;5610:23;5606:32;5603:52;;;5651:1;5648;5641:12;5603:52;5674:26;5690:9;5674:26;:::i;5711:254::-;5776:6;5784;5837:2;5825:9;5816:7;5812:23;5808:32;5805:52;;;5853:1;5850;5843:12;5805:52;5876:29;5895:9;5876:29;:::i;:::-;5866:39;;5924:35;5955:2;5944:9;5940:18;5924:35;:::i;:::-;5914:45;;5711:254;;;;;:::o;5970:667::-;6065:6;6073;6081;6089;6142:3;6130:9;6121:7;6117:23;6113:33;6110:53;;;6159:1;6156;6149:12;6110:53;6182:29;6201:9;6182:29;:::i;:::-;6172:39;;6230:38;6264:2;6253:9;6249:18;6230:38;:::i;:::-;6220:48;;6315:2;6304:9;6300:18;6287:32;6277:42;;6370:2;6359:9;6355:18;6342:32;6397:18;6389:6;6386:30;6383:50;;;6429:1;6426;6419:12;6383:50;6452:22;;6505:4;6497:13;;6493:27;-1:-1:-1;6483:55:1;;6534:1;6531;6524:12;6483:55;6557:74;6623:7;6618:2;6605:16;6600:2;6596;6592:11;6557:74;:::i;:::-;6547:84;;;5970:667;;;;;;;:::o;6642:260::-;6710:6;6718;6771:2;6759:9;6750:7;6746:23;6742:32;6739:52;;;6787:1;6784;6777:12;6739:52;6810:29;6829:9;6810:29;:::i;:::-;6800:39;;6858:38;6892:2;6881:9;6877:18;6858:38;:::i;6907:380::-;6986:1;6982:12;;;;7029;;;7050:61;;7104:4;7096:6;7092:17;7082:27;;7050:61;7157:2;7149:6;7146:14;7126:18;7123:38;7120:161;;;7203:10;7198:3;7194:20;7191:1;7184:31;7238:4;7235:1;7228:15;7266:4;7263:1;7256:15;7120:161;;6907:380;;;:::o;8532:356::-;8734:2;8716:21;;;8753:18;;;8746:30;8812:34;8807:2;8792:18;;8785:62;8879:2;8864:18;;8532:356::o;8893:413::-;9095:2;9077:21;;;9134:2;9114:18;;;9107:30;9173:34;9168:2;9153:18;;9146:62;-1:-1:-1;;;9239:2:1;9224:18;;9217:47;9296:3;9281:19;;8893:413::o;9311:127::-;9372:10;9367:3;9363:20;9360:1;9353:31;9403:4;9400:1;9393:15;9427:4;9424:1;9417:15;9443:127;9504:10;9499:3;9495:20;9492:1;9485:31;9535:4;9532:1;9525:15;9559:4;9556:1;9549:15;9575:135;9614:3;-1:-1:-1;;9635:17:1;;9632:43;;;9655:18;;:::i;:::-;-1:-1:-1;9702:1:1;9691:13;;9575:135::o;11571:128::-;11611:3;11642:1;11638:6;11635:1;11632:13;11629:39;;;11648:18;;:::i;:::-;-1:-1:-1;11684:9:1;;11571:128::o;13425:168::-;13465:7;13531:1;13527;13523:6;13519:14;13516:1;13513:21;13508:1;13501:9;13494:17;13490:45;13487:71;;;13538:18;;:::i;:::-;-1:-1:-1;13578:9:1;;13425:168::o;15186:1527::-;15410:3;15448:6;15442:13;15474:4;15487:51;15531:6;15526:3;15521:2;15513:6;15509:15;15487:51;:::i;:::-;15601:13;;15560:16;;;;15623:55;15601:13;15560:16;15645:15;;;15623:55;:::i;:::-;15767:13;;15700:20;;;15740:1;;15827;15849:18;;;;15902;;;;15929:93;;16007:4;15997:8;15993:19;15981:31;;15929:93;16070:2;16060:8;16057:16;16037:18;16034:40;16031:167;;;-1:-1:-1;;;16097:33:1;;16153:4;16150:1;16143:15;16183:4;16104:3;16171:17;16031:167;16214:18;16241:110;;;;16365:1;16360:328;;;;16207:481;;16241:110;-1:-1:-1;;16276:24:1;;16262:39;;16321:20;;;;-1:-1:-1;16241:110:1;;16360:328;15133:1;15126:14;;;15170:4;15157:18;;16455:1;16469:169;16483:8;16480:1;16477:15;16469:169;;;16565:14;;16550:13;;;16543:37;16608:16;;;;16500:10;;16469:169;;;16473:3;;16669:8;16662:5;16658:20;16651:27;;16207:481;-1:-1:-1;16704:3:1;;15186:1527;-1:-1:-1;;;;;;;;;;;15186:1527:1:o;18349:125::-;18389:4;18417:1;18414;18411:8;18408:34;;;18422:18;;:::i;:::-;-1:-1:-1;18459:9:1;;18349:125::o;18833:414::-;19035:2;19017:21;;;19074:2;19054:18;;;19047:30;19113:34;19108:2;19093:18;;19086:62;-1:-1:-1;;;19179:2:1;19164:18;;19157:48;19237:3;19222:19;;18833:414::o;19252:127::-;19313:10;19308:3;19304:20;19301:1;19294:31;19344:4;19341:1;19334:15;19368:4;19365:1;19358:15;19384:120;19424:1;19450;19440:35;;19455:18;;:::i;:::-;-1:-1:-1;19489:9:1;;19384:120::o;19509:112::-;19541:1;19567;19557:35;;19572:18;;:::i;:::-;-1:-1:-1;19606:9:1;;19509:112::o;19626:489::-;-1:-1:-1;;;;;19895:15:1;;;19877:34;;19947:15;;19942:2;19927:18;;19920:43;19994:2;19979:18;;19972:34;;;20042:3;20037:2;20022:18;;20015:31;;;19820:4;;20063:46;;20089:19;;20081:6;20063:46;:::i;:::-;20055:54;19626:489;-1:-1:-1;;;;;;19626:489:1:o;20120:249::-;20189:6;20242:2;20230:9;20221:7;20217:23;20213:32;20210:52;;;20258:1;20255;20248:12;20210:52;20290:9;20284:16;20309:30;20333:5;20309:30;:::i;20374:127::-;20435:10;20430:3;20426:20;20423:1;20416:31;20466:4;20463:1;20456:15;20490:4;20487:1;20480:15

Swarm Source

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