ETH Price: $2,519.46 (-1.43%)

Token

Tribe Diamonds (TRIBE DMNDS)
 

Overview

Max Total Supply

0 TRIBE DMNDS

Holders

104

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 TRIBE DMNDS
0xfd9b9039386b1619ce3aef82a5b521b12f8e13ee
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Tribe Diamond Pass is a collection of 200 generative NFTs that represents a community bonded by the belief in the future of web3 gaming. Holders can access a private community of gamers, crypto game developers and NFT collectors.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Diamonds

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 3000 runs

Other Settings:
default evmVersion
File 1 of 12 : Diamonds.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

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

contract Diamonds is Ownable, ERC721 {
    using Strings for uint256;
    using Address for address payable;

    uint256 constant private _SUPPLY = 200;
    uint256 constant private _MINT_PRICE = 1 ether;
    uint256 constant private _MINT_PERIOD = 2 days;

    uint256 constant private _ROYALTY_PCT = 5;

    uint256 constant private ENTROPY_HEIGHT_DIFF = 5;

    bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;

    bytes32 immutable private _merkleRoot;

    uint256 private _nextTokenId;
    string private _URI;

    bytes32 private _baseEntropy;

    uint256 public saleStart;
    bytes32 public shuffleProof;

    bool public revealed;
    bool public freezed;

    mapping(address => bool) public claimed;

    modifier noContract() {
        require(!Address.isContract(_msgSender()));
        _;
        // solhint-disable-next-line not-rely-on-time
        _baseEntropy = keccak256(abi.encodePacked(_baseEntropy, _msgSender(), block.timestamp));
    }

    constructor(bytes32 merkleRoot, address owner, uint256 timestamp, bytes32 proof, string memory uri) ERC721("Tribe Diamonds", "TRIBE DMNDS") {
        _merkleRoot = merkleRoot;
        transferOwnership(owner);
        saleStart = timestamp;
        shuffleProof = proof;
        _URI = uri;
        _baseEntropy = keccak256(abi.encodePacked(
                                                  block.coinbase,
                                                  // solhint-disable-next-line not-rely-on-time
                                                  block.timestamp,
                                                  block.difficulty,
                                                  blockhash(block.number - 1)
                                                  ));
     }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721) returns (bool) {
        return interfaceId == _INTERFACE_ID_ERC2981 || ERC721.supportsInterface(interfaceId);
    }

    function updateSale(uint256 timestamp, string calldata uri) external onlyOwner() {
        require(block.timestamp < saleStart + _MINT_PERIOD, 'sale ended');
        saleStart = timestamp;
        _URI = uri;
    }

    function withdraw() external onlyOwner() {
        payable(owner()).sendValue(address(this).balance);
    }

    function royaltyInfo(uint256 /* tokenId*/, uint256 salePrice) external view
        returns (address receiver, uint256 royaltyAmount) {
        return (owner(), salePrice * _ROYALTY_PCT / 100);
    }

    event Mint(uint256 indexed tokenId, bytes32 tokenSeed, uint256 chainEntropyBlock);

    function mint(bytes32[] calldata merkleProof) external payable noContract() {
        require(_nextTokenId < _SUPPLY, 'no more supply');
        require(block.timestamp > saleStart, 'sale not started');
        require(block.timestamp < saleStart + _MINT_PERIOD, 'sale ended');

        require(!claimed[_msgSender()], 'already minted');
        require(isWhitelisted(_msgSender(), merkleProof), 'not allowed');

        require(msg.value >= _MINT_PRICE,'not enough');

        claimed[_msgSender()] = true;
        _nextTokenId++;

        _mint(_msgSender(), _nextTokenId);
        _baseEntropy = keccak256(abi.encodePacked(_baseEntropy, merkleProof[0]));
        emit Mint(_nextTokenId, _baseEntropy, block.number + ENTROPY_HEIGHT_DIFF);
    }

    function mint3(uint16 count) external onlyOwner() {
        require(block.timestamp < saleStart + _MINT_PERIOD, 'sale ended');
        for (uint16 i = 0; i < count; i++) {
            require(_nextTokenId < _SUPPLY, 'no more supply');
            _nextTokenId++;
            _mint(_msgSender(), _nextTokenId);
            _baseEntropy = keccak256(abi.encodePacked(_baseEntropy, i));
            emit Mint(_nextTokenId, _baseEntropy, block.number + ENTROPY_HEIGHT_DIFF);
        }
    }

    function reveal(bytes32 shuffleSeed, string calldata uri) external onlyOwner() {
        require(keccak256(abi.encodePacked(shuffleSeed)) == shuffleProof);
        require(!freezed, 'already freezed');
        _URI = uri;
        revealed = true;
    }

    function freeze() external onlyOwner() {
        require(revealed, 'not revealed');
        require(!freezed, 'already freezed');
        freezed = true;
    }

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

    function isWhitelisted(address account, bytes32[] calldata merkleProof) public view returns (bool) {
        return MerkleProof.verify(merkleProof, _merkleRoot, keccak256(abi.encodePacked(account)));
    }

}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 4 of 12 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 5 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 12 : 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 11 of 12 : 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 12 of 12 : 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": 3000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bytes32","name":"proof","type":"bytes32"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"tokenSeed","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"chainEntropyBlock","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"count","type":"uint16"}],"name":"mint3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"shuffleSeed","type":"bytes32"},{"internalType":"string","name":"uri","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":[],"name":"saleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shuffleProof","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"updateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162002dea38038062002dea833981016040819052620000349162000292565b6040518060400160405280600e81526020016d5472696265204469616d6f6e647360901b8152506040518060400160405280600b81526020016a545249424520444d4e445360a81b81525062000099620000936200014760201b60201c565b6200014b565b6001620000a7838262000436565b506002620000b6828262000436565b5050506080859052620000c9846200019b565b600a839055600b8290556008620000e1828262000436565b50414244620000f260014362000502565b60405160609490941b6001600160601b0319166020850152603484019290925260548301524060748201526094016040516020818303038152906040528051906020012060098190555050505050506200052a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b620001a56200021e565b6001600160a01b038116620002105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b6200021b816200014b565b50565b6000546001600160a01b031633146200027a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000207565b565b634e487b7160e01b600052604160045260246000fd5b600080600080600060a08688031215620002ab57600080fd5b8551602080880151919650906001600160a01b0381168114620002cd57600080fd5b6040880151606089015160808a015192975090955093506001600160401b0380821115620002fa57600080fd5b818901915089601f8301126200030f57600080fd5b8151818111156200032457620003246200027c565b604051601f8201601f19908116603f011681019083821181831017156200034f576200034f6200027c565b816040528281528c868487010111156200036857600080fd5b600093505b828410156200038c57848401860151818501870152928501926200036d565b60008684830101528096505050505050509295509295909350565b600181811c90821680620003bc57607f821691505b602082108103620003dd57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200043157600081815260208120601f850160051c810160208610156200040c5750805b601f850160051c820191505b818110156200042d5782815560010162000418565b5050505b505050565b81516001600160401b038111156200045257620004526200027c565b6200046a81620004638454620003a7565b84620003e3565b602080601f831160018114620004a25760008415620004895750858301515b600019600386901b1c1916600185901b1785556200042d565b600085815260208120601f198616915b82811015620004d357888601518255948401946001909101908401620004b2565b5085821015620004f25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156200052457634e487b7160e01b600052601160045260246000fd5b92915050565b6080516128a462000546600039600061098101526128a46000f3fe6080604052600436106101c25760003560e01c80636949d6cb116100f7578063ab0bcc4111610095578063c87b56dd11610064578063c87b56dd146104ef578063c884ef831461050f578063e985e9c51461053f578063f2fde38b1461058857600080fd5b8063ab0bcc4114610487578063b7540d9f1461049d578063b77a147b146104bc578063b88d4fde146104cf57600080fd5b80637c59b3d6116100d15780637c59b3d61461041e5780638da5cb5b1461043457806395d89b4114610452578063a22cb4651461046757600080fd5b80636949d6cb146103bb57806370a08231146103db578063715018a61461040957600080fd5b806342842e0e1161016457806362a5af3b1161013e57806362a5af3b1461034657806362fa27dc1461035b5780636352211e1461037b57806366d8c4631461039b57600080fd5b806342842e0e146102ec578063518302271461030c5780635a23dd991461032657600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806323b872dd146102785780632a55205a146102985780633ccfd60b146102d757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046120d0565b6105a8565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610604565b6040516101f3919061213d565b34801561022a57600080fd5b5061023e610239366004612150565b610696565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004612185565b6106bd565b005b34801561028457600080fd5b506102766102933660046121af565b610811565b3480156102a457600080fd5b506102b86102b33660046121eb565b610898565b604080516001600160a01b0390931683526020830191909152016101f3565b3480156102e357600080fd5b506102766108d0565b3480156102f857600080fd5b506102766103073660046121af565b6108ff565b34801561031857600080fd5b50600c546101e79060ff1681565b34801561033257600080fd5b506101e7610341366004612252565b61091a565b34801561035257600080fd5b506102766109ca565b34801561036757600080fd5b506102766103763660046122a5565b610aaa565b34801561038757600080fd5b5061023e610396366004612150565b610c5c565b3480156103a757600080fd5b506102766103b636600461230b565b610cc1565b3480156103c757600080fd5b506102766103d636600461230b565b610d70565b3480156103e757600080fd5b506103fb6103f636600461234a565b610def565b6040519081526020016101f3565b34801561041557600080fd5b50610276610e89565b34801561042a57600080fd5b506103fb600b5481565b34801561044057600080fd5b506000546001600160a01b031661023e565b34801561045e57600080fd5b50610211610e9b565b34801561047357600080fd5b50610276610482366004612365565b610eaa565b34801561049357600080fd5b506103fb600a5481565b3480156104a957600080fd5b50600c546101e790610100900460ff1681565b6102766104ca3660046123a1565b610eb5565b3480156104db57600080fd5b506102766104ea3660046123f9565b611207565b3480156104fb57600080fd5b5061021161050a366004612150565b61128f565b34801561051b57600080fd5b506101e761052a36600461234a565b600d6020526000908152604090205460ff1681565b34801561054b57600080fd5b506101e761055a3660046124d5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059457600080fd5b506102766105a336600461234a565b6113eb565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806105fe57506105fe8261147b565b92915050565b60606001805461061390612508565b80601f016020809104026020016040519081016040528092919081815260200182805461063f90612508565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b60006106a18261155e565b506000908152600560205260409020546001600160a01b031690565b60006106c882610c5c565b9050806001600160a01b0316836001600160a01b0316036107565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b038216148061079057506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6108025760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161074d565b61080c83836115c2565b505050565b61081b3382611648565b61088d5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f766564000000000000000000000000000000000000606482015260840161074d565b61080c8383836116c6565b6000806108ad6000546001600160a01b031690565b60646108ba600586612558565b6108c4919061258d565b915091505b9250929050565b6108d86118ab565b6108fd476108ee6000546001600160a01b031690565b6001600160a01b031690611905565b565b61080c83838360405180602001604052806000815250611207565b60006109c2838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608a901b1660208201527f00000000000000000000000000000000000000000000000000000000000000009250603401905060405160208183030381529060405280519060200120611a1e565b949350505050565b6109d26118ab565b600c5460ff16610a245760405162461bcd60e51b815260206004820152600c60248201527f6e6f742072657665616c65640000000000000000000000000000000000000000604482015260640161074d565b600c54610100900460ff1615610a7c5760405162461bcd60e51b815260206004820152600f60248201527f616c726561647920667265657a65640000000000000000000000000000000000604482015260640161074d565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b610ab26118ab565b6202a300600a54610ac391906125a1565b4210610b115760405162461bcd60e51b815260206004820152600a60248201527f73616c6520656e64656400000000000000000000000000000000000000000000604482015260640161074d565b60005b8161ffff168161ffff161015610c585760c860075410610b765760405162461bcd60e51b815260206004820152600e60248201527f6e6f206d6f726520737570706c79000000000000000000000000000000000000604482015260640161074d565b60078054906000610b86836125b4565b9190505550610b9d610b953390565b600754611a34565b60095481604051602001610be092919091825260f01b7fffff00000000000000000000000000000000000000000000000000000000000016602082015260220190565b60408051601f1981840301815291905280516020909101206009819055600754907f9eecfd08f4c23b4793809779d43467ab123954b8ef3ea78a983477f98e39823490610c2e6005436125a1565b6040805192835260208301919091520160405180910390a280610c50816125ce565b915050610b14565b5050565b6000818152600360205260408120546001600160a01b0316806105fe5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604482015260640161074d565b610cc96118ab565b600b546040805160208101869052016040516020818303038152906040528051906020012014610cf857600080fd5b600c54610100900460ff1615610d505760405162461bcd60e51b815260206004820152600f60248201527f616c726561647920667265657a65640000000000000000000000000000000000604482015260640161074d565b6008610d5d82848361263d565b5050600c805460ff191660011790555050565b610d786118ab565b6202a300600a54610d8991906125a1565b4210610dd75760405162461bcd60e51b815260206004820152600a60248201527f73616c6520656e64656400000000000000000000000000000000000000000000604482015260640161074d565b600a8390556008610de982848361263d565b50505050565b60006001600160a01b038216610e6d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e65720000000000000000000000000000000000000000000000606482015260840161074d565b506001600160a01b031660009081526004602052604090205490565b610e916118ab565b6108fd6000611b8e565b60606002805461061390612508565b610c58338383611bf6565b333b15610ec157600080fd5b60c860075410610f135760405162461bcd60e51b815260206004820152600e60248201527f6e6f206d6f726520737570706c79000000000000000000000000000000000000604482015260640161074d565b600a544211610f645760405162461bcd60e51b815260206004820152601060248201527f73616c65206e6f74207374617274656400000000000000000000000000000000604482015260640161074d565b6202a300600a54610f7591906125a1565b4210610fc35760405162461bcd60e51b815260206004820152600a60248201527f73616c6520656e64656400000000000000000000000000000000000000000000604482015260640161074d565b336000908152600d602052604090205460ff16156110235760405162461bcd60e51b815260206004820152600e60248201527f616c7265616479206d696e746564000000000000000000000000000000000000604482015260640161074d565b61102e33838361091a565b61107a5760405162461bcd60e51b815260206004820152600b60248201527f6e6f7420616c6c6f776564000000000000000000000000000000000000000000604482015260640161074d565b670de0b6b3a76400003410156110d25760405162461bcd60e51b815260206004820152600a60248201527f6e6f7420656e6f75676800000000000000000000000000000000000000000000604482015260640161074d565b336000908152600d60205260408120805460ff1916600117905560078054916110fa836125b4565b9190505550611109610b953390565b6009548282600081811061111f5761111f6126fe565b90506020020135604051602001611140929190918252602082015260400190565b60408051601f1981840301815291905280516020909101206009819055600754907f9eecfd08f4c23b4793809779d43467ab123954b8ef3ea78a983477f98e3982349061118e6005436125a1565b6040805192835260208301919091520160405180910390a26009546040805160208101929092527fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b169082015242605482015260740160408051601f1981840301815291905280516020909101206009555050565b6112113383611648565b6112835760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f766564000000000000000000000000000000000000606482015260840161074d565b610de984848484611cc4565b6000818152600360205260409020546060906001600160a01b031661131c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161074d565b600c5460ff161561135957600861133283611d4d565b604051602001611343929190612714565b6040516020818303038152906040529050919050565b6008805461136690612508565b80601f016020809104026020016040519081016040528092919081815260200182805461139290612508565b80156113df5780601f106113b4576101008083540402835291602001916113df565b820191906000526020600020905b8154815290600101906020018083116113c257829003601f168201915b50505050509050919050565b6113f36118ab565b6001600160a01b03811661146f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161074d565b61147881611b8e565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061150e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105fe57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146105fe565b6000818152600360205260409020546001600160a01b03166114785760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604482015260640161074d565b600081815260056020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061160f82610c5c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061165483610c5c565b9050806001600160a01b0316846001600160a01b0316148061169b57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806109c25750836001600160a01b03166116b484610696565b6001600160a01b031614949350505050565b826001600160a01b03166116d982610c5c565b6001600160a01b0316146117555760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161074d565b6001600160a01b0382166117d05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161074d565b6117db6000826115c2565b6001600160a01b03831660009081526004602052604081208054600192906118049084906127ee565b90915550506001600160a01b03821660009081526004602052604081208054600192906118329084906125a1565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000546001600160a01b031633146108fd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074d565b804710156119555760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161074d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146119a2576040519150601f19603f3d011682016040523d82523d6000602084013e6119a7565b606091505b505090508061080c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161074d565b600082611a2b8584611e82565b14949350505050565b6001600160a01b038216611a8a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074d565b6000818152600360205260409020546001600160a01b031615611aef5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074d565b6001600160a01b0382166000908152600460205260408120805460019290611b189084906125a1565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031603611c575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074d565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ccf8484846116c6565b611cdb84848484611ecf565b610de95760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161074d565b606081600003611d9057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611dba5780611da4816125b4565b9150611db39050600a8361258d565b9150611d94565b60008167ffffffffffffffff811115611dd557611dd56123e3565b6040519080825280601f01601f191660200182016040528015611dff576020820181803683370190505b5090505b84156109c257611e146001836127ee565b9150611e21600a86612801565b611e2c9060306125a1565b60f81b818381518110611e4157611e416126fe565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e7b600a8661258d565b9450611e03565b600081815b8451811015611ec757611eb382868381518110611ea657611ea66126fe565b6020026020010151612070565b915080611ebf816125b4565b915050611e87565b509392505050565b60006001600160a01b0384163b15612065576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611f2c903390899088908890600401612815565b6020604051808303816000875af1925050508015611f67575060408051601f3d908101601f19168201909252611f6491810190612851565b60015b61201a573d808015611f95576040519150601f19603f3d011682016040523d82523d6000602084013e611f9a565b606091505b5080516000036120125760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161074d565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506109c2565b506001949350505050565b600081831061208c57600082815260208490526040902061209b565b60008381526020839052604090205b9392505050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461147857600080fd5b6000602082840312156120e257600080fd5b813561209b816120a2565b60005b838110156121085781810151838201526020016120f0565b50506000910152565b600081518084526121298160208601602086016120ed565b601f01601f19169290920160200192915050565b60208152600061209b6020830184612111565b60006020828403121561216257600080fd5b5035919050565b80356001600160a01b038116811461218057600080fd5b919050565b6000806040838503121561219857600080fd5b6121a183612169565b946020939093013593505050565b6000806000606084860312156121c457600080fd5b6121cd84612169565b92506121db60208501612169565b9150604084013590509250925092565b600080604083850312156121fe57600080fd5b50508035926020909101359150565b60008083601f84011261221f57600080fd5b50813567ffffffffffffffff81111561223757600080fd5b6020830191508360208260051b85010111156108c957600080fd5b60008060006040848603121561226757600080fd5b61227084612169565b9250602084013567ffffffffffffffff81111561228c57600080fd5b6122988682870161220d565b9497909650939450505050565b6000602082840312156122b757600080fd5b813561ffff8116811461209b57600080fd5b60008083601f8401126122db57600080fd5b50813567ffffffffffffffff8111156122f357600080fd5b6020830191508360208285010111156108c957600080fd5b60008060006040848603121561232057600080fd5b83359250602084013567ffffffffffffffff81111561233e57600080fd5b612298868287016122c9565b60006020828403121561235c57600080fd5b61209b82612169565b6000806040838503121561237857600080fd5b61238183612169565b91506020830135801515811461239657600080fd5b809150509250929050565b600080602083850312156123b457600080fd5b823567ffffffffffffffff8111156123cb57600080fd5b6123d78582860161220d565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561240f57600080fd5b61241885612169565b935061242660208601612169565b925060408501359150606085013567ffffffffffffffff8082111561244a57600080fd5b818701915087601f83011261245e57600080fd5b813581811115612470576124706123e3565b604051601f8201601f19908116603f01168101908382118183101715612498576124986123e3565b816040528281528a60208487010111156124b157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156124e857600080fd5b6124f183612169565b91506124ff60208401612169565b90509250929050565b600181811c9082168061251c57607f821691505b60208210810361253c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561257257612572612542565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261259c5761259c612577565b500490565b808201808211156105fe576105fe612542565b600060001982036125c7576125c7612542565b5060010190565b600061ffff8083168181036125e5576125e5612542565b6001019392505050565b601f82111561080c57600081815260208120601f850160051c810160208610156126165750805b601f850160051c820191505b8181101561263557828155600101612622565b505050505050565b67ffffffffffffffff831115612655576126556123e3565b612669836126638354612508565b836125ef565b6000601f84116001811461269d57600085156126855750838201355b600019600387901b1c1916600186901b1783556126f7565b600083815260209020601f19861690835b828110156126ce57868501358255602094850194600190920191016126ae565b50868210156126eb5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052603260045260246000fd5b600080845461272281612508565b6001828116801561273a576001811461274f5761277e565b60ff198416875282151583028701945061277e565b8860005260208060002060005b858110156127755781548a82015290840190820161275c565b50505082870194505b507f2f000000000000000000000000000000000000000000000000000000000000008452865192506127b68382860160208a016120ed565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000939092019182019290925260060195945050505050565b818103818111156105fe576105fe612542565b60008261281057612810612577565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526128476080830184612111565b9695505050505050565b60006020828403121561286357600080fd5b815161209b816120a256fea2646970667358221220a1f44abf51954b65b4fad793f032f6ae69757a9d297e6298f0abce241fc25d4f64736f6c63430008100033193afc90ffacc56084f64969d961b797bc2ce0f51dc2d2e9f04fee0eff7b7cc7000000000000000000000000407125c243ec477085af0bd099c4da5bf774fad4000000000000000000000000000000000000000000000000000000006306d7a081f78e6f1a9e6c113ea7b259745611f188170dba061f2848b720af580e0f672f00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5756586b385072394874554154687752396e5464627059533543724750356b6753555478635636734a5937310000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636949d6cb116100f7578063ab0bcc4111610095578063c87b56dd11610064578063c87b56dd146104ef578063c884ef831461050f578063e985e9c51461053f578063f2fde38b1461058857600080fd5b8063ab0bcc4114610487578063b7540d9f1461049d578063b77a147b146104bc578063b88d4fde146104cf57600080fd5b80637c59b3d6116100d15780637c59b3d61461041e5780638da5cb5b1461043457806395d89b4114610452578063a22cb4651461046757600080fd5b80636949d6cb146103bb57806370a08231146103db578063715018a61461040957600080fd5b806342842e0e1161016457806362a5af3b1161013e57806362a5af3b1461034657806362fa27dc1461035b5780636352211e1461037b57806366d8c4631461039b57600080fd5b806342842e0e146102ec578063518302271461030c5780635a23dd991461032657600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806323b872dd146102785780632a55205a146102985780633ccfd60b146102d757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046120d0565b6105a8565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610604565b6040516101f3919061213d565b34801561022a57600080fd5b5061023e610239366004612150565b610696565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004612185565b6106bd565b005b34801561028457600080fd5b506102766102933660046121af565b610811565b3480156102a457600080fd5b506102b86102b33660046121eb565b610898565b604080516001600160a01b0390931683526020830191909152016101f3565b3480156102e357600080fd5b506102766108d0565b3480156102f857600080fd5b506102766103073660046121af565b6108ff565b34801561031857600080fd5b50600c546101e79060ff1681565b34801561033257600080fd5b506101e7610341366004612252565b61091a565b34801561035257600080fd5b506102766109ca565b34801561036757600080fd5b506102766103763660046122a5565b610aaa565b34801561038757600080fd5b5061023e610396366004612150565b610c5c565b3480156103a757600080fd5b506102766103b636600461230b565b610cc1565b3480156103c757600080fd5b506102766103d636600461230b565b610d70565b3480156103e757600080fd5b506103fb6103f636600461234a565b610def565b6040519081526020016101f3565b34801561041557600080fd5b50610276610e89565b34801561042a57600080fd5b506103fb600b5481565b34801561044057600080fd5b506000546001600160a01b031661023e565b34801561045e57600080fd5b50610211610e9b565b34801561047357600080fd5b50610276610482366004612365565b610eaa565b34801561049357600080fd5b506103fb600a5481565b3480156104a957600080fd5b50600c546101e790610100900460ff1681565b6102766104ca3660046123a1565b610eb5565b3480156104db57600080fd5b506102766104ea3660046123f9565b611207565b3480156104fb57600080fd5b5061021161050a366004612150565b61128f565b34801561051b57600080fd5b506101e761052a36600461234a565b600d6020526000908152604090205460ff1681565b34801561054b57600080fd5b506101e761055a3660046124d5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561059457600080fd5b506102766105a336600461234a565b6113eb565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806105fe57506105fe8261147b565b92915050565b60606001805461061390612508565b80601f016020809104026020016040519081016040528092919081815260200182805461063f90612508565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b60006106a18261155e565b506000908152600560205260409020546001600160a01b031690565b60006106c882610c5c565b9050806001600160a01b0316836001600160a01b0316036107565760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b336001600160a01b038216148061079057506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6108025760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161074d565b61080c83836115c2565b505050565b61081b3382611648565b61088d5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f766564000000000000000000000000000000000000606482015260840161074d565b61080c8383836116c6565b6000806108ad6000546001600160a01b031690565b60646108ba600586612558565b6108c4919061258d565b915091505b9250929050565b6108d86118ab565b6108fd476108ee6000546001600160a01b031690565b6001600160a01b031690611905565b565b61080c83838360405180602001604052806000815250611207565b60006109c2838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040517fffffffffffffffffffffffffffffffffffffffff00000000000000000000000060608a901b1660208201527f193afc90ffacc56084f64969d961b797bc2ce0f51dc2d2e9f04fee0eff7b7cc79250603401905060405160208183030381529060405280519060200120611a1e565b949350505050565b6109d26118ab565b600c5460ff16610a245760405162461bcd60e51b815260206004820152600c60248201527f6e6f742072657665616c65640000000000000000000000000000000000000000604482015260640161074d565b600c54610100900460ff1615610a7c5760405162461bcd60e51b815260206004820152600f60248201527f616c726561647920667265657a65640000000000000000000000000000000000604482015260640161074d565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16610100179055565b610ab26118ab565b6202a300600a54610ac391906125a1565b4210610b115760405162461bcd60e51b815260206004820152600a60248201527f73616c6520656e64656400000000000000000000000000000000000000000000604482015260640161074d565b60005b8161ffff168161ffff161015610c585760c860075410610b765760405162461bcd60e51b815260206004820152600e60248201527f6e6f206d6f726520737570706c79000000000000000000000000000000000000604482015260640161074d565b60078054906000610b86836125b4565b9190505550610b9d610b953390565b600754611a34565b60095481604051602001610be092919091825260f01b7fffff00000000000000000000000000000000000000000000000000000000000016602082015260220190565b60408051601f1981840301815291905280516020909101206009819055600754907f9eecfd08f4c23b4793809779d43467ab123954b8ef3ea78a983477f98e39823490610c2e6005436125a1565b6040805192835260208301919091520160405180910390a280610c50816125ce565b915050610b14565b5050565b6000818152600360205260408120546001600160a01b0316806105fe5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604482015260640161074d565b610cc96118ab565b600b546040805160208101869052016040516020818303038152906040528051906020012014610cf857600080fd5b600c54610100900460ff1615610d505760405162461bcd60e51b815260206004820152600f60248201527f616c726561647920667265657a65640000000000000000000000000000000000604482015260640161074d565b6008610d5d82848361263d565b5050600c805460ff191660011790555050565b610d786118ab565b6202a300600a54610d8991906125a1565b4210610dd75760405162461bcd60e51b815260206004820152600a60248201527f73616c6520656e64656400000000000000000000000000000000000000000000604482015260640161074d565b600a8390556008610de982848361263d565b50505050565b60006001600160a01b038216610e6d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e65720000000000000000000000000000000000000000000000606482015260840161074d565b506001600160a01b031660009081526004602052604090205490565b610e916118ab565b6108fd6000611b8e565b60606002805461061390612508565b610c58338383611bf6565b333b15610ec157600080fd5b60c860075410610f135760405162461bcd60e51b815260206004820152600e60248201527f6e6f206d6f726520737570706c79000000000000000000000000000000000000604482015260640161074d565b600a544211610f645760405162461bcd60e51b815260206004820152601060248201527f73616c65206e6f74207374617274656400000000000000000000000000000000604482015260640161074d565b6202a300600a54610f7591906125a1565b4210610fc35760405162461bcd60e51b815260206004820152600a60248201527f73616c6520656e64656400000000000000000000000000000000000000000000604482015260640161074d565b336000908152600d602052604090205460ff16156110235760405162461bcd60e51b815260206004820152600e60248201527f616c7265616479206d696e746564000000000000000000000000000000000000604482015260640161074d565b61102e33838361091a565b61107a5760405162461bcd60e51b815260206004820152600b60248201527f6e6f7420616c6c6f776564000000000000000000000000000000000000000000604482015260640161074d565b670de0b6b3a76400003410156110d25760405162461bcd60e51b815260206004820152600a60248201527f6e6f7420656e6f75676800000000000000000000000000000000000000000000604482015260640161074d565b336000908152600d60205260408120805460ff1916600117905560078054916110fa836125b4565b9190505550611109610b953390565b6009548282600081811061111f5761111f6126fe565b90506020020135604051602001611140929190918252602082015260400190565b60408051601f1981840301815291905280516020909101206009819055600754907f9eecfd08f4c23b4793809779d43467ab123954b8ef3ea78a983477f98e3982349061118e6005436125a1565b6040805192835260208301919091520160405180910390a26009546040805160208101929092527fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b169082015242605482015260740160408051601f1981840301815291905280516020909101206009555050565b6112113383611648565b6112835760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f766564000000000000000000000000000000000000606482015260840161074d565b610de984848484611cc4565b6000818152600360205260409020546060906001600160a01b031661131c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161074d565b600c5460ff161561135957600861133283611d4d565b604051602001611343929190612714565b6040516020818303038152906040529050919050565b6008805461136690612508565b80601f016020809104026020016040519081016040528092919081815260200182805461139290612508565b80156113df5780601f106113b4576101008083540402835291602001916113df565b820191906000526020600020905b8154815290600101906020018083116113c257829003601f168201915b50505050509050919050565b6113f36118ab565b6001600160a01b03811661146f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161074d565b61147881611b8e565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061150e57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105fe57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146105fe565b6000818152600360205260409020546001600160a01b03166114785760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e2049440000000000000000604482015260640161074d565b600081815260056020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061160f82610c5c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061165483610c5c565b9050806001600160a01b0316846001600160a01b0316148061169b57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b806109c25750836001600160a01b03166116b484610696565b6001600160a01b031614949350505050565b826001600160a01b03166116d982610c5c565b6001600160a01b0316146117555760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161074d565b6001600160a01b0382166117d05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161074d565b6117db6000826115c2565b6001600160a01b03831660009081526004602052604081208054600192906118049084906127ee565b90915550506001600160a01b03821660009081526004602052604081208054600192906118329084906125a1565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000546001600160a01b031633146108fd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161074d565b804710156119555760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161074d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146119a2576040519150601f19603f3d011682016040523d82523d6000602084013e6119a7565b606091505b505090508061080c5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161074d565b600082611a2b8584611e82565b14949350505050565b6001600160a01b038216611a8a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074d565b6000818152600360205260409020546001600160a01b031615611aef5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074d565b6001600160a01b0382166000908152600460205260408120805460019290611b189084906125a1565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031603611c575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074d565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ccf8484846116c6565b611cdb84848484611ecf565b610de95760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161074d565b606081600003611d9057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611dba5780611da4816125b4565b9150611db39050600a8361258d565b9150611d94565b60008167ffffffffffffffff811115611dd557611dd56123e3565b6040519080825280601f01601f191660200182016040528015611dff576020820181803683370190505b5090505b84156109c257611e146001836127ee565b9150611e21600a86612801565b611e2c9060306125a1565b60f81b818381518110611e4157611e416126fe565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e7b600a8661258d565b9450611e03565b600081815b8451811015611ec757611eb382868381518110611ea657611ea66126fe565b6020026020010151612070565b915080611ebf816125b4565b915050611e87565b509392505050565b60006001600160a01b0384163b15612065576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290611f2c903390899088908890600401612815565b6020604051808303816000875af1925050508015611f67575060408051601f3d908101601f19168201909252611f6491810190612851565b60015b61201a573d808015611f95576040519150601f19603f3d011682016040523d82523d6000602084013e611f9a565b606091505b5080516000036120125760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161074d565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490506109c2565b506001949350505050565b600081831061208c57600082815260208490526040902061209b565b60008381526020839052604090205b9392505050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461147857600080fd5b6000602082840312156120e257600080fd5b813561209b816120a2565b60005b838110156121085781810151838201526020016120f0565b50506000910152565b600081518084526121298160208601602086016120ed565b601f01601f19169290920160200192915050565b60208152600061209b6020830184612111565b60006020828403121561216257600080fd5b5035919050565b80356001600160a01b038116811461218057600080fd5b919050565b6000806040838503121561219857600080fd5b6121a183612169565b946020939093013593505050565b6000806000606084860312156121c457600080fd5b6121cd84612169565b92506121db60208501612169565b9150604084013590509250925092565b600080604083850312156121fe57600080fd5b50508035926020909101359150565b60008083601f84011261221f57600080fd5b50813567ffffffffffffffff81111561223757600080fd5b6020830191508360208260051b85010111156108c957600080fd5b60008060006040848603121561226757600080fd5b61227084612169565b9250602084013567ffffffffffffffff81111561228c57600080fd5b6122988682870161220d565b9497909650939450505050565b6000602082840312156122b757600080fd5b813561ffff8116811461209b57600080fd5b60008083601f8401126122db57600080fd5b50813567ffffffffffffffff8111156122f357600080fd5b6020830191508360208285010111156108c957600080fd5b60008060006040848603121561232057600080fd5b83359250602084013567ffffffffffffffff81111561233e57600080fd5b612298868287016122c9565b60006020828403121561235c57600080fd5b61209b82612169565b6000806040838503121561237857600080fd5b61238183612169565b91506020830135801515811461239657600080fd5b809150509250929050565b600080602083850312156123b457600080fd5b823567ffffffffffffffff8111156123cb57600080fd5b6123d78582860161220d565b90969095509350505050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561240f57600080fd5b61241885612169565b935061242660208601612169565b925060408501359150606085013567ffffffffffffffff8082111561244a57600080fd5b818701915087601f83011261245e57600080fd5b813581811115612470576124706123e3565b604051601f8201601f19908116603f01168101908382118183101715612498576124986123e3565b816040528281528a60208487010111156124b157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156124e857600080fd5b6124f183612169565b91506124ff60208401612169565b90509250929050565b600181811c9082168061251c57607f821691505b60208210810361253c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561257257612572612542565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261259c5761259c612577565b500490565b808201808211156105fe576105fe612542565b600060001982036125c7576125c7612542565b5060010190565b600061ffff8083168181036125e5576125e5612542565b6001019392505050565b601f82111561080c57600081815260208120601f850160051c810160208610156126165750805b601f850160051c820191505b8181101561263557828155600101612622565b505050505050565b67ffffffffffffffff831115612655576126556123e3565b612669836126638354612508565b836125ef565b6000601f84116001811461269d57600085156126855750838201355b600019600387901b1c1916600186901b1783556126f7565b600083815260209020601f19861690835b828110156126ce57868501358255602094850194600190920191016126ae565b50868210156126eb5760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052603260045260246000fd5b600080845461272281612508565b6001828116801561273a576001811461274f5761277e565b60ff198416875282151583028701945061277e565b8860005260208060002060005b858110156127755781548a82015290840190820161275c565b50505082870194505b507f2f000000000000000000000000000000000000000000000000000000000000008452865192506127b68382860160208a016120ed565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000939092019182019290925260060195945050505050565b818103818111156105fe576105fe612542565b60008261281057612810612577565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526128476080830184612111565b9695505050505050565b60006020828403121561286357600080fd5b815161209b816120a256fea2646970667358221220a1f44abf51954b65b4fad793f032f6ae69757a9d297e6298f0abce241fc25d4f64736f6c63430008100033

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

193afc90ffacc56084f64969d961b797bc2ce0f51dc2d2e9f04fee0eff7b7cc7000000000000000000000000407125c243ec477085af0bd099c4da5bf774fad4000000000000000000000000000000000000000000000000000000006306d7a081f78e6f1a9e6c113ea7b259745611f188170dba061f2848b720af580e0f672f00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5756586b385072394874554154687752396e5464627059533543724750356b6753555478635636734a5937310000000000000000000000

-----Decoded View---------------
Arg [0] : merkleRoot (bytes32): 0x193afc90ffacc56084f64969d961b797bc2ce0f51dc2d2e9f04fee0eff7b7cc7
Arg [1] : owner (address): 0x407125C243Ec477085aF0Bd099C4DA5bF774fAd4
Arg [2] : timestamp (uint256): 1661392800
Arg [3] : proof (bytes32): 0x81f78e6f1a9e6c113ea7b259745611f188170dba061f2848b720af580e0f672f
Arg [4] : uri (string): ipfs://QmWVXk8Pr9HtUAThwR9nTdbpYS5CrGP5kgSUTxcV6sJY71

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 193afc90ffacc56084f64969d961b797bc2ce0f51dc2d2e9f04fee0eff7b7cc7
Arg [1] : 000000000000000000000000407125c243ec477085af0bd099c4da5bf774fad4
Arg [2] : 000000000000000000000000000000000000000000000000000000006306d7a0
Arg [3] : 81f78e6f1a9e6c113ea7b259745611f188170dba061f2848b720af580e0f672f
Arg [4] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [6] : 697066733a2f2f516d5756586b385072394874554154687752396e5464627059
Arg [7] : 533543724750356b6753555478635636734a5937310000000000000000000000


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.