ETH Price: $2,514.18 (+0.91%)

Token

NFTVenues Rouge (NVR)
 

Overview

Max Total Supply

77 NVR

Holders

45

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 NVR
0x521bc9bb5ab741658e48ef578d291aee05dba358
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NFTVenuesRouge

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : NFTVenuesRouge.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.6;

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

contract NFTVenuesRouge is ERC721, Ownable, ERC721Burnable {

    // Whitelist state
    struct WhiteList {
        // The amount to pay
        uint256 mintValue;
        // The root of the merkle tree
        bytes32 rootHash;
        // The amount of tokens an address can mint
        uint8 cap;
        mapping(address => uint256) capTracker;
    }
    // whitelist id => whitelist
    mapping (uint8 => WhiteList) public whiteLists;
    uint8 public openWhiteListId = 0;

    bool public isMintOpen = false;
    uint256 public openMintValue = 150000000000000000;



    // Token
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint256 public maxSupply = 3000;
    address public feeReceiver;


    string public _provenanceHash;
    string public _baseURL;


    constructor() ERC721("NFTVenues Rouge", "NVR") {}

    function _baseMint(uint256 count, address recipient, uint256 mintValue) private {
        require(_tokenIds.current() + count <= maxSupply, "Can not mint more than max supply.");
        require(msg.value >= count * mintValue, "Insufficient payment");

        for (uint256 i = 0; i < count; i++) {
            _tokenIds.increment();
            _mint(recipient, _tokenIds.current());
        }

        bool success = false;
        (success,) = feeReceiver.call{value : msg.value}("");
        require(success, "Failed to send to owner");
    }

    function airdrop(address receiver, uint256 amount) external onlyOwner {
        _baseMint(amount, receiver, 0);
    }

    function mint(uint256 amount) external payable {
        require(isMintOpen, "Mint is not active.");
        require(amount > 0 && amount <= 10, "You can mint between 1 and 10 in one transaction.");
        _baseMint(amount, msg.sender, openMintValue);
    }

    function whiteListMint(uint256 amount, bytes32[] calldata proof) external payable {
        WhiteList storage whiteList = whiteLists[openWhiteListId];
        require(whiteList.rootHash != bytes32(0), "Whitelist phase is not active.");
        require(
            amount > 0 && amount + whiteList.capTracker[msg.sender] <= whiteList.cap,
                "You are exceeded the amount of tokens you can mint for this white list"
        );
        require(_verify(_leaf(msg.sender), proof, whiteList.rootHash), "Address not in white list.");
        whiteList.capTracker[msg.sender] += amount;
        _baseMint(amount, msg.sender, whiteList.mintValue);
    }

    // Merkle utils
    function _leaf(address recipient)
    internal pure returns (bytes32)
    {
        return keccak256(abi.encodePacked(recipient));
    }

    function _verify(bytes32 leaf, bytes32[] memory proof, bytes32 rootHash)
    internal pure returns (bool)
    {
        return MerkleProof.verify(proof, rootHash, leaf);
    }

    // Setters
    function addWhiteList(uint8 whiteListId, uint256 mintValue, bytes32 rootHash, uint8 cap) public onlyOwner {
        require(whiteListId != 0, "whiteListId must be greater than 0");
        WhiteList storage whiteList = whiteLists[whiteListId];
        whiteList.mintValue = mintValue;
        whiteList.rootHash = rootHash;
        whiteList.cap = cap;
    }

    function flipMintState() public onlyOwner {
        isMintOpen = !isMintOpen;
    }

    function startWhitelist(uint8 whiteListId) public onlyOwner {
        openWhiteListId = whiteListId;
    }

    function startMinting() public onlyOwner {
        openWhiteListId = 0;
        isMintOpen = true;
    }

    function setOpenMintValue(uint256 newMintValue) public onlyOwner {
        openMintValue = newMintValue;
    }

    function setFeeReceiver(address newFeeReceiver) public onlyOwner {
        feeReceiver = newFeeReceiver;
    }

    function setMaxSupply(uint256 newMaxSupply) public onlyOwner {
        maxSupply = newMaxSupply;
    }

    function setProvenanceHash(string memory newProvenanceHash) public onlyOwner {
        _provenanceHash = newProvenanceHash;
    }

    function setBaseURL(string memory newBaseURI) public onlyOwner {
        _baseURL = newBaseURI;
    }

    // Getters
    function _baseURI() internal view override returns (string memory) {
        return _baseURL;
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIds.current();
    }

    function whiteListCapTracker(uint8 whiteListId, address wallet) public view returns (uint256) {
        return whiteLists[whiteListId].capTracker[wallet];
    }

    function getWhiteList(uint8 whiteListId) public view returns (uint256, bytes32, uint8) {
        WhiteList storage whiteList = whiteLists[whiteListId];
        return (whiteList.mintValue, whiteList.rootHash, whiteList.cap);
    }
}

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

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

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

File 3 of 14 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 4 of 14 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 6 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

File 8 of 14 : 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 14 : 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 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 13 of 14 : 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 14 of 14 : 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": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"whiteListId","type":"uint8"},{"internalType":"uint256","name":"mintValue","type":"uint256"},{"internalType":"bytes32","name":"rootHash","type":"bytes32"},{"internalType":"uint8","name":"cap","type":"uint8"}],"name":"addWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"whiteListId","type":"uint8"}],"name":"getWhiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openMintValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openWhiteListId","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver","type":"address"}],"name":"setFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintValue","type":"uint256"}],"name":"setOpenMintValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newProvenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"whiteListId","type":"uint8"}],"name":"startWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"whiteListId","type":"uint8"},{"internalType":"address","name":"wallet","type":"address"}],"name":"whiteListCapTracker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"whiteLists","outputs":[{"internalType":"uint256","name":"mintValue","type":"uint256"},{"internalType":"bytes32","name":"rootHash","type":"bytes32"},{"internalType":"uint8","name":"cap","type":"uint8"}],"stateMutability":"view","type":"function"}]

60806040526000600860006101000a81548160ff021916908360ff1602179055506000600860016101000a81548160ff021916908315150217905550670214e8348c4f0000600955610bb8600b553480156200005a57600080fd5b506040518060400160405280600f81526020017f4e465456656e75657320526f75676500000000000000000000000000000000008152506040518060400160405280600381526020017f4e565200000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000df929190620001ef565b508060019080519060200190620000f8929190620001ef565b5050506200011b6200010f6200012160201b60201c565b6200012960201b60201c565b62000304565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001fd906200029f565b90600052602060002090601f0160209004810192826200022157600085556200026d565b82601f106200023c57805160ff19168380011785556200026d565b828001600101855582156200026d579182015b828111156200026c5782518255916020019190600101906200024f565b5b5090506200027c919062000280565b5090565b5b808211156200029b57600081600090555060010162000281565b5090565b60006002820490506001821680620002b857607f821691505b60208210811415620002cf57620002ce620002d5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614b2580620003146000396000f3fe60806040526004361061023b5760003560e01c80638ba4cc3c1161012e578063b88d4fde116100ab578063db27bbdb1161006f578063db27bbdb14610843578063e985e9c51461086c578063efdcd974146108a9578063f2fde38b146108d2578063f9e0edae146108fb5761023b565b8063b88d4fde1461074c578063c87b56dd14610775578063d0585553146107b2578063d5abeb01146107ef578063d7e1e32a1461081a5761023b565b80639a65ea26116100f25780639a65ea261461069c578063a0712d68146106b3578063a22cb465146106cf578063b1284709146106f8578063b3f00674146107215761023b565b80638ba4cc3c146105b35780638da5cb5b146105dc5780638db7d79414610607578063952307b51461063257806395d89b41146106715761023b565b806342842e0e116101bc5780636352211e116101805780636352211e146104ba5780636f8b44b0146104f757806370a0823114610520578063715018a61461055d5780637f5f03a6146105745761023b565b806342842e0e146103fd57806342966c681461042657806349f2553a1461044f578063534308cc1461047857806359c74f29146104a35761023b565b806311876875116102035780631187687514610337578063124f5f091461035357806318160ddd1461037e57806319908016146103a957806323b872dd146103d45761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063109695231461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061334e565b610926565b6040516102749190613ac3565b60405180910390f35b34801561028957600080fd5b50610292610a08565b60405161029f9190613ade565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906133f1565b610a9a565b6040516102dc9190613a5c565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061330e565b610b1f565b005b34801561031a57600080fd5b50610335600480360381019061033091906133a8565b610c37565b005b610351600480360381019061034c919061341e565b610ccd565b005b34801561035f57600080fd5b50610368610ef6565b6040516103759190613e40565b60405180910390f35b34801561038a57600080fd5b50610393610efc565b6040516103a09190613e40565b60405180910390f35b3480156103b557600080fd5b506103be610f0d565b6040516103cb9190613ac3565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f691906131f8565b610f20565b005b34801561040957600080fd5b50610424600480360381019061041f91906131f8565b610f80565b005b34801561043257600080fd5b5061044d600480360381019061044891906133f1565b610fa0565b005b34801561045b57600080fd5b50610476600480360381019061047191906133a8565b610ffc565b005b34801561048457600080fd5b5061048d611092565b60405161049a9190613ade565b60405180910390f35b3480156104af57600080fd5b506104b8611120565b005b3480156104c657600080fd5b506104e160048036038101906104dc91906133f1565b6111c8565b6040516104ee9190613a5c565b60405180910390f35b34801561050357600080fd5b5061051e600480360381019061051991906133f1565b61127a565b005b34801561052c57600080fd5b506105476004803603810190610542919061318b565b611300565b6040516105549190613e40565b60405180910390f35b34801561056957600080fd5b506105726113b8565b005b34801561058057600080fd5b5061059b6004803603810190610596919061347e565b611440565b6040516105aa93929190613e5b565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d5919061330e565b61148b565b005b3480156105e857600080fd5b506105f1611517565b6040516105fe9190613a5c565b60405180910390f35b34801561061357600080fd5b5061061c611541565b6040516106299190613e92565b60405180910390f35b34801561063e57600080fd5b506106596004803603810190610654919061347e565b611554565b60405161066893929190613e5b565b60405180910390f35b34801561067d57600080fd5b5061068661158b565b6040516106939190613ade565b60405180910390f35b3480156106a857600080fd5b506106b161161d565b005b6106cd60048036038101906106c891906133f1565b6116d2565b005b3480156106db57600080fd5b506106f660048036038101906106f191906132ce565b611781565b005b34801561070457600080fd5b5061071f600480360381019061071a91906134eb565b611797565b005b34801561072d57600080fd5b506107366118ad565b6040516107439190613a5c565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e919061324b565b6118d3565b005b34801561078157600080fd5b5061079c600480360381019061079791906133f1565b611935565b6040516107a99190613ade565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d491906134ab565b6119dc565b6040516107e69190613e40565b60405180910390f35b3480156107fb57600080fd5b50610804611a40565b6040516108119190613e40565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061347e565b611a46565b005b34801561084f57600080fd5b5061086a600480360381019061086591906133f1565b611ae0565b005b34801561087857600080fd5b50610893600480360381019061088e91906131b8565b611b66565b6040516108a09190613ac3565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb919061318b565b611bfa565b005b3480156108de57600080fd5b506108f960048036038101906108f4919061318b565b611cba565b005b34801561090757600080fd5b50610910611db2565b60405161091d9190613ade565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a015750610a0082611e40565b5b9050919050565b606060008054610a1790614164565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4390614164565b8015610a905780601f10610a6557610100808354040283529160200191610a90565b820191906000526020600020905b815481529060010190602001808311610a7357829003601f168201915b5050505050905090565b6000610aa582611eaa565b610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90613d60565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2a826111c8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290613dc0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bba611f16565b73ffffffffffffffffffffffffffffffffffffffff161480610be95750610be881610be3611f16565b611b66565b5b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90613cc0565b60405180910390fd5b610c328383611f1e565b505050565b610c3f611f16565b73ffffffffffffffffffffffffffffffffffffffff16610c5d611517565b73ffffffffffffffffffffffffffffffffffffffff1614610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90613d80565b60405180910390fd5b80600d9080519060200190610cc9929190612f1f565b5050565b600060076000600860009054906101000a900460ff1660ff1660ff16815260200190815260200160002090506000801b81600101541415610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90613b40565b60405180910390fd5b600084118015610db357508060020160009054906101000a900460ff1660ff168160030160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485610db09190613f82565b11155b610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990613e20565b60405180910390fd5b610e4a610dfe33611fd7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508360010154612007565b610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090613c00565b60405180910390fd5b838160030160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610eda9190613f82565b92505081905550610ef08433836000015461201d565b50505050565b60095481565b6000610f08600a6121d6565b905090565b600860019054906101000a900460ff1681565b610f31610f2b611f16565b826121e4565b610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790613de0565b60405180910390fd5b610f7b8383836122c2565b505050565b610f9b838383604051806020016040528060008152506118d3565b505050565b610fb1610fab611f16565b826121e4565b610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe790613e00565b60405180910390fd5b610ff981612529565b50565b611004611f16565b73ffffffffffffffffffffffffffffffffffffffff16611022611517565b73ffffffffffffffffffffffffffffffffffffffff1614611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90613d80565b60405180910390fd5b80600e908051906020019061108e929190612f1f565b5050565b600d805461109f90614164565b80601f01602080910402602001604051908101604052809291908181526020018280546110cb90614164565b80156111185780601f106110ed57610100808354040283529160200191611118565b820191906000526020600020905b8154815290600101906020018083116110fb57829003601f168201915b505050505081565b611128611f16565b73ffffffffffffffffffffffffffffffffffffffff16611146611517565b73ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390613d80565b60405180910390fd5b600860019054906101000a900460ff1615600860016101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890613d00565b60405180910390fd5b80915050919050565b611282611f16565b73ffffffffffffffffffffffffffffffffffffffff166112a0611517565b73ffffffffffffffffffffffffffffffffffffffff16146112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90613d80565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613ce0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113c0611f16565b73ffffffffffffffffffffffffffffffffffffffff166113de611517565b73ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90613d80565b60405180910390fd5b61143e6000612646565b565b600080600080600760008660ff1660ff1681526020019081526020016000209050806000015481600101548260020160009054906101000a900460ff16935093509350509193909250565b611493611f16565b73ffffffffffffffffffffffffffffffffffffffff166114b1611517565b73ffffffffffffffffffffffffffffffffffffffff1614611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90613d80565b60405180910390fd5b6115138183600061201d565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900460ff1681565b60076020528060005260406000206000915090508060000154908060010154908060020160009054906101000a900460ff16905083565b60606001805461159a90614164565b80601f01602080910402602001604051908101604052809291908181526020018280546115c690614164565b80156116135780601f106115e857610100808354040283529160200191611613565b820191906000526020600020905b8154815290600101906020018083116115f657829003601f168201915b5050505050905090565b611625611f16565b73ffffffffffffffffffffffffffffffffffffffff16611643611517565b73ffffffffffffffffffffffffffffffffffffffff1614611699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169090613d80565b60405180910390fd5b6000600860006101000a81548160ff021916908360ff1602179055506001600860016101000a81548160ff021916908315150217905550565b600860019054906101000a900460ff16611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613b00565b60405180910390fd5b6000811180156117325750600a8111155b611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890613b20565b60405180910390fd5b61177e813360095461201d565b50565b61179361178c611f16565b838361270c565b5050565b61179f611f16565b73ffffffffffffffffffffffffffffffffffffffff166117bd611517565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613d80565b60405180910390fd5b60008460ff16141561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190613b80565b60405180910390fd5b6000600760008660ff1660ff1681526020019081526020016000209050838160000181905550828160010181905550818160020160006101000a81548160ff021916908360ff1602179055505050505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6118e46118de611f16565b836121e4565b611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90613de0565b60405180910390fd5b61192f84848484612879565b50505050565b606061194082611eaa565b61197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690613da0565b60405180910390fd5b60006119896128d5565b905060008151116119a957604051806020016040528060008152506119d4565b806119b384612967565b6040516020016119c4929190613a23565b6040516020818303038152906040525b915050919050565b6000600760008460ff1660ff16815260200190815260200160002060030160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b611a4e611f16565b73ffffffffffffffffffffffffffffffffffffffff16611a6c611517565b73ffffffffffffffffffffffffffffffffffffffff1614611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990613d80565b60405180910390fd5b80600860006101000a81548160ff021916908360ff16021790555050565b611ae8611f16565b73ffffffffffffffffffffffffffffffffffffffff16611b06611517565b73ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613d80565b60405180910390fd5b8060098190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c02611f16565b73ffffffffffffffffffffffffffffffffffffffff16611c20611517565b73ffffffffffffffffffffffffffffffffffffffff1614611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d90613d80565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611cc2611f16565b73ffffffffffffffffffffffffffffffffffffffff16611ce0611517565b73ffffffffffffffffffffffffffffffffffffffff1614611d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2d90613d80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90613ba0565b60405180910390fd5b611daf81612646565b50565b600e8054611dbf90614164565b80601f0160208091040260200160405190810160405280929190818152602001828054611deb90614164565b8015611e385780601f10611e0d57610100808354040283529160200191611e38565b820191906000526020600020905b815481529060010190602001808311611e1b57829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f91836111c8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081604051602001611fea9190613a08565b604051602081830303815290604052805190602001209050919050565b6000612014838386612ac8565b90509392505050565b600b548361202b600a6121d6565b6120359190613f82565b1115612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90613c80565b60405180910390fd5b80836120829190614009565b3410156120c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bb90613d40565b60405180910390fd5b60005b838110156120ff576120d9600a612adf565b6120ec836120e7600a6121d6565b612af5565b80806120f7906141c7565b9150506120c7565b506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163460405161214890613a47565b60006040518083038185875af1925050503d8060008114612185576040519150601f19603f3d011682016040523d82523d6000602084013e61218a565b606091505b505080915050806121d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c790613c60565b60405180910390fd5b50505050565b600081600001549050919050565b60006121ef82611eaa565b61222e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222590613ca0565b60405180910390fd5b6000612239836111c8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061227b575061227a8185611b66565b5b806122b957508373ffffffffffffffffffffffffffffffffffffffff166122a184610a9a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122e2826111c8565b73ffffffffffffffffffffffffffffffffffffffff1614612338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232f90613bc0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90613c20565b60405180910390fd5b6123b3838383612ccf565b6123be600082611f1e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461240e9190614063565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124659190613f82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612524838383612cd4565b505050565b6000612534826111c8565b905061254281600084612ccf565b61254d600083611f1e565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461259d9190614063565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461264281600084612cd4565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561277b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277290613c40565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161286c9190613ac3565b60405180910390a3505050565b6128848484846122c2565b61289084848484612cd9565b6128cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c690613b60565b60405180910390fd5b50505050565b6060600e80546128e490614164565b80601f016020809104026020016040519081016040528092919081815260200182805461291090614164565b801561295d5780601f106129325761010080835404028352916020019161295d565b820191906000526020600020905b81548152906001019060200180831161294057829003601f168201915b5050505050905090565b606060008214156129af576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ac3565b600082905060005b600082146129e15780806129ca906141c7565b915050600a826129da9190613fd8565b91506129b7565b60008167ffffffffffffffff8111156129fd576129fc614321565b5b6040519080825280601f01601f191660200182016040528015612a2f5781602001600182028036833780820191505090505b5090505b60008514612abc57600182612a489190614063565b9150600a85612a579190614234565b6030612a639190613f82565b60f81b818381518110612a7957612a786142f2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ab59190613fd8565b9450612a33565b8093505050505b919050565b600082612ad58584612e70565b1490509392505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c90613d20565b60405180910390fd5b612b6e81611eaa565b15612bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba590613be0565b60405180910390fd5b612bba60008383612ccf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0a9190613f82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ccb60008383612cd4565b5050565b505050565b505050565b6000612cfa8473ffffffffffffffffffffffffffffffffffffffff16612ee5565b15612e63578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d23611f16565b8786866040518563ffffffff1660e01b8152600401612d459493929190613a77565b602060405180830381600087803b158015612d5f57600080fd5b505af1925050508015612d9057506040513d601f19601f82011682018060405250810190612d8d919061337b565b60015b612e13573d8060008114612dc0576040519150601f19603f3d011682016040523d82523d6000602084013e612dc5565b606091505b50600081511415612e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0290613b60565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e68565b600190505b949350505050565b60008082905060005b8451811015612eda576000858281518110612e9757612e966142f2565b5b60200260200101519050808311612eb957612eb28382612f08565b9250612ec6565b612ec38184612f08565b92505b508080612ed2906141c7565b915050612e79565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b828054612f2b90614164565b90600052602060002090601f016020900481019282612f4d5760008555612f94565b82601f10612f6657805160ff1916838001178555612f94565b82800160010185558215612f94579182015b82811115612f93578251825591602001919060010190612f78565b5b509050612fa19190612fa5565b5090565b5b80821115612fbe576000816000905550600101612fa6565b5090565b6000612fd5612fd084613ed2565b613ead565b905082815260208101848484011115612ff157612ff061435f565b5b612ffc848285614122565b509392505050565b600061301761301284613f03565b613ead565b9050828152602081018484840111156130335761303261435f565b5b61303e848285614122565b509392505050565b60008135905061305581614a65565b92915050565b60008083601f84011261307157613070614355565b5b8235905067ffffffffffffffff81111561308e5761308d614350565b5b6020830191508360208202830111156130aa576130a961435a565b5b9250929050565b6000813590506130c081614a7c565b92915050565b6000813590506130d581614a93565b92915050565b6000813590506130ea81614aaa565b92915050565b6000815190506130ff81614aaa565b92915050565b600082601f83011261311a57613119614355565b5b813561312a848260208601612fc2565b91505092915050565b600082601f83011261314857613147614355565b5b8135613158848260208601613004565b91505092915050565b60008135905061317081614ac1565b92915050565b60008135905061318581614ad8565b92915050565b6000602082840312156131a1576131a0614369565b5b60006131af84828501613046565b91505092915050565b600080604083850312156131cf576131ce614369565b5b60006131dd85828601613046565b92505060206131ee85828601613046565b9150509250929050565b60008060006060848603121561321157613210614369565b5b600061321f86828701613046565b935050602061323086828701613046565b925050604061324186828701613161565b9150509250925092565b6000806000806080858703121561326557613264614369565b5b600061327387828801613046565b945050602061328487828801613046565b935050604061329587828801613161565b925050606085013567ffffffffffffffff8111156132b6576132b5614364565b5b6132c287828801613105565b91505092959194509250565b600080604083850312156132e5576132e4614369565b5b60006132f385828601613046565b9250506020613304858286016130b1565b9150509250929050565b6000806040838503121561332557613324614369565b5b600061333385828601613046565b925050602061334485828601613161565b9150509250929050565b60006020828403121561336457613363614369565b5b6000613372848285016130db565b91505092915050565b60006020828403121561339157613390614369565b5b600061339f848285016130f0565b91505092915050565b6000602082840312156133be576133bd614369565b5b600082013567ffffffffffffffff8111156133dc576133db614364565b5b6133e884828501613133565b91505092915050565b60006020828403121561340757613406614369565b5b600061341584828501613161565b91505092915050565b60008060006040848603121561343757613436614369565b5b600061344586828701613161565b935050602084013567ffffffffffffffff81111561346657613465614364565b5b6134728682870161305b565b92509250509250925092565b60006020828403121561349457613493614369565b5b60006134a284828501613176565b91505092915050565b600080604083850312156134c2576134c1614369565b5b60006134d085828601613176565b92505060206134e185828601613046565b9150509250929050565b6000806000806080858703121561350557613504614369565b5b600061351387828801613176565b945050602061352487828801613161565b9350506040613535878288016130c6565b925050606061354687828801613176565b91505092959194509250565b61355b81614097565b82525050565b61357261356d82614097565b614210565b82525050565b613581816140a9565b82525050565b613590816140b5565b82525050565b60006135a182613f34565b6135ab8185613f4a565b93506135bb818560208601614131565b6135c48161436e565b840191505092915050565b60006135da82613f3f565b6135e48185613f66565b93506135f4818560208601614131565b6135fd8161436e565b840191505092915050565b600061361382613f3f565b61361d8185613f77565b935061362d818560208601614131565b80840191505092915050565b6000613646601383613f66565b91506136518261438c565b602082019050919050565b6000613669603183613f66565b9150613674826143b5565b604082019050919050565b600061368c601e83613f66565b915061369782614404565b602082019050919050565b60006136af603283613f66565b91506136ba8261442d565b604082019050919050565b60006136d2602283613f66565b91506136dd8261447c565b604082019050919050565b60006136f5602683613f66565b9150613700826144cb565b604082019050919050565b6000613718602583613f66565b91506137238261451a565b604082019050919050565b600061373b601c83613f66565b915061374682614569565b602082019050919050565b600061375e601a83613f66565b915061376982614592565b602082019050919050565b6000613781602483613f66565b915061378c826145bb565b604082019050919050565b60006137a4601983613f66565b91506137af8261460a565b602082019050919050565b60006137c7601783613f66565b91506137d282614633565b602082019050919050565b60006137ea602283613f66565b91506137f58261465c565b604082019050919050565b600061380d602c83613f66565b9150613818826146ab565b604082019050919050565b6000613830603883613f66565b915061383b826146fa565b604082019050919050565b6000613853602a83613f66565b915061385e82614749565b604082019050919050565b6000613876602983613f66565b915061388182614798565b604082019050919050565b6000613899602083613f66565b91506138a4826147e7565b602082019050919050565b60006138bc601483613f66565b91506138c782614810565b602082019050919050565b60006138df602c83613f66565b91506138ea82614839565b604082019050919050565b6000613902602083613f66565b915061390d82614888565b602082019050919050565b6000613925602f83613f66565b9150613930826148b1565b604082019050919050565b6000613948602183613f66565b915061395382614900565b604082019050919050565b600061396b600083613f5b565b91506139768261494f565b600082019050919050565b600061398e603183613f66565b915061399982614952565b604082019050919050565b60006139b1603083613f66565b91506139bc826149a1565b604082019050919050565b60006139d4604683613f66565b91506139df826149f0565b606082019050919050565b6139f38161410b565b82525050565b613a0281614115565b82525050565b6000613a148284613561565b60148201915081905092915050565b6000613a2f8285613608565b9150613a3b8284613608565b91508190509392505050565b6000613a528261395e565b9150819050919050565b6000602082019050613a716000830184613552565b92915050565b6000608082019050613a8c6000830187613552565b613a996020830186613552565b613aa660408301856139ea565b8181036060830152613ab88184613596565b905095945050505050565b6000602082019050613ad86000830184613578565b92915050565b60006020820190508181036000830152613af881846135cf565b905092915050565b60006020820190508181036000830152613b1981613639565b9050919050565b60006020820190508181036000830152613b398161365c565b9050919050565b60006020820190508181036000830152613b598161367f565b9050919050565b60006020820190508181036000830152613b79816136a2565b9050919050565b60006020820190508181036000830152613b99816136c5565b9050919050565b60006020820190508181036000830152613bb9816136e8565b9050919050565b60006020820190508181036000830152613bd98161370b565b9050919050565b60006020820190508181036000830152613bf98161372e565b9050919050565b60006020820190508181036000830152613c1981613751565b9050919050565b60006020820190508181036000830152613c3981613774565b9050919050565b60006020820190508181036000830152613c5981613797565b9050919050565b60006020820190508181036000830152613c79816137ba565b9050919050565b60006020820190508181036000830152613c99816137dd565b9050919050565b60006020820190508181036000830152613cb981613800565b9050919050565b60006020820190508181036000830152613cd981613823565b9050919050565b60006020820190508181036000830152613cf981613846565b9050919050565b60006020820190508181036000830152613d1981613869565b9050919050565b60006020820190508181036000830152613d398161388c565b9050919050565b60006020820190508181036000830152613d59816138af565b9050919050565b60006020820190508181036000830152613d79816138d2565b9050919050565b60006020820190508181036000830152613d99816138f5565b9050919050565b60006020820190508181036000830152613db981613918565b9050919050565b60006020820190508181036000830152613dd98161393b565b9050919050565b60006020820190508181036000830152613df981613981565b9050919050565b60006020820190508181036000830152613e19816139a4565b9050919050565b60006020820190508181036000830152613e39816139c7565b9050919050565b6000602082019050613e5560008301846139ea565b92915050565b6000606082019050613e7060008301866139ea565b613e7d6020830185613587565b613e8a60408301846139f9565b949350505050565b6000602082019050613ea760008301846139f9565b92915050565b6000613eb7613ec8565b9050613ec38282614196565b919050565b6000604051905090565b600067ffffffffffffffff821115613eed57613eec614321565b5b613ef68261436e565b9050602081019050919050565b600067ffffffffffffffff821115613f1e57613f1d614321565b5b613f278261436e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f8d8261410b565b9150613f988361410b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fcd57613fcc614265565b5b828201905092915050565b6000613fe38261410b565b9150613fee8361410b565b925082613ffe57613ffd614294565b5b828204905092915050565b60006140148261410b565b915061401f8361410b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561405857614057614265565b5b828202905092915050565b600061406e8261410b565b91506140798361410b565b92508282101561408c5761408b614265565b5b828203905092915050565b60006140a2826140eb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561414f578082015181840152602081019050614134565b8381111561415e576000848401525b50505050565b6000600282049050600182168061417c57607f821691505b602082108114156141905761418f6142c3565b5b50919050565b61419f8261436e565b810181811067ffffffffffffffff821117156141be576141bd614321565b5b80604052505050565b60006141d28261410b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561420557614204614265565b5b600182019050919050565b600061421b82614222565b9050919050565b600061422d8261437f565b9050919050565b600061423f8261410b565b915061424a8361410b565b92508261425a57614259614294565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f596f752063616e206d696e74206265747765656e203120616e6420313020696e60008201527f206f6e65207472616e73616374696f6e2e000000000000000000000000000000602082015250565b7f57686974656c697374207068617365206973206e6f74206163746976652e0000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f77686974654c6973744964206d7573742062652067726561746572207468616e60008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f41646472657373206e6f7420696e207768697465206c6973742e000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4661696c656420746f2073656e6420746f206f776e6572000000000000000000600082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60008201527f792e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f596f75206172652065786365656465642074686520616d6f756e74206f66207460008201527f6f6b656e7320796f752063616e206d696e7420666f722074686973207768697460208201527f65206c6973740000000000000000000000000000000000000000000000000000604082015250565b614a6e81614097565b8114614a7957600080fd5b50565b614a85816140a9565b8114614a9057600080fd5b50565b614a9c816140b5565b8114614aa757600080fd5b50565b614ab3816140bf565b8114614abe57600080fd5b50565b614aca8161410b565b8114614ad557600080fd5b50565b614ae181614115565b8114614aec57600080fd5b5056fea264697066735822122048cecd15af62d8b45fd6926eba263810e26d0a0c68b01a6670761dfb37e8ee0a64736f6c63430008060033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80638ba4cc3c1161012e578063b88d4fde116100ab578063db27bbdb1161006f578063db27bbdb14610843578063e985e9c51461086c578063efdcd974146108a9578063f2fde38b146108d2578063f9e0edae146108fb5761023b565b8063b88d4fde1461074c578063c87b56dd14610775578063d0585553146107b2578063d5abeb01146107ef578063d7e1e32a1461081a5761023b565b80639a65ea26116100f25780639a65ea261461069c578063a0712d68146106b3578063a22cb465146106cf578063b1284709146106f8578063b3f00674146107215761023b565b80638ba4cc3c146105b35780638da5cb5b146105dc5780638db7d79414610607578063952307b51461063257806395d89b41146106715761023b565b806342842e0e116101bc5780636352211e116101805780636352211e146104ba5780636f8b44b0146104f757806370a0823114610520578063715018a61461055d5780637f5f03a6146105745761023b565b806342842e0e146103fd57806342966c681461042657806349f2553a1461044f578063534308cc1461047857806359c74f29146104a35761023b565b806311876875116102035780631187687514610337578063124f5f091461035357806318160ddd1461037e57806319908016146103a957806323b872dd146103d45761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063109695231461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061334e565b610926565b6040516102749190613ac3565b60405180910390f35b34801561028957600080fd5b50610292610a08565b60405161029f9190613ade565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906133f1565b610a9a565b6040516102dc9190613a5c565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061330e565b610b1f565b005b34801561031a57600080fd5b50610335600480360381019061033091906133a8565b610c37565b005b610351600480360381019061034c919061341e565b610ccd565b005b34801561035f57600080fd5b50610368610ef6565b6040516103759190613e40565b60405180910390f35b34801561038a57600080fd5b50610393610efc565b6040516103a09190613e40565b60405180910390f35b3480156103b557600080fd5b506103be610f0d565b6040516103cb9190613ac3565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f691906131f8565b610f20565b005b34801561040957600080fd5b50610424600480360381019061041f91906131f8565b610f80565b005b34801561043257600080fd5b5061044d600480360381019061044891906133f1565b610fa0565b005b34801561045b57600080fd5b50610476600480360381019061047191906133a8565b610ffc565b005b34801561048457600080fd5b5061048d611092565b60405161049a9190613ade565b60405180910390f35b3480156104af57600080fd5b506104b8611120565b005b3480156104c657600080fd5b506104e160048036038101906104dc91906133f1565b6111c8565b6040516104ee9190613a5c565b60405180910390f35b34801561050357600080fd5b5061051e600480360381019061051991906133f1565b61127a565b005b34801561052c57600080fd5b506105476004803603810190610542919061318b565b611300565b6040516105549190613e40565b60405180910390f35b34801561056957600080fd5b506105726113b8565b005b34801561058057600080fd5b5061059b6004803603810190610596919061347e565b611440565b6040516105aa93929190613e5b565b60405180910390f35b3480156105bf57600080fd5b506105da60048036038101906105d5919061330e565b61148b565b005b3480156105e857600080fd5b506105f1611517565b6040516105fe9190613a5c565b60405180910390f35b34801561061357600080fd5b5061061c611541565b6040516106299190613e92565b60405180910390f35b34801561063e57600080fd5b506106596004803603810190610654919061347e565b611554565b60405161066893929190613e5b565b60405180910390f35b34801561067d57600080fd5b5061068661158b565b6040516106939190613ade565b60405180910390f35b3480156106a857600080fd5b506106b161161d565b005b6106cd60048036038101906106c891906133f1565b6116d2565b005b3480156106db57600080fd5b506106f660048036038101906106f191906132ce565b611781565b005b34801561070457600080fd5b5061071f600480360381019061071a91906134eb565b611797565b005b34801561072d57600080fd5b506107366118ad565b6040516107439190613a5c565b60405180910390f35b34801561075857600080fd5b50610773600480360381019061076e919061324b565b6118d3565b005b34801561078157600080fd5b5061079c600480360381019061079791906133f1565b611935565b6040516107a99190613ade565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d491906134ab565b6119dc565b6040516107e69190613e40565b60405180910390f35b3480156107fb57600080fd5b50610804611a40565b6040516108119190613e40565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c919061347e565b611a46565b005b34801561084f57600080fd5b5061086a600480360381019061086591906133f1565b611ae0565b005b34801561087857600080fd5b50610893600480360381019061088e91906131b8565b611b66565b6040516108a09190613ac3565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb919061318b565b611bfa565b005b3480156108de57600080fd5b506108f960048036038101906108f4919061318b565b611cba565b005b34801561090757600080fd5b50610910611db2565b60405161091d9190613ade565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a015750610a0082611e40565b5b9050919050565b606060008054610a1790614164565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4390614164565b8015610a905780601f10610a6557610100808354040283529160200191610a90565b820191906000526020600020905b815481529060010190602001808311610a7357829003601f168201915b5050505050905090565b6000610aa582611eaa565b610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90613d60565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2a826111c8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290613dc0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bba611f16565b73ffffffffffffffffffffffffffffffffffffffff161480610be95750610be881610be3611f16565b611b66565b5b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90613cc0565b60405180910390fd5b610c328383611f1e565b505050565b610c3f611f16565b73ffffffffffffffffffffffffffffffffffffffff16610c5d611517565b73ffffffffffffffffffffffffffffffffffffffff1614610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa90613d80565b60405180910390fd5b80600d9080519060200190610cc9929190612f1f565b5050565b600060076000600860009054906101000a900460ff1660ff1660ff16815260200190815260200160002090506000801b81600101541415610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90613b40565b60405180910390fd5b600084118015610db357508060020160009054906101000a900460ff1660ff168160030160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485610db09190613f82565b11155b610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de990613e20565b60405180910390fd5b610e4a610dfe33611fd7565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508360010154612007565b610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090613c00565b60405180910390fd5b838160030160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610eda9190613f82565b92505081905550610ef08433836000015461201d565b50505050565b60095481565b6000610f08600a6121d6565b905090565b600860019054906101000a900460ff1681565b610f31610f2b611f16565b826121e4565b610f70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6790613de0565b60405180910390fd5b610f7b8383836122c2565b505050565b610f9b838383604051806020016040528060008152506118d3565b505050565b610fb1610fab611f16565b826121e4565b610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe790613e00565b60405180910390fd5b610ff981612529565b50565b611004611f16565b73ffffffffffffffffffffffffffffffffffffffff16611022611517565b73ffffffffffffffffffffffffffffffffffffffff1614611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90613d80565b60405180910390fd5b80600e908051906020019061108e929190612f1f565b5050565b600d805461109f90614164565b80601f01602080910402602001604051908101604052809291908181526020018280546110cb90614164565b80156111185780601f106110ed57610100808354040283529160200191611118565b820191906000526020600020905b8154815290600101906020018083116110fb57829003601f168201915b505050505081565b611128611f16565b73ffffffffffffffffffffffffffffffffffffffff16611146611517565b73ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390613d80565b60405180910390fd5b600860019054906101000a900460ff1615600860016101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126890613d00565b60405180910390fd5b80915050919050565b611282611f16565b73ffffffffffffffffffffffffffffffffffffffff166112a0611517565b73ffffffffffffffffffffffffffffffffffffffff16146112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90613d80565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136890613ce0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113c0611f16565b73ffffffffffffffffffffffffffffffffffffffff166113de611517565b73ffffffffffffffffffffffffffffffffffffffff1614611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90613d80565b60405180910390fd5b61143e6000612646565b565b600080600080600760008660ff1660ff1681526020019081526020016000209050806000015481600101548260020160009054906101000a900460ff16935093509350509193909250565b611493611f16565b73ffffffffffffffffffffffffffffffffffffffff166114b1611517565b73ffffffffffffffffffffffffffffffffffffffff1614611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90613d80565b60405180910390fd5b6115138183600061201d565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900460ff1681565b60076020528060005260406000206000915090508060000154908060010154908060020160009054906101000a900460ff16905083565b60606001805461159a90614164565b80601f01602080910402602001604051908101604052809291908181526020018280546115c690614164565b80156116135780601f106115e857610100808354040283529160200191611613565b820191906000526020600020905b8154815290600101906020018083116115f657829003601f168201915b5050505050905090565b611625611f16565b73ffffffffffffffffffffffffffffffffffffffff16611643611517565b73ffffffffffffffffffffffffffffffffffffffff1614611699576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169090613d80565b60405180910390fd5b6000600860006101000a81548160ff021916908360ff1602179055506001600860016101000a81548160ff021916908315150217905550565b600860019054906101000a900460ff16611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613b00565b60405180910390fd5b6000811180156117325750600a8111155b611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890613b20565b60405180910390fd5b61177e813360095461201d565b50565b61179361178c611f16565b838361270c565b5050565b61179f611f16565b73ffffffffffffffffffffffffffffffffffffffff166117bd611517565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613d80565b60405180910390fd5b60008460ff16141561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190613b80565b60405180910390fd5b6000600760008660ff1660ff1681526020019081526020016000209050838160000181905550828160010181905550818160020160006101000a81548160ff021916908360ff1602179055505050505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6118e46118de611f16565b836121e4565b611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90613de0565b60405180910390fd5b61192f84848484612879565b50505050565b606061194082611eaa565b61197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690613da0565b60405180910390fd5b60006119896128d5565b905060008151116119a957604051806020016040528060008152506119d4565b806119b384612967565b6040516020016119c4929190613a23565b6040516020818303038152906040525b915050919050565b6000600760008460ff1660ff16815260200190815260200160002060030160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b611a4e611f16565b73ffffffffffffffffffffffffffffffffffffffff16611a6c611517565b73ffffffffffffffffffffffffffffffffffffffff1614611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990613d80565b60405180910390fd5b80600860006101000a81548160ff021916908360ff16021790555050565b611ae8611f16565b73ffffffffffffffffffffffffffffffffffffffff16611b06611517565b73ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613d80565b60405180910390fd5b8060098190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c02611f16565b73ffffffffffffffffffffffffffffffffffffffff16611c20611517565b73ffffffffffffffffffffffffffffffffffffffff1614611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d90613d80565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611cc2611f16565b73ffffffffffffffffffffffffffffffffffffffff16611ce0611517565b73ffffffffffffffffffffffffffffffffffffffff1614611d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2d90613d80565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90613ba0565b60405180910390fd5b611daf81612646565b50565b600e8054611dbf90614164565b80601f0160208091040260200160405190810160405280929190818152602001828054611deb90614164565b8015611e385780601f10611e0d57610100808354040283529160200191611e38565b820191906000526020600020905b815481529060010190602001808311611e1b57829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f91836111c8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081604051602001611fea9190613a08565b604051602081830303815290604052805190602001209050919050565b6000612014838386612ac8565b90509392505050565b600b548361202b600a6121d6565b6120359190613f82565b1115612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90613c80565b60405180910390fd5b80836120829190614009565b3410156120c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bb90613d40565b60405180910390fd5b60005b838110156120ff576120d9600a612adf565b6120ec836120e7600a6121d6565b612af5565b80806120f7906141c7565b9150506120c7565b506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163460405161214890613a47565b60006040518083038185875af1925050503d8060008114612185576040519150601f19603f3d011682016040523d82523d6000602084013e61218a565b606091505b505080915050806121d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c790613c60565b60405180910390fd5b50505050565b600081600001549050919050565b60006121ef82611eaa565b61222e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222590613ca0565b60405180910390fd5b6000612239836111c8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061227b575061227a8185611b66565b5b806122b957508373ffffffffffffffffffffffffffffffffffffffff166122a184610a9a565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122e2826111c8565b73ffffffffffffffffffffffffffffffffffffffff1614612338576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232f90613bc0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90613c20565b60405180910390fd5b6123b3838383612ccf565b6123be600082611f1e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461240e9190614063565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124659190613f82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612524838383612cd4565b505050565b6000612534826111c8565b905061254281600084612ccf565b61254d600083611f1e565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461259d9190614063565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461264281600084612cd4565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561277b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277290613c40565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161286c9190613ac3565b60405180910390a3505050565b6128848484846122c2565b61289084848484612cd9565b6128cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c690613b60565b60405180910390fd5b50505050565b6060600e80546128e490614164565b80601f016020809104026020016040519081016040528092919081815260200182805461291090614164565b801561295d5780601f106129325761010080835404028352916020019161295d565b820191906000526020600020905b81548152906001019060200180831161294057829003601f168201915b5050505050905090565b606060008214156129af576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ac3565b600082905060005b600082146129e15780806129ca906141c7565b915050600a826129da9190613fd8565b91506129b7565b60008167ffffffffffffffff8111156129fd576129fc614321565b5b6040519080825280601f01601f191660200182016040528015612a2f5781602001600182028036833780820191505090505b5090505b60008514612abc57600182612a489190614063565b9150600a85612a579190614234565b6030612a639190613f82565b60f81b818381518110612a7957612a786142f2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ab59190613fd8565b9450612a33565b8093505050505b919050565b600082612ad58584612e70565b1490509392505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c90613d20565b60405180910390fd5b612b6e81611eaa565b15612bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba590613be0565b60405180910390fd5b612bba60008383612ccf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c0a9190613f82565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ccb60008383612cd4565b5050565b505050565b505050565b6000612cfa8473ffffffffffffffffffffffffffffffffffffffff16612ee5565b15612e63578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d23611f16565b8786866040518563ffffffff1660e01b8152600401612d459493929190613a77565b602060405180830381600087803b158015612d5f57600080fd5b505af1925050508015612d9057506040513d601f19601f82011682018060405250810190612d8d919061337b565b60015b612e13573d8060008114612dc0576040519150601f19603f3d011682016040523d82523d6000602084013e612dc5565b606091505b50600081511415612e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0290613b60565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e68565b600190505b949350505050565b60008082905060005b8451811015612eda576000858281518110612e9757612e966142f2565b5b60200260200101519050808311612eb957612eb28382612f08565b9250612ec6565b612ec38184612f08565b92505b508080612ed2906141c7565b915050612e79565b508091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b828054612f2b90614164565b90600052602060002090601f016020900481019282612f4d5760008555612f94565b82601f10612f6657805160ff1916838001178555612f94565b82800160010185558215612f94579182015b82811115612f93578251825591602001919060010190612f78565b5b509050612fa19190612fa5565b5090565b5b80821115612fbe576000816000905550600101612fa6565b5090565b6000612fd5612fd084613ed2565b613ead565b905082815260208101848484011115612ff157612ff061435f565b5b612ffc848285614122565b509392505050565b600061301761301284613f03565b613ead565b9050828152602081018484840111156130335761303261435f565b5b61303e848285614122565b509392505050565b60008135905061305581614a65565b92915050565b60008083601f84011261307157613070614355565b5b8235905067ffffffffffffffff81111561308e5761308d614350565b5b6020830191508360208202830111156130aa576130a961435a565b5b9250929050565b6000813590506130c081614a7c565b92915050565b6000813590506130d581614a93565b92915050565b6000813590506130ea81614aaa565b92915050565b6000815190506130ff81614aaa565b92915050565b600082601f83011261311a57613119614355565b5b813561312a848260208601612fc2565b91505092915050565b600082601f83011261314857613147614355565b5b8135613158848260208601613004565b91505092915050565b60008135905061317081614ac1565b92915050565b60008135905061318581614ad8565b92915050565b6000602082840312156131a1576131a0614369565b5b60006131af84828501613046565b91505092915050565b600080604083850312156131cf576131ce614369565b5b60006131dd85828601613046565b92505060206131ee85828601613046565b9150509250929050565b60008060006060848603121561321157613210614369565b5b600061321f86828701613046565b935050602061323086828701613046565b925050604061324186828701613161565b9150509250925092565b6000806000806080858703121561326557613264614369565b5b600061327387828801613046565b945050602061328487828801613046565b935050604061329587828801613161565b925050606085013567ffffffffffffffff8111156132b6576132b5614364565b5b6132c287828801613105565b91505092959194509250565b600080604083850312156132e5576132e4614369565b5b60006132f385828601613046565b9250506020613304858286016130b1565b9150509250929050565b6000806040838503121561332557613324614369565b5b600061333385828601613046565b925050602061334485828601613161565b9150509250929050565b60006020828403121561336457613363614369565b5b6000613372848285016130db565b91505092915050565b60006020828403121561339157613390614369565b5b600061339f848285016130f0565b91505092915050565b6000602082840312156133be576133bd614369565b5b600082013567ffffffffffffffff8111156133dc576133db614364565b5b6133e884828501613133565b91505092915050565b60006020828403121561340757613406614369565b5b600061341584828501613161565b91505092915050565b60008060006040848603121561343757613436614369565b5b600061344586828701613161565b935050602084013567ffffffffffffffff81111561346657613465614364565b5b6134728682870161305b565b92509250509250925092565b60006020828403121561349457613493614369565b5b60006134a284828501613176565b91505092915050565b600080604083850312156134c2576134c1614369565b5b60006134d085828601613176565b92505060206134e185828601613046565b9150509250929050565b6000806000806080858703121561350557613504614369565b5b600061351387828801613176565b945050602061352487828801613161565b9350506040613535878288016130c6565b925050606061354687828801613176565b91505092959194509250565b61355b81614097565b82525050565b61357261356d82614097565b614210565b82525050565b613581816140a9565b82525050565b613590816140b5565b82525050565b60006135a182613f34565b6135ab8185613f4a565b93506135bb818560208601614131565b6135c48161436e565b840191505092915050565b60006135da82613f3f565b6135e48185613f66565b93506135f4818560208601614131565b6135fd8161436e565b840191505092915050565b600061361382613f3f565b61361d8185613f77565b935061362d818560208601614131565b80840191505092915050565b6000613646601383613f66565b91506136518261438c565b602082019050919050565b6000613669603183613f66565b9150613674826143b5565b604082019050919050565b600061368c601e83613f66565b915061369782614404565b602082019050919050565b60006136af603283613f66565b91506136ba8261442d565b604082019050919050565b60006136d2602283613f66565b91506136dd8261447c565b604082019050919050565b60006136f5602683613f66565b9150613700826144cb565b604082019050919050565b6000613718602583613f66565b91506137238261451a565b604082019050919050565b600061373b601c83613f66565b915061374682614569565b602082019050919050565b600061375e601a83613f66565b915061376982614592565b602082019050919050565b6000613781602483613f66565b915061378c826145bb565b604082019050919050565b60006137a4601983613f66565b91506137af8261460a565b602082019050919050565b60006137c7601783613f66565b91506137d282614633565b602082019050919050565b60006137ea602283613f66565b91506137f58261465c565b604082019050919050565b600061380d602c83613f66565b9150613818826146ab565b604082019050919050565b6000613830603883613f66565b915061383b826146fa565b604082019050919050565b6000613853602a83613f66565b915061385e82614749565b604082019050919050565b6000613876602983613f66565b915061388182614798565b604082019050919050565b6000613899602083613f66565b91506138a4826147e7565b602082019050919050565b60006138bc601483613f66565b91506138c782614810565b602082019050919050565b60006138df602c83613f66565b91506138ea82614839565b604082019050919050565b6000613902602083613f66565b915061390d82614888565b602082019050919050565b6000613925602f83613f66565b9150613930826148b1565b604082019050919050565b6000613948602183613f66565b915061395382614900565b604082019050919050565b600061396b600083613f5b565b91506139768261494f565b600082019050919050565b600061398e603183613f66565b915061399982614952565b604082019050919050565b60006139b1603083613f66565b91506139bc826149a1565b604082019050919050565b60006139d4604683613f66565b91506139df826149f0565b606082019050919050565b6139f38161410b565b82525050565b613a0281614115565b82525050565b6000613a148284613561565b60148201915081905092915050565b6000613a2f8285613608565b9150613a3b8284613608565b91508190509392505050565b6000613a528261395e565b9150819050919050565b6000602082019050613a716000830184613552565b92915050565b6000608082019050613a8c6000830187613552565b613a996020830186613552565b613aa660408301856139ea565b8181036060830152613ab88184613596565b905095945050505050565b6000602082019050613ad86000830184613578565b92915050565b60006020820190508181036000830152613af881846135cf565b905092915050565b60006020820190508181036000830152613b1981613639565b9050919050565b60006020820190508181036000830152613b398161365c565b9050919050565b60006020820190508181036000830152613b598161367f565b9050919050565b60006020820190508181036000830152613b79816136a2565b9050919050565b60006020820190508181036000830152613b99816136c5565b9050919050565b60006020820190508181036000830152613bb9816136e8565b9050919050565b60006020820190508181036000830152613bd98161370b565b9050919050565b60006020820190508181036000830152613bf98161372e565b9050919050565b60006020820190508181036000830152613c1981613751565b9050919050565b60006020820190508181036000830152613c3981613774565b9050919050565b60006020820190508181036000830152613c5981613797565b9050919050565b60006020820190508181036000830152613c79816137ba565b9050919050565b60006020820190508181036000830152613c99816137dd565b9050919050565b60006020820190508181036000830152613cb981613800565b9050919050565b60006020820190508181036000830152613cd981613823565b9050919050565b60006020820190508181036000830152613cf981613846565b9050919050565b60006020820190508181036000830152613d1981613869565b9050919050565b60006020820190508181036000830152613d398161388c565b9050919050565b60006020820190508181036000830152613d59816138af565b9050919050565b60006020820190508181036000830152613d79816138d2565b9050919050565b60006020820190508181036000830152613d99816138f5565b9050919050565b60006020820190508181036000830152613db981613918565b9050919050565b60006020820190508181036000830152613dd98161393b565b9050919050565b60006020820190508181036000830152613df981613981565b9050919050565b60006020820190508181036000830152613e19816139a4565b9050919050565b60006020820190508181036000830152613e39816139c7565b9050919050565b6000602082019050613e5560008301846139ea565b92915050565b6000606082019050613e7060008301866139ea565b613e7d6020830185613587565b613e8a60408301846139f9565b949350505050565b6000602082019050613ea760008301846139f9565b92915050565b6000613eb7613ec8565b9050613ec38282614196565b919050565b6000604051905090565b600067ffffffffffffffff821115613eed57613eec614321565b5b613ef68261436e565b9050602081019050919050565b600067ffffffffffffffff821115613f1e57613f1d614321565b5b613f278261436e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f8d8261410b565b9150613f988361410b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fcd57613fcc614265565b5b828201905092915050565b6000613fe38261410b565b9150613fee8361410b565b925082613ffe57613ffd614294565b5b828204905092915050565b60006140148261410b565b915061401f8361410b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561405857614057614265565b5b828202905092915050565b600061406e8261410b565b91506140798361410b565b92508282101561408c5761408b614265565b5b828203905092915050565b60006140a2826140eb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561414f578082015181840152602081019050614134565b8381111561415e576000848401525b50505050565b6000600282049050600182168061417c57607f821691505b602082108114156141905761418f6142c3565b5b50919050565b61419f8261436e565b810181811067ffffffffffffffff821117156141be576141bd614321565b5b80604052505050565b60006141d28261410b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561420557614204614265565b5b600182019050919050565b600061421b82614222565b9050919050565b600061422d8261437f565b9050919050565b600061423f8261410b565b915061424a8361410b565b92508261425a57614259614294565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f596f752063616e206d696e74206265747765656e203120616e6420313020696e60008201527f206f6e65207472616e73616374696f6e2e000000000000000000000000000000602082015250565b7f57686974656c697374207068617365206973206e6f74206163746976652e0000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f77686974654c6973744964206d7573742062652067726561746572207468616e60008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f41646472657373206e6f7420696e207768697465206c6973742e000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4661696c656420746f2073656e6420746f206f776e6572000000000000000000600082015250565b7f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60008201527f792e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f596f75206172652065786365656465642074686520616d6f756e74206f66207460008201527f6f6b656e7320796f752063616e206d696e7420666f722074686973207768697460208201527f65206c6973740000000000000000000000000000000000000000000000000000604082015250565b614a6e81614097565b8114614a7957600080fd5b50565b614a85816140a9565b8114614a9057600080fd5b50565b614a9c816140b5565b8114614aa757600080fd5b50565b614ab3816140bf565b8114614abe57600080fd5b50565b614aca8161410b565b8114614ad557600080fd5b50565b614ae181614115565b8114614aec57600080fd5b5056fea264697066735822122048cecd15af62d8b45fd6926eba263810e26d0a0c68b01a6670761dfb37e8ee0a64736f6c63430008060033

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.