ETH Price: $2,370.75 (-3.45%)

Token

Invisiverse Genesis (IVG)
 

Overview

Max Total Supply

1,210 IVG

Holders

189

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
12 IVG
0xcc86c675ac9f00e440f4f80b6d27b881de0f128a
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:
Invisiverse

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Invisiverse.sol
//SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract Invisiverse is ERC721URIStorage, Ownable {
    event MintInvisiverse(
        address indexed minter,
        uint256 startWith,
        uint256 times
    );

    uint256 public totalInvisiverse;
    uint256 public totalCount = 4010;
    uint256 public psMAX = 2500;
    uint256 public maxBatch = 30;
    uint256 public WLprice = 0.07 ether;
    uint256 public price = 0.12 ether;
    uint256 public WHITELIST_LIMIT = 3;
    string public baseURI;
    bytes32 public whitelistRoot;
    bool public started;
    bool public whiteListStart;
    mapping(address => uint256) whiteListMintCount;
    uint256 addressRegistryCount;

    constructor(
        string memory name_,
        string memory symbol_,
        string memory baseURI_,
        bytes32 whitelistRoot_
    ) ERC721(name_, symbol_) {
        baseURI = baseURI_;
        whitelistRoot = whitelistRoot_;
    }

    function totalSupply() public view virtual returns (uint256) {
        return totalInvisiverse;
    }

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

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

    function setWhitelistLimit(uint256 newLimit) public onlyOwner {
        WHITELIST_LIMIT = newLimit;
    }

    function setMerkleRoot(bytes32 newMerkleRoot) public onlyOwner {
        setRoot(newMerkleRoot);
    }

    function setPresaleTotal(uint256 newMax) public onlyOwner {
        require(newMax <= totalCount, "cant be above supply bro");
        psMAX = newMax;
    }

    function changePrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }

    function changeWLPrice(uint256 _newPrice) public onlyOwner {
        WLprice = _newPrice;
    }

    function setTokenURI(uint256 _tokenId, string memory _tokenURI)
        public
        onlyOwner
    {
        _setTokenURI(_tokenId, _tokenURI);
    }

    function setNormalStart(bool _start) public onlyOwner {
        started = _start;
    }

    function setWhiteListStart(bool _start) public onlyOwner {
        whiteListStart = _start;
    }

    function getWhitelistMintAmount(address _addr)
        public
        view
        virtual
        returns (uint256)
    {
        return whiteListMintCount[_addr];
    }

    function MintInvisiverses(uint256 _times) public payable {
        require(started, "not started");
        require(_times > 0 && _times <= maxBatch, "mint wrong number");
        require(totalInvisiverse + _times <= totalCount, "too much");
        require(msg.value == _times * price, "value error");
        payable(owner()).transfer(msg.value);
        emit MintInvisiverse(_msgSender(), totalInvisiverse + 1, _times);
        for (uint256 i = 0; i < _times; i++) {
            _mint(_msgSender(), 1 + totalInvisiverse++);
        }
    }

    function adminMint(uint256 _times) public payable onlyOwner {
        require(_times > 0 && _times <= maxBatch, "mint wrong number");
        require(totalInvisiverse + _times <= totalCount, "too much");
        emit MintInvisiverse(_msgSender(), totalInvisiverse + 1, _times);
        for (uint256 i = 0; i < _times; i++) {
            _mint(_msgSender(), 1 + totalInvisiverse++);
        }
    }

    function whitelistMint(uint256 _times, bytes32[] calldata proof)
        public
        payable
    {
        require(isWhitelisted(msg.sender, proof), "You are not white listed");
        require(whiteListStart, "Hang on boys, youll get in soon");
        if (whiteListMintCount[msg.sender] == 0) {
            whiteListMintCount[msg.sender] = WHITELIST_LIMIT + 1;
        }
        require(
            whiteListMintCount[msg.sender] - _times >= 1,
            "Over mint limit for address."
        );
        require(
            totalInvisiverse + _times <= psMAX,
            "Mint amount will exceed total presale amount."
        );
        require(msg.value == _times * WLprice, "Incorrect transaction value.");
        payable(owner()).transfer(msg.value);
        whiteListMintCount[_msgSender()] -= _times;
        emit MintInvisiverse(_msgSender(), totalInvisiverse + 1, _times);
        for (uint256 i = 0; i < _times; i++) {
            _mint(_msgSender(), 1 + totalInvisiverse++);
        }
    }

    function isWhitelisted(address toCheck, bytes32[] calldata proof)
        public
        view
        returns (bool _isWhitelisted)
    {
        bytes32 node = keccak256(abi.encodePacked(toCheck));
        MerkleProof.verify(proof, whitelistRoot, node)
            ? (_isWhitelisted = true)
            : (_isWhitelisted = false);
        return _isWhitelisted;
    }

    function setRoot(bytes32 newMerkleRoot) internal {
        whitelistRoot = newMerkleRoot;
    }

    function adminMintGiveaways(address _addr) public onlyOwner {
        require(
            totalInvisiverse + 1 <= totalCount,
            "Mint amount will exceed total collection amount."
        );
        emit MintInvisiverse(_addr, totalInvisiverse + 1, 1);
        _mint(_addr, 1 + totalInvisiverse++);
    }

    function adminMintGiveawayBatch(address[] memory _addr) public onlyOwner {
        require(_addr.length <= 30, "try smaller batch");
        require(
            totalInvisiverse + _addr.length <= totalCount,
            "Mint amount will exceed total collection amount."
        );
        for (uint256 i = 0; i < _addr.length; i++) {
            emit MintInvisiverse(_addr[i], totalInvisiverse + 1, 1);
            _mint(_addr[i], 1 + totalInvisiverse++);
        }
    }
}

File 2 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 of token that is not own");
        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);
    }

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

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

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

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

File 6 of 13 : 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 7 of 13 : 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 8 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : 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 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 13 : 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",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"bytes32","name":"whitelistRoot_","type":"bytes32"}],"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":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"MintInvisiverse","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":"_times","type":"uint256"}],"name":"MintInvisiverses","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"WHITELIST_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLprice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"}],"name":"adminMintGiveawayBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"adminMintGiveaways","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":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changeWLPrice","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":"_addr","type":"address"}],"name":"getWhitelistMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toCheck","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"_isWhitelisted","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatch","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"psMAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setNormalStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setPresaleTotal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setWhiteListStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setWhitelistLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalInvisiverse","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"}]

6080604052610faa6009556109c4600a55601e600b5566f8b0a10e470000600c556701aa535d3d0c0000600d556003600e553480156200003e57600080fd5b5060405162002f5b38038062002f5b83398101604081905262000061916200027f565b8351849084906200007a90600090602085019062000126565b5080516200009090600190602084019062000126565b505050620000ad620000a7620000d060201b60201c565b620000d4565b8151620000c290600f90602085019062000126565b506010555062000367915050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001349062000314565b90600052602060002090601f016020900481019282620001585760008555620001a3565b82601f106200017357805160ff1916838001178555620001a3565b82800160010185558215620001a3579182015b82811115620001a357825182559160200191906001019062000186565b50620001b1929150620001b5565b5090565b5b80821115620001b15760008155600101620001b6565b600082601f830112620001dd578081fd5b81516001600160401b0380821115620001fa57620001fa62000351565b604051601f8301601f19908116603f0116810190828211818310171562000225576200022562000351565b8160405283815260209250868385880101111562000241578485fd5b8491505b8382101562000264578582018301518183018401529082019062000245565b838211156200027557848385830101525b9695505050505050565b6000806000806080858703121562000295578384fd5b84516001600160401b0380821115620002ac578586fd5b620002ba88838901620001cc565b95506020870151915080821115620002d0578485fd5b620002de88838901620001cc565b94506040870151915080821115620002f4578384fd5b506200030387828801620001cc565b606096909601519497939650505050565b6002810460018216806200032957607f821691505b602082108114156200034b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612be480620003776000396000f3fe6080604052600436106102675760003560e01c80638289da6011610144578063b59602c0116100b6578063d2cab0561161007a578063d2cab056146106ff578063d9ef062414610712578063e0f6b8bf14610725578063e39795081461073b578063e985e9c514610751578063f2fde38b1461079a57610267565b8063b59602c014610676578063b88d4fde1461068c578063c1f26123146106ac578063c87b56dd146106bf578063d2521ae8146106df57610267565b806395d89b411161010857806395d89b41146105bf5780639afdf2f3146105d4578063a035b1fe1461060a578063a08c61d314610620578063a22cb46514610636578063a2b40d191461065657610267565b80638289da601461052257806388eae705146105425780638b1a79fe146105615780638da5cb5b14610581578063917bb57f1461059f57610267565b80633c49a8a9116101dd5780636352211e116101a15780636352211e1461048257806367765b87146104a25780636c0360eb146104b857806370a08231146104cd578063715018a6146104ed5780637cb647591461050257610267565b80633c49a8a9146103e257806342842e0e1461040257806355f804b3146104225780635a23dd99146104425780635f4f603d1461046257610267565b806318160ddd1161022f57806318160ddd1461033d5780631f2698ab1461035c57806323b872dd1461037657806334eafb1114610396578063386bfc98146103ac578063397ac8bb146103c257610267565b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb578063162094c41461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612759565b6107ba565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661080e565b60405161029891906128d2565b3480156102cf57600080fd5b506102e36102de366004612741565b6108a0565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612650565b61092d565b005b34801561032957600080fd5b5061031b6103383660046127f5565b610a43565b34801561034957600080fd5b506008545b604051908152602001610298565b34801561036857600080fd5b5060115461028c9060ff1681565b34801561038257600080fd5b5061031b610391366004612522565b610a7b565b3480156103a257600080fd5b5061034e60095481565b3480156103b857600080fd5b5061034e60105481565b3480156103ce57600080fd5b5061031b6103dd366004612679565b610aac565b3480156103ee57600080fd5b5061031b6103fd3660046124d6565b610c22565b34801561040e57600080fd5b5061031b61041d366004612522565b610cd3565b34801561042e57600080fd5b5061031b61043d366004612791565b610cee565b34801561044e57600080fd5b5061028c61045d3660046125d6565b610d2b565b34801561046e57600080fd5b5061031b61047d366004612727565b610dc5565b34801561048e57600080fd5b506102e361049d366004612741565b610e09565b3480156104ae57600080fd5b5061034e600b5481565b3480156104c457600080fd5b506102b6610e80565b3480156104d957600080fd5b5061034e6104e83660046124d6565b610f0e565b3480156104f957600080fd5b5061031b610f95565b34801561050e57600080fd5b5061031b61051d366004612741565b610fcb565b34801561052e57600080fd5b5061031b61053d366004612741565b610ffe565b34801561054e57600080fd5b5060115461028c90610100900460ff1681565b34801561056d57600080fd5b5061031b61057c366004612741565b61107f565b34801561058d57600080fd5b506007546001600160a01b03166102e3565b3480156105ab57600080fd5b5061031b6105ba366004612727565b6110ae565b3480156105cb57600080fd5b506102b66110eb565b3480156105e057600080fd5b5061034e6105ef3660046124d6565b6001600160a01b031660009081526012602052604090205490565b34801561061657600080fd5b5061034e600d5481565b34801561062c57600080fd5b5061034e600e5481565b34801561064257600080fd5b5061031b610651366004612627565b6110fa565b34801561066257600080fd5b5061031b610671366004612741565b611105565b34801561068257600080fd5b5061034e60085481565b34801561069857600080fd5b5061031b6106a736600461255d565b611134565b61031b6106ba366004612741565b61116c565b3480156106cb57600080fd5b506102b66106da366004612741565b61129b565b3480156106eb57600080fd5b5061031b6106fa366004612741565b611406565b61031b61070d3660046127c4565b611435565b61031b610720366004612741565b61170d565b34801561073157600080fd5b5061034e600a5481565b34801561074757600080fd5b5061034e600c5481565b34801561075d57600080fd5b5061028c61076c3660046124f0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a657600080fd5b5061031b6107b53660046124d6565b6118c9565b60006001600160e01b031982166380ac58cd60e01b14806107eb57506001600160e01b03198216635b5e139f60e01b145b8061080657506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b60606000805461081d90612acc565b80601f016020809104026020016040519081016040528092919081815260200182805461084990612acc565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b60006108ab82611961565b6109115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061093882610e09565b9050806001600160a01b0316836001600160a01b031614156109a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610908565b336001600160a01b03821614806109c257506109c2813361076c565b610a345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610908565b610a3e838361197e565b505050565b6007546001600160a01b03163314610a6d5760405162461bcd60e51b815260040161090890612937565b610a7782826119ec565b5050565b610a853382611a77565b610aa15760405162461bcd60e51b81526004016109089061296c565b610a3e838383611b5d565b6007546001600160a01b03163314610ad65760405162461bcd60e51b815260040161090890612937565b601e81511115610b1c5760405162461bcd60e51b81526020600482015260116024820152700e8e4f240e6dac2d8d8cae440c4c2e8c6d607b1b6044820152606401610908565b6009548151600854610b2e9190612a3e565b1115610b4c5760405162461bcd60e51b8152600401610908906129bd565b60005b8151811015610a7757818181518110610b7857634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b0316600080516020612b8f8339815191526008546001610ba79190612a3e565b60408051918252600160208301520160405180910390a2610c10828281518110610be157634e487b7160e01b600052603260045260246000fd5b602002602001015160086000815480929190610bfc90612b07565b90915550610c0b906001612a3e565b611cfd565b80610c1a81612b07565b915050610b4f565b6007546001600160a01b03163314610c4c5760405162461bcd60e51b815260040161090890612937565b600954600854610c5d906001612a3e565b1115610c7b5760405162461bcd60e51b8152600401610908906129bd565b806001600160a01b0316600080516020612b8f8339815191526008546001610ca39190612a3e565b60408051918252600160208301520160405180910390a260088054610cd0918391906000610bfc83612b07565b50565b610a3e83838360405180602001604052806000815250611134565b6007546001600160a01b03163314610d185760405162461bcd60e51b815260040161090890612937565b8051610a7790600f906020840190612356565b6040516bffffffffffffffffffffffff19606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050610da8848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010549150849050611e30565b610db6576000915081610dbc565b60019150815b50509392505050565b6007546001600160a01b03163314610def5760405162461bcd60e51b815260040161090890612937565b601180549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806108065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610908565b600f8054610e8d90612acc565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb990612acc565b8015610f065780601f10610edb57610100808354040283529160200191610f06565b820191906000526020600020905b815481529060010190602001808311610ee957829003601f168201915b505050505081565b60006001600160a01b038216610f795760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610908565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610fbf5760405162461bcd60e51b815260040161090890612937565b610fc96000611e46565b565b6007546001600160a01b03163314610ff55760405162461bcd60e51b815260040161090890612937565b610cd081601055565b6007546001600160a01b031633146110285760405162461bcd60e51b815260040161090890612937565b60095481111561107a5760405162461bcd60e51b815260206004820152601860248201527f63616e742062652061626f766520737570706c792062726f00000000000000006044820152606401610908565b600a55565b6007546001600160a01b031633146110a95760405162461bcd60e51b815260040161090890612937565b600c55565b6007546001600160a01b031633146110d85760405162461bcd60e51b815260040161090890612937565b6011805460ff1916911515919091179055565b60606001805461081d90612acc565b610a77338383611e98565b6007546001600160a01b0316331461112f5760405162461bcd60e51b815260040161090890612937565b600d55565b61113e3383611a77565b61115a5760405162461bcd60e51b81526004016109089061296c565b61116684848484611f67565b50505050565b6007546001600160a01b031633146111965760405162461bcd60e51b815260040161090890612937565b6000811180156111a85750600b548111155b6111e85760405162461bcd60e51b815260206004820152601160248201527036b4b73a103bb937b73390373ab6b132b960791b6044820152606401610908565b600954816008546111f99190612a3e565b11156112325760405162461bcd60e51b81526020600482015260086024820152670e8dede40daeac6d60c31b6044820152606401610908565b6008543390600080516020612b8f83398151915290611252906001612a3e565b60408051918252602082018590520160405180910390a260005b81811015610a7757611289335b60088054906000610bfc83612b07565b8061129381612b07565b91505061126c565b60606112a682611961565b61130c5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610908565b6000828152600660205260408120805461132590612acc565b80601f016020809104026020016040519081016040528092919081815260200182805461135190612acc565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b5050505050905060006113af611f9a565b90508051600014156113c357509050610809565b8151156113f55780826040516020016113dd929190612866565b60405160208183030381529060405292505050610809565b6113fe84611fa9565b949350505050565b6007546001600160a01b031633146114305760405162461bcd60e51b815260040161090890612937565b600e55565b611440338383610d2b565b61148c5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f74207768697465206c697374656400000000000000006044820152606401610908565b601154610100900460ff166114e35760405162461bcd60e51b815260206004820152601f60248201527f48616e67206f6e20626f79732c20796f756c6c2067657420696e20736f6f6e006044820152606401610908565b3360009081526012602052604090205461151657600e54611505906001612a3e565b336000908152601260205260409020555b33600090815260126020526040902054600190611534908590612a89565b10156115825760405162461bcd60e51b815260206004820152601c60248201527f4f766572206d696e74206c696d697420666f7220616464726573732e000000006044820152606401610908565b600a54836008546115939190612a3e565b11156115f75760405162461bcd60e51b815260206004820152602d60248201527f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20707260448201526c32b9b0b6329030b6b7bab73a1760991b6064820152608401610908565b600c546116049084612a6a565b34146116525760405162461bcd60e51b815260206004820152601c60248201527f496e636f7272656374207472616e73616374696f6e2076616c75652e000000006044820152606401610908565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561168b573d6000803e3d6000fd5b5033600090815260126020526040812080548592906116ab908490612a89565b90915550506008543390600080516020612b8f833981519152906116d0906001612a3e565b60408051918252602082018790520160405180910390a260005b83811015611166576116fb33611279565b8061170581612b07565b9150506116ea565b60115460ff1661174d5760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b6044820152606401610908565b60008111801561175f5750600b548111155b61179f5760405162461bcd60e51b815260206004820152601160248201527036b4b73a103bb937b73390373ab6b132b960791b6044820152606401610908565b600954816008546117b09190612a3e565b11156117e95760405162461bcd60e51b81526020600482015260086024820152670e8dede40daeac6d60c31b6044820152606401610908565b600d546117f69082612a6a565b34146118325760405162461bcd60e51b815260206004820152600b60248201526a3b30b63ab29032b93937b960a91b6044820152606401610908565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561186b573d6000803e3d6000fd5b506008543390600080516020612b8f8339815191529061188c906001612a3e565b60408051918252602082018590520160405180910390a260005b81811015610a77576118b733611279565b806118c181612b07565b9150506118a6565b6007546001600160a01b031633146118f35760405162461bcd60e51b815260040161090890612937565b6001600160a01b0381166119585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610908565b610cd081611e46565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119b382610e09565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119f582611961565b611a585760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610908565b60008281526006602090815260409091208251610a3e92840190612356565b6000611a8282611961565b611ae35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610908565b6000611aee83610e09565b9050806001600160a01b0316846001600160a01b03161480611b295750836001600160a01b0316611b1e846108a0565b6001600160a01b0316145b806113fe57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166113fe565b826001600160a01b0316611b7082610e09565b6001600160a01b031614611bd85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610908565b6001600160a01b038216611c3a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610908565b611c4560008261197e565b6001600160a01b0383166000908152600360205260408120805460019290611c6e908490612a89565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c9c908490612a3e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216611d535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610908565b611d5c81611961565b15611da95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610908565b6001600160a01b0382166000908152600360205260408120805460019290611dd2908490612a3e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600082611e3d8584612074565b14949350505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611efa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610908565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f72848484611b5d565b611f7e8484848461212e565b6111665760405162461bcd60e51b8152600401610908906128e5565b6060600f805461081d90612acc565b6060611fb482611961565b6120185760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610908565b6000612022611f9a565b90506000815111612042576040518060200160405280600081525061206d565b8061204c8461223b565b60405160200161205d929190612866565b6040516020818303038152906040525b9392505050565b600081815b84518110156121265760008582815181106120a457634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116120e6576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612113565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061211e81612b07565b915050612079565b509392505050565b60006001600160a01b0384163b1561223057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612172903390899088908890600401612895565b602060405180830381600087803b15801561218c57600080fd5b505af19250505080156121bc575060408051601f3d908101601f191682019092526121b991810190612775565b60015b612216573d8080156121ea576040519150601f19603f3d011682016040523d82523d6000602084013e6121ef565b606091505b50805161220e5760405162461bcd60e51b8152600401610908906128e5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113fe565b506001949350505050565b60608161226057506040805180820190915260018152600360fc1b6020820152610809565b8160005b811561228a578061227481612b07565b91506122839050600a83612a56565b9150612264565b60008167ffffffffffffffff8111156122b357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122dd576020820181803683370190505b5090505b84156113fe576122f2600183612a89565b91506122ff600a86612b22565b61230a906030612a3e565b60f81b81838151811061232d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061234f600a86612a56565b94506122e1565b82805461236290612acc565b90600052602060002090601f01602090048101928261238457600085556123ca565b82601f1061239d57805160ff19168380011785556123ca565b828001600101855582156123ca579182015b828111156123ca5782518255916020019190600101906123af565b506123d69291506123da565b5090565b5b808211156123d657600081556001016123db565b600067ffffffffffffffff83111561240957612409612b62565b61241c601f8401601f1916602001612a0d565b905082815283838301111561243057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461080957600080fd5b60008083601f84011261246f578182fd5b50813567ffffffffffffffff811115612486578182fd5b60208301915083602080830285010111156124a057600080fd5b9250929050565b8035801515811461080957600080fd5b600082601f8301126124c7578081fd5b61206d838335602085016123ef565b6000602082840312156124e7578081fd5b61206d82612447565b60008060408385031215612502578081fd5b61250b83612447565b915061251960208401612447565b90509250929050565b600080600060608486031215612536578081fd5b61253f84612447565b925061254d60208501612447565b9150604084013590509250925092565b60008060008060808587031215612572578081fd5b61257b85612447565b935061258960208601612447565b925060408501359150606085013567ffffffffffffffff8111156125ab578182fd5b8501601f810187136125bb578182fd5b6125ca878235602084016123ef565b91505092959194509250565b6000806000604084860312156125ea578283fd5b6125f384612447565b9250602084013567ffffffffffffffff81111561260e578283fd5b61261a8682870161245e565b9497909650939450505050565b60008060408385031215612639578182fd5b61264283612447565b9150612519602084016124a7565b60008060408385031215612662578182fd5b61266b83612447565b946020939093013593505050565b6000602080838503121561268b578182fd5b823567ffffffffffffffff808211156126a2578384fd5b818501915085601f8301126126b5578384fd5b8135818111156126c7576126c7612b62565b83810291506126d7848301612a0d565b8181528481019084860184860187018a10156126f1578788fd5b8795505b8386101561271a5761270681612447565b8352600195909501949186019186016126f5565b5098975050505050505050565b600060208284031215612738578081fd5b61206d826124a7565b600060208284031215612752578081fd5b5035919050565b60006020828403121561276a578081fd5b813561206d81612b78565b600060208284031215612786578081fd5b815161206d81612b78565b6000602082840312156127a2578081fd5b813567ffffffffffffffff8111156127b8578182fd5b6113fe848285016124b7565b6000806000604084860312156127d8578081fd5b83359250602084013567ffffffffffffffff81111561260e578182fd5b60008060408385031215612807578182fd5b82359150602083013567ffffffffffffffff811115612824578182fd5b612830858286016124b7565b9150509250929050565b60008151808452612852816020860160208601612aa0565b601f01601f19169290920160200192915050565b60008351612878818460208801612aa0565b83519083019061288c818360208801612aa0565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128c89083018461283a565b9695505050505050565b60006020825261206d602083018461283a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526030908201527f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20636f60408201526f363632b1ba34b7b71030b6b7bab73a1760811b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a3657612a36612b62565b604052919050565b60008219821115612a5157612a51612b36565b500190565b600082612a6557612a65612b4c565b500490565b6000816000190483118215151615612a8457612a84612b36565b500290565b600082821015612a9b57612a9b612b36565b500390565b60005b83811015612abb578181015183820152602001612aa3565b838111156111665750506000910152565b600281046001821680612ae057607f821691505b60208210811415612b0157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b1b57612b1b612b36565b5060010190565b600082612b3157612b31612b4c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cd057600080fdfe6975dfd871ca9b855fb772dc29b80eeaa10b81957527f1fbacf0830a12d5c776a2646970667358221220c400303a8d4b1d9e861c19aac4705ab0ec51227d1981907d5ead6bbdfc7bc15a64736f6c63430008020033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001001098e26a166344b53774ba762895bf1e6f19f808060f15af0fa13ffd8ea876de0000000000000000000000000000000000000000000000000000000000000013496e7669736976657273652047656e65736973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003495647000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80638289da6011610144578063b59602c0116100b6578063d2cab0561161007a578063d2cab056146106ff578063d9ef062414610712578063e0f6b8bf14610725578063e39795081461073b578063e985e9c514610751578063f2fde38b1461079a57610267565b8063b59602c014610676578063b88d4fde1461068c578063c1f26123146106ac578063c87b56dd146106bf578063d2521ae8146106df57610267565b806395d89b411161010857806395d89b41146105bf5780639afdf2f3146105d4578063a035b1fe1461060a578063a08c61d314610620578063a22cb46514610636578063a2b40d191461065657610267565b80638289da601461052257806388eae705146105425780638b1a79fe146105615780638da5cb5b14610581578063917bb57f1461059f57610267565b80633c49a8a9116101dd5780636352211e116101a15780636352211e1461048257806367765b87146104a25780636c0360eb146104b857806370a08231146104cd578063715018a6146104ed5780637cb647591461050257610267565b80633c49a8a9146103e257806342842e0e1461040257806355f804b3146104225780635a23dd99146104425780635f4f603d1461046257610267565b806318160ddd1161022f57806318160ddd1461033d5780631f2698ab1461035c57806323b872dd1461037657806334eafb1114610396578063386bfc98146103ac578063397ac8bb146103c257610267565b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb578063162094c41461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612759565b6107ba565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b661080e565b60405161029891906128d2565b3480156102cf57600080fd5b506102e36102de366004612741565b6108a0565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612650565b61092d565b005b34801561032957600080fd5b5061031b6103383660046127f5565b610a43565b34801561034957600080fd5b506008545b604051908152602001610298565b34801561036857600080fd5b5060115461028c9060ff1681565b34801561038257600080fd5b5061031b610391366004612522565b610a7b565b3480156103a257600080fd5b5061034e60095481565b3480156103b857600080fd5b5061034e60105481565b3480156103ce57600080fd5b5061031b6103dd366004612679565b610aac565b3480156103ee57600080fd5b5061031b6103fd3660046124d6565b610c22565b34801561040e57600080fd5b5061031b61041d366004612522565b610cd3565b34801561042e57600080fd5b5061031b61043d366004612791565b610cee565b34801561044e57600080fd5b5061028c61045d3660046125d6565b610d2b565b34801561046e57600080fd5b5061031b61047d366004612727565b610dc5565b34801561048e57600080fd5b506102e361049d366004612741565b610e09565b3480156104ae57600080fd5b5061034e600b5481565b3480156104c457600080fd5b506102b6610e80565b3480156104d957600080fd5b5061034e6104e83660046124d6565b610f0e565b3480156104f957600080fd5b5061031b610f95565b34801561050e57600080fd5b5061031b61051d366004612741565b610fcb565b34801561052e57600080fd5b5061031b61053d366004612741565b610ffe565b34801561054e57600080fd5b5060115461028c90610100900460ff1681565b34801561056d57600080fd5b5061031b61057c366004612741565b61107f565b34801561058d57600080fd5b506007546001600160a01b03166102e3565b3480156105ab57600080fd5b5061031b6105ba366004612727565b6110ae565b3480156105cb57600080fd5b506102b66110eb565b3480156105e057600080fd5b5061034e6105ef3660046124d6565b6001600160a01b031660009081526012602052604090205490565b34801561061657600080fd5b5061034e600d5481565b34801561062c57600080fd5b5061034e600e5481565b34801561064257600080fd5b5061031b610651366004612627565b6110fa565b34801561066257600080fd5b5061031b610671366004612741565b611105565b34801561068257600080fd5b5061034e60085481565b34801561069857600080fd5b5061031b6106a736600461255d565b611134565b61031b6106ba366004612741565b61116c565b3480156106cb57600080fd5b506102b66106da366004612741565b61129b565b3480156106eb57600080fd5b5061031b6106fa366004612741565b611406565b61031b61070d3660046127c4565b611435565b61031b610720366004612741565b61170d565b34801561073157600080fd5b5061034e600a5481565b34801561074757600080fd5b5061034e600c5481565b34801561075d57600080fd5b5061028c61076c3660046124f0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a657600080fd5b5061031b6107b53660046124d6565b6118c9565b60006001600160e01b031982166380ac58cd60e01b14806107eb57506001600160e01b03198216635b5e139f60e01b145b8061080657506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b60606000805461081d90612acc565b80601f016020809104026020016040519081016040528092919081815260200182805461084990612acc565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b60006108ab82611961565b6109115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061093882610e09565b9050806001600160a01b0316836001600160a01b031614156109a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610908565b336001600160a01b03821614806109c257506109c2813361076c565b610a345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610908565b610a3e838361197e565b505050565b6007546001600160a01b03163314610a6d5760405162461bcd60e51b815260040161090890612937565b610a7782826119ec565b5050565b610a853382611a77565b610aa15760405162461bcd60e51b81526004016109089061296c565b610a3e838383611b5d565b6007546001600160a01b03163314610ad65760405162461bcd60e51b815260040161090890612937565b601e81511115610b1c5760405162461bcd60e51b81526020600482015260116024820152700e8e4f240e6dac2d8d8cae440c4c2e8c6d607b1b6044820152606401610908565b6009548151600854610b2e9190612a3e565b1115610b4c5760405162461bcd60e51b8152600401610908906129bd565b60005b8151811015610a7757818181518110610b7857634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b0316600080516020612b8f8339815191526008546001610ba79190612a3e565b60408051918252600160208301520160405180910390a2610c10828281518110610be157634e487b7160e01b600052603260045260246000fd5b602002602001015160086000815480929190610bfc90612b07565b90915550610c0b906001612a3e565b611cfd565b80610c1a81612b07565b915050610b4f565b6007546001600160a01b03163314610c4c5760405162461bcd60e51b815260040161090890612937565b600954600854610c5d906001612a3e565b1115610c7b5760405162461bcd60e51b8152600401610908906129bd565b806001600160a01b0316600080516020612b8f8339815191526008546001610ca39190612a3e565b60408051918252600160208301520160405180910390a260088054610cd0918391906000610bfc83612b07565b50565b610a3e83838360405180602001604052806000815250611134565b6007546001600160a01b03163314610d185760405162461bcd60e51b815260040161090890612937565b8051610a7790600f906020840190612356565b6040516bffffffffffffffffffffffff19606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050610da8848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010549150849050611e30565b610db6576000915081610dbc565b60019150815b50509392505050565b6007546001600160a01b03163314610def5760405162461bcd60e51b815260040161090890612937565b601180549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806108065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610908565b600f8054610e8d90612acc565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb990612acc565b8015610f065780601f10610edb57610100808354040283529160200191610f06565b820191906000526020600020905b815481529060010190602001808311610ee957829003601f168201915b505050505081565b60006001600160a01b038216610f795760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610908565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610fbf5760405162461bcd60e51b815260040161090890612937565b610fc96000611e46565b565b6007546001600160a01b03163314610ff55760405162461bcd60e51b815260040161090890612937565b610cd081601055565b6007546001600160a01b031633146110285760405162461bcd60e51b815260040161090890612937565b60095481111561107a5760405162461bcd60e51b815260206004820152601860248201527f63616e742062652061626f766520737570706c792062726f00000000000000006044820152606401610908565b600a55565b6007546001600160a01b031633146110a95760405162461bcd60e51b815260040161090890612937565b600c55565b6007546001600160a01b031633146110d85760405162461bcd60e51b815260040161090890612937565b6011805460ff1916911515919091179055565b60606001805461081d90612acc565b610a77338383611e98565b6007546001600160a01b0316331461112f5760405162461bcd60e51b815260040161090890612937565b600d55565b61113e3383611a77565b61115a5760405162461bcd60e51b81526004016109089061296c565b61116684848484611f67565b50505050565b6007546001600160a01b031633146111965760405162461bcd60e51b815260040161090890612937565b6000811180156111a85750600b548111155b6111e85760405162461bcd60e51b815260206004820152601160248201527036b4b73a103bb937b73390373ab6b132b960791b6044820152606401610908565b600954816008546111f99190612a3e565b11156112325760405162461bcd60e51b81526020600482015260086024820152670e8dede40daeac6d60c31b6044820152606401610908565b6008543390600080516020612b8f83398151915290611252906001612a3e565b60408051918252602082018590520160405180910390a260005b81811015610a7757611289335b60088054906000610bfc83612b07565b8061129381612b07565b91505061126c565b60606112a682611961565b61130c5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610908565b6000828152600660205260408120805461132590612acc565b80601f016020809104026020016040519081016040528092919081815260200182805461135190612acc565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b5050505050905060006113af611f9a565b90508051600014156113c357509050610809565b8151156113f55780826040516020016113dd929190612866565b60405160208183030381529060405292505050610809565b6113fe84611fa9565b949350505050565b6007546001600160a01b031633146114305760405162461bcd60e51b815260040161090890612937565b600e55565b611440338383610d2b565b61148c5760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f74207768697465206c697374656400000000000000006044820152606401610908565b601154610100900460ff166114e35760405162461bcd60e51b815260206004820152601f60248201527f48616e67206f6e20626f79732c20796f756c6c2067657420696e20736f6f6e006044820152606401610908565b3360009081526012602052604090205461151657600e54611505906001612a3e565b336000908152601260205260409020555b33600090815260126020526040902054600190611534908590612a89565b10156115825760405162461bcd60e51b815260206004820152601c60248201527f4f766572206d696e74206c696d697420666f7220616464726573732e000000006044820152606401610908565b600a54836008546115939190612a3e565b11156115f75760405162461bcd60e51b815260206004820152602d60248201527f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20707260448201526c32b9b0b6329030b6b7bab73a1760991b6064820152608401610908565b600c546116049084612a6a565b34146116525760405162461bcd60e51b815260206004820152601c60248201527f496e636f7272656374207472616e73616374696f6e2076616c75652e000000006044820152606401610908565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561168b573d6000803e3d6000fd5b5033600090815260126020526040812080548592906116ab908490612a89565b90915550506008543390600080516020612b8f833981519152906116d0906001612a3e565b60408051918252602082018790520160405180910390a260005b83811015611166576116fb33611279565b8061170581612b07565b9150506116ea565b60115460ff1661174d5760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b6044820152606401610908565b60008111801561175f5750600b548111155b61179f5760405162461bcd60e51b815260206004820152601160248201527036b4b73a103bb937b73390373ab6b132b960791b6044820152606401610908565b600954816008546117b09190612a3e565b11156117e95760405162461bcd60e51b81526020600482015260086024820152670e8dede40daeac6d60c31b6044820152606401610908565b600d546117f69082612a6a565b34146118325760405162461bcd60e51b815260206004820152600b60248201526a3b30b63ab29032b93937b960a91b6044820152606401610908565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561186b573d6000803e3d6000fd5b506008543390600080516020612b8f8339815191529061188c906001612a3e565b60408051918252602082018590520160405180910390a260005b81811015610a77576118b733611279565b806118c181612b07565b9150506118a6565b6007546001600160a01b031633146118f35760405162461bcd60e51b815260040161090890612937565b6001600160a01b0381166119585760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610908565b610cd081611e46565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119b382610e09565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119f582611961565b611a585760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610908565b60008281526006602090815260409091208251610a3e92840190612356565b6000611a8282611961565b611ae35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610908565b6000611aee83610e09565b9050806001600160a01b0316846001600160a01b03161480611b295750836001600160a01b0316611b1e846108a0565b6001600160a01b0316145b806113fe57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166113fe565b826001600160a01b0316611b7082610e09565b6001600160a01b031614611bd85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610908565b6001600160a01b038216611c3a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610908565b611c4560008261197e565b6001600160a01b0383166000908152600360205260408120805460019290611c6e908490612a89565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c9c908490612a3e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216611d535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610908565b611d5c81611961565b15611da95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610908565b6001600160a01b0382166000908152600360205260408120805460019290611dd2908490612a3e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600082611e3d8584612074565b14949350505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611efa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610908565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f72848484611b5d565b611f7e8484848461212e565b6111665760405162461bcd60e51b8152600401610908906128e5565b6060600f805461081d90612acc565b6060611fb482611961565b6120185760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610908565b6000612022611f9a565b90506000815111612042576040518060200160405280600081525061206d565b8061204c8461223b565b60405160200161205d929190612866565b6040516020818303038152906040525b9392505050565b600081815b84518110156121265760008582815181106120a457634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116120e6576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612113565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061211e81612b07565b915050612079565b509392505050565b60006001600160a01b0384163b1561223057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612172903390899088908890600401612895565b602060405180830381600087803b15801561218c57600080fd5b505af19250505080156121bc575060408051601f3d908101601f191682019092526121b991810190612775565b60015b612216573d8080156121ea576040519150601f19603f3d011682016040523d82523d6000602084013e6121ef565b606091505b50805161220e5760405162461bcd60e51b8152600401610908906128e5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113fe565b506001949350505050565b60608161226057506040805180820190915260018152600360fc1b6020820152610809565b8160005b811561228a578061227481612b07565b91506122839050600a83612a56565b9150612264565b60008167ffffffffffffffff8111156122b357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122dd576020820181803683370190505b5090505b84156113fe576122f2600183612a89565b91506122ff600a86612b22565b61230a906030612a3e565b60f81b81838151811061232d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061234f600a86612a56565b94506122e1565b82805461236290612acc565b90600052602060002090601f01602090048101928261238457600085556123ca565b82601f1061239d57805160ff19168380011785556123ca565b828001600101855582156123ca579182015b828111156123ca5782518255916020019190600101906123af565b506123d69291506123da565b5090565b5b808211156123d657600081556001016123db565b600067ffffffffffffffff83111561240957612409612b62565b61241c601f8401601f1916602001612a0d565b905082815283838301111561243057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461080957600080fd5b60008083601f84011261246f578182fd5b50813567ffffffffffffffff811115612486578182fd5b60208301915083602080830285010111156124a057600080fd5b9250929050565b8035801515811461080957600080fd5b600082601f8301126124c7578081fd5b61206d838335602085016123ef565b6000602082840312156124e7578081fd5b61206d82612447565b60008060408385031215612502578081fd5b61250b83612447565b915061251960208401612447565b90509250929050565b600080600060608486031215612536578081fd5b61253f84612447565b925061254d60208501612447565b9150604084013590509250925092565b60008060008060808587031215612572578081fd5b61257b85612447565b935061258960208601612447565b925060408501359150606085013567ffffffffffffffff8111156125ab578182fd5b8501601f810187136125bb578182fd5b6125ca878235602084016123ef565b91505092959194509250565b6000806000604084860312156125ea578283fd5b6125f384612447565b9250602084013567ffffffffffffffff81111561260e578283fd5b61261a8682870161245e565b9497909650939450505050565b60008060408385031215612639578182fd5b61264283612447565b9150612519602084016124a7565b60008060408385031215612662578182fd5b61266b83612447565b946020939093013593505050565b6000602080838503121561268b578182fd5b823567ffffffffffffffff808211156126a2578384fd5b818501915085601f8301126126b5578384fd5b8135818111156126c7576126c7612b62565b83810291506126d7848301612a0d565b8181528481019084860184860187018a10156126f1578788fd5b8795505b8386101561271a5761270681612447565b8352600195909501949186019186016126f5565b5098975050505050505050565b600060208284031215612738578081fd5b61206d826124a7565b600060208284031215612752578081fd5b5035919050565b60006020828403121561276a578081fd5b813561206d81612b78565b600060208284031215612786578081fd5b815161206d81612b78565b6000602082840312156127a2578081fd5b813567ffffffffffffffff8111156127b8578182fd5b6113fe848285016124b7565b6000806000604084860312156127d8578081fd5b83359250602084013567ffffffffffffffff81111561260e578182fd5b60008060408385031215612807578182fd5b82359150602083013567ffffffffffffffff811115612824578182fd5b612830858286016124b7565b9150509250929050565b60008151808452612852816020860160208601612aa0565b601f01601f19169290920160200192915050565b60008351612878818460208801612aa0565b83519083019061288c818360208801612aa0565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128c89083018461283a565b9695505050505050565b60006020825261206d602083018461283a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526030908201527f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20636f60408201526f363632b1ba34b7b71030b6b7bab73a1760811b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a3657612a36612b62565b604052919050565b60008219821115612a5157612a51612b36565b500190565b600082612a6557612a65612b4c565b500490565b6000816000190483118215151615612a8457612a84612b36565b500290565b600082821015612a9b57612a9b612b36565b500390565b60005b83811015612abb578181015183820152602001612aa3565b838111156111665750506000910152565b600281046001821680612ae057607f821691505b60208210811415612b0157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b1b57612b1b612b36565b5060010190565b600082612b3157612b31612b4c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610cd057600080fdfe6975dfd871ca9b855fb772dc29b80eeaa10b81957527f1fbacf0830a12d5c776a2646970667358221220c400303a8d4b1d9e861c19aac4705ab0ec51227d1981907d5ead6bbdfc7bc15a64736f6c63430008020033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001001098e26a166344b53774ba762895bf1e6f19f808060f15af0fa13ffd8ea876de0000000000000000000000000000000000000000000000000000000000000013496e7669736976657273652047656e65736973000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003495647000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000012f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Invisiverse Genesis
Arg [1] : symbol_ (string): IVG
Arg [2] : baseURI_ (string): /
Arg [3] : whitelistRoot_ (bytes32): 0x1098e26a166344b53774ba762895bf1e6f19f808060f15af0fa13ffd8ea876de

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 1098e26a166344b53774ba762895bf1e6f19f808060f15af0fa13ffd8ea876de
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [5] : 496e7669736976657273652047656e6573697300000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4956470000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 2f00000000000000000000000000000000000000000000000000000000000000


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.