ETH Price: $2,699.61 (+4.82%)

Token

Elite Collective Pass (Elite)
 

Overview

Max Total Supply

5 Elite

Holders

5

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 Elite
0x40480D7C5658A2E0cBCA0b9783590695C700dc63
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:
Elite

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Elite.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract Elite is ERC721, PullPayment, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private currentTokenId;
    uint256 public constant TOTAL_SUPPLY = 999;
    uint256 public constant MINT_PRICE = 1.5 ether;
    bytes32 public merkleRoot;
    uint256 public mintStart = 1655661600;

    /// @dev Base token URI used as a prefix by tokenURI().
    string public baseTokenURI;

    constructor() ERC721("Elite Collective Pass", "Elite") {
        baseTokenURI = "ipfs://QmRDs5Bby2rkwttVzMcuD8YCzkMEFbr5YwbdWxQ3vdQy7C";
    }

    /// @notice start minting process.
    function mint(address recipient) external payable returns (uint256) {
        require(block.timestamp > mintStart, "Minting is not enabled");
        uint256 tokenId = currentTokenId.current();
        require(tokenId < TOTAL_SUPPLY, "Max supply reached");
        require(
            msg.value == MINT_PRICE,
            "Transaction value did not equal the mint price"
        );
        currentTokenId.increment();
        uint256 newItemId = currentTokenId.current();
        _safeMint(recipient, newItemId);
        _asyncTransfer(owner(), msg.value);
        return newItemId;
    }
    
    /// @notice start minting process for addresses with proof.No need to use this if mint() is enabled
    function mintFromList(address recipient, bytes32[] calldata proof) external payable returns (uint256) {
        uint256 tokenId = currentTokenId.current();
        require(tokenId < TOTAL_SUPPLY, "Max supply reached");
        require(
            msg.value == MINT_PRICE,
            "Transaction value did not equal the mint price"
        );
        require(isWalletOnMintList(recipient, proof), "Wallet verification failed");
        
        currentTokenId.increment();
        uint256 newItemId = currentTokenId.current();
        _safeMint(recipient, newItemId);
        _asyncTransfer(owner(), msg.value);
        return newItemId;
    }
    function isWalletOnMintList(address recipient, bytes32[] calldata proof) private view returns (bool) {
        return MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(recipient)));
    }
    /// @dev Sets MerkleRoot for allowed addresses.
    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }
    /// @dev Sets minting start time.
    function changeStartDate(uint256 _Start) public onlyOwner {
        mintStart = _Start;
    }
    /// @dev Sets the base token URI prefix.
    function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    /// @dev Sends minting fees to owner.
    function withdrawPayments(address payable payee)
        public
        virtual
        override
        onlyOwner
    {
        super.withdrawPayments(payee);
    }

    /// @notice Returns the token's metadata URI.
    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(ERC721._exists(tokenId), "Token doesn't exist");
        return baseTokenURI;
    }
    /// @notice Returns the number of minted tokens.
    function totalSupply() external view returns (uint256) {
        return currentTokenId.current();
    }
}

File 2 of 15 : 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 15 : 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 4 of 15 : PullPayment.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/PullPayment.sol)

pragma solidity ^0.8.0;

import "../utils/escrow/Escrow.sol";

/**
 * @dev Simple implementation of a
 * https://consensys.github.io/smart-contract-best-practices/recommendations/#favor-pull-over-push-for-external-calls[pull-payment]
 * strategy, where the paying contract doesn't interact directly with the
 * receiver account, which must withdraw its payments itself.
 *
 * Pull-payments are often considered the best practice when it comes to sending
 * Ether, security-wise. It prevents recipients from blocking execution, and
 * eliminates reentrancy concerns.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 *
 * To use, derive from the `PullPayment` contract, and use {_asyncTransfer}
 * instead of Solidity's `transfer` function. Payees can query their due
 * payments with {payments}, and retrieve them with {withdrawPayments}.
 */
abstract contract PullPayment {
    Escrow private immutable _escrow;

    constructor() {
        _escrow = new Escrow();
    }

    /**
     * @dev Withdraw accumulated payments, forwarding all gas to the recipient.
     *
     * Note that _any_ account can call this function, not just the `payee`.
     * This means that contracts unaware of the `PullPayment` protocol can still
     * receive funds this way, by having a separate account call
     * {withdrawPayments}.
     *
     * WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities.
     * Make sure you trust the recipient, or are either following the
     * checks-effects-interactions pattern or using {ReentrancyGuard}.
     *
     * @param payee Whose payments will be withdrawn.
     */
    function withdrawPayments(address payable payee) public virtual {
        _escrow.withdraw(payee);
    }

    /**
     * @dev Returns the payments owed to an address.
     * @param dest The creditor's address.
     */
    function payments(address dest) public view returns (uint256) {
        return _escrow.depositsOf(dest);
    }

    /**
     * @dev Called by the payer to store the sent amount as credit to be pulled.
     * Funds sent in this way are stored in an intermediate {Escrow} contract, so
     * there is no danger of them being spent before withdrawal.
     *
     * @param dest The destination address of the funds.
     * @param amount The amount to transfer.
     */
    function _asyncTransfer(address dest, uint256 amount) internal virtual {
        _escrow.deposit{value: amount}(dest);
    }
}

File 5 of 15 : 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 15 : 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 15 : 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 15 : 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 15 : 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 15 : 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 15 : 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 15 : 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 15 : 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 15 : 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);
}

File 15 of 15 : Escrow.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/escrow/Escrow.sol)

pragma solidity ^0.8.0;

import "../../access/Ownable.sol";
import "../Address.sol";

/**
 * @title Escrow
 * @dev Base escrow contract, holds funds designated for a payee until they
 * withdraw them.
 *
 * Intended usage: This contract (and derived escrow contracts) should be a
 * standalone contract, that only interacts with the contract that instantiated
 * it. That way, it is guaranteed that all Ether will be handled according to
 * the `Escrow` rules, and there is no need to check for payable functions or
 * transfers in the inheritance tree. The contract that uses the escrow as its
 * payment method should be its owner, and provide public methods redirecting
 * to the escrow's deposit and withdraw.
 */
contract Escrow is Ownable {
    using Address for address payable;

    event Deposited(address indexed payee, uint256 weiAmount);
    event Withdrawn(address indexed payee, uint256 weiAmount);

    mapping(address => uint256) private _deposits;

    function depositsOf(address payee) public view returns (uint256) {
        return _deposits[payee];
    }

    /**
     * @dev Stores the sent amount as credit to be withdrawn.
     * @param payee The destination address of the funds.
     */
    function deposit(address payee) public payable virtual onlyOwner {
        uint256 amount = msg.value;
        _deposits[payee] += amount;
        emit Deposited(payee, amount);
    }

    /**
     * @dev Withdraw accumulated balance for a payee, forwarding all gas to the
     * recipient.
     *
     * WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities.
     * Make sure you trust the recipient, or are either following the
     * checks-effects-interactions pattern or using {ReentrancyGuard}.
     *
     * @param payee The address whose funds will be withdrawn and transferred to.
     */
    function withdraw(address payable payee) public virtual onlyOwner {
        uint256 payment = _deposits[payee];

        _deposits[payee] = 0;

        payee.sendValue(payment);

        emit Withdrawn(payee, payment);
    }
}

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":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Start","type":"uint256"}],"name":"changeStartDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintFromList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dest","type":"address"}],"name":"payments","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","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":"address payable","name":"payee","type":"address"}],"name":"withdrawPayments","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526362af64206009553480156200001957600080fd5b506040518060400160405280601581526020017f456c69746520436f6c6c656374697665205061737300000000000000000000008152506040518060400160405280600581526020017f456c69746500000000000000000000000000000000000000000000000000000081525081600090805190602001906200009e92919062000242565b508060019080519060200190620000b792919062000242565b505050604051620000c890620002d3565b604051809103906000f080158015620000e5573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506200013c620001306200017460201b60201c565b6200017c60201b60201c565b60405180606001604052806035815260200162004ab660359139600a90805190602001906200016d92919062000242565b5062000365565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002509062000300565b90600052602060002090601f016020900481019282620002745760008555620002c0565b82601f106200028f57805160ff1916838001178555620002c0565b82800160010185558215620002c0579182015b82811115620002bf578251825591602001919060010190620002a2565b5b509050620002cf9190620002e1565b5090565b610d098062003dad83390190565b5b80821115620002fc576000816000905550600101620002e2565b5090565b600060028204905060018216806200031957607f821691505b6020821081141562000330576200032f62000336565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c613a1b62000392600039600081816113c801528181611aee0152611bb00152613a1b6000f3fe6080604052600436106101c15760003560e01c806370a08231116100f7578063b88d4fde11610095578063d547cfb711610064578063d547cfb714610637578063e2982c2114610662578063e985e9c51461069f578063f2fde38b146106dc576101c1565b8063b88d4fde14610576578063c002d23d1461059f578063c87b56dd146105ca578063d2e3bd5814610607576101c1565b80638da5cb5b116100d15780638da5cb5b146104cc578063902d55a5146104f757806395d89b4114610522578063a22cb4651461054d576101c1565b806370a082311461044f578063715018a61461048c5780637cb64759146104a3576101c1565b8063255e46851161016457806331b3eb941161013e57806331b3eb941461039057806342842e0e146103b95780636352211e146103e25780636a6278421461041f576101c1565b8063255e4685146103115780632eb4a7ab1461033c57806330176e1314610367576101c1565b8063081812fc116101a0578063081812fc14610257578063095ea7b31461029457806318160ddd146102bd57806323b872dd146102e8576101c1565b8062739f2a146101c657806301ffc9a7146101ef57806306fdde031461022c575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e89190612957565b610705565b005b3480156101fb57600080fd5b50610216600480360381019061021191906128c4565b61078b565b6040516102239190612dd6565b60405180910390f35b34801561023857600080fd5b5061024161086d565b60405161024e9190612e0c565b60405180910390f35b34801561026357600080fd5b5061027e60048036038101906102799190612957565b6108ff565b60405161028b9190612d54565b60405180910390f35b3480156102a057600080fd5b506102bb60048036038101906102b6919061285f565b610984565b005b3480156102c957600080fd5b506102d2610a9c565b6040516102df91906130ae565b60405180910390f35b3480156102f457600080fd5b5061030f600480360381019061030a9190612701565b610aad565b005b34801561031d57600080fd5b50610326610b0d565b60405161033391906130ae565b60405180910390f35b34801561034857600080fd5b50610351610b13565b60405161035e9190612df1565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190612916565b610b19565b005b34801561039c57600080fd5b506103b760048036038101906103b2919061269c565b610baf565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612701565b610c37565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612957565b610c57565b6040516104169190612d54565b60405180910390f35b61043960048036038101906104349190612673565b610d09565b60405161044691906130ae565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612673565b610e28565b60405161048391906130ae565b60405180910390f35b34801561049857600080fd5b506104a1610ee0565b005b3480156104af57600080fd5b506104ca60048036038101906104c5919061289b565b610f68565b005b3480156104d857600080fd5b506104e1610fee565b6040516104ee9190612d54565b60405180910390f35b34801561050357600080fd5b5061050c611018565b60405161051991906130ae565b60405180910390f35b34801561052e57600080fd5b5061053761101e565b6040516105449190612e0c565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612823565b6110b0565b005b34801561058257600080fd5b5061059d60048036038101906105989190612750565b6110c6565b005b3480156105ab57600080fd5b506105b4611128565b6040516105c191906130ae565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190612957565b611134565b6040516105fe9190612e0c565b60405180910390f35b610621600480360381019061061c91906127cb565b611210565b60405161062e91906130ae565b60405180910390f35b34801561064357600080fd5b5061064c611336565b6040516106599190612e0c565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190612673565b6113c4565b60405161069691906130ae565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c191906126c5565b611476565b6040516106d39190612dd6565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190612673565b61150a565b005b61070d611602565b73ffffffffffffffffffffffffffffffffffffffff1661072b610fee565b73ffffffffffffffffffffffffffffffffffffffff1614610781576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107789061300e565b60405180910390fd5b8060098190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086657506108658261160a565b5b9050919050565b60606000805461087c906132e4565b80601f01602080910402602001604051908101604052809291908181526020018280546108a8906132e4565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090a82611674565b610949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094090612fee565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098f82610c57565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f79061302e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1f611602565b73ffffffffffffffffffffffffffffffffffffffff161480610a4e5750610a4d81610a48611602565b611476565b5b610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490612f6e565b60405180910390fd5b610a9783836116e0565b505050565b6000610aa86007611799565b905090565b610abe610ab8611602565b826117a7565b610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af49061304e565b60405180910390fd5b610b08838383611885565b505050565b60095481565b60085481565b610b21611602565b73ffffffffffffffffffffffffffffffffffffffff16610b3f610fee565b73ffffffffffffffffffffffffffffffffffffffff1614610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c9061300e565b60405180910390fd5b80600a9080519060200190610bab92919061240e565b5050565b610bb7611602565b73ffffffffffffffffffffffffffffffffffffffff16610bd5610fee565b73ffffffffffffffffffffffffffffffffffffffff1614610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c229061300e565b60405180910390fd5b610c3481611aec565b50565b610c52838383604051806020016040528060008152506110c6565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf790612fae565b60405180910390fd5b80915050919050565b60006009544211610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690612e4e565b60405180910390fd5b6000610d5b6007611799565b90506103e78110610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d989061306e565b60405180910390fd5b6714d1120d7b1600003414610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290612f2e565b60405180910390fd5b610df56007611b7a565b6000610e016007611799565b9050610e0d8482611b90565b610e1e610e18610fee565b34611bae565b8092505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090612f8e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee8611602565b73ffffffffffffffffffffffffffffffffffffffff16610f06610fee565b73ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f539061300e565b60405180910390fd5b610f666000611c3e565b565b610f70611602565b73ffffffffffffffffffffffffffffffffffffffff16610f8e610fee565b73ffffffffffffffffffffffffffffffffffffffff1614610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb9061300e565b60405180910390fd5b8060088190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6103e781565b60606001805461102d906132e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611059906132e4565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b5050505050905090565b6110c26110bb611602565b8383611d04565b5050565b6110d76110d1611602565b836117a7565b611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d9061304e565b60405180910390fd5b61112284848484611e71565b50505050565b6714d1120d7b16000081565b606061113f82611674565b61117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590612e2e565b60405180910390fd5b600a805461118b906132e4565b80601f01602080910402602001604051908101604052809291908181526020018280546111b7906132e4565b80156112045780601f106111d957610100808354040283529160200191611204565b820191906000526020600020905b8154815290600101906020018083116111e757829003601f168201915b50505050509050919050565b60008061121d6007611799565b90506103e78110611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a9061306e565b60405180910390fd5b6714d1120d7b16000034146112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490612f2e565b60405180910390fd5b6112b8858585611ecd565b6112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee9061308e565b60405180910390fd5b6113016007611b7a565b600061130d6007611799565b90506113198682611b90565b61132a611324610fee565b34611bae565b80925050509392505050565b600a8054611343906132e4565b80601f016020809104026020016040519081016040528092919081815260200182805461136f906132e4565b80156113bc5780601f10611391576101008083540402835291602001916113bc565b820191906000526020600020905b81548152906001019060200180831161139f57829003601f168201915b505050505081565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e3a9db1a836040518263ffffffff1660e01b815260040161141f9190612d54565b60206040518083038186803b15801561143757600080fd5b505afa15801561144b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146f9190612980565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611512611602565b73ffffffffffffffffffffffffffffffffffffffff16611530610fee565b73ffffffffffffffffffffffffffffffffffffffff1614611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d9061300e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90612e8e565b60405180910390fd5b6115ff81611c3e565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661175383610c57565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006117b282611674565b6117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890612f4e565b60405180910390fd5b60006117fc83610c57565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061183e575061183d8185611476565b5b8061187c57508373ffffffffffffffffffffffffffffffffffffffff16611864846108ff565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118a582610c57565b73ffffffffffffffffffffffffffffffffffffffff16146118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290612eae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290612eee565b60405180910390fd5b611976838383611f4c565b6119816000826116e0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119d191906131de565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a289190613188565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ae7838383611f51565b505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166351cff8d9826040518263ffffffff1660e01b8152600401611b459190612d6f565b600060405180830381600087803b158015611b5f57600080fd5b505af1158015611b73573d6000803e3d6000fd5b5050505050565b6001816000016000828254019250508190555050565b611baa828260405180602001604052806000815250611f56565b5050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f340fa0182846040518363ffffffff1660e01b8152600401611c089190612d54565b6000604051808303818588803b158015611c2157600080fd5b505af1158015611c35573d6000803e3d6000fd5b50505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6a90612f0e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e649190612dd6565b60405180910390a3505050565b611e7c848484611885565b611e8884848484611fb1565b611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe90612e6e565b60405180910390fd5b50505050565b6000611f43838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085486604051602001611f289190612d39565b60405160208183030381529060405280519060200120612148565b90509392505050565b505050565b505050565b611f60838361215f565b611f6d6000848484611fb1565b611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa390612e6e565b60405180910390fd5b505050565b6000611fd28473ffffffffffffffffffffffffffffffffffffffff16612339565b1561213b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ffb611602565b8786866040518563ffffffff1660e01b815260040161201d9493929190612d8a565b602060405180830381600087803b15801561203757600080fd5b505af192505050801561206857506040513d601f19601f8201168201806040525081019061206591906128ed565b60015b6120eb573d8060008114612098576040519150601f19603f3d011682016040523d82523d6000602084013e61209d565b606091505b506000815114156120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90612e6e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612140565b600190505b949350505050565b600082612155858461235c565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690612fce565b60405180910390fd5b6121d881611674565b15612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f90612ece565b60405180910390fd5b61222460008383611f4c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122749190613188565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461233560008383611f51565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b84518110156123ec5760008582815181106123a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116123cb576123c483826123f7565b92506123d8565b6123d581846123f7565b92505b5080806123e490613347565b915050612365565b508091505092915050565b600082600052816020526040600020905092915050565b82805461241a906132e4565b90600052602060002090601f01602090048101928261243c5760008555612483565b82601f1061245557805160ff1916838001178555612483565b82800160010185558215612483579182015b82811115612482578251825591602001919060010190612467565b5b5090506124909190612494565b5090565b5b808211156124ad576000816000905550600101612495565b5090565b60006124c46124bf846130ee565b6130c9565b9050828152602081018484840111156124dc57600080fd5b6124e78482856132a2565b509392505050565b60006125026124fd8461311f565b6130c9565b90508281526020810184848401111561251a57600080fd5b6125258482856132a2565b509392505050565b60008135905061253c8161395b565b92915050565b60008135905061255181613972565b92915050565b60008083601f84011261256957600080fd5b8235905067ffffffffffffffff81111561258257600080fd5b60208301915083602082028301111561259a57600080fd5b9250929050565b6000813590506125b081613989565b92915050565b6000813590506125c5816139a0565b92915050565b6000813590506125da816139b7565b92915050565b6000815190506125ef816139b7565b92915050565b600082601f83011261260657600080fd5b81356126168482602086016124b1565b91505092915050565b600082601f83011261263057600080fd5b81356126408482602086016124ef565b91505092915050565b600081359050612658816139ce565b92915050565b60008151905061266d816139ce565b92915050565b60006020828403121561268557600080fd5b60006126938482850161252d565b91505092915050565b6000602082840312156126ae57600080fd5b60006126bc84828501612542565b91505092915050565b600080604083850312156126d857600080fd5b60006126e68582860161252d565b92505060206126f78582860161252d565b9150509250929050565b60008060006060848603121561271657600080fd5b60006127248682870161252d565b93505060206127358682870161252d565b925050604061274686828701612649565b9150509250925092565b6000806000806080858703121561276657600080fd5b60006127748782880161252d565b94505060206127858782880161252d565b935050604061279687828801612649565b925050606085013567ffffffffffffffff8111156127b357600080fd5b6127bf878288016125f5565b91505092959194509250565b6000806000604084860312156127e057600080fd5b60006127ee8682870161252d565b935050602084013567ffffffffffffffff81111561280b57600080fd5b61281786828701612557565b92509250509250925092565b6000806040838503121561283657600080fd5b60006128448582860161252d565b9250506020612855858286016125a1565b9150509250929050565b6000806040838503121561287257600080fd5b60006128808582860161252d565b925050602061289185828601612649565b9150509250929050565b6000602082840312156128ad57600080fd5b60006128bb848285016125b6565b91505092915050565b6000602082840312156128d657600080fd5b60006128e4848285016125cb565b91505092915050565b6000602082840312156128ff57600080fd5b600061290d848285016125e0565b91505092915050565b60006020828403121561292857600080fd5b600082013567ffffffffffffffff81111561294257600080fd5b61294e8482850161261f565b91505092915050565b60006020828403121561296957600080fd5b600061297784828501612649565b91505092915050565b60006020828403121561299257600080fd5b60006129a08482850161265e565b91505092915050565b6129b281613224565b82525050565b6129c181613212565b82525050565b6129d86129d382613212565b613390565b82525050565b6129e781613236565b82525050565b6129f681613242565b82525050565b6000612a0782613150565b612a118185613166565b9350612a218185602086016132b1565b612a2a81613441565b840191505092915050565b6000612a408261315b565b612a4a8185613177565b9350612a5a8185602086016132b1565b612a6381613441565b840191505092915050565b6000612a7b601383613177565b9150612a868261345f565b602082019050919050565b6000612a9e601683613177565b9150612aa982613488565b602082019050919050565b6000612ac1603283613177565b9150612acc826134b1565b604082019050919050565b6000612ae4602683613177565b9150612aef82613500565b604082019050919050565b6000612b07602583613177565b9150612b128261354f565b604082019050919050565b6000612b2a601c83613177565b9150612b358261359e565b602082019050919050565b6000612b4d602483613177565b9150612b58826135c7565b604082019050919050565b6000612b70601983613177565b9150612b7b82613616565b602082019050919050565b6000612b93602e83613177565b9150612b9e8261363f565b604082019050919050565b6000612bb6602c83613177565b9150612bc18261368e565b604082019050919050565b6000612bd9603883613177565b9150612be4826136dd565b604082019050919050565b6000612bfc602a83613177565b9150612c078261372c565b604082019050919050565b6000612c1f602983613177565b9150612c2a8261377b565b604082019050919050565b6000612c42602083613177565b9150612c4d826137ca565b602082019050919050565b6000612c65602c83613177565b9150612c70826137f3565b604082019050919050565b6000612c88602083613177565b9150612c9382613842565b602082019050919050565b6000612cab602183613177565b9150612cb68261386b565b604082019050919050565b6000612cce603183613177565b9150612cd9826138ba565b604082019050919050565b6000612cf1601283613177565b9150612cfc82613909565b602082019050919050565b6000612d14601a83613177565b9150612d1f82613932565b602082019050919050565b612d3381613298565b82525050565b6000612d4582846129c7565b60148201915081905092915050565b6000602082019050612d6960008301846129b8565b92915050565b6000602082019050612d8460008301846129a9565b92915050565b6000608082019050612d9f60008301876129b8565b612dac60208301866129b8565b612db96040830185612d2a565b8181036060830152612dcb81846129fc565b905095945050505050565b6000602082019050612deb60008301846129de565b92915050565b6000602082019050612e0660008301846129ed565b92915050565b60006020820190508181036000830152612e268184612a35565b905092915050565b60006020820190508181036000830152612e4781612a6e565b9050919050565b60006020820190508181036000830152612e6781612a91565b9050919050565b60006020820190508181036000830152612e8781612ab4565b9050919050565b60006020820190508181036000830152612ea781612ad7565b9050919050565b60006020820190508181036000830152612ec781612afa565b9050919050565b60006020820190508181036000830152612ee781612b1d565b9050919050565b60006020820190508181036000830152612f0781612b40565b9050919050565b60006020820190508181036000830152612f2781612b63565b9050919050565b60006020820190508181036000830152612f4781612b86565b9050919050565b60006020820190508181036000830152612f6781612ba9565b9050919050565b60006020820190508181036000830152612f8781612bcc565b9050919050565b60006020820190508181036000830152612fa781612bef565b9050919050565b60006020820190508181036000830152612fc781612c12565b9050919050565b60006020820190508181036000830152612fe781612c35565b9050919050565b6000602082019050818103600083015261300781612c58565b9050919050565b6000602082019050818103600083015261302781612c7b565b9050919050565b6000602082019050818103600083015261304781612c9e565b9050919050565b6000602082019050818103600083015261306781612cc1565b9050919050565b6000602082019050818103600083015261308781612ce4565b9050919050565b600060208201905081810360008301526130a781612d07565b9050919050565b60006020820190506130c36000830184612d2a565b92915050565b60006130d36130e4565b90506130df8282613316565b919050565b6000604051905090565b600067ffffffffffffffff82111561310957613108613412565b5b61311282613441565b9050602081019050919050565b600067ffffffffffffffff82111561313a57613139613412565b5b61314382613441565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061319382613298565b915061319e83613298565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d3576131d26133b4565b5b828201905092915050565b60006131e982613298565b91506131f483613298565b925082821015613207576132066133b4565b5b828203905092915050565b600061321d82613278565b9050919050565b600061322f82613278565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156132cf5780820151818401526020810190506132b4565b838111156132de576000848401525b50505050565b600060028204905060018216806132fc57607f821691505b602082108114156133105761330f6133e3565b5b50919050565b61331f82613441565b810181811067ffffffffffffffff8211171561333e5761333d613412565b5b80604052505050565b600061335282613298565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613385576133846133b4565b5b600182019050919050565b600061339b826133a2565b9050919050565b60006133ad82613452565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f6b656e20646f65736e277420657869737400000000000000000000000000600082015250565b7f4d696e74696e67206973206e6f7420656e61626c656400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5472616e73616374696f6e2076616c756520646964206e6f7420657175616c2060008201527f746865206d696e74207072696365000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f57616c6c657420766572696669636174696f6e206661696c6564000000000000600082015250565b61396481613212565b811461396f57600080fd5b50565b61397b81613224565b811461398657600080fd5b50565b61399281613236565b811461399d57600080fd5b50565b6139a981613242565b81146139b457600080fd5b50565b6139c08161324c565b81146139cb57600080fd5b50565b6139d781613298565b81146139e257600080fd5b5056fea26469706673582212201e2c9cac4c201e91548de8ea728c1badda6db1c1ac3105e755149402c3a4473764736f6c63430008010033608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610bfc8061010d6000396000f3fe6080604052600436106100555760003560e01c806351cff8d91461005a578063715018a6146100835780638da5cb5b1461009a578063e3a9db1a146100c5578063f2fde38b14610102578063f340fa011461012b575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906107f5565b610147565b005b34801561008f57600080fd5b506100986102c7565b005b3480156100a657600080fd5b506100af61034f565b6040516100bc9190610900565b60405180910390f35b3480156100d157600080fd5b506100ec60048036038101906100e791906107cc565b610378565b6040516100f9919061099b565b60405180910390f35b34801561010e57600080fd5b50610129600480360381019061012491906107cc565b6103c1565b005b610145600480360381019061014091906107cc565b6104b9565b005b61014f6105e2565b73ffffffffffffffffffffffffffffffffffffffff1661016d61034f565b73ffffffffffffffffffffffffffffffffffffffff16146101c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101ba9061097b565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610275818373ffffffffffffffffffffffffffffffffffffffff166105ea90919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5826040516102bb919061099b565b60405180910390a25050565b6102cf6105e2565b73ffffffffffffffffffffffffffffffffffffffff166102ed61034f565b73ffffffffffffffffffffffffffffffffffffffff1614610343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033a9061097b565b60405180910390fd5b61034d60006106de565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6103c96105e2565b73ffffffffffffffffffffffffffffffffffffffff166103e761034f565b73ffffffffffffffffffffffffffffffffffffffff161461043d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104349061097b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156104ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a49061091b565b60405180910390fd5b6104b6816106de565b50565b6104c16105e2565b73ffffffffffffffffffffffffffffffffffffffff166104df61034f565b73ffffffffffffffffffffffffffffffffffffffff1614610535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052c9061097b565b60405180910390fd5b600034905080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461058991906109d2565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4826040516105d6919061099b565b60405180910390a25050565b600033905090565b8047101561062d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106249061095b565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610653906108eb565b60006040518083038185875af1925050503d8060008114610690576040519150601f19603f3d011682016040523d82523d6000602084013e610695565b606091505b50509050806106d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d09061093b565b60405180910390fd5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506107b181610b98565b92915050565b6000813590506107c681610baf565b92915050565b6000602082840312156107de57600080fd5b60006107ec848285016107a2565b91505092915050565b60006020828403121561080757600080fd5b6000610815848285016107b7565b91505092915050565b61082781610a28565b82525050565b600061083a6026836109c1565b915061084582610aa5565b604082019050919050565b600061085d603a836109c1565b915061086882610af4565b604082019050919050565b6000610880601d836109c1565b915061088b82610b43565b602082019050919050565b60006108a36020836109c1565b91506108ae82610b6c565b602082019050919050565b60006108c66000836109b6565b91506108d182610b95565b600082019050919050565b6108e581610a6c565b82525050565b60006108f6826108b9565b9150819050919050565b6000602082019050610915600083018461081e565b92915050565b600060208201905081810360008301526109348161082d565b9050919050565b6000602082019050818103600083015261095481610850565b9050919050565b6000602082019050818103600083015261097481610873565b9050919050565b6000602082019050818103600083015261099481610896565b9050919050565b60006020820190506109b060008301846108dc565b92915050565b600081905092915050565b600082825260208201905092915050565b60006109dd82610a6c565b91506109e883610a6c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610a1d57610a1c610a76565b5b828201905092915050565b6000610a3382610a4c565b9050919050565b6000610a4582610a4c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b610ba181610a28565b8114610bac57600080fd5b50565b610bb881610a3a565b8114610bc357600080fd5b5056fea264697066735822122073b307195fd92b28f2600edbbb914776573abe0392628b3f8a5ee2d6ab956cfa64736f6c63430008010033697066733a2f2f516d5244733542627932726b777474567a4d6375443859437a6b4d45466272355977626457785133766451793743

Deployed Bytecode

0x6080604052600436106101c15760003560e01c806370a08231116100f7578063b88d4fde11610095578063d547cfb711610064578063d547cfb714610637578063e2982c2114610662578063e985e9c51461069f578063f2fde38b146106dc576101c1565b8063b88d4fde14610576578063c002d23d1461059f578063c87b56dd146105ca578063d2e3bd5814610607576101c1565b80638da5cb5b116100d15780638da5cb5b146104cc578063902d55a5146104f757806395d89b4114610522578063a22cb4651461054d576101c1565b806370a082311461044f578063715018a61461048c5780637cb64759146104a3576101c1565b8063255e46851161016457806331b3eb941161013e57806331b3eb941461039057806342842e0e146103b95780636352211e146103e25780636a6278421461041f576101c1565b8063255e4685146103115780632eb4a7ab1461033c57806330176e1314610367576101c1565b8063081812fc116101a0578063081812fc14610257578063095ea7b31461029457806318160ddd146102bd57806323b872dd146102e8576101c1565b8062739f2a146101c657806301ffc9a7146101ef57806306fdde031461022c575b600080fd5b3480156101d257600080fd5b506101ed60048036038101906101e89190612957565b610705565b005b3480156101fb57600080fd5b50610216600480360381019061021191906128c4565b61078b565b6040516102239190612dd6565b60405180910390f35b34801561023857600080fd5b5061024161086d565b60405161024e9190612e0c565b60405180910390f35b34801561026357600080fd5b5061027e60048036038101906102799190612957565b6108ff565b60405161028b9190612d54565b60405180910390f35b3480156102a057600080fd5b506102bb60048036038101906102b6919061285f565b610984565b005b3480156102c957600080fd5b506102d2610a9c565b6040516102df91906130ae565b60405180910390f35b3480156102f457600080fd5b5061030f600480360381019061030a9190612701565b610aad565b005b34801561031d57600080fd5b50610326610b0d565b60405161033391906130ae565b60405180910390f35b34801561034857600080fd5b50610351610b13565b60405161035e9190612df1565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190612916565b610b19565b005b34801561039c57600080fd5b506103b760048036038101906103b2919061269c565b610baf565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612701565b610c37565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612957565b610c57565b6040516104169190612d54565b60405180910390f35b61043960048036038101906104349190612673565b610d09565b60405161044691906130ae565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612673565b610e28565b60405161048391906130ae565b60405180910390f35b34801561049857600080fd5b506104a1610ee0565b005b3480156104af57600080fd5b506104ca60048036038101906104c5919061289b565b610f68565b005b3480156104d857600080fd5b506104e1610fee565b6040516104ee9190612d54565b60405180910390f35b34801561050357600080fd5b5061050c611018565b60405161051991906130ae565b60405180910390f35b34801561052e57600080fd5b5061053761101e565b6040516105449190612e0c565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612823565b6110b0565b005b34801561058257600080fd5b5061059d60048036038101906105989190612750565b6110c6565b005b3480156105ab57600080fd5b506105b4611128565b6040516105c191906130ae565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190612957565b611134565b6040516105fe9190612e0c565b60405180910390f35b610621600480360381019061061c91906127cb565b611210565b60405161062e91906130ae565b60405180910390f35b34801561064357600080fd5b5061064c611336565b6040516106599190612e0c565b60405180910390f35b34801561066e57600080fd5b5061068960048036038101906106849190612673565b6113c4565b60405161069691906130ae565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c191906126c5565b611476565b6040516106d39190612dd6565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190612673565b61150a565b005b61070d611602565b73ffffffffffffffffffffffffffffffffffffffff1661072b610fee565b73ffffffffffffffffffffffffffffffffffffffff1614610781576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107789061300e565b60405180910390fd5b8060098190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086657506108658261160a565b5b9050919050565b60606000805461087c906132e4565b80601f01602080910402602001604051908101604052809291908181526020018280546108a8906132e4565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b600061090a82611674565b610949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094090612fee565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098f82610c57565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f79061302e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1f611602565b73ffffffffffffffffffffffffffffffffffffffff161480610a4e5750610a4d81610a48611602565b611476565b5b610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490612f6e565b60405180910390fd5b610a9783836116e0565b505050565b6000610aa86007611799565b905090565b610abe610ab8611602565b826117a7565b610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af49061304e565b60405180910390fd5b610b08838383611885565b505050565b60095481565b60085481565b610b21611602565b73ffffffffffffffffffffffffffffffffffffffff16610b3f610fee565b73ffffffffffffffffffffffffffffffffffffffff1614610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c9061300e565b60405180910390fd5b80600a9080519060200190610bab92919061240e565b5050565b610bb7611602565b73ffffffffffffffffffffffffffffffffffffffff16610bd5610fee565b73ffffffffffffffffffffffffffffffffffffffff1614610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c229061300e565b60405180910390fd5b610c3481611aec565b50565b610c52838383604051806020016040528060008152506110c6565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf790612fae565b60405180910390fd5b80915050919050565b60006009544211610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690612e4e565b60405180910390fd5b6000610d5b6007611799565b90506103e78110610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d989061306e565b60405180910390fd5b6714d1120d7b1600003414610deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de290612f2e565b60405180910390fd5b610df56007611b7a565b6000610e016007611799565b9050610e0d8482611b90565b610e1e610e18610fee565b34611bae565b8092505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090612f8e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ee8611602565b73ffffffffffffffffffffffffffffffffffffffff16610f06610fee565b73ffffffffffffffffffffffffffffffffffffffff1614610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f539061300e565b60405180910390fd5b610f666000611c3e565b565b610f70611602565b73ffffffffffffffffffffffffffffffffffffffff16610f8e610fee565b73ffffffffffffffffffffffffffffffffffffffff1614610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb9061300e565b60405180910390fd5b8060088190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6103e781565b60606001805461102d906132e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611059906132e4565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b5050505050905090565b6110c26110bb611602565b8383611d04565b5050565b6110d76110d1611602565b836117a7565b611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d9061304e565b60405180910390fd5b61112284848484611e71565b50505050565b6714d1120d7b16000081565b606061113f82611674565b61117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590612e2e565b60405180910390fd5b600a805461118b906132e4565b80601f01602080910402602001604051908101604052809291908181526020018280546111b7906132e4565b80156112045780601f106111d957610100808354040283529160200191611204565b820191906000526020600020905b8154815290600101906020018083116111e757829003601f168201915b50505050509050919050565b60008061121d6007611799565b90506103e78110611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a9061306e565b60405180910390fd5b6714d1120d7b16000034146112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490612f2e565b60405180910390fd5b6112b8858585611ecd565b6112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee9061308e565b60405180910390fd5b6113016007611b7a565b600061130d6007611799565b90506113198682611b90565b61132a611324610fee565b34611bae565b80925050509392505050565b600a8054611343906132e4565b80601f016020809104026020016040519081016040528092919081815260200182805461136f906132e4565b80156113bc5780601f10611391576101008083540402835291602001916113bc565b820191906000526020600020905b81548152906001019060200180831161139f57829003601f168201915b505050505081565b60007f00000000000000000000000038064d5e9b9cdce236508c2f85159d81cb4916ad73ffffffffffffffffffffffffffffffffffffffff1663e3a9db1a836040518263ffffffff1660e01b815260040161141f9190612d54565b60206040518083038186803b15801561143757600080fd5b505afa15801561144b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146f9190612980565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611512611602565b73ffffffffffffffffffffffffffffffffffffffff16611530610fee565b73ffffffffffffffffffffffffffffffffffffffff1614611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d9061300e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90612e8e565b60405180910390fd5b6115ff81611c3e565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661175383610c57565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006117b282611674565b6117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890612f4e565b60405180910390fd5b60006117fc83610c57565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061183e575061183d8185611476565b5b8061187c57508373ffffffffffffffffffffffffffffffffffffffff16611864846108ff565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118a582610c57565b73ffffffffffffffffffffffffffffffffffffffff16146118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290612eae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561196b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196290612eee565b60405180910390fd5b611976838383611f4c565b6119816000826116e0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119d191906131de565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a289190613188565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ae7838383611f51565b505050565b7f00000000000000000000000038064d5e9b9cdce236508c2f85159d81cb4916ad73ffffffffffffffffffffffffffffffffffffffff166351cff8d9826040518263ffffffff1660e01b8152600401611b459190612d6f565b600060405180830381600087803b158015611b5f57600080fd5b505af1158015611b73573d6000803e3d6000fd5b5050505050565b6001816000016000828254019250508190555050565b611baa828260405180602001604052806000815250611f56565b5050565b7f00000000000000000000000038064d5e9b9cdce236508c2f85159d81cb4916ad73ffffffffffffffffffffffffffffffffffffffff1663f340fa0182846040518363ffffffff1660e01b8152600401611c089190612d54565b6000604051808303818588803b158015611c2157600080fd5b505af1158015611c35573d6000803e3d6000fd5b50505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6a90612f0e565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e649190612dd6565b60405180910390a3505050565b611e7c848484611885565b611e8884848484611fb1565b611ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebe90612e6e565b60405180910390fd5b50505050565b6000611f43838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060085486604051602001611f289190612d39565b60405160208183030381529060405280519060200120612148565b90509392505050565b505050565b505050565b611f60838361215f565b611f6d6000848484611fb1565b611fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa390612e6e565b60405180910390fd5b505050565b6000611fd28473ffffffffffffffffffffffffffffffffffffffff16612339565b1561213b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ffb611602565b8786866040518563ffffffff1660e01b815260040161201d9493929190612d8a565b602060405180830381600087803b15801561203757600080fd5b505af192505050801561206857506040513d601f19601f8201168201806040525081019061206591906128ed565b60015b6120eb573d8060008114612098576040519150601f19603f3d011682016040523d82523d6000602084013e61209d565b606091505b506000815114156120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90612e6e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612140565b600190505b949350505050565b600082612155858461235c565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690612fce565b60405180910390fd5b6121d881611674565b15612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f90612ece565b60405180910390fd5b61222460008383611f4c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122749190613188565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461233560008383611f51565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008082905060005b84518110156123ec5760008582815181106123a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116123cb576123c483826123f7565b92506123d8565b6123d581846123f7565b92505b5080806123e490613347565b915050612365565b508091505092915050565b600082600052816020526040600020905092915050565b82805461241a906132e4565b90600052602060002090601f01602090048101928261243c5760008555612483565b82601f1061245557805160ff1916838001178555612483565b82800160010185558215612483579182015b82811115612482578251825591602001919060010190612467565b5b5090506124909190612494565b5090565b5b808211156124ad576000816000905550600101612495565b5090565b60006124c46124bf846130ee565b6130c9565b9050828152602081018484840111156124dc57600080fd5b6124e78482856132a2565b509392505050565b60006125026124fd8461311f565b6130c9565b90508281526020810184848401111561251a57600080fd5b6125258482856132a2565b509392505050565b60008135905061253c8161395b565b92915050565b60008135905061255181613972565b92915050565b60008083601f84011261256957600080fd5b8235905067ffffffffffffffff81111561258257600080fd5b60208301915083602082028301111561259a57600080fd5b9250929050565b6000813590506125b081613989565b92915050565b6000813590506125c5816139a0565b92915050565b6000813590506125da816139b7565b92915050565b6000815190506125ef816139b7565b92915050565b600082601f83011261260657600080fd5b81356126168482602086016124b1565b91505092915050565b600082601f83011261263057600080fd5b81356126408482602086016124ef565b91505092915050565b600081359050612658816139ce565b92915050565b60008151905061266d816139ce565b92915050565b60006020828403121561268557600080fd5b60006126938482850161252d565b91505092915050565b6000602082840312156126ae57600080fd5b60006126bc84828501612542565b91505092915050565b600080604083850312156126d857600080fd5b60006126e68582860161252d565b92505060206126f78582860161252d565b9150509250929050565b60008060006060848603121561271657600080fd5b60006127248682870161252d565b93505060206127358682870161252d565b925050604061274686828701612649565b9150509250925092565b6000806000806080858703121561276657600080fd5b60006127748782880161252d565b94505060206127858782880161252d565b935050604061279687828801612649565b925050606085013567ffffffffffffffff8111156127b357600080fd5b6127bf878288016125f5565b91505092959194509250565b6000806000604084860312156127e057600080fd5b60006127ee8682870161252d565b935050602084013567ffffffffffffffff81111561280b57600080fd5b61281786828701612557565b92509250509250925092565b6000806040838503121561283657600080fd5b60006128448582860161252d565b9250506020612855858286016125a1565b9150509250929050565b6000806040838503121561287257600080fd5b60006128808582860161252d565b925050602061289185828601612649565b9150509250929050565b6000602082840312156128ad57600080fd5b60006128bb848285016125b6565b91505092915050565b6000602082840312156128d657600080fd5b60006128e4848285016125cb565b91505092915050565b6000602082840312156128ff57600080fd5b600061290d848285016125e0565b91505092915050565b60006020828403121561292857600080fd5b600082013567ffffffffffffffff81111561294257600080fd5b61294e8482850161261f565b91505092915050565b60006020828403121561296957600080fd5b600061297784828501612649565b91505092915050565b60006020828403121561299257600080fd5b60006129a08482850161265e565b91505092915050565b6129b281613224565b82525050565b6129c181613212565b82525050565b6129d86129d382613212565b613390565b82525050565b6129e781613236565b82525050565b6129f681613242565b82525050565b6000612a0782613150565b612a118185613166565b9350612a218185602086016132b1565b612a2a81613441565b840191505092915050565b6000612a408261315b565b612a4a8185613177565b9350612a5a8185602086016132b1565b612a6381613441565b840191505092915050565b6000612a7b601383613177565b9150612a868261345f565b602082019050919050565b6000612a9e601683613177565b9150612aa982613488565b602082019050919050565b6000612ac1603283613177565b9150612acc826134b1565b604082019050919050565b6000612ae4602683613177565b9150612aef82613500565b604082019050919050565b6000612b07602583613177565b9150612b128261354f565b604082019050919050565b6000612b2a601c83613177565b9150612b358261359e565b602082019050919050565b6000612b4d602483613177565b9150612b58826135c7565b604082019050919050565b6000612b70601983613177565b9150612b7b82613616565b602082019050919050565b6000612b93602e83613177565b9150612b9e8261363f565b604082019050919050565b6000612bb6602c83613177565b9150612bc18261368e565b604082019050919050565b6000612bd9603883613177565b9150612be4826136dd565b604082019050919050565b6000612bfc602a83613177565b9150612c078261372c565b604082019050919050565b6000612c1f602983613177565b9150612c2a8261377b565b604082019050919050565b6000612c42602083613177565b9150612c4d826137ca565b602082019050919050565b6000612c65602c83613177565b9150612c70826137f3565b604082019050919050565b6000612c88602083613177565b9150612c9382613842565b602082019050919050565b6000612cab602183613177565b9150612cb68261386b565b604082019050919050565b6000612cce603183613177565b9150612cd9826138ba565b604082019050919050565b6000612cf1601283613177565b9150612cfc82613909565b602082019050919050565b6000612d14601a83613177565b9150612d1f82613932565b602082019050919050565b612d3381613298565b82525050565b6000612d4582846129c7565b60148201915081905092915050565b6000602082019050612d6960008301846129b8565b92915050565b6000602082019050612d8460008301846129a9565b92915050565b6000608082019050612d9f60008301876129b8565b612dac60208301866129b8565b612db96040830185612d2a565b8181036060830152612dcb81846129fc565b905095945050505050565b6000602082019050612deb60008301846129de565b92915050565b6000602082019050612e0660008301846129ed565b92915050565b60006020820190508181036000830152612e268184612a35565b905092915050565b60006020820190508181036000830152612e4781612a6e565b9050919050565b60006020820190508181036000830152612e6781612a91565b9050919050565b60006020820190508181036000830152612e8781612ab4565b9050919050565b60006020820190508181036000830152612ea781612ad7565b9050919050565b60006020820190508181036000830152612ec781612afa565b9050919050565b60006020820190508181036000830152612ee781612b1d565b9050919050565b60006020820190508181036000830152612f0781612b40565b9050919050565b60006020820190508181036000830152612f2781612b63565b9050919050565b60006020820190508181036000830152612f4781612b86565b9050919050565b60006020820190508181036000830152612f6781612ba9565b9050919050565b60006020820190508181036000830152612f8781612bcc565b9050919050565b60006020820190508181036000830152612fa781612bef565b9050919050565b60006020820190508181036000830152612fc781612c12565b9050919050565b60006020820190508181036000830152612fe781612c35565b9050919050565b6000602082019050818103600083015261300781612c58565b9050919050565b6000602082019050818103600083015261302781612c7b565b9050919050565b6000602082019050818103600083015261304781612c9e565b9050919050565b6000602082019050818103600083015261306781612cc1565b9050919050565b6000602082019050818103600083015261308781612ce4565b9050919050565b600060208201905081810360008301526130a781612d07565b9050919050565b60006020820190506130c36000830184612d2a565b92915050565b60006130d36130e4565b90506130df8282613316565b919050565b6000604051905090565b600067ffffffffffffffff82111561310957613108613412565b5b61311282613441565b9050602081019050919050565b600067ffffffffffffffff82111561313a57613139613412565b5b61314382613441565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600061319382613298565b915061319e83613298565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d3576131d26133b4565b5b828201905092915050565b60006131e982613298565b91506131f483613298565b925082821015613207576132066133b4565b5b828203905092915050565b600061321d82613278565b9050919050565b600061322f82613278565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156132cf5780820151818401526020810190506132b4565b838111156132de576000848401525b50505050565b600060028204905060018216806132fc57607f821691505b602082108114156133105761330f6133e3565b5b50919050565b61331f82613441565b810181811067ffffffffffffffff8211171561333e5761333d613412565b5b80604052505050565b600061335282613298565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613385576133846133b4565b5b600182019050919050565b600061339b826133a2565b9050919050565b60006133ad82613452565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f6b656e20646f65736e277420657869737400000000000000000000000000600082015250565b7f4d696e74696e67206973206e6f7420656e61626c656400000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5472616e73616374696f6e2076616c756520646964206e6f7420657175616c2060008201527f746865206d696e74207072696365000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b7f57616c6c657420766572696669636174696f6e206661696c6564000000000000600082015250565b61396481613212565b811461396f57600080fd5b50565b61397b81613224565b811461398657600080fd5b50565b61399281613236565b811461399d57600080fd5b50565b6139a981613242565b81146139b457600080fd5b50565b6139c08161324c565b81146139cb57600080fd5b50565b6139d781613298565b81146139e257600080fd5b5056fea26469706673582212201e2c9cac4c201e91548de8ea728c1badda6db1c1ac3105e755149402c3a4473764736f6c63430008010033

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.