ETH Price: $3,248.39 (-0.32%)
Gas: 1 Gwei

Token

World Of PumpKins (WoP)
 

Overview

Max Total Supply

8,888 WoP

Holders

106

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
maxhe.eth
Balance
1 WoP
0x3b58593c49ec530f077e5d3ba7b0358db48859e8
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:
WorldOfPumpKins

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 11 : WorldOfPumpKins.sol
// SPDX-License-Identifier: MIT OR Apache-2.0

pragma solidity ^0.8.14;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract WorldOfPumpKins is ERC721, Ownable {
    using Strings for uint256;

    string baseExtension = ".json";
    string public baseUri;
    string hiddenUri;
    uint256 public totalSupply = 8888;
    uint256 public supply;

    uint256 public mintCost = 0.02 ether;
    uint256 public presaleMintCost = 0.01 ether;

    uint256 public reservedMintLeft = 100;

    bool public isPaused = true;
    bool public isPresale = true;
    bool public isRevealed;

    mapping(address => bool) public hasMintedOnPresale;

    modifier isNotPaused() {
        require(!isPaused, "Contract is paused");
        _;
    }

    constructor(
        string memory name_,
        string memory symbol_,
        string memory _hiddenUri
    ) ERC721(name_, symbol_) {
        hiddenUri = _hiddenUri;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Query for nonexistent token");
        if (isRevealed) {
            return
                string(
                    abi.encodePacked(baseUri, tokenId.toString(), baseExtension)
                );
        } else {
            return hiddenUri;
        }
    }

    // public
    function mint(uint256 amount) public payable isNotPaused {
        require(
            amount + supply <= totalSupply - reservedMintLeft,
            "Mint amount exceeds allowed"
        );
        if (isPresale) {
            require(
                !hasMintedOnPresale[msg.sender],
                "Already minted during presale"
            );
            require(amount <= 5, "Amount exceeds mint limit");
            require(
                msg.value == presaleMintCost * amount,
                "Wrong transaction value"
            );
            hasMintedOnPresale[msg.sender] = true;
        } else {
            require(msg.value == mintCost * amount, "Wrong transaction value");
            require(amount <= 10, "Amount exceeds mint limit");
        }
        for (uint256 i = 0; i < amount; i++) {
            supply++;
            _mint(msg.sender, supply);
        }
    }

    //admin
    function adminMint(uint256 amount) public onlyOwner {
        require(reservedMintLeft - amount >= 0, "Can't mint more than 100");
        for (uint256 i = 0; i < amount; i++) {
            supply++;
            _mint(msg.sender, supply);
        }
    }

    function changePause() public onlyOwner {
        isPaused = !isPaused;
    }

    function endPresale() public onlyOwner {
        isPresale = false;
    }

    function reveal(string memory uri) public onlyOwner {
        require(!isRevealed, "Already revealed");
        isRevealed = true;
        baseUri = uri;
    }

    function withdraw(address payable to, uint256 amount) public onlyOwner {
        to.transfer(amount);
    }
}

File 2 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 3 of 11 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 4 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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

pragma solidity ^0.8.0;

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

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

File 6 of 11 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 7 of 11 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 8 of 11 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"_hiddenUri","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":"uint256","name":"amount","type":"uint256"}],"name":"adminMint","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":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endPresale","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"hasMintedOnPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"reveal","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":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600791906200014a565b506122b8600a5566470de4df820000600c55662386f26fc10000600d556064600e55600f805461ffff19166101011790553480156200006657600080fd5b506040516200226a3803806200226a8339810160408190526200008991620002bd565b825183908390620000a29060009060208501906200014a565b508051620000b89060019060208401906200014a565b505050620000d5620000cf620000f460201b60201c565b620000f8565b8051620000ea9060099060208401906200014a565b505050506200038a565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000158906200034e565b90600052602060002090601f0160209004810192826200017c5760008555620001c7565b82601f106200019757805160ff1916838001178555620001c7565b82800160010185558215620001c7579182015b82811115620001c7578251825591602001919060010190620001aa565b50620001d5929150620001d9565b5090565b5b80821115620001d55760008155600101620001da565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200021857600080fd5b81516001600160401b0380821115620002355762000235620001f0565b604051601f8301601f19908116603f01168101908282118183101715620002605762000260620001f0565b816040528381526020925086838588010111156200027d57600080fd5b600091505b83821015620002a1578582018301518183018401529082019062000282565b83821115620002b35760008385830101525b9695505050505050565b600080600060608486031215620002d357600080fd5b83516001600160401b0380821115620002eb57600080fd5b620002f98783880162000206565b945060208601519150808211156200031057600080fd5b6200031e8783880162000206565b935060408601519150808211156200033557600080fd5b50620003448682870162000206565b9150509250925092565b600181811c908216806200036357607f821691505b6020821081036200038457634e487b7160e01b600052602260045260246000fd5b50919050565b611ed0806200039a6000396000f3fe6080604052600436106101e35760003560e01c806395d89b4111610102578063c176543a11610095578063e985e9c511610064578063e985e9c514610542578063f2fde38b1461058b578063f3fef3a3146105ab578063fa62eb29146105cb57600080fd5b8063c176543a146104bd578063c1f26123146104ed578063c3defb701461050d578063c87b56dd1461052257600080fd5b8063a43be57b116100d1578063a43be57b14610458578063b187bd261461046d578063b88d4fde14610487578063bdb4b848146104a757600080fd5b806395d89b41146103fb5780639abc832014610410578063a0712d6814610425578063a22cb4651461043857600080fd5b80634c2612471161017a57806370a082311161014957806370a0823114610389578063715018a6146103a95780638da5cb5b146103be57806395364a84146103dc57600080fd5b80634c2612471461031357806354214f69146103335780636352211e1461035357806364dd1cf91461037357600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806318160ddd146102bd57806323b872dd146102d357806342842e0e146102f357600080fd5b806301ffc9a7146101e8578063047fc9aa1461021d57806306fdde0314610241578063081812fc14610263575b600080fd5b3480156101f457600080fd5b506102086102033660046118c1565b6105e1565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610233600b5481565b604051908152602001610214565b34801561024d57600080fd5b50610256610633565b604051610214919061193d565b34801561026f57600080fd5b5061028361027e366004611950565b6106c5565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b636600461197e565b6106ec565b005b3480156102c957600080fd5b50610233600a5481565b3480156102df57600080fd5b506102bb6102ee3660046119aa565b610806565b3480156102ff57600080fd5b506102bb61030e3660046119aa565b610837565b34801561031f57600080fd5b506102bb61032e366004611a77565b610852565b34801561033f57600080fd5b50600f546102089062010000900460ff1681565b34801561035f57600080fd5b5061028361036e366004611950565b6108ce565b34801561037f57600080fd5b50610233600e5481565b34801561039557600080fd5b506102336103a4366004611ac0565b61092e565b3480156103b557600080fd5b506102bb6109b4565b3480156103ca57600080fd5b506006546001600160a01b0316610283565b3480156103e857600080fd5b50600f5461020890610100900460ff1681565b34801561040757600080fd5b506102566109c8565b34801561041c57600080fd5b506102566109d7565b6102bb610433366004611950565b610a65565b34801561044457600080fd5b506102bb610453366004611add565b610d2b565b34801561046457600080fd5b506102bb610d36565b34801561047957600080fd5b50600f546102089060ff1681565b34801561049357600080fd5b506102bb6104a2366004611b1b565b610d4b565b3480156104b357600080fd5b50610233600c5481565b3480156104c957600080fd5b506102086104d8366004611ac0565b60106020526000908152604090205460ff1681565b3480156104f957600080fd5b506102bb610508366004611950565b610d83565b34801561051957600080fd5b506102bb610e27565b34801561052e57600080fd5b5061025661053d366004611950565b610e43565b34801561054e57600080fd5b5061020861055d366004611b9b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059757600080fd5b506102bb6105a6366004611ac0565b610f82565b3480156105b757600080fd5b506102bb6105c636600461197e565b610ffb565b3480156105d757600080fd5b50610233600d5481565b60006001600160e01b031982166380ac58cd60e01b148061061257506001600160e01b03198216635b5e139f60e01b145b8061062d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461064290611bc9565b80601f016020809104026020016040519081016040528092919081815260200182805461066e90611bc9565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b60006106d082611039565b506000908152600460205260409020546001600160a01b031690565b60006106f7826108ce565b9050806001600160a01b0316836001600160a01b0316036107695760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107855750610785813361055d565b6107f75760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610760565b6108018383611098565b505050565b6108103382611106565b61082c5760405162461bcd60e51b815260040161076090611c03565b610801838383611185565b61080183838360405180602001604052806000815250610d4b565b61085a611321565b600f5462010000900460ff16156108a65760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481c995d99585b195960821b6044820152606401610760565b600f805462ff000019166201000017905580516108ca906008906020840190611812565b5050565b6000818152600260205260408120546001600160a01b03168061062d5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610760565b60006001600160a01b0382166109985760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610760565b506001600160a01b031660009081526003602052604090205490565b6109bc611321565b6109c6600061137b565b565b60606001805461064290611bc9565b600880546109e490611bc9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1090611bc9565b8015610a5d5780601f10610a3257610100808354040283529160200191610a5d565b820191906000526020600020905b815481529060010190602001808311610a4057829003601f168201915b505050505081565b600f5460ff1615610aad5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610760565b600e54600a54610abd9190611c67565b600b54610aca9083611c7e565b1115610b185760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420616d6f756e74206578636565647320616c6c6f77656400000000006044820152606401610760565b600f54610100900460ff1615610c4a573360009081526010602052604090205460ff1615610b885760405162461bcd60e51b815260206004820152601d60248201527f416c7265616479206d696e74656420647572696e672070726573616c650000006044820152606401610760565b6005811115610bd55760405162461bcd60e51b8152602060048201526019602482015278105b5bdd5b9d08195e18d959591cc81b5a5b9d081b1a5b5a5d603a1b6044820152606401610760565b80600d54610be39190611c96565b3414610c2b5760405162461bcd60e51b815260206004820152601760248201527657726f6e67207472616e73616374696f6e2076616c756560481b6044820152606401610760565b336000908152601060205260409020805460ff19166001179055610ced565b80600c54610c589190611c96565b3414610ca05760405162461bcd60e51b815260206004820152601760248201527657726f6e67207472616e73616374696f6e2076616c756560481b6044820152606401610760565b600a811115610ced5760405162461bcd60e51b8152602060048201526019602482015278105b5bdd5b9d08195e18d959591cc81b5a5b9d081b1a5b5a5d603a1b6044820152606401610760565b60005b818110156108ca57600b8054906000610d0883611cb5565b9190505550610d1933600b546113cd565b80610d2381611cb5565b915050610cf0565b6108ca33838361150f565b610d3e611321565b600f805461ff0019169055565b610d553383611106565b610d715760405162461bcd60e51b815260040161076090611c03565b610d7d848484846115dd565b50505050565b610d8b611321565b600081600e54610d9b9190611c67565b1015610de95760405162461bcd60e51b815260206004820152601860248201527f43616e2774206d696e74206d6f7265207468616e2031303000000000000000006044820152606401610760565b60005b818110156108ca57600b8054906000610e0483611cb5565b9190505550610e1533600b546113cd565b80610e1f81611cb5565b915050610dec565b610e2f611321565b600f805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b0316610eaa5760405162461bcd60e51b815260206004820152601b60248201527f517565727920666f72206e6f6e6578697374656e7420746f6b656e00000000006044820152606401610760565b600f5462010000900460ff1615610ef0576008610ec683611610565b6007604051602001610eda93929190611d67565b6040516020818303038152906040529050919050565b60098054610efd90611bc9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2990611bc9565b8015610f765780601f10610f4b57610100808354040283529160200191610f76565b820191906000526020600020905b815481529060010190602001808311610f5957829003601f168201915b50505050509050919050565b610f8a611321565b6001600160a01b038116610fef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610760565b610ff88161137b565b50565b611003611321565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610801573d6000803e3d6000fd5b6000818152600260205260409020546001600160a01b0316610ff85760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610760565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110cd826108ce565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611112836108ce565b9050806001600160a01b0316846001600160a01b0316148061115957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061117d5750836001600160a01b0316611172846106c5565b6001600160a01b0316145b949350505050565b826001600160a01b0316611198826108ce565b6001600160a01b0316146111fc5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610760565b6001600160a01b03821661125e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610760565b611269600082611098565b6001600160a01b0383166000908152600360205260408120805460019290611292908490611c67565b90915550506001600160a01b03821660009081526003602052604081208054600192906112c0908490611c7e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b031633146109c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610760565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166114235760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610760565b6000818152600260205260409020546001600160a01b0316156114885760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610760565b6001600160a01b03821660009081526003602052604081208054600192906114b1908490611c7e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316036115705760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610760565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115e8848484611185565b6115f484848484611711565b610d7d5760405162461bcd60e51b815260040161076090611d9a565b6060816000036116375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611661578061164b81611cb5565b915061165a9050600a83611e02565b915061163b565b60008167ffffffffffffffff81111561167c5761167c6119eb565b6040519080825280601f01601f1916602001820160405280156116a6576020820181803683370190505b5090505b841561117d576116bb600183611c67565b91506116c8600a86611e16565b6116d3906030611c7e565b60f81b8183815181106116e8576116e8611e2a565b60200101906001600160f81b031916908160001a90535061170a600a86611e02565b94506116aa565b60006001600160a01b0384163b1561180757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611755903390899088908890600401611e40565b6020604051808303816000875af1925050508015611790575060408051601f3d908101601f1916820190925261178d91810190611e7d565b60015b6117ed573d8080156117be576040519150601f19603f3d011682016040523d82523d6000602084013e6117c3565b606091505b5080516000036117e55760405162461bcd60e51b815260040161076090611d9a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061117d565b506001949350505050565b82805461181e90611bc9565b90600052602060002090601f0160209004810192826118405760008555611886565b82601f1061185957805160ff1916838001178555611886565b82800160010185558215611886579182015b8281111561188657825182559160200191906001019061186b565b50611892929150611896565b5090565b5b808211156118925760008155600101611897565b6001600160e01b031981168114610ff857600080fd5b6000602082840312156118d357600080fd5b81356118de816118ab565b9392505050565b60005b838110156119005781810151838201526020016118e8565b83811115610d7d5750506000910152565b600081518084526119298160208601602086016118e5565b601f01601f19169290920160200192915050565b6020815260006118de6020830184611911565b60006020828403121561196257600080fd5b5035919050565b6001600160a01b0381168114610ff857600080fd5b6000806040838503121561199157600080fd5b823561199c81611969565b946020939093013593505050565b6000806000606084860312156119bf57600080fd5b83356119ca81611969565b925060208401356119da81611969565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a1c57611a1c6119eb565b604051601f8501601f19908116603f01168101908282118183101715611a4457611a446119eb565b81604052809350858152868686011115611a5d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a8957600080fd5b813567ffffffffffffffff811115611aa057600080fd5b8201601f81018413611ab157600080fd5b61117d84823560208401611a01565b600060208284031215611ad257600080fd5b81356118de81611969565b60008060408385031215611af057600080fd5b8235611afb81611969565b915060208301358015158114611b1057600080fd5b809150509250929050565b60008060008060808587031215611b3157600080fd5b8435611b3c81611969565b93506020850135611b4c81611969565b925060408501359150606085013567ffffffffffffffff811115611b6f57600080fd5b8501601f81018713611b8057600080fd5b611b8f87823560208401611a01565b91505092959194509250565b60008060408385031215611bae57600080fd5b8235611bb981611969565b91506020830135611b1081611969565b600181811c90821680611bdd57607f821691505b602082108103611bfd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082821015611c7957611c79611c51565b500390565b60008219821115611c9157611c91611c51565b500190565b6000816000190483118215151615611cb057611cb0611c51565b500290565b600060018201611cc757611cc7611c51565b5060010190565b8054600090600181811c9080831680611ce857607f831692505b60208084108203611d0957634e487b7160e01b600052602260045260246000fd5b818015611d1d5760018114611d2e57611d5b565b60ff19861689528489019650611d5b565b60008881526020902060005b86811015611d535781548b820152908501908301611d3a565b505084890196505b50505050505092915050565b6000611d738286611cce565b8451611d838183602089016118e5565b611d8f81830186611cce565b979650505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611e1157611e11611dec565b500490565b600082611e2557611e25611dec565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e7390830184611911565b9695505050505050565b600060208284031215611e8f57600080fd5b81516118de816118ab56fea264697066735822122050cfc8884d5dc5260a022850a7dc85508b6b74a7cc05141441f31c278eae9ee164736f6c634300080e0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000011576f726c64204f662050756d704b696e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003576f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d564642656e6363764453394a6e5377785347765a47744774656536327265365738324b7164315941355063380000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806395d89b4111610102578063c176543a11610095578063e985e9c511610064578063e985e9c514610542578063f2fde38b1461058b578063f3fef3a3146105ab578063fa62eb29146105cb57600080fd5b8063c176543a146104bd578063c1f26123146104ed578063c3defb701461050d578063c87b56dd1461052257600080fd5b8063a43be57b116100d1578063a43be57b14610458578063b187bd261461046d578063b88d4fde14610487578063bdb4b848146104a757600080fd5b806395d89b41146103fb5780639abc832014610410578063a0712d6814610425578063a22cb4651461043857600080fd5b80634c2612471161017a57806370a082311161014957806370a0823114610389578063715018a6146103a95780638da5cb5b146103be57806395364a84146103dc57600080fd5b80634c2612471461031357806354214f69146103335780636352211e1461035357806364dd1cf91461037357600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806318160ddd146102bd57806323b872dd146102d357806342842e0e146102f357600080fd5b806301ffc9a7146101e8578063047fc9aa1461021d57806306fdde0314610241578063081812fc14610263575b600080fd5b3480156101f457600080fd5b506102086102033660046118c1565b6105e1565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610233600b5481565b604051908152602001610214565b34801561024d57600080fd5b50610256610633565b604051610214919061193d565b34801561026f57600080fd5b5061028361027e366004611950565b6106c5565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b636600461197e565b6106ec565b005b3480156102c957600080fd5b50610233600a5481565b3480156102df57600080fd5b506102bb6102ee3660046119aa565b610806565b3480156102ff57600080fd5b506102bb61030e3660046119aa565b610837565b34801561031f57600080fd5b506102bb61032e366004611a77565b610852565b34801561033f57600080fd5b50600f546102089062010000900460ff1681565b34801561035f57600080fd5b5061028361036e366004611950565b6108ce565b34801561037f57600080fd5b50610233600e5481565b34801561039557600080fd5b506102336103a4366004611ac0565b61092e565b3480156103b557600080fd5b506102bb6109b4565b3480156103ca57600080fd5b506006546001600160a01b0316610283565b3480156103e857600080fd5b50600f5461020890610100900460ff1681565b34801561040757600080fd5b506102566109c8565b34801561041c57600080fd5b506102566109d7565b6102bb610433366004611950565b610a65565b34801561044457600080fd5b506102bb610453366004611add565b610d2b565b34801561046457600080fd5b506102bb610d36565b34801561047957600080fd5b50600f546102089060ff1681565b34801561049357600080fd5b506102bb6104a2366004611b1b565b610d4b565b3480156104b357600080fd5b50610233600c5481565b3480156104c957600080fd5b506102086104d8366004611ac0565b60106020526000908152604090205460ff1681565b3480156104f957600080fd5b506102bb610508366004611950565b610d83565b34801561051957600080fd5b506102bb610e27565b34801561052e57600080fd5b5061025661053d366004611950565b610e43565b34801561054e57600080fd5b5061020861055d366004611b9b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059757600080fd5b506102bb6105a6366004611ac0565b610f82565b3480156105b757600080fd5b506102bb6105c636600461197e565b610ffb565b3480156105d757600080fd5b50610233600d5481565b60006001600160e01b031982166380ac58cd60e01b148061061257506001600160e01b03198216635b5e139f60e01b145b8061062d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461064290611bc9565b80601f016020809104026020016040519081016040528092919081815260200182805461066e90611bc9565b80156106bb5780601f10610690576101008083540402835291602001916106bb565b820191906000526020600020905b81548152906001019060200180831161069e57829003601f168201915b5050505050905090565b60006106d082611039565b506000908152600460205260409020546001600160a01b031690565b60006106f7826108ce565b9050806001600160a01b0316836001600160a01b0316036107695760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107855750610785813361055d565b6107f75760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610760565b6108018383611098565b505050565b6108103382611106565b61082c5760405162461bcd60e51b815260040161076090611c03565b610801838383611185565b61080183838360405180602001604052806000815250610d4b565b61085a611321565b600f5462010000900460ff16156108a65760405162461bcd60e51b815260206004820152601060248201526f105b1c9958591e481c995d99585b195960821b6044820152606401610760565b600f805462ff000019166201000017905580516108ca906008906020840190611812565b5050565b6000818152600260205260408120546001600160a01b03168061062d5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610760565b60006001600160a01b0382166109985760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610760565b506001600160a01b031660009081526003602052604090205490565b6109bc611321565b6109c6600061137b565b565b60606001805461064290611bc9565b600880546109e490611bc9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1090611bc9565b8015610a5d5780601f10610a3257610100808354040283529160200191610a5d565b820191906000526020600020905b815481529060010190602001808311610a4057829003601f168201915b505050505081565b600f5460ff1615610aad5760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610760565b600e54600a54610abd9190611c67565b600b54610aca9083611c7e565b1115610b185760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420616d6f756e74206578636565647320616c6c6f77656400000000006044820152606401610760565b600f54610100900460ff1615610c4a573360009081526010602052604090205460ff1615610b885760405162461bcd60e51b815260206004820152601d60248201527f416c7265616479206d696e74656420647572696e672070726573616c650000006044820152606401610760565b6005811115610bd55760405162461bcd60e51b8152602060048201526019602482015278105b5bdd5b9d08195e18d959591cc81b5a5b9d081b1a5b5a5d603a1b6044820152606401610760565b80600d54610be39190611c96565b3414610c2b5760405162461bcd60e51b815260206004820152601760248201527657726f6e67207472616e73616374696f6e2076616c756560481b6044820152606401610760565b336000908152601060205260409020805460ff19166001179055610ced565b80600c54610c589190611c96565b3414610ca05760405162461bcd60e51b815260206004820152601760248201527657726f6e67207472616e73616374696f6e2076616c756560481b6044820152606401610760565b600a811115610ced5760405162461bcd60e51b8152602060048201526019602482015278105b5bdd5b9d08195e18d959591cc81b5a5b9d081b1a5b5a5d603a1b6044820152606401610760565b60005b818110156108ca57600b8054906000610d0883611cb5565b9190505550610d1933600b546113cd565b80610d2381611cb5565b915050610cf0565b6108ca33838361150f565b610d3e611321565b600f805461ff0019169055565b610d553383611106565b610d715760405162461bcd60e51b815260040161076090611c03565b610d7d848484846115dd565b50505050565b610d8b611321565b600081600e54610d9b9190611c67565b1015610de95760405162461bcd60e51b815260206004820152601860248201527f43616e2774206d696e74206d6f7265207468616e2031303000000000000000006044820152606401610760565b60005b818110156108ca57600b8054906000610e0483611cb5565b9190505550610e1533600b546113cd565b80610e1f81611cb5565b915050610dec565b610e2f611321565b600f805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b0316610eaa5760405162461bcd60e51b815260206004820152601b60248201527f517565727920666f72206e6f6e6578697374656e7420746f6b656e00000000006044820152606401610760565b600f5462010000900460ff1615610ef0576008610ec683611610565b6007604051602001610eda93929190611d67565b6040516020818303038152906040529050919050565b60098054610efd90611bc9565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2990611bc9565b8015610f765780601f10610f4b57610100808354040283529160200191610f76565b820191906000526020600020905b815481529060010190602001808311610f5957829003601f168201915b50505050509050919050565b610f8a611321565b6001600160a01b038116610fef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610760565b610ff88161137b565b50565b611003611321565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610801573d6000803e3d6000fd5b6000818152600260205260409020546001600160a01b0316610ff85760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610760565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906110cd826108ce565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611112836108ce565b9050806001600160a01b0316846001600160a01b0316148061115957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061117d5750836001600160a01b0316611172846106c5565b6001600160a01b0316145b949350505050565b826001600160a01b0316611198826108ce565b6001600160a01b0316146111fc5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610760565b6001600160a01b03821661125e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610760565b611269600082611098565b6001600160a01b0383166000908152600360205260408120805460019290611292908490611c67565b90915550506001600160a01b03821660009081526003602052604081208054600192906112c0908490611c7e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546001600160a01b031633146109c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610760565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166114235760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610760565b6000818152600260205260409020546001600160a01b0316156114885760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610760565b6001600160a01b03821660009081526003602052604081208054600192906114b1908490611c7e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b816001600160a01b0316836001600160a01b0316036115705760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610760565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6115e8848484611185565b6115f484848484611711565b610d7d5760405162461bcd60e51b815260040161076090611d9a565b6060816000036116375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611661578061164b81611cb5565b915061165a9050600a83611e02565b915061163b565b60008167ffffffffffffffff81111561167c5761167c6119eb565b6040519080825280601f01601f1916602001820160405280156116a6576020820181803683370190505b5090505b841561117d576116bb600183611c67565b91506116c8600a86611e16565b6116d3906030611c7e565b60f81b8183815181106116e8576116e8611e2a565b60200101906001600160f81b031916908160001a90535061170a600a86611e02565b94506116aa565b60006001600160a01b0384163b1561180757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611755903390899088908890600401611e40565b6020604051808303816000875af1925050508015611790575060408051601f3d908101601f1916820190925261178d91810190611e7d565b60015b6117ed573d8080156117be576040519150601f19603f3d011682016040523d82523d6000602084013e6117c3565b606091505b5080516000036117e55760405162461bcd60e51b815260040161076090611d9a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061117d565b506001949350505050565b82805461181e90611bc9565b90600052602060002090601f0160209004810192826118405760008555611886565b82601f1061185957805160ff1916838001178555611886565b82800160010185558215611886579182015b8281111561188657825182559160200191906001019061186b565b50611892929150611896565b5090565b5b808211156118925760008155600101611897565b6001600160e01b031981168114610ff857600080fd5b6000602082840312156118d357600080fd5b81356118de816118ab565b9392505050565b60005b838110156119005781810151838201526020016118e8565b83811115610d7d5750506000910152565b600081518084526119298160208601602086016118e5565b601f01601f19169290920160200192915050565b6020815260006118de6020830184611911565b60006020828403121561196257600080fd5b5035919050565b6001600160a01b0381168114610ff857600080fd5b6000806040838503121561199157600080fd5b823561199c81611969565b946020939093013593505050565b6000806000606084860312156119bf57600080fd5b83356119ca81611969565b925060208401356119da81611969565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a1c57611a1c6119eb565b604051601f8501601f19908116603f01168101908282118183101715611a4457611a446119eb565b81604052809350858152868686011115611a5d57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a8957600080fd5b813567ffffffffffffffff811115611aa057600080fd5b8201601f81018413611ab157600080fd5b61117d84823560208401611a01565b600060208284031215611ad257600080fd5b81356118de81611969565b60008060408385031215611af057600080fd5b8235611afb81611969565b915060208301358015158114611b1057600080fd5b809150509250929050565b60008060008060808587031215611b3157600080fd5b8435611b3c81611969565b93506020850135611b4c81611969565b925060408501359150606085013567ffffffffffffffff811115611b6f57600080fd5b8501601f81018713611b8057600080fd5b611b8f87823560208401611a01565b91505092959194509250565b60008060408385031215611bae57600080fd5b8235611bb981611969565b91506020830135611b1081611969565b600181811c90821680611bdd57607f821691505b602082108103611bfd57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082821015611c7957611c79611c51565b500390565b60008219821115611c9157611c91611c51565b500190565b6000816000190483118215151615611cb057611cb0611c51565b500290565b600060018201611cc757611cc7611c51565b5060010190565b8054600090600181811c9080831680611ce857607f831692505b60208084108203611d0957634e487b7160e01b600052602260045260246000fd5b818015611d1d5760018114611d2e57611d5b565b60ff19861689528489019650611d5b565b60008881526020902060005b86811015611d535781548b820152908501908301611d3a565b505084890196505b50505050505092915050565b6000611d738286611cce565b8451611d838183602089016118e5565b611d8f81830186611cce565b979650505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611e1157611e11611dec565b500490565b600082611e2557611e25611dec565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e7390830184611911565b9695505050505050565b600060208284031215611e8f57600080fd5b81516118de816118ab56fea264697066735822122050cfc8884d5dc5260a022850a7dc85508b6b74a7cc05141441f31c278eae9ee164736f6c634300080e0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000011576f726c64204f662050756d704b696e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003576f5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d564642656e6363764453394a6e5377785347765a47744774656536327265365738324b7164315941355063380000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): World Of PumpKins
Arg [1] : symbol_ (string): WoP
Arg [2] : _hiddenUri (string): ipfs://QmVFBenccvDS9JnSwxSGvZGtGtee62re6W82Kqd1YA5Pc8

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 576f726c64204f662050756d704b696e73000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 576f500000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [8] : 697066733a2f2f516d564642656e6363764453394a6e5377785347765a477447
Arg [9] : 74656536327265365738324b7164315941355063380000000000000000000000


Deployed Bytecode Sourcemap

245:2943:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:1;;;;;;;;;;-1:-1:-1;1570:300:1;;;;;:::i;:::-;;:::i;:::-;;;565:14:11;;558:22;540:41;;528:2;513:18;1570:300:1;;;;;;;;458:21:10;;;;;;;;;;;;;;;;;;;738:25:11;;;726:2;711:18;458:21:10;592:177:11;2470:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3935:167::-;;;;;;;;;;-1:-1:-1;3935:167:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:11;;;1856:51;;1844:2;1829:18;3935:167:1;1710:203:11;3467:407:1;;;;;;;;;;-1:-1:-1;3467:407:1;;;;;:::i;:::-;;:::i;:::-;;418:33:10;;;;;;;;;;;;;;;;4612:327:1;;;;;;;;;;-1:-1:-1;4612:327:1;;;;;:::i;:::-;;:::i;5005:179::-;;;;;;;;;;-1:-1:-1;5005:179:1;;;;;:::i;:::-;;:::i;2905:163:10:-;;;;;;;;;;-1:-1:-1;2905:163:10;;;;;:::i;:::-;;:::i;698:22::-;;;;;;;;;;-1:-1:-1;698:22:10;;;;;;;;;;;2190:218:1;;;;;;;;;;-1:-1:-1;2190:218:1;;;;;:::i;:::-;;:::i;583:37:10:-;;;;;;;;;;;;;;;;1929:204:1;;;;;;;;;;-1:-1:-1;1929:204:1;;;;;:::i;:::-;;:::i;1831:101:0:-;;;;;;;;;;;;;:::i;1201:85::-;;;;;;;;;;-1:-1:-1;1273:6:0;;-1:-1:-1;;;;;1273:6:0;1201:85;;663:28:10;;;;;;;;;;-1:-1:-1;663:28:10;;;;;;;;;;;2632:102:1;;;;;;;;;;;;;:::i;367:21:10:-;;;;;;;;;;;;;:::i;1531:915::-;;;;;;:::i;:::-;;:::i;4169:153:1:-;;;;;;;;;;-1:-1:-1;4169:153:1;;;;;:::i;:::-;;:::i;2822:75:10:-;;;;;;;;;;;;;:::i;629:27::-;;;;;;;;;;-1:-1:-1;629:27:10;;;;;;;;5250:315:1;;;;;;;;;;-1:-1:-1;5250:315:1;;;;;:::i;:::-;;:::i;488:36:10:-;;;;;;;;;;;;;;;;729:50;;;;;;;;;;-1:-1:-1;729:50:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;2467:260;;;;;;;;;;-1:-1:-1;2467:260:10;;;;;:::i;:::-;;:::i;2735:79::-;;;;;;;;;;;;;:::i;1078:430::-;;;;;;;;;;-1:-1:-1;1078:430:10;;;;;:::i;:::-;;:::i;4388:162:1:-;;;;;;;;;;-1:-1:-1;4388:162:1;;;;;:::i;:::-;-1:-1:-1;;;;;4508:25:1;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4388:162;2081:198:0;;;;;;;;;;-1:-1:-1;2081:198:0;;;;;:::i;:::-;;:::i;3076:109:10:-;;;;;;;;;;-1:-1:-1;3076:109:10;;;;;:::i;:::-;;:::i;531:43::-;;;;;;;;;;;;;;;;1570:300:1;1672:4;-1:-1:-1;;;;;;1707:40:1;;-1:-1:-1;;;1707:40:1;;:104;;-1:-1:-1;;;;;;;1763:48:1;;-1:-1:-1;;;1763:48:1;1707:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:8;;;1827:36:1;1688:175;1570:300;-1:-1:-1;;1570:300:1:o;2470:98::-;2524:13;2556:5;2549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2470:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;-1:-1:-1;4071:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;4071:24:1;;3935:167::o;3467:407::-;3547:13;3563:23;3578:7;3563:14;:23::i;:::-;3547:39;;3610:5;-1:-1:-1;;;;;3604:11:1;:2;-1:-1:-1;;;;;3604:11:1;;3596:57;;;;-1:-1:-1;;;3596:57:1;;6841:2:11;3596:57:1;;;6823:21:11;6880:2;6860:18;;;6853:30;6919:34;6899:18;;;6892:62;-1:-1:-1;;;6970:18:11;;;6963:31;7011:19;;3596:57:1;;;;;;;;;719:10:6;-1:-1:-1;;;;;3685:21:1;;;;:62;;-1:-1:-1;3710:37:1;3727:5;719:10:6;4388:162:1;:::i;3710:37::-;3664:171;;;;-1:-1:-1;;;3664:171:1;;7243:2:11;3664:171:1;;;7225:21:11;7282:2;7262:18;;;7255:30;7321:34;7301:18;;;7294:62;7392:32;7372:18;;;7365:60;7442:19;;3664:171:1;7041:426:11;3664:171:1;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3537:337;3467:407;;:::o;4612:327::-;4801:41;719:10:6;4834:7:1;4801:18;:41::i;:::-;4793:100;;;;-1:-1:-1;;;4793:100:1;;;;;;;:::i;:::-;4904:28;4914:4;4920:2;4924:7;4904:9;:28::i;5005:179::-;5138:39;5155:4;5161:2;5165:7;5138:39;;;;;;;;;;;;:16;:39::i;2905:163:10:-;1094:13:0;:11;:13::i;:::-;2977:10:10::1;::::0;;;::::1;;;2976:11;2968:40;;;::::0;-1:-1:-1;;;2968:40:10;;8089:2:11;2968:40:10::1;::::0;::::1;8071:21:11::0;8128:2;8108:18;;;8101:30;-1:-1:-1;;;8147:18:11;;;8140:46;8203:18;;2968:40:10::1;7887:340:11::0;2968:40:10::1;3019:10;:17:::0;;-1:-1:-1;;3019:17:10::1;::::0;::::1;::::0;;3047:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2905:163:::0;:::o;2190:218:1:-;2262:7;2297:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2297:16:1;;2323:56;;;;-1:-1:-1;;;2323:56:1;;8434:2:11;2323:56:1;;;8416:21:11;8473:2;8453:18;;;8446:30;-1:-1:-1;;;8492:18:11;;;8485:54;8556:18;;2323:56:1;8232:348:11;1929:204:1;2001:7;-1:-1:-1;;;;;2028:19:1;;2020:73;;;;-1:-1:-1;;;2020:73:1;;8787:2:11;2020:73:1;;;8769:21:11;8826:2;8806:18;;;8799:30;8865:34;8845:18;;;8838:62;-1:-1:-1;;;8916:18:11;;;8909:39;8965:19;;2020:73:1;8585:405:11;2020:73:1;-1:-1:-1;;;;;;2110:16:1;;;;;:9;:16;;;;;;;1929:204::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;2632:102:1:-;2688:13;2720:7;2713:14;;;;;:::i;367:21:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1531:915::-;831:8;;;;830:9;822:40;;;;-1:-1:-1;;;822:40:10;;9197:2:11;822:40:10;;;9179:21:11;9236:2;9216:18;;;9209:30;-1:-1:-1;;;9255:18:11;;;9248:48;9313:18;;822:40:10;8995:342:11;822:40:10;1654:16:::1;;1640:11;;:30;;;;:::i;:::-;1630:6;::::0;1621:15:::1;::::0;:6;:15:::1;:::i;:::-;:49;;1599:126;;;::::0;-1:-1:-1;;;1599:126:10;;9939:2:11;1599:126:10::1;::::0;::::1;9921:21:11::0;9978:2;9958:18;;;9951:30;10017:29;9997:18;;;9990:57;10064:18;;1599:126:10::1;9737:351:11::0;1599:126:10::1;1740:9;::::0;::::1;::::0;::::1;;;1736:581;;;1812:10;1793:30;::::0;;;:18:::1;:30;::::0;;;;;::::1;;1792:31;1766:122;;;::::0;-1:-1:-1;;;1766:122:10;;10295:2:11;1766:122:10::1;::::0;::::1;10277:21:11::0;10334:2;10314:18;;;10307:30;10373:31;10353:18;;;10346:59;10422:18;;1766:122:10::1;10093:353:11::0;1766:122:10::1;1921:1;1911:6;:11;;1903:49;;;::::0;-1:-1:-1;;;1903:49:10;;10653:2:11;1903:49:10::1;::::0;::::1;10635:21:11::0;10692:2;10672:18;;;10665:30;-1:-1:-1;;;10711:18:11;;;10704:55;10776:18;;1903:49:10::1;10451:349:11::0;1903:49:10::1;2024:6;2006:15;;:24;;;;:::i;:::-;1993:9;:37;1967:122;;;::::0;-1:-1:-1;;;1967:122:10;;11180:2:11;1967:122:10::1;::::0;::::1;11162:21:11::0;11219:2;11199:18;;;11192:30;-1:-1:-1;;;11238:18:11;;;11231:53;11301:18;;1967:122:10::1;10978:347:11::0;1967:122:10::1;2123:10;2104:30;::::0;;;:18:::1;:30;::::0;;;;:37;;-1:-1:-1;;2104:37:10::1;2137:4;2104:37;::::0;;1736:581:::1;;;2206:6;2195:8;;:17;;;;:::i;:::-;2182:9;:30;2174:66;;;::::0;-1:-1:-1;;;2174:66:10;;11180:2:11;2174:66:10::1;::::0;::::1;11162:21:11::0;11219:2;11199:18;;;11192:30;-1:-1:-1;;;11238:18:11;;;11231:53;11301:18;;2174:66:10::1;10978:347:11::0;2174:66:10::1;2273:2;2263:6;:12;;2255:50;;;::::0;-1:-1:-1;;;2255:50:10;;10653:2:11;2255:50:10::1;::::0;::::1;10635:21:11::0;10692:2;10672:18;;;10665:30;-1:-1:-1;;;10711:18:11;;;10704:55;10776:18;;2255:50:10::1;10451:349:11::0;2255:50:10::1;2332:9;2327:112;2351:6;2347:1;:10;2327:112;;;2379:6;:8:::0;;;:6:::1;:8;::::0;::::1;:::i;:::-;;;;;;2402:25;2408:10;2420:6;;2402:5;:25::i;:::-;2359:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2327:112;;4169:153:1::0;4263:52;719:10:6;4296:8:1;4306;4263:18;:52::i;2822:75:10:-;1094:13:0;:11;:13::i;:::-;2872:9:10::1;:17:::0;;-1:-1:-1;;2872:17:10::1;::::0;;2822:75::o;5250:315:1:-;5418:41;719:10:6;5451:7:1;5418:18;:41::i;:::-;5410:100;;;;-1:-1:-1;;;5410:100:1;;;;;;;:::i;:::-;5520:38;5534:4;5540:2;5544:7;5553:4;5520:13;:38::i;:::-;5250:315;;;;:::o;2467:260:10:-;1094:13:0;:11;:13::i;:::-;2567:1:10::1;2557:6;2538:16;;:25;;;;:::i;:::-;:30;;2530:67;;;::::0;-1:-1:-1;;;2530:67:10;;11672:2:11;2530:67:10::1;::::0;::::1;11654:21:11::0;11711:2;11691:18;;;11684:30;11750:26;11730:18;;;11723:54;11794:18;;2530:67:10::1;11470:348:11::0;2530:67:10::1;2613:9;2608:112;2632:6;2628:1;:10;2608:112;;;2660:6;:8:::0;;;:6:::1;:8;::::0;::::1;:::i;:::-;;;;;;2683:25;2689:10;2701:6;;2683:5;:25::i;:::-;2640:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2608:112;;2735:79:::0;1094:13:0;:11;:13::i;:::-;2798:8:10::1;::::0;;-1:-1:-1;;2786:20:10;::::1;2798:8;::::0;;::::1;2797:9;2786:20;::::0;;2735:79::o;1078:430::-;7099:4:1;7122:16;;;:7;:16;;;;;;1179:13:10;;-1:-1:-1;;;;;7122:16:1;1210:56:10;;;;-1:-1:-1;;;1210:56:10;;12025:2:11;1210:56:10;;;12007:21:11;12064:2;12044:18;;;12037:30;12103:29;12083:18;;;12076:57;12150:18;;1210:56:10;11823:351:11;1210:56:10;1281:10;;;;;;;1277:224;;;1378:7;1387:18;:7;:16;:18::i;:::-;1407:13;1361:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1308:132;;1078:430;;;:::o;1277:224::-;1480:9;1473:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1078:430;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;13946:2:11;2161:73:0::1;::::0;::::1;13928:21:11::0;13985:2;13965:18;;;13958:30;14024:34;14004:18;;;13997:62;-1:-1:-1;;;14075:18:11;;;14068:36;14121:19;;2161:73:0::1;13744:402:11::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;3076:109:10:-;1094:13:0;:11;:13::i;:::-;3158:19:10::1;::::0;-1:-1:-1;;;;;3158:11:10;::::1;::::0;:19;::::1;;;::::0;3170:6;;3158:19:::1;::::0;;;3170:6;3158:11;:19;::::1;;;;;;;;;;;;;::::0;::::1;;;;11657:133:1::0;7099:4;7122:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7122:16:1;11730:53;;;;-1:-1:-1;;;11730:53:1;;8434:2:11;11730:53:1;;;8416:21:11;8473:2;8453:18;;;8446:30;-1:-1:-1;;;8492:18:11;;;8485:54;8556:18;;11730:53:1;8232:348:11;10959:171:1;11033:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11033:29:1;-1:-1:-1;;;;;11033:29:1;;;;;;;;:24;;11086:23;11033:24;11086:14;:23::i;:::-;-1:-1:-1;;;;;11077:46:1;;;;;;;;;;;10959:171;;:::o;7317:261::-;7410:4;7426:13;7442:23;7457:7;7442:14;:23::i;:::-;7426:39;;7494:5;-1:-1:-1;;;;;7483:16:1;:7;-1:-1:-1;;;;;7483:16:1;;:52;;;-1:-1:-1;;;;;;4508:25:1;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7503:32;7483:87;;;;7563:7;-1:-1:-1;;;;;7539:31:1;:20;7551:7;7539:11;:20::i;:::-;-1:-1:-1;;;;;7539:31:1;;7483:87;7475:96;7317:261;-1:-1:-1;;;;7317:261:1:o;10242:605::-;10396:4;-1:-1:-1;;;;;10369:31:1;:23;10384:7;10369:14;:23::i;:::-;-1:-1:-1;;;;;10369:31:1;;10361:81;;;;-1:-1:-1;;;10361:81:1;;14353:2:11;10361:81:1;;;14335:21:11;14392:2;14372:18;;;14365:30;14431:34;14411:18;;;14404:62;-1:-1:-1;;;14482:18:11;;;14475:35;14527:19;;10361:81:1;14151:401:11;10361:81:1;-1:-1:-1;;;;;10460:16:1;;10452:65;;;;-1:-1:-1;;;10452:65:1;;14759:2:11;10452:65:1;;;14741:21:11;14798:2;14778:18;;;14771:30;14837:34;14817:18;;;14810:62;-1:-1:-1;;;14888:18:11;;;14881:34;14932:19;;10452:65:1;14557:400:11;10452:65:1;10629:29;10646:1;10650:7;10629:8;:29::i;:::-;-1:-1:-1;;;;;10669:15:1;;;;;;:9;:15;;;;;:20;;10688:1;;10669:15;:20;;10688:1;;10669:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10699:13:1;;;;;;:9;:13;;;;;:18;;10716:1;;10699:13;:18;;10716:1;;10699:18;:::i;:::-;;;;-1:-1:-1;;10727:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10727:21:1;-1:-1:-1;;;;;10727:21:1;;;;;;;;;10764:27;;10727:16;;10764:27;;;;;;;3537:337;3467:407;;:::o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;719:10:6;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;15164:2:11;1414:68:0;;;15146:21:11;;;15183:18;;;15176:30;15242:34;15222:18;;;15215:62;15294:18;;1414:68:0;14962:356:11;2433:187:0;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;-1:-1:-1;;;;;;2541:17:0;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;8868:427:1:-;-1:-1:-1;;;;;8947:16:1;;8939:61;;;;-1:-1:-1;;;8939:61:1;;15525:2:11;8939:61:1;;;15507:21:11;;;15544:18;;;15537:30;15603:34;15583:18;;;15576:62;15655:18;;8939:61:1;15323:356:11;8939:61:1;7099:4;7122:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7122:16:1;:30;9010:58;;;;-1:-1:-1;;;9010:58:1;;15886:2:11;9010:58:1;;;15868:21:11;15925:2;15905:18;;;15898:30;15964;15944:18;;;15937:58;16012:18;;9010:58:1;15684:352:11;9010:58:1;-1:-1:-1;;;;;9135:13:1;;;;;;:9;:13;;;;;:18;;9152:1;;9135:13;:18;;9152:1;;9135:18;:::i;:::-;;;;-1:-1:-1;;9163:16:1;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9163:21:1;-1:-1:-1;;;;;9163:21:1;;;;;;;;9200:33;;9163:16;;;9200:33;;9163:16;;9200:33;3047:13:10::1;2905:163:::0;:::o;11266:307:1:-;11416:8;-1:-1:-1;;;;;11407:17:1;:5;-1:-1:-1;;;;;11407:17:1;;11399:55;;;;-1:-1:-1;;;11399:55:1;;16243:2:11;11399:55:1;;;16225:21:11;16282:2;16262:18;;;16255:30;16321:27;16301:18;;;16294:55;16366:18;;11399:55:1;16041:349:11;11399:55:1;-1:-1:-1;;;;;11464:25:1;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11464:46:1;;;;;;;;;;11525:41;;540::11;;;11525::1;;513:18:11;11525:41:1;;;;;;;11266:307;;;:::o;6426:305::-;6576:28;6586:4;6592:2;6596:7;6576:9;:28::i;:::-;6622:47;6645:4;6651:2;6655:7;6664:4;6622:22;:47::i;:::-;6614:110;;;;-1:-1:-1;;;6614:110:1;;;;;;;:::i;392:703:7:-;448:13;665:5;674:1;665:10;661:51;;-1:-1:-1;;691:10:7;;;;;;;;;;;;-1:-1:-1;;;691:10:7;;;;;392:703::o;661:51::-;736:5;721:12;775:75;782:9;;775:75;;807:8;;;;:::i;:::-;;-1:-1:-1;829:10:7;;-1:-1:-1;837:2:7;829:10;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;881:17:7;;859:39;;908:150;915:10;;908:150;;941:11;951:1;941:11;;:::i;:::-;;-1:-1:-1;1009:10:7;1017:2;1009:5;:10;:::i;:::-;996:24;;:2;:24;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;966:56:7;;;;;;;;-1:-1:-1;1036:11:7;1045:2;1036:11;;:::i;:::-;;;908:150;;12342:831:1;12491:4;-1:-1:-1;;;;;12511:13:1;;1465:19:5;:23;12507:660:1;;12546:71;;-1:-1:-1;;;12546:71:1;;-1:-1:-1;;;;;12546:36:1;;;;;:71;;719:10:6;;12597:4:1;;12603:7;;12612:4;;12546:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12546:71:1;;;;;;;;-1:-1:-1;;12546:71:1;;;;;;;;;;;;:::i;:::-;;;12542:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12784:6;:13;12801:1;12784:18;12780:321;;12826:60;;-1:-1:-1;;;12826:60:1;;;;;;;:::i;12780:321::-;13053:6;13047:13;13038:6;13034:2;13030:15;13023:38;12542:573;-1:-1:-1;;;;;;12667:51:1;-1:-1:-1;;;12667:51:1;;-1:-1:-1;12660:58:1;;12507:660;-1:-1:-1;13152:4:1;12342:831;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:11;-1:-1:-1;;;;;;88:32:11;;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;:::-;384:5;150:245;-1:-1:-1;;;150:245:11:o;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:11;1004:16;;997:27;774:258::o;1037:::-;1079:3;1117:5;1111:12;1144:6;1139:3;1132:19;1160:63;1216:6;1209:4;1204:3;1200:14;1193:4;1186:5;1182:16;1160:63;:::i;:::-;1277:2;1256:15;-1:-1:-1;;1252:29:11;1243:39;;;;1284:4;1239:50;;1037:258;-1:-1:-1;;1037:258:11:o;1300:220::-;1449:2;1438:9;1431:21;1412:4;1469:45;1510:2;1499:9;1495:18;1487:6;1469:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:11;;1525:180;-1:-1:-1;1525:180:11:o;1918:131::-;-1:-1:-1;;;;;1993:31:11;;1983:42;;1973:70;;2039:1;2036;2029:12;2054:315;2122:6;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2238:9;2225:23;2257:31;2282:5;2257:31;:::i;:::-;2307:5;2359:2;2344:18;;;;2331:32;;-1:-1:-1;;;2054:315:11:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:11;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:11;2805:18;;;;2792:32;;2374:456::o;2835:127::-;2896:10;2891:3;2887:20;2884:1;2877:31;2927:4;2924:1;2917:15;2951:4;2948:1;2941:15;2967:632;3032:5;3062:18;3103:2;3095:6;3092:14;3089:40;;;3109:18;;:::i;:::-;3184:2;3178:9;3152:2;3238:15;;-1:-1:-1;;3234:24:11;;;3260:2;3230:33;3226:42;3214:55;;;3284:18;;;3304:22;;;3281:46;3278:72;;;3330:18;;:::i;:::-;3370:10;3366:2;3359:22;3399:6;3390:15;;3429:6;3421;3414:22;3469:3;3460:6;3455:3;3451:16;3448:25;3445:45;;;3486:1;3483;3476:12;3445:45;3536:6;3531:3;3524:4;3516:6;3512:17;3499:44;3591:1;3584:4;3575:6;3567;3563:19;3559:30;3552:41;;;;2967:632;;;;;:::o;3604:451::-;3673:6;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3782:9;3769:23;3815:18;3807:6;3804:30;3801:50;;;3847:1;3844;3837:12;3801:50;3870:22;;3923:4;3915:13;;3911:27;-1:-1:-1;3901:55:11;;3952:1;3949;3942:12;3901:55;3975:74;4041:7;4036:2;4023:16;4018:2;4014;4010:11;3975:74;:::i;4060:247::-;4119:6;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4227:9;4214:23;4246:31;4271:5;4246:31;:::i;4312:416::-;4377:6;4385;4438:2;4426:9;4417:7;4413:23;4409:32;4406:52;;;4454:1;4451;4444:12;4406:52;4493:9;4480:23;4512:31;4537:5;4512:31;:::i;:::-;4562:5;-1:-1:-1;4619:2:11;4604:18;;4591:32;4661:15;;4654:23;4642:36;;4632:64;;4692:1;4689;4682:12;4632:64;4715:7;4705:17;;;4312:416;;;;;:::o;4733:795::-;4828:6;4836;4844;4852;4905:3;4893:9;4884:7;4880:23;4876:33;4873:53;;;4922:1;4919;4912:12;4873:53;4961:9;4948:23;4980:31;5005:5;4980:31;:::i;:::-;5030:5;-1:-1:-1;5087:2:11;5072:18;;5059:32;5100:33;5059:32;5100:33;:::i;:::-;5152:7;-1:-1:-1;5206:2:11;5191:18;;5178:32;;-1:-1:-1;5261:2:11;5246:18;;5233:32;5288:18;5277:30;;5274:50;;;5320:1;5317;5310:12;5274:50;5343:22;;5396:4;5388:13;;5384:27;-1:-1:-1;5374:55:11;;5425:1;5422;5415:12;5374:55;5448:74;5514:7;5509:2;5496:16;5491:2;5487;5483:11;5448:74;:::i;:::-;5438:84;;;4733:795;;;;;;;:::o;5533:388::-;5601:6;5609;5662:2;5650:9;5641:7;5637:23;5633:32;5630:52;;;5678:1;5675;5668:12;5630:52;5717:9;5704:23;5736:31;5761:5;5736:31;:::i;:::-;5786:5;-1:-1:-1;5843:2:11;5828:18;;5815:32;5856:33;5815:32;5856:33;:::i;6254:380::-;6333:1;6329:12;;;;6376;;;6397:61;;6451:4;6443:6;6439:17;6429:27;;6397:61;6504:2;6496:6;6493:14;6473:18;6470:38;6467:161;;6550:10;6545:3;6541:20;6538:1;6531:31;6585:4;6582:1;6575:15;6613:4;6610:1;6603:15;6467:161;;6254:380;;;:::o;7472:410::-;7674:2;7656:21;;;7713:2;7693:18;;;7686:30;7752:34;7747:2;7732:18;;7725:62;-1:-1:-1;;;7818:2:11;7803:18;;7796:44;7872:3;7857:19;;7472:410::o;9342:127::-;9403:10;9398:3;9394:20;9391:1;9384:31;9434:4;9431:1;9424:15;9458:4;9455:1;9448:15;9474:125;9514:4;9542:1;9539;9536:8;9533:34;;;9547:18;;:::i;:::-;-1:-1:-1;9584:9:11;;9474:125::o;9604:128::-;9644:3;9675:1;9671:6;9668:1;9665:13;9662:39;;;9681:18;;:::i;:::-;-1:-1:-1;9717:9:11;;9604:128::o;10805:168::-;10845:7;10911:1;10907;10903:6;10899:14;10896:1;10893:21;10888:1;10881:9;10874:17;10870:45;10867:71;;;10918:18;;:::i;:::-;-1:-1:-1;10958:9:11;;10805:168::o;11330:135::-;11369:3;11390:17;;;11387:43;;11410:18;;:::i;:::-;-1:-1:-1;11457:1:11;11446:13;;11330:135::o;12305:973::-;12390:12;;12355:3;;12445:1;12465:18;;;;12518;;;;12545:61;;12599:4;12591:6;12587:17;12577:27;;12545:61;12625:2;12673;12665:6;12662:14;12642:18;12639:38;12636:161;;12719:10;12714:3;12710:20;12707:1;12700:31;12754:4;12751:1;12744:15;12782:4;12779:1;12772:15;12636:161;12813:18;12840:104;;;;12958:1;12953:319;;;;12806:466;;12840:104;-1:-1:-1;;12873:24:11;;12861:37;;12918:16;;;;-1:-1:-1;12840:104:11;;12953:319;12252:1;12245:14;;;12289:4;12276:18;;13047:1;13061:165;13075:6;13072:1;13069:13;13061:165;;;13153:14;;13140:11;;;13133:35;13196:16;;;;13090:10;;13061:165;;;13065:3;;13255:6;13250:3;13246:16;13239:23;;12806:466;;;;;;;12305:973;;;;:::o;13283:456::-;13504:3;13532:38;13566:3;13558:6;13532:38;:::i;:::-;13599:6;13593:13;13615:52;13660:6;13656:2;13649:4;13641:6;13637:17;13615:52;:::i;:::-;13683:50;13725:6;13721:2;13717:15;13709:6;13683:50;:::i;:::-;13676:57;13283:456;-1:-1:-1;;;;;;;13283:456:11:o;16395:414::-;16597:2;16579:21;;;16636:2;16616:18;;;16609:30;16675:34;16670:2;16655:18;;16648:62;-1:-1:-1;;;16741:2:11;16726:18;;16719:48;16799:3;16784:19;;16395:414::o;16814:127::-;16875:10;16870:3;16866:20;16863:1;16856:31;16906:4;16903:1;16896:15;16930:4;16927:1;16920:15;16946:120;16986:1;17012;17002:35;;17017:18;;:::i;:::-;-1:-1:-1;17051:9:11;;16946:120::o;17071:112::-;17103:1;17129;17119:35;;17134:18;;:::i;:::-;-1:-1:-1;17168:9:11;;17071:112::o;17188:127::-;17249:10;17244:3;17240:20;17237:1;17230:31;17280:4;17277:1;17270:15;17304:4;17301:1;17294:15;17320:489;-1:-1:-1;;;;;17589:15:11;;;17571:34;;17641:15;;17636:2;17621:18;;17614:43;17688:2;17673:18;;17666:34;;;17736:3;17731:2;17716:18;;17709:31;;;17514:4;;17757:46;;17783:19;;17775:6;17757:46;:::i;:::-;17749:54;17320:489;-1:-1:-1;;;;;;17320:489:11:o;17814:249::-;17883:6;17936:2;17924:9;17915:7;17911:23;17907:32;17904:52;;;17952:1;17949;17942:12;17904:52;17984:9;17978:16;18003:30;18027:5;18003:30;:::i

Swarm Source

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