ETH Price: $3,495.00 (+2.60%)
Gas: 2 Gwei

Token

EV3 (EV3)
 

Overview

Max Total Supply

1,790 EV3

Holders

647

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 EV3
0x38285c2EC438a16c494eFb85BB8cc83aD86442cb
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:
EV3

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/interfaces/IERC2981.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract EV3 is ERC721, Ownable, ReentrancyGuard, IERC2981 {
	using Counters for Counters.Counter;
	using Address for address payable;
	using MerkleProof for bytes32[];

	bytes32 public whitelistRoot;
    bytes32 public freeMintRoot;

    string  public baseTokenURI = "";

	uint256 public constant MAX_SUPPLY = 6000;
    uint256 public WHITELIST_MAX_MINT = 2;
	uint256 public constant FREE_MINT_MAX_MINT = 1;
	uint256 public constant PUBLIC_MAX_MINT = 5;
	uint256 public constant WHITELIST_PRICE = 0.01 ether;
	uint256 public constant PUBLIC_PRICE = 0.02 ether;
	uint256 public constant MAX_PUBLIC_SUPPLY = 5750;

	mapping(address => bool) public whitelist;
	mapping(address => uint256) public freeminted;
	mapping(address => uint256) public publicMinted;
	uint256 public publicSupply;

	Counters.Counter private _tokenIdCounter;

    bool public isWhitelistEnabled = false;
    bool public isFreeMintEnabled = false;
    bool public isPublicMintEnabled = false;

    constructor(bytes32 _whitelistRoot, bytes32 _freeMintRoot) ERC721("EV3", "EV3") {
        whitelistRoot = _whitelistRoot;
        freeMintRoot = _freeMintRoot;
    }

    function mintWhitelist(bytes32[] memory proof, uint256 amount) public nonReentrant payable {
        require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Not a part of EVLIST");
        require(isWhitelistEnabled, "EVLIST minting is not enabled");
        require(WHITELIST_PRICE * amount == msg.value, "Incorrect amount sent");
        require(publicSupply + amount <= MAX_PUBLIC_SUPPLY, "Exceeds maximum public supply");
        require(publicMinted[msg.sender] + amount <= WHITELIST_MAX_MINT, "Already minted maximum EV3 NFTs");

        for (uint256 i = 0; i < amount; i++) {
            uint256 tokenId = _tokenIdCounter.current();
            _tokenIdCounter.increment();
            _safeMint(msg.sender, tokenId);
        }
        
        publicSupply += amount;
        publicMinted[msg.sender] += amount;
    }


    function mintFree(address to, bytes32[] memory proof) public nonReentrant{
        require(isValidFree(proof, keccak256(abi.encodePacked(to))), "Not a part of EVLIST II");
        require(isFreeMintEnabled, "Free minting is not enabled");
        require(freeminted[msg.sender] == 0, "Already minted EV3 NFT");
        require(publicSupply + 1 <= MAX_PUBLIC_SUPPLY, "Exceeds maximum public supply");

        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenId);
        publicSupply += 1;
        freeminted[msg.sender] += 1;
    }

	function mintPublic(uint256 amount) public nonReentrant payable {
        require(isPublicMintEnabled, "Public minting is not enabled");
	    require(PUBLIC_PRICE * amount == msg.value, "Incorrect amount sent");
	    require(publicSupply + amount <= MAX_PUBLIC_SUPPLY, "Exceeds maximum supply");
	    require(publicMinted[msg.sender] + amount < PUBLIC_MAX_MINT, "Already minted maximum EV3 NFTs");

        for (uint256 i = 0; i < amount; i++) {
            uint256 tokenId = _tokenIdCounter.current();
            _tokenIdCounter.increment();
            _safeMint(msg.sender, tokenId);
        }
	    
	    publicSupply += amount;
	    publicMinted[msg.sender] += amount;
	}

	function mintAirdrop(address[] memory recipients, uint256 numNFT) public onlyOwner {
	    require(numNFT == 1 || numNFT == 2, "Invalid number of NFTs to airdrop");
	    require(publicSupply + recipients.length * numNFT <= MAX_PUBLIC_SUPPLY, "Exceeds maximum public supply");
	    for (uint256 i = 0; i < recipients.length; i++) {
	        for (uint256 j = 0; j < numNFT; j++) {
	            uint256 tokenId = _tokenIdCounter.current();
	            _tokenIdCounter.increment();
	            _safeMint(recipients[i], tokenId);
	            publicSupply += 1;
	        }
	    }
	}

	function ownerMint(address to, uint256 amount) public onlyOwner {
	    require(publicSupply + amount <= MAX_SUPPLY, "Exceeds maximum supply");
	    uint256 tokenId = _tokenIdCounter.current();
	    _tokenIdCounter.increment();
	    _safeMint(to, tokenId);
	    publicSupply += amount;
	}

    function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, whitelistRoot, leaf);
    }

    function isValidFree(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, freeMintRoot, leaf);
    }

	function royaltyInfo(uint256, uint256 salePrice) external view override returns (address, uint256) {
	    return (owner(), salePrice * 10 / 100);
	}

	function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    }

	function setWhitelist(address[] memory users) public onlyOwner {
	    for (uint256 i = 0; i < users.length; i++) {
	        whitelist[users[i]] = true;
	    }
	}

    function toggleWhitelistStage() public onlyOwner {
        isWhitelistEnabled = !isWhitelistEnabled;
    }

    function toggleFreemintStage() public onlyOwner {
        isFreeMintEnabled = !isFreeMintEnabled;
    }

    function togglePublicStage() public onlyOwner {
        isPublicMintEnabled  = !isPublicMintEnabled ;
    }

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

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    function updateRoots(bytes32 _whitelistRoot, bytes32 _freeMintRoot) public onlyOwner {
        whitelistRoot = _whitelistRoot;
        freeMintRoot = _freeMintRoot;
    }

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


}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

File 3 of 15 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 4 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * 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].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * 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.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

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

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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

File 7 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 8 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

File 10 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 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 : 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 13 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 14 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"},{"internalType":"bytes32","name":"_freeMintRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"FREE_MINT_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_PRICE","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":[],"name":"freeMintRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeminted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValidFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"numNFT","type":"uint256"}],"name":"mintAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"}],"name":"setWhitelist","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":[],"name":"toggleFreemintStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistStage","outputs":[],"stateMutability":"nonpayable","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":"bytes32","name":"_whitelistRoot","type":"bytes32"},{"internalType":"bytes32","name":"_freeMintRoot","type":"bytes32"}],"name":"updateRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a9081620000249190620004c6565b506002600b556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055503480156200008857600080fd5b506040516200548a3803806200548a8339818101604052810190620000ae9190620005ed565b6040518060400160405280600381526020017f45563300000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f455633000000000000000000000000000000000000000000000000000000000081525081600090816200012b9190620004c6565b5080600190816200013d9190620004c6565b50505062000160620001546200017e60201b60201c565b6200018660201b60201c565b60016007819055508160088190555080600981905550505062000634565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002ce57607f821691505b602082108103620002e457620002e362000286565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200034e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200030f565b6200035a86836200030f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003a7620003a16200039b8462000372565b6200037c565b62000372565b9050919050565b6000819050919050565b620003c38362000386565b620003db620003d282620003ae565b8484546200031c565b825550505050565b600090565b620003f2620003e3565b620003ff818484620003b8565b505050565b5b8181101562000427576200041b600082620003e8565b60018101905062000405565b5050565b601f82111562000476576200044081620002ea565b6200044b84620002ff565b810160208510156200045b578190505b620004736200046a85620002ff565b83018262000404565b50505b505050565b600082821c905092915050565b60006200049b600019846008026200047b565b1980831691505092915050565b6000620004b6838362000488565b9150826002028217905092915050565b620004d1826200024c565b67ffffffffffffffff811115620004ed57620004ec62000257565b5b620004f98254620002b5565b620005068282856200042b565b600060209050601f8311600181146200053e576000841562000529578287015190505b620005358582620004a8565b865550620005a5565b601f1984166200054e86620002ea565b60005b82811015620005785784890151825560018201915060208501945060208101905062000551565b8683101562000598578489015162000594601f89168262000488565b8355505b6001600288020188555050505b505050505050565b600080fd5b6000819050919050565b620005c781620005b2565b8114620005d357600080fd5b50565b600081519050620005e781620005bc565b92915050565b60008060408385031215620006075762000606620005ad565b5b60006200061785828601620005d6565b92505060206200062a85828601620005d6565b9150509250929050565b614e4680620006446000396000f3fe6080604052600436106102ad5760003560e01c80636352211e11610175578063a886c377116100dc578063c87b56dd11610095578063ef56267e1161006f578063ef56267e14610a81578063efd0cbf914610abe578063f2fde38b14610ada578063f421764814610b03576102ad565b8063c87b56dd146109dc578063d547cfb714610a19578063e985e9c514610a44576102ad565b8063a886c377146108ce578063a9439ee1146108f9578063aeb1676814610922578063b6bae3631461094d578063b88d4fde14610976578063b8a20ed01461099f576102ad565b806395d89b411161012e57806395d89b41146107cb57806397554dd3146107f65780639b19251a14610821578063a22cb4651461085e578063a6d612f914610887578063a7346780146108a3576102ad565b80636352211e146106bb5780636a9d6763146106f857806370a0823114610735578063715018a6146107725780638da5cb5b146107895780638db32e3b146107b4576102ad565b80632a47f799116102195780633ccfd60b116101d25780633ccfd60b146105d357806342842e0e146105ea578063484b973c1461061357806355f804b31461063c5780635e84d72314610665578063611f3f1014610690576102ad565b80632a47f799146104d45780632a55205a146104ff5780632e4e0ade1461053d5780633290aa631461055457806332cb6b0c1461057d578063386bfc98146105a8576102ad565b80631015805b1161026b5780631015805b146103c257806317e7f295146103ff57806318160ddd1461042a578063184d69ab1461045557806323b872dd1461048057806324ffca76146104a9576102ad565b80621048f1146102b25780630116bc2d146102c957806301ffc9a7146102f457806306fdde0314610331578063081812fc1461035c578063095ea7b314610399575b600080fd5b3480156102be57600080fd5b506102c7610b2c565b005b3480156102d557600080fd5b506102de610b60565b6040516102eb9190612fc4565b60405180910390f35b34801561030057600080fd5b5061031b6004803603810190610316919061304b565b610b73565b6040516103289190612fc4565b60405180910390f35b34801561033d57600080fd5b50610346610c55565b6040516103539190613108565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190613160565b610ce7565b60405161039091906131ce565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613215565b610d2d565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613255565b610e44565b6040516103f69190613291565b60405180910390f35b34801561040b57600080fd5b50610414610e5c565b6040516104219190613291565b60405180910390f35b34801561043657600080fd5b5061043f610e67565b60405161044c9190613291565b60405180910390f35b34801561046157600080fd5b5061046a610e78565b6040516104779190612fc4565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a291906132ac565b610e8b565b005b3480156104b557600080fd5b506104be610eeb565b6040516104cb9190613291565b60405180910390f35b3480156104e057600080fd5b506104e9610ef0565b6040516104f69190613291565b60405180910390f35b34801561050b57600080fd5b50610526600480360381019061052191906132ff565b610ef6565b60405161053492919061333f565b60405180910390f35b34801561054957600080fd5b50610552610f25565b005b34801561056057600080fd5b5061057b6004803603810190610576919061339e565b610f59565b005b34801561058957600080fd5b50610592610f73565b60405161059f9190613291565b60405180910390f35b3480156105b457600080fd5b506105bd610f79565b6040516105ca91906133ed565b60405180910390f35b3480156105df57600080fd5b506105e8610f7f565b005b3480156105f657600080fd5b50610611600480360381019061060c91906132ac565b61105c565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613215565b61107c565b005b34801561064857600080fd5b50610663600480360381019061065e919061353d565b611116565b005b34801561067157600080fd5b5061067a611131565b6040516106879190613291565b60405180910390f35b34801561069c57600080fd5b506106a5611137565b6040516106b29190613291565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190613160565b611142565b6040516106ef91906131ce565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a919061364e565b6111f3565b60405161072c9190612fc4565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190613255565b61120a565b6040516107699190613291565b60405180910390f35b34801561077e57600080fd5b506107876112c1565b005b34801561079557600080fd5b5061079e6112d5565b6040516107ab91906131ce565b60405180910390f35b3480156107c057600080fd5b506107c96112ff565b005b3480156107d757600080fd5b506107e0611333565b6040516107ed9190613108565b60405180910390f35b34801561080257600080fd5b5061080b6113c5565b6040516108189190612fc4565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613255565b6113d8565b6040516108559190612fc4565b60405180910390f35b34801561086a57600080fd5b50610885600480360381019061088091906136d6565b6113f8565b005b6108a1600480360381019061089c9190613716565b61140e565b005b3480156108af57600080fd5b506108b861170b565b6040516108c59190613291565b60405180910390f35b3480156108da57600080fd5b506108e3611710565b6040516108f091906133ed565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b9190613772565b611716565b005b34801561092e57600080fd5b50610937611996565b6040516109449190613291565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f9190613891565b61199c565b005b34801561098257600080fd5b5061099d6004803603810190610998919061398e565b611aea565b005b3480156109ab57600080fd5b506109c660048036038101906109c1919061364e565b611b4c565b6040516109d39190612fc4565b60405180910390f35b3480156109e857600080fd5b50610a0360048036038101906109fe9190613160565b611b63565b604051610a109190613108565b60405180910390f35b348015610a2557600080fd5b50610a2e611c10565b604051610a3b9190613108565b60405180910390f35b348015610a5057600080fd5b50610a6b6004803603810190610a669190613a11565b611c9e565b604051610a789190612fc4565b60405180910390f35b348015610a8d57600080fd5b50610aa86004803603810190610aa39190613255565b611d32565b604051610ab59190613291565b60405180910390f35b610ad86004803603810190610ad39190613160565b611d4a565b005b348015610ae657600080fd5b50610b016004803603810190610afc9190613255565b611fd5565b005b348015610b0f57600080fd5b50610b2a6004803603810190610b259190613a51565b612058565b005b610b346120f5565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b601160029054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c3e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c4e5750610c4d82612173565b5b9050919050565b606060008054610c6490613ac9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9090613ac9565b8015610cdd5780601f10610cb257610100808354040283529160200191610cdd565b820191906000526020600020905b815481529060010190602001808311610cc057829003601f168201915b5050505050905090565b6000610cf2826121dd565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d3882611142565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613b6c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dc7612228565b73ffffffffffffffffffffffffffffffffffffffff161480610df65750610df581610df0612228565b611c9e565b5b610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c90613bfe565b60405180910390fd5b610e3f8383612230565b505050565b600e6020528060005260406000206000915090505481565b662386f26fc1000081565b6000610e7360106122e9565b905090565b601160009054906101000a900460ff1681565b610e9c610e96612228565b826122f7565b610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290613c90565b60405180910390fd5b610ee683838361238c565b505050565b600181565b61167681565b600080610f016112d5565b6064600a85610f109190613cdf565b610f1a9190613d50565b915091509250929050565b610f2d6120f5565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b610f616120f5565b81600881905550806009819055505050565b61177081565b60085481565b610f876120f5565b600260075403610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390613dcd565b60405180910390fd5b60026007819055506000610fde6112d5565b73ffffffffffffffffffffffffffffffffffffffff164760405161100190613e1e565b60006040518083038185875af1925050503d806000811461103e576040519150601f19603f3d011682016040523d82523d6000602084013e611043565b606091505b505090508061105157600080fd5b506001600781905550565b61107783838360405180602001604052806000815250611aea565b505050565b6110846120f5565b61177081600f546110959190613e33565b11156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90613eb3565b60405180910390fd5b60006110e260106122e9565b90506110ee60106125f2565b6110f88382612608565b81600f600082825461110a9190613e33565b92505081905550505050565b61111e6120f5565b80600a908161112d919061407f565b5050565b600f5481565b66470de4df82000081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e19061419d565b60405180910390fd5b80915050919050565b60006112028360095484612626565b905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361127a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112719061422f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c96120f5565b6112d3600061263d565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113076120f5565b601160029054906101000a900460ff1615601160026101000a81548160ff021916908315150217905550565b60606001805461134290613ac9565b80601f016020809104026020016040519081016040528092919081815260200182805461136e90613ac9565b80156113bb5780601f10611390576101008083540402835291602001916113bb565b820191906000526020600020905b81548152906001019060200180831161139e57829003601f168201915b5050505050905090565b601160019054906101000a900460ff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b61140a611403612228565b8383612703565b5050565b600260075403611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90613dcd565b60405180910390fd5b600260078190555061148b82336040516020016114709190614297565b60405160208183030381529060405280519060200120611b4c565b6114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c1906142fe565b60405180910390fd5b601160009054906101000a900460ff16611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061436a565b60405180910390fd5b3481662386f26fc1000061152d9190613cdf565b1461156d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611564906143d6565b60405180910390fd5b61167681600f5461157e9190613e33565b11156115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b690614442565b60405180910390fd5b600b5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461160d9190613e33565b111561164e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611645906144ae565b60405180910390fd5b60005b8181101561168f57600061166560106122e9565b905061167160106125f2565b61167b3382612608565b508080611687906144ce565b915050611651565b5080600f60008282546116a29190613e33565b9250508190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f89190613e33565b9250508190555060016007819055505050565b600581565b60095481565b60026007540361175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290613dcd565b60405180910390fd5b600260078190555061179381836040516020016117789190614297565b604051602081830303815290604052805190602001206111f3565b6117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990614562565b60405180910390fd5b601160019054906101000a900460ff16611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906145ce565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146118a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189a9061463a565b60405180910390fd5b6116766001600f546118b59190613e33565b11156118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90614442565b60405180910390fd5b600061190260106122e9565b905061190e60106125f2565b6119183382612608565b6001600f600082825461192b9190613e33565b925050819055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119829190613e33565b925050819055505060016007819055505050565b600b5481565b6119a46120f5565b60018114806119b35750600281145b6119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e9906146cc565b60405180910390fd5b611676818351611a029190613cdf565b600f54611a0f9190613e33565b1115611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790614442565b60405180910390fd5b60005b8251811015611ae55760005b82811015611ad1576000611a7360106122e9565b9050611a7f60106125f2565b611aa3858481518110611a9557611a946146ec565b5b602002602001015182612608565b6001600f6000828254611ab69190613e33565b92505081905550508080611ac9906144ce565b915050611a5f565b508080611add906144ce565b915050611a53565b505050565b611afb611af5612228565b836122f7565b611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190613c90565b60405180910390fd5b611b468484848461286f565b50505050565b6000611b5b8360085484612626565b905092915050565b6060611b6e826128cb565b611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba49061478d565b60405180910390fd5b6000611bb883612937565b90506000611bc4612a97565b90506000815111611be45760405180602001604052806000815250611c07565b8082604051602001611bf7929190614835565b6040516020818303038152906040525b92505050919050565b600a8054611c1d90613ac9565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4990613ac9565b8015611c965780601f10611c6b57610100808354040283529160200191611c96565b820191906000526020600020905b815481529060010190602001808311611c7957829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d6020528060005260406000206000915090505481565b600260075403611d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8690613dcd565b60405180910390fd5b6002600781905550601160029054906101000a900460ff16611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd906148b0565b60405180910390fd5b348166470de4df820000611dfa9190613cdf565b14611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906143d6565b60405180910390fd5b61167681600f54611e4b9190613e33565b1115611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390613eb3565b60405180910390fd5b600581600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed99190613e33565b10611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f10906144ae565b60405180910390fd5b60005b81811015611f5a576000611f3060106122e9565b9050611f3c60106125f2565b611f463382612608565b508080611f52906144ce565b915050611f1c565b5080600f6000828254611f6d9190613e33565b9250508190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fc39190613e33565b92505081905550600160078190555050565b611fdd6120f5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361204c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204390614942565b60405180910390fd5b6120558161263d565b50565b6120606120f5565b60005b81518110156120f1576001600c6000848481518110612085576120846146ec565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806120e9906144ce565b915050612063565b5050565b6120fd612228565b73ffffffffffffffffffffffffffffffffffffffff1661211b6112d5565b73ffffffffffffffffffffffffffffffffffffffff1614612171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612168906149ae565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121e6816128cb565b612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c9061419d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122a383611142565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60008061230383611142565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061234557506123448185611c9e565b5b8061238357508373ffffffffffffffffffffffffffffffffffffffff1661236b84610ce7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123ac82611142565b73ffffffffffffffffffffffffffffffffffffffff1614612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990614a40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246890614ad2565b60405180910390fd5b61247c838383612b29565b612487600082612230565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124d79190614af2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252e9190613e33565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125ed838383612b2e565b505050565b6001816000016000828254019250508190555050565b612622828260405180602001604052806000815250612b33565b5050565b6000826126338584612b8e565b1490509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890614b72565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128629190612fc4565b60405180910390a3505050565b61287a84848461238c565b61288684848484612be4565b6128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc90614c04565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000820361297e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a92565b600082905060005b600082146129b0578080612999906144ce565b915050600a826129a99190613d50565b9150612986565b60008167ffffffffffffffff8111156129cc576129cb613412565b5b6040519080825280601f01601f1916602001820160405280156129fe5781602001600182028036833780820191505090505b5090505b60008514612a8b57600182612a179190614af2565b9150600a85612a269190614c24565b6030612a329190613e33565b60f81b818381518110612a4857612a476146ec565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a849190613d50565b9450612a02565b8093505050505b919050565b6060600a8054612aa690613ac9565b80601f0160208091040260200160405190810160405280929190818152602001828054612ad290613ac9565b8015612b1f5780601f10612af457610100808354040283529160200191612b1f565b820191906000526020600020905b815481529060010190602001808311612b0257829003601f168201915b5050505050905090565b505050565b505050565b612b3d8383612d6b565b612b4a6000848484612be4565b612b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8090614c04565b60405180910390fd5b505050565b60008082905060005b8451811015612bd957612bc482868381518110612bb757612bb66146ec565b5b6020026020010151612f44565b91508080612bd1906144ce565b915050612b97565b508091505092915050565b6000612c058473ffffffffffffffffffffffffffffffffffffffff16612f6f565b15612d5e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c2e612228565b8786866040518563ffffffff1660e01b8152600401612c509493929190614caa565b6020604051808303816000875af1925050508015612c8c57506040513d601f19601f82011682018060405250810190612c899190614d0b565b60015b612d0e573d8060008114612cbc576040519150601f19603f3d011682016040523d82523d6000602084013e612cc1565b606091505b506000815103612d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfd90614c04565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d63565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd190614d84565b60405180910390fd5b612de3816128cb565b15612e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1a90614df0565b60405180910390fd5b612e2f60008383612b29565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e7f9190613e33565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f4060008383612b2e565b5050565b6000818310612f5c57612f578284612f92565b612f67565b612f668383612f92565b5b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b60008115159050919050565b612fbe81612fa9565b82525050565b6000602082019050612fd96000830184612fb5565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61302881612ff3565b811461303357600080fd5b50565b6000813590506130458161301f565b92915050565b60006020828403121561306157613060612fe9565b5b600061306f84828501613036565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130b2578082015181840152602081019050613097565b60008484015250505050565b6000601f19601f8301169050919050565b60006130da82613078565b6130e48185613083565b93506130f4818560208601613094565b6130fd816130be565b840191505092915050565b6000602082019050818103600083015261312281846130cf565b905092915050565b6000819050919050565b61313d8161312a565b811461314857600080fd5b50565b60008135905061315a81613134565b92915050565b60006020828403121561317657613175612fe9565b5b60006131848482850161314b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131b88261318d565b9050919050565b6131c8816131ad565b82525050565b60006020820190506131e360008301846131bf565b92915050565b6131f2816131ad565b81146131fd57600080fd5b50565b60008135905061320f816131e9565b92915050565b6000806040838503121561322c5761322b612fe9565b5b600061323a85828601613200565b925050602061324b8582860161314b565b9150509250929050565b60006020828403121561326b5761326a612fe9565b5b600061327984828501613200565b91505092915050565b61328b8161312a565b82525050565b60006020820190506132a66000830184613282565b92915050565b6000806000606084860312156132c5576132c4612fe9565b5b60006132d386828701613200565b93505060206132e486828701613200565b92505060406132f58682870161314b565b9150509250925092565b6000806040838503121561331657613315612fe9565b5b60006133248582860161314b565b92505060206133358582860161314b565b9150509250929050565b600060408201905061335460008301856131bf565b6133616020830184613282565b9392505050565b6000819050919050565b61337b81613368565b811461338657600080fd5b50565b60008135905061339881613372565b92915050565b600080604083850312156133b5576133b4612fe9565b5b60006133c385828601613389565b92505060206133d485828601613389565b9150509250929050565b6133e781613368565b82525050565b600060208201905061340260008301846133de565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61344a826130be565b810181811067ffffffffffffffff8211171561346957613468613412565b5b80604052505050565b600061347c612fdf565b90506134888282613441565b919050565b600067ffffffffffffffff8211156134a8576134a7613412565b5b6134b1826130be565b9050602081019050919050565b82818337600083830152505050565b60006134e06134db8461348d565b613472565b9050828152602081018484840111156134fc576134fb61340d565b5b6135078482856134be565b509392505050565b600082601f83011261352457613523613408565b5b81356135348482602086016134cd565b91505092915050565b60006020828403121561355357613552612fe9565b5b600082013567ffffffffffffffff81111561357157613570612fee565b5b61357d8482850161350f565b91505092915050565b600067ffffffffffffffff8211156135a1576135a0613412565b5b602082029050602081019050919050565b600080fd5b60006135ca6135c584613586565b613472565b905080838252602082019050602084028301858111156135ed576135ec6135b2565b5b835b8181101561361657806136028882613389565b8452602084019350506020810190506135ef565b5050509392505050565b600082601f83011261363557613634613408565b5b81356136458482602086016135b7565b91505092915050565b6000806040838503121561366557613664612fe9565b5b600083013567ffffffffffffffff81111561368357613682612fee565b5b61368f85828601613620565b92505060206136a085828601613389565b9150509250929050565b6136b381612fa9565b81146136be57600080fd5b50565b6000813590506136d0816136aa565b92915050565b600080604083850312156136ed576136ec612fe9565b5b60006136fb85828601613200565b925050602061370c858286016136c1565b9150509250929050565b6000806040838503121561372d5761372c612fe9565b5b600083013567ffffffffffffffff81111561374b5761374a612fee565b5b61375785828601613620565b92505060206137688582860161314b565b9150509250929050565b6000806040838503121561378957613788612fe9565b5b600061379785828601613200565b925050602083013567ffffffffffffffff8111156137b8576137b7612fee565b5b6137c485828601613620565b9150509250929050565b600067ffffffffffffffff8211156137e9576137e8613412565b5b602082029050602081019050919050565b600061380d613808846137ce565b613472565b905080838252602082019050602084028301858111156138305761382f6135b2565b5b835b8181101561385957806138458882613200565b845260208401935050602081019050613832565b5050509392505050565b600082601f83011261387857613877613408565b5b81356138888482602086016137fa565b91505092915050565b600080604083850312156138a8576138a7612fe9565b5b600083013567ffffffffffffffff8111156138c6576138c5612fee565b5b6138d285828601613863565b92505060206138e38582860161314b565b9150509250929050565b600067ffffffffffffffff82111561390857613907613412565b5b613911826130be565b9050602081019050919050565b600061393161392c846138ed565b613472565b90508281526020810184848401111561394d5761394c61340d565b5b6139588482856134be565b509392505050565b600082601f83011261397557613974613408565b5b813561398584826020860161391e565b91505092915050565b600080600080608085870312156139a8576139a7612fe9565b5b60006139b687828801613200565b94505060206139c787828801613200565b93505060406139d88782880161314b565b925050606085013567ffffffffffffffff8111156139f9576139f8612fee565b5b613a0587828801613960565b91505092959194509250565b60008060408385031215613a2857613a27612fe9565b5b6000613a3685828601613200565b9250506020613a4785828601613200565b9150509250929050565b600060208284031215613a6757613a66612fe9565b5b600082013567ffffffffffffffff811115613a8557613a84612fee565b5b613a9184828501613863565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ae157607f821691505b602082108103613af457613af3613a9a565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b56602183613083565b9150613b6182613afa565b604082019050919050565b60006020820190508181036000830152613b8581613b49565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613be8603e83613083565b9150613bf382613b8c565b604082019050919050565b60006020820190508181036000830152613c1781613bdb565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613c7a602e83613083565b9150613c8582613c1e565b604082019050919050565b60006020820190508181036000830152613ca981613c6d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cea8261312a565b9150613cf58361312a565b9250828202613d038161312a565b91508282048414831517613d1a57613d19613cb0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d5b8261312a565b9150613d668361312a565b925082613d7657613d75613d21565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613db7601f83613083565b9150613dc282613d81565b602082019050919050565b60006020820190508181036000830152613de681613daa565b9050919050565b600081905092915050565b50565b6000613e08600083613ded565b9150613e1382613df8565b600082019050919050565b6000613e2982613dfb565b9150819050919050565b6000613e3e8261312a565b9150613e498361312a565b9250828201905080821115613e6157613e60613cb0565b5b92915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b6000613e9d601683613083565b9150613ea882613e67565b602082019050919050565b60006020820190508181036000830152613ecc81613e90565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ef8565b613f3f8683613ef8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613f7c613f77613f728461312a565b613f57565b61312a565b9050919050565b6000819050919050565b613f9683613f61565b613faa613fa282613f83565b848454613f05565b825550505050565b600090565b613fbf613fb2565b613fca818484613f8d565b505050565b5b81811015613fee57613fe3600082613fb7565b600181019050613fd0565b5050565b601f8211156140335761400481613ed3565b61400d84613ee8565b8101602085101561401c578190505b61403061402885613ee8565b830182613fcf565b50505b505050565b600082821c905092915050565b600061405660001984600802614038565b1980831691505092915050565b600061406f8383614045565b9150826002028217905092915050565b61408882613078565b67ffffffffffffffff8111156140a1576140a0613412565b5b6140ab8254613ac9565b6140b6828285613ff2565b600060209050601f8311600181146140e957600084156140d7578287015190505b6140e18582614063565b865550614149565b601f1984166140f786613ed3565b60005b8281101561411f578489015182556001820191506020850194506020810190506140fa565b8683101561413c5784890151614138601f891682614045565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614187601883613083565b915061419282614151565b602082019050919050565b600060208201905081810360008301526141b68161417a565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614219602983613083565b9150614224826141bd565b604082019050919050565b600060208201905081810360008301526142488161420c565b9050919050565b60008160601b9050919050565b60006142678261424f565b9050919050565b60006142798261425c565b9050919050565b61429161428c826131ad565b61426e565b82525050565b60006142a38284614280565b60148201915081905092915050565b7f4e6f7420612070617274206f662045564c495354000000000000000000000000600082015250565b60006142e8601483613083565b91506142f3826142b2565b602082019050919050565b60006020820190508181036000830152614317816142db565b9050919050565b7f45564c495354206d696e74696e67206973206e6f7420656e61626c6564000000600082015250565b6000614354601d83613083565b915061435f8261431e565b602082019050919050565b6000602082019050818103600083015261438381614347565b9050919050565b7f496e636f727265637420616d6f756e742073656e740000000000000000000000600082015250565b60006143c0601583613083565b91506143cb8261438a565b602082019050919050565b600060208201905081810360008301526143ef816143b3565b9050919050565b7f45786365656473206d6178696d756d207075626c696320737570706c79000000600082015250565b600061442c601d83613083565b9150614437826143f6565b602082019050919050565b6000602082019050818103600083015261445b8161441f565b9050919050565b7f416c7265616479206d696e746564206d6178696d756d20455633204e46547300600082015250565b6000614498601f83613083565b91506144a382614462565b602082019050919050565b600060208201905081810360008301526144c78161448b565b9050919050565b60006144d98261312a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361450b5761450a613cb0565b5b600182019050919050565b7f4e6f7420612070617274206f662045564c495354204949000000000000000000600082015250565b600061454c601783613083565b915061455782614516565b602082019050919050565b6000602082019050818103600083015261457b8161453f565b9050919050565b7f46726565206d696e74696e67206973206e6f7420656e61626c65640000000000600082015250565b60006145b8601b83613083565b91506145c382614582565b602082019050919050565b600060208201905081810360008301526145e7816145ab565b9050919050565b7f416c7265616479206d696e74656420455633204e465400000000000000000000600082015250565b6000614624601683613083565b915061462f826145ee565b602082019050919050565b6000602082019050818103600083015261465381614617565b9050919050565b7f496e76616c6964206e756d626572206f66204e46547320746f2061697264726f60008201527f7000000000000000000000000000000000000000000000000000000000000000602082015250565b60006146b6602183613083565b91506146c18261465a565b604082019050919050565b600060208201905081810360008301526146e5816146a9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614777602f83613083565b91506147828261471b565b604082019050919050565b600060208201905081810360008301526147a68161476a565b9050919050565b600081905092915050565b60006147c382613078565b6147cd81856147ad565b93506147dd818560208601613094565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061481f6005836147ad565b915061482a826147e9565b600582019050919050565b600061484182856147b8565b915061484d82846147b8565b915061485882614812565b91508190509392505050565b7f5075626c6963206d696e74696e67206973206e6f7420656e61626c6564000000600082015250565b600061489a601d83613083565b91506148a582614864565b602082019050919050565b600060208201905081810360008301526148c98161488d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061492c602683613083565b9150614937826148d0565b604082019050919050565b6000602082019050818103600083015261495b8161491f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614998602083613083565b91506149a382614962565b602082019050919050565b600060208201905081810360008301526149c78161498b565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614a2a602583613083565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614abc602483613083565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b6000614afd8261312a565b9150614b088361312a565b9250828203905081811115614b2057614b1f613cb0565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614b5c601983613083565b9150614b6782614b26565b602082019050919050565b60006020820190508181036000830152614b8b81614b4f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614bee603283613083565b9150614bf982614b92565b604082019050919050565b60006020820190508181036000830152614c1d81614be1565b9050919050565b6000614c2f8261312a565b9150614c3a8361312a565b925082614c4a57614c49613d21565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614c7c82614c55565b614c868185614c60565b9350614c96818560208601613094565b614c9f816130be565b840191505092915050565b6000608082019050614cbf60008301876131bf565b614ccc60208301866131bf565b614cd96040830185613282565b8181036060830152614ceb8184614c71565b905095945050505050565b600081519050614d058161301f565b92915050565b600060208284031215614d2157614d20612fe9565b5b6000614d2f84828501614cf6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614d6e602083613083565b9150614d7982614d38565b602082019050919050565b60006020820190508181036000830152614d9d81614d61565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614dda601c83613083565b9150614de582614da4565b602082019050919050565b60006020820190508181036000830152614e0981614dcd565b905091905056fea26469706673582212206bba15dd9c90f2fa6ecf42d804f83ff587c13644088ee4da7c418289cf331fa064736f6c63430008110033f9b68e6b6640f58b6295bb45bd3898965ff732e57fa6e403d6a99a58823a6dbe926d0a2b5ad8f0b590e26c6de64f3de7ab4f21388ba12e5c904e795093b3c27a

Deployed Bytecode

0x6080604052600436106102ad5760003560e01c80636352211e11610175578063a886c377116100dc578063c87b56dd11610095578063ef56267e1161006f578063ef56267e14610a81578063efd0cbf914610abe578063f2fde38b14610ada578063f421764814610b03576102ad565b8063c87b56dd146109dc578063d547cfb714610a19578063e985e9c514610a44576102ad565b8063a886c377146108ce578063a9439ee1146108f9578063aeb1676814610922578063b6bae3631461094d578063b88d4fde14610976578063b8a20ed01461099f576102ad565b806395d89b411161012e57806395d89b41146107cb57806397554dd3146107f65780639b19251a14610821578063a22cb4651461085e578063a6d612f914610887578063a7346780146108a3576102ad565b80636352211e146106bb5780636a9d6763146106f857806370a0823114610735578063715018a6146107725780638da5cb5b146107895780638db32e3b146107b4576102ad565b80632a47f799116102195780633ccfd60b116101d25780633ccfd60b146105d357806342842e0e146105ea578063484b973c1461061357806355f804b31461063c5780635e84d72314610665578063611f3f1014610690576102ad565b80632a47f799146104d45780632a55205a146104ff5780632e4e0ade1461053d5780633290aa631461055457806332cb6b0c1461057d578063386bfc98146105a8576102ad565b80631015805b1161026b5780631015805b146103c257806317e7f295146103ff57806318160ddd1461042a578063184d69ab1461045557806323b872dd1461048057806324ffca76146104a9576102ad565b80621048f1146102b25780630116bc2d146102c957806301ffc9a7146102f457806306fdde0314610331578063081812fc1461035c578063095ea7b314610399575b600080fd5b3480156102be57600080fd5b506102c7610b2c565b005b3480156102d557600080fd5b506102de610b60565b6040516102eb9190612fc4565b60405180910390f35b34801561030057600080fd5b5061031b6004803603810190610316919061304b565b610b73565b6040516103289190612fc4565b60405180910390f35b34801561033d57600080fd5b50610346610c55565b6040516103539190613108565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190613160565b610ce7565b60405161039091906131ce565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613215565b610d2d565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613255565b610e44565b6040516103f69190613291565b60405180910390f35b34801561040b57600080fd5b50610414610e5c565b6040516104219190613291565b60405180910390f35b34801561043657600080fd5b5061043f610e67565b60405161044c9190613291565b60405180910390f35b34801561046157600080fd5b5061046a610e78565b6040516104779190612fc4565b60405180910390f35b34801561048c57600080fd5b506104a760048036038101906104a291906132ac565b610e8b565b005b3480156104b557600080fd5b506104be610eeb565b6040516104cb9190613291565b60405180910390f35b3480156104e057600080fd5b506104e9610ef0565b6040516104f69190613291565b60405180910390f35b34801561050b57600080fd5b50610526600480360381019061052191906132ff565b610ef6565b60405161053492919061333f565b60405180910390f35b34801561054957600080fd5b50610552610f25565b005b34801561056057600080fd5b5061057b6004803603810190610576919061339e565b610f59565b005b34801561058957600080fd5b50610592610f73565b60405161059f9190613291565b60405180910390f35b3480156105b457600080fd5b506105bd610f79565b6040516105ca91906133ed565b60405180910390f35b3480156105df57600080fd5b506105e8610f7f565b005b3480156105f657600080fd5b50610611600480360381019061060c91906132ac565b61105c565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613215565b61107c565b005b34801561064857600080fd5b50610663600480360381019061065e919061353d565b611116565b005b34801561067157600080fd5b5061067a611131565b6040516106879190613291565b60405180910390f35b34801561069c57600080fd5b506106a5611137565b6040516106b29190613291565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190613160565b611142565b6040516106ef91906131ce565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a919061364e565b6111f3565b60405161072c9190612fc4565b60405180910390f35b34801561074157600080fd5b5061075c60048036038101906107579190613255565b61120a565b6040516107699190613291565b60405180910390f35b34801561077e57600080fd5b506107876112c1565b005b34801561079557600080fd5b5061079e6112d5565b6040516107ab91906131ce565b60405180910390f35b3480156107c057600080fd5b506107c96112ff565b005b3480156107d757600080fd5b506107e0611333565b6040516107ed9190613108565b60405180910390f35b34801561080257600080fd5b5061080b6113c5565b6040516108189190612fc4565b60405180910390f35b34801561082d57600080fd5b5061084860048036038101906108439190613255565b6113d8565b6040516108559190612fc4565b60405180910390f35b34801561086a57600080fd5b50610885600480360381019061088091906136d6565b6113f8565b005b6108a1600480360381019061089c9190613716565b61140e565b005b3480156108af57600080fd5b506108b861170b565b6040516108c59190613291565b60405180910390f35b3480156108da57600080fd5b506108e3611710565b6040516108f091906133ed565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b9190613772565b611716565b005b34801561092e57600080fd5b50610937611996565b6040516109449190613291565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f9190613891565b61199c565b005b34801561098257600080fd5b5061099d6004803603810190610998919061398e565b611aea565b005b3480156109ab57600080fd5b506109c660048036038101906109c1919061364e565b611b4c565b6040516109d39190612fc4565b60405180910390f35b3480156109e857600080fd5b50610a0360048036038101906109fe9190613160565b611b63565b604051610a109190613108565b60405180910390f35b348015610a2557600080fd5b50610a2e611c10565b604051610a3b9190613108565b60405180910390f35b348015610a5057600080fd5b50610a6b6004803603810190610a669190613a11565b611c9e565b604051610a789190612fc4565b60405180910390f35b348015610a8d57600080fd5b50610aa86004803603810190610aa39190613255565b611d32565b604051610ab59190613291565b60405180910390f35b610ad86004803603810190610ad39190613160565b611d4a565b005b348015610ae657600080fd5b50610b016004803603810190610afc9190613255565b611fd5565b005b348015610b0f57600080fd5b50610b2a6004803603810190610b259190613a51565b612058565b005b610b346120f5565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b601160029054906101000a900460ff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c3e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c4e5750610c4d82612173565b5b9050919050565b606060008054610c6490613ac9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9090613ac9565b8015610cdd5780601f10610cb257610100808354040283529160200191610cdd565b820191906000526020600020905b815481529060010190602001808311610cc057829003601f168201915b5050505050905090565b6000610cf2826121dd565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d3882611142565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610da8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9f90613b6c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dc7612228565b73ffffffffffffffffffffffffffffffffffffffff161480610df65750610df581610df0612228565b611c9e565b5b610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c90613bfe565b60405180910390fd5b610e3f8383612230565b505050565b600e6020528060005260406000206000915090505481565b662386f26fc1000081565b6000610e7360106122e9565b905090565b601160009054906101000a900460ff1681565b610e9c610e96612228565b826122f7565b610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290613c90565b60405180910390fd5b610ee683838361238c565b505050565b600181565b61167681565b600080610f016112d5565b6064600a85610f109190613cdf565b610f1a9190613d50565b915091509250929050565b610f2d6120f5565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b610f616120f5565b81600881905550806009819055505050565b61177081565b60085481565b610f876120f5565b600260075403610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390613dcd565b60405180910390fd5b60026007819055506000610fde6112d5565b73ffffffffffffffffffffffffffffffffffffffff164760405161100190613e1e565b60006040518083038185875af1925050503d806000811461103e576040519150601f19603f3d011682016040523d82523d6000602084013e611043565b606091505b505090508061105157600080fd5b506001600781905550565b61107783838360405180602001604052806000815250611aea565b505050565b6110846120f5565b61177081600f546110959190613e33565b11156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90613eb3565b60405180910390fd5b60006110e260106122e9565b90506110ee60106125f2565b6110f88382612608565b81600f600082825461110a9190613e33565b92505081905550505050565b61111e6120f5565b80600a908161112d919061407f565b5050565b600f5481565b66470de4df82000081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e19061419d565b60405180910390fd5b80915050919050565b60006112028360095484612626565b905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361127a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112719061422f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c96120f5565b6112d3600061263d565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113076120f5565b601160029054906101000a900460ff1615601160026101000a81548160ff021916908315150217905550565b60606001805461134290613ac9565b80601f016020809104026020016040519081016040528092919081815260200182805461136e90613ac9565b80156113bb5780601f10611390576101008083540402835291602001916113bb565b820191906000526020600020905b81548152906001019060200180831161139e57829003601f168201915b5050505050905090565b601160019054906101000a900460ff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b61140a611403612228565b8383612703565b5050565b600260075403611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90613dcd565b60405180910390fd5b600260078190555061148b82336040516020016114709190614297565b60405160208183030381529060405280519060200120611b4c565b6114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c1906142fe565b60405180910390fd5b601160009054906101000a900460ff16611519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115109061436a565b60405180910390fd5b3481662386f26fc1000061152d9190613cdf565b1461156d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611564906143d6565b60405180910390fd5b61167681600f5461157e9190613e33565b11156115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b690614442565b60405180910390fd5b600b5481600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461160d9190613e33565b111561164e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611645906144ae565b60405180910390fd5b60005b8181101561168f57600061166560106122e9565b905061167160106125f2565b61167b3382612608565b508080611687906144ce565b915050611651565b5080600f60008282546116a29190613e33565b9250508190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116f89190613e33565b9250508190555060016007819055505050565b600581565b60095481565b60026007540361175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290613dcd565b60405180910390fd5b600260078190555061179381836040516020016117789190614297565b604051602081830303815290604052805190602001206111f3565b6117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990614562565b60405180910390fd5b601160019054906101000a900460ff16611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906145ce565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146118a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189a9061463a565b60405180910390fd5b6116766001600f546118b59190613e33565b11156118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90614442565b60405180910390fd5b600061190260106122e9565b905061190e60106125f2565b6119183382612608565b6001600f600082825461192b9190613e33565b925050819055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119829190613e33565b925050819055505060016007819055505050565b600b5481565b6119a46120f5565b60018114806119b35750600281145b6119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e9906146cc565b60405180910390fd5b611676818351611a029190613cdf565b600f54611a0f9190613e33565b1115611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790614442565b60405180910390fd5b60005b8251811015611ae55760005b82811015611ad1576000611a7360106122e9565b9050611a7f60106125f2565b611aa3858481518110611a9557611a946146ec565b5b602002602001015182612608565b6001600f6000828254611ab69190613e33565b92505081905550508080611ac9906144ce565b915050611a5f565b508080611add906144ce565b915050611a53565b505050565b611afb611af5612228565b836122f7565b611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190613c90565b60405180910390fd5b611b468484848461286f565b50505050565b6000611b5b8360085484612626565b905092915050565b6060611b6e826128cb565b611bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba49061478d565b60405180910390fd5b6000611bb883612937565b90506000611bc4612a97565b90506000815111611be45760405180602001604052806000815250611c07565b8082604051602001611bf7929190614835565b6040516020818303038152906040525b92505050919050565b600a8054611c1d90613ac9565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4990613ac9565b8015611c965780601f10611c6b57610100808354040283529160200191611c96565b820191906000526020600020905b815481529060010190602001808311611c7957829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d6020528060005260406000206000915090505481565b600260075403611d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8690613dcd565b60405180910390fd5b6002600781905550601160029054906101000a900460ff16611de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddd906148b0565b60405180910390fd5b348166470de4df820000611dfa9190613cdf565b14611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e31906143d6565b60405180910390fd5b61167681600f54611e4b9190613e33565b1115611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8390613eb3565b60405180910390fd5b600581600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ed99190613e33565b10611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f10906144ae565b60405180910390fd5b60005b81811015611f5a576000611f3060106122e9565b9050611f3c60106125f2565b611f463382612608565b508080611f52906144ce565b915050611f1c565b5080600f6000828254611f6d9190613e33565b9250508190555080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fc39190613e33565b92505081905550600160078190555050565b611fdd6120f5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361204c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204390614942565b60405180910390fd5b6120558161263d565b50565b6120606120f5565b60005b81518110156120f1576001600c6000848481518110612085576120846146ec565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806120e9906144ce565b915050612063565b5050565b6120fd612228565b73ffffffffffffffffffffffffffffffffffffffff1661211b6112d5565b73ffffffffffffffffffffffffffffffffffffffff1614612171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612168906149ae565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121e6816128cb565b612225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221c9061419d565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122a383611142565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60008061230383611142565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061234557506123448185611c9e565b5b8061238357508373ffffffffffffffffffffffffffffffffffffffff1661236b84610ce7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123ac82611142565b73ffffffffffffffffffffffffffffffffffffffff1614612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990614a40565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246890614ad2565b60405180910390fd5b61247c838383612b29565b612487600082612230565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124d79190614af2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252e9190613e33565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125ed838383612b2e565b505050565b6001816000016000828254019250508190555050565b612622828260405180602001604052806000815250612b33565b5050565b6000826126338584612b8e565b1490509392505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890614b72565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128629190612fc4565b60405180910390a3505050565b61287a84848461238c565b61288684848484612be4565b6128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc90614c04565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000820361297e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a92565b600082905060005b600082146129b0578080612999906144ce565b915050600a826129a99190613d50565b9150612986565b60008167ffffffffffffffff8111156129cc576129cb613412565b5b6040519080825280601f01601f1916602001820160405280156129fe5781602001600182028036833780820191505090505b5090505b60008514612a8b57600182612a179190614af2565b9150600a85612a269190614c24565b6030612a329190613e33565b60f81b818381518110612a4857612a476146ec565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a849190613d50565b9450612a02565b8093505050505b919050565b6060600a8054612aa690613ac9565b80601f0160208091040260200160405190810160405280929190818152602001828054612ad290613ac9565b8015612b1f5780601f10612af457610100808354040283529160200191612b1f565b820191906000526020600020905b815481529060010190602001808311612b0257829003601f168201915b5050505050905090565b505050565b505050565b612b3d8383612d6b565b612b4a6000848484612be4565b612b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8090614c04565b60405180910390fd5b505050565b60008082905060005b8451811015612bd957612bc482868381518110612bb757612bb66146ec565b5b6020026020010151612f44565b91508080612bd1906144ce565b915050612b97565b508091505092915050565b6000612c058473ffffffffffffffffffffffffffffffffffffffff16612f6f565b15612d5e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c2e612228565b8786866040518563ffffffff1660e01b8152600401612c509493929190614caa565b6020604051808303816000875af1925050508015612c8c57506040513d601f19601f82011682018060405250810190612c899190614d0b565b60015b612d0e573d8060008114612cbc576040519150601f19603f3d011682016040523d82523d6000602084013e612cc1565b606091505b506000815103612d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfd90614c04565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d63565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd190614d84565b60405180910390fd5b612de3816128cb565b15612e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1a90614df0565b60405180910390fd5b612e2f60008383612b29565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e7f9190613e33565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f4060008383612b2e565b5050565b6000818310612f5c57612f578284612f92565b612f67565b612f668383612f92565b5b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082600052816020526040600020905092915050565b60008115159050919050565b612fbe81612fa9565b82525050565b6000602082019050612fd96000830184612fb5565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61302881612ff3565b811461303357600080fd5b50565b6000813590506130458161301f565b92915050565b60006020828403121561306157613060612fe9565b5b600061306f84828501613036565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130b2578082015181840152602081019050613097565b60008484015250505050565b6000601f19601f8301169050919050565b60006130da82613078565b6130e48185613083565b93506130f4818560208601613094565b6130fd816130be565b840191505092915050565b6000602082019050818103600083015261312281846130cf565b905092915050565b6000819050919050565b61313d8161312a565b811461314857600080fd5b50565b60008135905061315a81613134565b92915050565b60006020828403121561317657613175612fe9565b5b60006131848482850161314b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131b88261318d565b9050919050565b6131c8816131ad565b82525050565b60006020820190506131e360008301846131bf565b92915050565b6131f2816131ad565b81146131fd57600080fd5b50565b60008135905061320f816131e9565b92915050565b6000806040838503121561322c5761322b612fe9565b5b600061323a85828601613200565b925050602061324b8582860161314b565b9150509250929050565b60006020828403121561326b5761326a612fe9565b5b600061327984828501613200565b91505092915050565b61328b8161312a565b82525050565b60006020820190506132a66000830184613282565b92915050565b6000806000606084860312156132c5576132c4612fe9565b5b60006132d386828701613200565b93505060206132e486828701613200565b92505060406132f58682870161314b565b9150509250925092565b6000806040838503121561331657613315612fe9565b5b60006133248582860161314b565b92505060206133358582860161314b565b9150509250929050565b600060408201905061335460008301856131bf565b6133616020830184613282565b9392505050565b6000819050919050565b61337b81613368565b811461338657600080fd5b50565b60008135905061339881613372565b92915050565b600080604083850312156133b5576133b4612fe9565b5b60006133c385828601613389565b92505060206133d485828601613389565b9150509250929050565b6133e781613368565b82525050565b600060208201905061340260008301846133de565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61344a826130be565b810181811067ffffffffffffffff8211171561346957613468613412565b5b80604052505050565b600061347c612fdf565b90506134888282613441565b919050565b600067ffffffffffffffff8211156134a8576134a7613412565b5b6134b1826130be565b9050602081019050919050565b82818337600083830152505050565b60006134e06134db8461348d565b613472565b9050828152602081018484840111156134fc576134fb61340d565b5b6135078482856134be565b509392505050565b600082601f83011261352457613523613408565b5b81356135348482602086016134cd565b91505092915050565b60006020828403121561355357613552612fe9565b5b600082013567ffffffffffffffff81111561357157613570612fee565b5b61357d8482850161350f565b91505092915050565b600067ffffffffffffffff8211156135a1576135a0613412565b5b602082029050602081019050919050565b600080fd5b60006135ca6135c584613586565b613472565b905080838252602082019050602084028301858111156135ed576135ec6135b2565b5b835b8181101561361657806136028882613389565b8452602084019350506020810190506135ef565b5050509392505050565b600082601f83011261363557613634613408565b5b81356136458482602086016135b7565b91505092915050565b6000806040838503121561366557613664612fe9565b5b600083013567ffffffffffffffff81111561368357613682612fee565b5b61368f85828601613620565b92505060206136a085828601613389565b9150509250929050565b6136b381612fa9565b81146136be57600080fd5b50565b6000813590506136d0816136aa565b92915050565b600080604083850312156136ed576136ec612fe9565b5b60006136fb85828601613200565b925050602061370c858286016136c1565b9150509250929050565b6000806040838503121561372d5761372c612fe9565b5b600083013567ffffffffffffffff81111561374b5761374a612fee565b5b61375785828601613620565b92505060206137688582860161314b565b9150509250929050565b6000806040838503121561378957613788612fe9565b5b600061379785828601613200565b925050602083013567ffffffffffffffff8111156137b8576137b7612fee565b5b6137c485828601613620565b9150509250929050565b600067ffffffffffffffff8211156137e9576137e8613412565b5b602082029050602081019050919050565b600061380d613808846137ce565b613472565b905080838252602082019050602084028301858111156138305761382f6135b2565b5b835b8181101561385957806138458882613200565b845260208401935050602081019050613832565b5050509392505050565b600082601f83011261387857613877613408565b5b81356138888482602086016137fa565b91505092915050565b600080604083850312156138a8576138a7612fe9565b5b600083013567ffffffffffffffff8111156138c6576138c5612fee565b5b6138d285828601613863565b92505060206138e38582860161314b565b9150509250929050565b600067ffffffffffffffff82111561390857613907613412565b5b613911826130be565b9050602081019050919050565b600061393161392c846138ed565b613472565b90508281526020810184848401111561394d5761394c61340d565b5b6139588482856134be565b509392505050565b600082601f83011261397557613974613408565b5b813561398584826020860161391e565b91505092915050565b600080600080608085870312156139a8576139a7612fe9565b5b60006139b687828801613200565b94505060206139c787828801613200565b93505060406139d88782880161314b565b925050606085013567ffffffffffffffff8111156139f9576139f8612fee565b5b613a0587828801613960565b91505092959194509250565b60008060408385031215613a2857613a27612fe9565b5b6000613a3685828601613200565b9250506020613a4785828601613200565b9150509250929050565b600060208284031215613a6757613a66612fe9565b5b600082013567ffffffffffffffff811115613a8557613a84612fee565b5b613a9184828501613863565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ae157607f821691505b602082108103613af457613af3613a9a565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b56602183613083565b9150613b6182613afa565b604082019050919050565b60006020820190508181036000830152613b8581613b49565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000613be8603e83613083565b9150613bf382613b8c565b604082019050919050565b60006020820190508181036000830152613c1781613bdb565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613c7a602e83613083565b9150613c8582613c1e565b604082019050919050565b60006020820190508181036000830152613ca981613c6d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613cea8261312a565b9150613cf58361312a565b9250828202613d038161312a565b91508282048414831517613d1a57613d19613cb0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d5b8261312a565b9150613d668361312a565b925082613d7657613d75613d21565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613db7601f83613083565b9150613dc282613d81565b602082019050919050565b60006020820190508181036000830152613de681613daa565b9050919050565b600081905092915050565b50565b6000613e08600083613ded565b9150613e1382613df8565b600082019050919050565b6000613e2982613dfb565b9150819050919050565b6000613e3e8261312a565b9150613e498361312a565b9250828201905080821115613e6157613e60613cb0565b5b92915050565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b6000613e9d601683613083565b9150613ea882613e67565b602082019050919050565b60006020820190508181036000830152613ecc81613e90565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613f357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ef8565b613f3f8683613ef8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613f7c613f77613f728461312a565b613f57565b61312a565b9050919050565b6000819050919050565b613f9683613f61565b613faa613fa282613f83565b848454613f05565b825550505050565b600090565b613fbf613fb2565b613fca818484613f8d565b505050565b5b81811015613fee57613fe3600082613fb7565b600181019050613fd0565b5050565b601f8211156140335761400481613ed3565b61400d84613ee8565b8101602085101561401c578190505b61403061402885613ee8565b830182613fcf565b50505b505050565b600082821c905092915050565b600061405660001984600802614038565b1980831691505092915050565b600061406f8383614045565b9150826002028217905092915050565b61408882613078565b67ffffffffffffffff8111156140a1576140a0613412565b5b6140ab8254613ac9565b6140b6828285613ff2565b600060209050601f8311600181146140e957600084156140d7578287015190505b6140e18582614063565b865550614149565b601f1984166140f786613ed3565b60005b8281101561411f578489015182556001820191506020850194506020810190506140fa565b8683101561413c5784890151614138601f891682614045565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000614187601883613083565b915061419282614151565b602082019050919050565b600060208201905081810360008301526141b68161417a565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000614219602983613083565b9150614224826141bd565b604082019050919050565b600060208201905081810360008301526142488161420c565b9050919050565b60008160601b9050919050565b60006142678261424f565b9050919050565b60006142798261425c565b9050919050565b61429161428c826131ad565b61426e565b82525050565b60006142a38284614280565b60148201915081905092915050565b7f4e6f7420612070617274206f662045564c495354000000000000000000000000600082015250565b60006142e8601483613083565b91506142f3826142b2565b602082019050919050565b60006020820190508181036000830152614317816142db565b9050919050565b7f45564c495354206d696e74696e67206973206e6f7420656e61626c6564000000600082015250565b6000614354601d83613083565b915061435f8261431e565b602082019050919050565b6000602082019050818103600083015261438381614347565b9050919050565b7f496e636f727265637420616d6f756e742073656e740000000000000000000000600082015250565b60006143c0601583613083565b91506143cb8261438a565b602082019050919050565b600060208201905081810360008301526143ef816143b3565b9050919050565b7f45786365656473206d6178696d756d207075626c696320737570706c79000000600082015250565b600061442c601d83613083565b9150614437826143f6565b602082019050919050565b6000602082019050818103600083015261445b8161441f565b9050919050565b7f416c7265616479206d696e746564206d6178696d756d20455633204e46547300600082015250565b6000614498601f83613083565b91506144a382614462565b602082019050919050565b600060208201905081810360008301526144c78161448b565b9050919050565b60006144d98261312a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361450b5761450a613cb0565b5b600182019050919050565b7f4e6f7420612070617274206f662045564c495354204949000000000000000000600082015250565b600061454c601783613083565b915061455782614516565b602082019050919050565b6000602082019050818103600083015261457b8161453f565b9050919050565b7f46726565206d696e74696e67206973206e6f7420656e61626c65640000000000600082015250565b60006145b8601b83613083565b91506145c382614582565b602082019050919050565b600060208201905081810360008301526145e7816145ab565b9050919050565b7f416c7265616479206d696e74656420455633204e465400000000000000000000600082015250565b6000614624601683613083565b915061462f826145ee565b602082019050919050565b6000602082019050818103600083015261465381614617565b9050919050565b7f496e76616c6964206e756d626572206f66204e46547320746f2061697264726f60008201527f7000000000000000000000000000000000000000000000000000000000000000602082015250565b60006146b6602183613083565b91506146c18261465a565b604082019050919050565b600060208201905081810360008301526146e5816146a9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614777602f83613083565b91506147828261471b565b604082019050919050565b600060208201905081810360008301526147a68161476a565b9050919050565b600081905092915050565b60006147c382613078565b6147cd81856147ad565b93506147dd818560208601613094565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061481f6005836147ad565b915061482a826147e9565b600582019050919050565b600061484182856147b8565b915061484d82846147b8565b915061485882614812565b91508190509392505050565b7f5075626c6963206d696e74696e67206973206e6f7420656e61626c6564000000600082015250565b600061489a601d83613083565b91506148a582614864565b602082019050919050565b600060208201905081810360008301526148c98161488d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061492c602683613083565b9150614937826148d0565b604082019050919050565b6000602082019050818103600083015261495b8161491f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614998602083613083565b91506149a382614962565b602082019050919050565b600060208201905081810360008301526149c78161498b565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614a2a602583613083565b9150614a35826149ce565b604082019050919050565b60006020820190508181036000830152614a5981614a1d565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614abc602483613083565b9150614ac782614a60565b604082019050919050565b60006020820190508181036000830152614aeb81614aaf565b9050919050565b6000614afd8261312a565b9150614b088361312a565b9250828203905081811115614b2057614b1f613cb0565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614b5c601983613083565b9150614b6782614b26565b602082019050919050565b60006020820190508181036000830152614b8b81614b4f565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614bee603283613083565b9150614bf982614b92565b604082019050919050565b60006020820190508181036000830152614c1d81614be1565b9050919050565b6000614c2f8261312a565b9150614c3a8361312a565b925082614c4a57614c49613d21565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614c7c82614c55565b614c868185614c60565b9350614c96818560208601613094565b614c9f816130be565b840191505092915050565b6000608082019050614cbf60008301876131bf565b614ccc60208301866131bf565b614cd96040830185613282565b8181036060830152614ceb8184614c71565b905095945050505050565b600081519050614d058161301f565b92915050565b600060208284031215614d2157614d20612fe9565b5b6000614d2f84828501614cf6565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614d6e602083613083565b9150614d7982614d38565b602082019050919050565b60006020820190508181036000830152614d9d81614d61565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614dda601c83613083565b9150614de582614da4565b602082019050919050565b60006020820190508181036000830152614e0981614dcd565b905091905056fea26469706673582212206bba15dd9c90f2fa6ecf42d804f83ff587c13644088ee4da7c418289cf331fa064736f6c63430008110033

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

f9b68e6b6640f58b6295bb45bd3898965ff732e57fa6e403d6a99a58823a6dbe926d0a2b5ad8f0b590e26c6de64f3de7ab4f21388ba12e5c904e795093b3c27a

-----Decoded View---------------
Arg [0] : _whitelistRoot (bytes32): 0xf9b68e6b6640f58b6295bb45bd3898965ff732e57fa6e403d6a99a58823a6dbe
Arg [1] : _freeMintRoot (bytes32): 0x926d0a2b5ad8f0b590e26c6de64f3de7ab4f21388ba12e5c904e795093b3c27a

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : f9b68e6b6640f58b6295bb45bd3898965ff732e57fa6e403d6a99a58823a6dbe
Arg [1] : 926d0a2b5ad8f0b590e26c6de64f3de7ab4f21388ba12e5c904e795093b3c27a


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.