ETH Price: $3,487.48 (+2.25%)
Gas: 9 Gwei

Token

Voyager Pass (VOP)
 

Overview

Max Total Supply

8,544 VOP

Holders

8,283

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
themoonbaboon.eth
Balance
1 VOP
0x4acba0876cb0d9dd8992abc743333e686b4ef71a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
VoyagerPass

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : VoyagerPass.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.4;

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";


library MintUtil {
    using SafeMath for uint256;
    using ECDSA for bytes32;
    using Strings for uint256;

    function getDiscountedPrice(uint _startTime, uint256 _startPrice, uint256 _discountRate, uint256 _endPrice, 
    uint256 _duration) public view returns (uint256) {
        uint256 timeElapsed = block.timestamp.sub(_startTime);
        if(timeElapsed >= _duration){
            return _endPrice;
        }
        uint256 discount = timeElapsed.mul(_discountRate);
        uint256 discountedPrice = _startPrice.sub(discount);
        return discountedPrice.div(100000000000000).mul(100000000000000);
    }

    function inWhitelist(bytes32 _leaf, bytes32 _merkelRoot, bytes32[] calldata _merkleProof) public pure returns (bool){
        return MerkleProof.verify(_merkleProof, _merkelRoot, _leaf);
    }

    function canMint(uint _whitelistIndex, bool _voyagerCaptainMintActive, 
    bool _legacyMintActive, bool _privateMintActive, bool _publicSaleActive, 
    bool _addressMinted) public pure returns (bool, string memory) {

        if (!((_whitelistIndex == 0 && _voyagerCaptainMintActive) ||
        (_whitelistIndex == 1 && _legacyMintActive) ||
        (_whitelistIndex == 2 && _privateMintActive) || 
        (_whitelistIndex == 100 && _publicSaleActive))){
            return (false, "Your address is not yet qualified to mint, please read the FAQ and check back later.");
        }

        if (_addressMinted) {
            return (false, "You can only mint one per wallet");
        }

        return (true, "");
    }

    function canMint2(uint _whitelistIndex, uint256 _voyagerCaptainMintedAmount, uint256 _voyagerCaptainMintLimit, uint256 _legacyMintedAmount, uint256 _legacyMintLimit, uint256 _privateMintedAmount, 
    uint256 _privateMintLimit, uint256 _publicSaleMintedAmount, uint256 _publicSaleMintLimit) public pure returns (bool, string memory){
        if(_whitelistIndex == 0 && _voyagerCaptainMintedAmount.add(1) > _voyagerCaptainMintLimit){
            return(false,  "Can't mint more than voyager captain limit");
        } else if(_whitelistIndex == 1 && _legacyMintedAmount.add(1) > _legacyMintLimit){
            return(false,   "Can't mint more than legacy mint limit");
        } else if(_whitelistIndex == 2 && _privateMintedAmount.add(1) > _privateMintLimit){
            return(false, "Can't mint more than private mint limit");
        } else if(_whitelistIndex == 100 && _publicSaleMintedAmount.add(1) > _publicSaleMintLimit){
            return(false, "Can't mint more than public sale limit");
        }
        return (true, "");

    }

    function getTokenURI(uint256 _tokenId, bool _reveal, string memory _blindURI, string memory _baseURI) public pure returns (string memory) {
        if (!_reveal) {
            return string(abi.encodePacked(_blindURI, _tokenId.toString()));
        } else {
            return string(abi.encodePacked(_baseURI, _tokenId.toString()));
        }
    }
}


contract VoyagerPass is ERC721("Voyager Pass", "VOP"), ERC721Enumerable, Ownable, ReentrancyGuard {
    using SafeMath for uint256;

    string private baseURI;
    string private blindURI;
    uint256 private constant TOTAL_NFT = 10000;
    // initial price for the auction
    uint256 public mintPrice = 1 ether;
    uint256 public endingPrice = 0.15 ether;
    uint256 public privatePrice = 0.1 ether;
    uint256 public auctionDuration = 5400 seconds;
    // 1.5 hours = 5400 seconds, so price decrease (1 - 0.1) * 10**18 / 5400 = 166_666_666_666_666 wei
    uint256 public discountRate = 166_666_666_666_666 wei;

    bool public reveal;

    bool public voyagerCaptainMintActive;
    bool public legacyMintActive;
    bool public privateMintActive;
    bool public publicSaleActive;
    bool public dutchAuctionActive;

    // save all three roots
    bytes32[3] public whitelistInfo;

    mapping (address => bool) public addressMinted;
    mapping (uint256 => bool) public isPaid;

    uint256 public voyagerCaptainMintLimit = 500;
    uint256 public legacyMintLimit = 1200;
    uint256 public privateMintLimit = 8300;
    uint256 public publicSaleMintLimit = 0;
    uint256 public voyagerCaptainMintedAmount;
    uint256 public legacyMintedAmount;
    uint256 public privateMintedAmount;
    uint256 public publicSaleMintedAmount;
    uint256 public dutchAuctionStartAt;

    function revealNow() external onlyOwner {
        reveal = true;
    }

    function setMintActive(bool _isActive, uint mintTypeIndex) external onlyOwner {
        if (mintTypeIndex == 0)
            voyagerCaptainMintActive = _isActive;
        else if (mintTypeIndex == 1)
            legacyMintActive = _isActive;
        else if (mintTypeIndex == 2)
            privateMintActive = _isActive;
        else if( mintTypeIndex == 3)
            publicSaleActive = _isActive;
    }

    function setDutchAuctionActive(bool _dutchAuctionActive) external onlyOwner {
        dutchAuctionActive = _dutchAuctionActive;
        dutchAuctionStartAt = block.timestamp;
    }

    function setPrivatePrice(uint256 _privatePrice) external onlyOwner {
        privatePrice = _privatePrice;
    }

    function setDutchAuctionInfo(uint256 _startPrice, uint256 _endPrice, uint256 _duration) external onlyOwner {
        mintPrice = _startPrice;
        endingPrice = _endPrice;
        auctionDuration = _duration;
        discountRate = (mintPrice.sub(endingPrice)).div(auctionDuration);
    }

    function setMintLimit(uint256 _voyagerCaptainMintLimit, uint256 _legacyMintLimit, uint256 _privateMintLimit) external onlyOwner {
        voyagerCaptainMintLimit = _voyagerCaptainMintLimit;
        legacyMintLimit = _legacyMintLimit;
        privateMintLimit = _privateMintLimit;
        publicSaleMintLimit = TOTAL_NFT.sub(voyagerCaptainMintLimit.add(legacyMintLimit).add(privateMintLimit)); 
    }

    function setURIs(string memory _blindURI, string memory _URI) external onlyOwner {
        blindURI = _blindURI;
        baseURI = _URI;
    }

    function setRoot(bytes32 _root, uint _whitelistIndex) external onlyOwner {
        whitelistInfo[_whitelistIndex] = _root;
    }

    function airdrop(address _target, uint _whitelistIndex) external onlyOwner {

        require(totalSupply().add(1) <= TOTAL_NFT, "Can't mint more than 10000 NFTs");

        addressMinted[_target] = true;

        uint256 tokenId = totalSupply() + 1;
        updateMintMaps(tokenId, _whitelistIndex);
        _safeMint(_target,tokenId);
    }

    function canMint(uint _whitelistIndex, address _address) public view returns (bool, string memory) {
        // check if user is authorized to mint / mint is active / user has already minted
        require(totalSupply().add(1) <= TOTAL_NFT, "Can't mint more than 10000 NFTs");
        return MintUtil.canMint(_whitelistIndex, voyagerCaptainMintActive, legacyMintActive, privateMintActive, publicSaleActive, 
        addressMinted[_address]);
    }

    function canMint2(uint _whitelistIndex) public view returns (bool, string memory) {
        // check if minted amount is greater than limit
        return MintUtil.canMint2(_whitelistIndex, voyagerCaptainMintedAmount, voyagerCaptainMintLimit, legacyMintedAmount,
         legacyMintLimit, privateMintedAmount, privateMintLimit,publicSaleMintedAmount, publicSaleMintLimit);
    }


    function getMintPriceByUser(uint _whitelistIndex) public view returns (uint256) {
        if(_whitelistIndex <= 1){
            return 0;
        }else if(_whitelistIndex == 2){
            return privatePrice;
        }else if(dutchAuctionActive){
            return MintUtil.getDiscountedPrice(dutchAuctionStartAt, mintPrice, discountRate, endingPrice, auctionDuration);
        }else{
            return endingPrice;
        }
    }

    function withdraw() public onlyOwner {
        payable(0xfA61b6E35613f014Bd4387898790E89572f63B57).transfer(address(this).balance);
    }

    function updateMintMaps(uint256 _tokenId, uint _whitelistIndex) private {
        // update minted amount for different tiers and the isPaid map
        if(_whitelistIndex == 0){
            voyagerCaptainMintedAmount = voyagerCaptainMintedAmount.add(1);
            isPaid[_tokenId] = false;
        }else if(_whitelistIndex == 1){
            legacyMintedAmount = legacyMintedAmount.add(1);
            isPaid[_tokenId] = false;
        }else if(_whitelistIndex == 2){
            privateMintedAmount = privateMintedAmount.add(1);
            isPaid[_tokenId] = true;
        }else{
            publicSaleMintedAmount = publicSaleMintedAmount.add(1);
            isPaid[_tokenId] = true;
        }
    }

    function getWhitelistIndex(bytes32[] calldata _merkleProof, bytes32 leaf) internal view returns(uint) {
        uint whitelistIndex = 100;
        if(MerkleProof.verify(_merkleProof, whitelistInfo[0], leaf)){
            whitelistIndex = 0;
        } else if(MerkleProof.verify(_merkleProof, whitelistInfo[1], leaf)){
            whitelistIndex = 1;
        } else if(MerkleProof.verify(_merkleProof, whitelistInfo[2], leaf)){
            whitelistIndex = 2;
        }
        return whitelistIndex;
    }

    function mintNFT(bytes32[] calldata _merkleProof) payable external nonReentrant{
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        uint whitelistIndex = getWhitelistIndex(_merkleProof, leaf);
        // apply 2 checks to make sure the mint request is valid
        (bool success, string memory reason) = canMint(whitelistIndex, msg.sender);
        (bool success2, string memory reason2) = canMint2(whitelistIndex);
        require(success, reason);
        require(success2, reason2);

        uint256 currentPrice = getMintPriceByUser(whitelistIndex);
        require(currentPrice <= msg.value, "Insufficient payable value");

        addressMinted[msg.sender] = true;

        uint256 tokenId = totalSupply() + 1;
        updateMintMaps(tokenId, whitelistIndex);
        _safeMint(msg.sender, tokenId);
        if(dutchAuctionActive){
            uint256 refund = msg.value.sub(currentPrice);
            if (refund > 0) {
                payable(msg.sender).transfer(refund);
            }
        }
    }

    function isTokenPaid(uint256 _tokenId) public view returns (bool) {
        return isPaid[_tokenId];
    }
    
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "URI query for nonexistent token");
        return MintUtil.getTokenURI(_tokenId, reveal, blindURI, baseURI);
    }

    function supportsInterface(bytes4 _interfaceId) public view override (ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(_interfaceId);
    }

    function _beforeTokenTransfer(address _from, address _to, uint256 _tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }
}

File 2 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 3 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 17 : 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 8 of 17 : 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 9 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

File 10 of 17 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 11 of 17 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 12 of 17 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 14 of 17 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

File 17 of 17 : 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {
    "contracts/VoyagerPass.sol": {
      "MintUtil": "0xc121036b57cab00145f9c073ba7ec85af45ce0cf"
    }
  }
}

Contract Security Audit

Contract ABI

[{"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":[{"internalType":"address","name":"","type":"address"}],"name":"addressMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"},{"internalType":"uint256","name":"_whitelistIndex","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"auctionDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistIndex","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistIndex","type":"uint256"}],"name":"canMint2","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discountRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchAuctionActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dutchAuctionStartAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endingPrice","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":"uint256","name":"_whitelistIndex","type":"uint256"}],"name":"getMintPriceByUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isPaid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isTokenPaid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"legacyMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"legacyMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"legacyMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privatePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_dutchAuctionActive","type":"bool"}],"name":"setDutchAuctionActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startPrice","type":"uint256"},{"internalType":"uint256","name":"_endPrice","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"setDutchAuctionInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"},{"internalType":"uint256","name":"mintTypeIndex","type":"uint256"}],"name":"setMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_voyagerCaptainMintLimit","type":"uint256"},{"internalType":"uint256","name":"_legacyMintLimit","type":"uint256"},{"internalType":"uint256","name":"_privateMintLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_privatePrice","type":"uint256"}],"name":"setPrivatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"},{"internalType":"uint256","name":"_whitelistIndex","type":"uint256"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blindURI","type":"string"},{"internalType":"string","name":"_URI","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"voyagerCaptainMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"voyagerCaptainMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"voyagerCaptainMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistInfo","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052670de0b6b3a7640000600e55670214e8348c4f0000600f5567016345785d8a00006010556115186011556597951b766aaa6012556101f46019556104b0601a5561206c601b556000601c553480156200005c57600080fd5b506040518060400160405280600c81526020017f566f7961676572205061737300000000000000000000000000000000000000008152506040518060400160405280600381526020017f564f5000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e1929190620001f9565b508060019080519060200190620000fa929190620001f9565b5050506200011d620001116200012b60201b60201c565b6200013360201b60201c565b6001600b819055506200030e565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020790620002a9565b90600052602060002090601f0160209004810192826200022b576000855562000277565b82601f106200024657805160ff191683800117855562000277565b8280016001018555821562000277579182015b828111156200027657825182559160200191906001019062000259565b5b5090506200028691906200028a565b5090565b5b80821115620002a55760008160009055506001016200028b565b5090565b60006002820490506001821680620002c257607f821691505b60208210811415620002d957620002d8620002df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61576b806200031e6000396000f3fe6080604052600436106103765760003560e01c80637cf07c42116101d1578063b552b9e611610102578063cd392a83116100a0578063e985e9c51161006f578063e985e9c514610ceb578063edbe2a2114610d28578063f2fde38b14610d51578063fa30297e14610d7a57610376565b8063cd392a8314610c1d578063cfcb1cd214610c5a578063e6c0e6d514610c97578063e825417414610cc257610376565b8063bf30d6c8116100dc578063bf30d6c814610b61578063c5d6a54214610b8a578063c87b56dd14610bb5578063ca58403f14610bf257610376565b8063b552b9e614610ad0578063b88d4fde14610b0d578063bc8893b414610b3657610376565b806395d89b411161016f578063a3aae17611610149578063a3aae17614610a12578063a475b5dd14610a3d578063b165b00214610a68578063b384236014610aa557610376565b806395d89b4114610995578063a10f151e146109c0578063a22cb465146109e957610376565b80638ba4cc3c116101ab5780638ba4cc3c146108d85780638bf7859b146109015780638da5cb5b1461092c5780638f4e76b91461095757610376565b80637cf07c421461085757806381bf3f391461088257806387c0568b146108ad57610376565b80634f6ccce7116102ab5780636352211e1161024957806370a082311161022357806370a08231146107af578063715018a6146107ec5780637192e111146108035780637c6c5e6c1461082c57610376565b80636352211e1461071c5780636817c76c146107595780636de3371b1461078457610376565b80635b661039116102855780635b661039146106955780635bb61ef3146106b15780635c5ab5b4146106da5780635f0f45b21461070557610376565b80634f6ccce71461060257806357b734f41461063f5780635a67a20d1461066a57610376565b80631d9a54bb116103185780632f745c59116102f25780632f745c591461055a5780633ccfd60b146105975780633fbca235146105ae57806342842e0e146105d957610376565b80631d9a54bb146104c857806323b872dd146104f357806329e9779a1461051c57610376565b8063095ea7b311610354578063095ea7b3146104205780630cbf54c8146104495780630f9bc75b1461047457806318160ddd1461049d57610376565b806301ffc9a71461037b57806306fdde03146103b8578063081812fc146103e3575b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d91906141f6565b610db7565b6040516103af9190614896565b60405180910390f35b3480156103c457600080fd5b506103cd610dc9565b6040516103da91906148fc565b60405180910390f35b3480156103ef57600080fd5b5061040a600480360381019061040591906142f5565b610e5b565b604051610417919061482f565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190614080565b610ee0565b005b34801561045557600080fd5b5061045e610ff8565b60405161046b9190614bbe565b60405180910390f35b34801561048057600080fd5b5061049b6004803603810190610496919061417e565b610ffe565b005b3480156104a957600080fd5b506104b261111d565b6040516104bf9190614bbe565b60405180910390f35b3480156104d457600080fd5b506104dd61112a565b6040516104ea9190614bbe565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190613f7a565b611130565b005b34801561052857600080fd5b50610543600480360381019061053e91906142f5565b611190565b6040516105519291906148b1565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190614080565b611249565b60405161058e9190614bbe565b60405180910390f35b3480156105a357600080fd5b506105ac6112ee565b005b3480156105ba57600080fd5b506105c36113c7565b6040516105d09190614bbe565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190613f7a565b6113cd565b005b34801561060e57600080fd5b50610629600480360381019061062491906142f5565b6113ed565b6040516106369190614bbe565b60405180910390f35b34801561064b57600080fd5b50610654611484565b6040516106619190614896565b60405180910390f35b34801561067657600080fd5b5061067f611497565b60405161068c9190614bbe565b60405180910390f35b6106af60048036038101906106aa91906140bc565b61149d565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190614383565b611735565b005b3480156106e657600080fd5b506106ef6117fc565b6040516106fc9190614bbe565b60405180910390f35b34801561071157600080fd5b5061071a611802565b005b34801561072857600080fd5b50610743600480360381019061073e91906142f5565b61189b565b604051610750919061482f565b60405180910390f35b34801561076557600080fd5b5061076e61194d565b60405161077b9190614bbe565b60405180910390f35b34801561079057600080fd5b50610799611953565b6040516107a69190614bbe565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190613f15565b611959565b6040516107e39190614bbe565b60405180910390f35b3480156107f857600080fd5b50610801611a11565b005b34801561080f57600080fd5b5061082a60048036038101906108259190614383565b611a99565b005b34801561083857600080fd5b50610841611b74565b60405161084e9190614896565b60405180910390f35b34801561086357600080fd5b5061086c611b87565b6040516108799190614896565b60405180910390f35b34801561088e57600080fd5b50610897611b9a565b6040516108a49190614bbe565b60405180910390f35b3480156108b957600080fd5b506108c2611ba0565b6040516108cf9190614bbe565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190614080565b611ba6565b005b34801561090d57600080fd5b50610916611d0a565b6040516109239190614bbe565b60405180910390f35b34801561093857600080fd5b50610941611d10565b60405161094e919061482f565b60405180910390f35b34801561096357600080fd5b5061097e60048036038101906109799190614347565b611d3a565b60405161098c9291906148b1565b60405180910390f35b3480156109a157600080fd5b506109aa611ec6565b6040516109b791906148fc565b60405180910390f35b3480156109cc57600080fd5b506109e760048036038101906109e291906142f5565b611f58565b005b3480156109f557600080fd5b50610a106004803603810190610a0b9190614044565b611fde565b005b348015610a1e57600080fd5b50610a27611ff4565b604051610a349190614896565b60405180910390f35b348015610a4957600080fd5b50610a52612007565b604051610a5f9190614896565b60405180910390f35b348015610a7457600080fd5b50610a8f6004803603810190610a8a91906142f5565b61201a565b604051610a9c9190614896565b60405180910390f35b348015610ab157600080fd5b50610aba612044565b604051610ac79190614bbe565b60405180910390f35b348015610adc57600080fd5b50610af76004803603810190610af291906142f5565b61204a565b604051610b049190614bbe565b60405180910390f35b348015610b1957600080fd5b50610b346004803603810190610b2f9190613fc9565b612130565b005b348015610b4257600080fd5b50610b4b612192565b604051610b589190614896565b60405180910390f35b348015610b6d57600080fd5b50610b886004803603810190610b839190614101565b6121a5565b005b348015610b9657600080fd5b50610b9f612245565b604051610bac9190614bbe565b60405180910390f35b348015610bc157600080fd5b50610bdc6004803603810190610bd791906142f5565b61224b565b604051610be991906148fc565b60405180910390f35b348015610bfe57600080fd5b50610c0761233f565b604051610c149190614bbe565b60405180910390f35b348015610c2957600080fd5b50610c446004803603810190610c3f91906142f5565b612345565b604051610c519190614896565b60405180910390f35b348015610c6657600080fd5b50610c816004803603810190610c7c91906142f5565b612365565b604051610c8e91906148e1565b60405180910390f35b348015610ca357600080fd5b50610cac612380565b604051610cb99190614bbe565b60405180910390f35b348015610cce57600080fd5b50610ce96004803603810190610ce49190614289565b612386565b005b348015610cf757600080fd5b50610d126004803603810190610d0d9190613f3e565b612434565b604051610d1f9190614896565b60405180910390f35b348015610d3457600080fd5b50610d4f6004803603810190610d4a91906141ba565b6124c8565b005b348015610d5d57600080fd5b50610d786004803603810190610d739190613f15565b612588565b005b348015610d8657600080fd5b50610da16004803603810190610d9c9190613f15565b612680565b604051610dae9190614896565b60405180910390f35b6000610dc2826126a0565b9050919050565b606060008054610dd890614fcd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0490614fcd565b8015610e515780601f10610e2657610100808354040283529160200191610e51565b820191906000526020600020905b815481529060010190602001808311610e3457829003601f168201915b5050505050905090565b6000610e668261271a565b610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c90614ade565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610eeb8261189b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390614b1e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f7b612786565b73ffffffffffffffffffffffffffffffffffffffff161480610faa5750610fa981610fa4612786565b612434565b5b610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090614a3e565b60405180910390fd5b610ff3838361278e565b505050565b60115481565b611006612786565b73ffffffffffffffffffffffffffffffffffffffff16611024611d10565b73ffffffffffffffffffffffffffffffffffffffff161461107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190614afe565b60405180910390fd5b60008114156110a25781601360016101000a81548160ff021916908315150217905550611119565b60018114156110ca5781601360026101000a81548160ff021916908315150217905550611118565b60028114156110f25781601360036101000a81548160ff021916908315150217905550611117565b60038114156111165781601360046101000a81548160ff0219169083151502179055505b5b5b5b5050565b6000600880549050905090565b60205481565b61114161113b612786565b82612847565b611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790614b5e565b60405180910390fd5b61118b838383612925565b505050565b6000606073c121036b57cab00145f9c073ba7ec85af45ce0cf6306c011d784601d54601954601e54601a54601f54601b54602054601c546040518a63ffffffff1660e01b81526004016111eb99989796959493929190614ce0565b60006040518083038186803b15801561120357600080fd5b505af4158015611217573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611240919061412a565b91509150915091565b600061125483611959565b8210611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c9061493e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6112f6612786565b73ffffffffffffffffffffffffffffffffffffffff16611314611d10565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190614afe565b60405180910390fd5b73fa61b6e35613f014bd4387898790e89572f63b5773ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156113c4573d6000803e3d6000fd5b50565b601a5481565b6113e883838360405180602001604052806000815250612130565b505050565b60006113f761111d565b8210611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90614b7e565b60405180910390fd5b60088281548110611472577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601360039054906101000a900460ff1681565b600f5481565b6002600b5414156114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90614b9e565b60405180910390fd5b6002600b819055506000336040516020016114fe9190614814565b6040516020818303038152906040528051906020012090506000611523848484612b8c565b90506000806115328333611d3a565b9150915060008061154285611190565b91509150838390611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158091906148fc565b60405180910390fd5b508181906115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c491906148fc565b60405180910390fd5b5060006115d98661204a565b90503481111561161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590614a7e565b60405180910390fd5b6001601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600161168261111d565b61168c9190614e52565b90506116988188612d5e565b6116a23382612eaf565b601360059054906101000a900460ff16156117215760006116cc8334612ecd90919063ffffffff16565b9050600081111561171f573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561171d573d6000803e3d6000fd5b505b505b50505050505050506001600b819055505050565b61173d612786565b73ffffffffffffffffffffffffffffffffffffffff1661175b611d10565b73ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890614afe565b60405180910390fd5b82600e8190555081600f81905550806011819055506117f16011546117e3600f54600e54612ecd90919063ffffffff16565b612ee390919063ffffffff16565b601281905550505050565b601b5481565b61180a612786565b73ffffffffffffffffffffffffffffffffffffffff16611828611d10565b73ffffffffffffffffffffffffffffffffffffffff161461187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590614afe565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90614a9e565b60405180910390fd5b80915050919050565b600e5481565b601e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190614a5e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a19612786565b73ffffffffffffffffffffffffffffffffffffffff16611a37611d10565b73ffffffffffffffffffffffffffffffffffffffff1614611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490614afe565b60405180910390fd5b611a976000612ef9565b565b611aa1612786565b73ffffffffffffffffffffffffffffffffffffffff16611abf611d10565b73ffffffffffffffffffffffffffffffffffffffff1614611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c90614afe565b60405180910390fd5b8260198190555081601a8190555080601b81905550611b69611b58601b54611b4a601a54601954612fbf90919063ffffffff16565b612fbf90919063ffffffff16565b612710612ecd90919063ffffffff16565b601c81905550505050565b601360059054906101000a900460ff1681565b601360029054906101000a900460ff1681565b601d5481565b60105481565b611bae612786565b73ffffffffffffffffffffffffffffffffffffffff16611bcc611d10565b73ffffffffffffffffffffffffffffffffffffffff1614611c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1990614afe565b60405180910390fd5b612710611c406001611c3261111d565b612fbf90919063ffffffff16565b1115611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7890614b3e565b60405180910390fd5b6001601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060006001611ce561111d565b611cef9190614e52565b9050611cfb8183612d5e565b611d058382612eaf565b505050565b601c5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006060612710611d5c6001611d4e61111d565b612fbf90919063ffffffff16565b1115611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490614b3e565b60405180910390fd5b73c121036b57cab00145f9c073ba7ec85af45ce0cf6320d5c82e85601360019054906101000a900460ff16601360029054906101000a900460ff16601360039054906101000a900460ff16601360049054906101000a900460ff16601760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166040518763ffffffff1660e01b8152600401611e6696959493929190614bd9565b60006040518083038186803b158015611e7e57600080fd5b505af4158015611e92573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611ebb919061412a565b915091509250929050565b606060018054611ed590614fcd565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0190614fcd565b8015611f4e5780601f10611f2357610100808354040283529160200191611f4e565b820191906000526020600020905b815481529060010190602001808311611f3157829003601f168201915b5050505050905090565b611f60612786565b73ffffffffffffffffffffffffffffffffffffffff16611f7e611d10565b73ffffffffffffffffffffffffffffffffffffffff1614611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb90614afe565b60405180910390fd5b8060108190555050565b611ff0611fe9612786565b8383612fd5565b5050565b601360019054906101000a900460ff1681565b601360009054906101000a900460ff1681565b60006018600083815260200190815260200160002060009054906101000a900460ff169050919050565b60195481565b60006001821161205d576000905061212b565b600282141561207057601054905061212b565b601360059054906101000a900460ff16156121255773c121036b57cab00145f9c073ba7ec85af45ce0cf63f495d1ee602154600e54601254600f546011546040518663ffffffff1660e01b81526004016120ce959493929190614c8d565b60206040518083038186803b1580156120e657600080fd5b505af41580156120fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061211e919061431e565b905061212b565b600f5490505b919050565b61214161213b612786565b83612847565b612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790614b5e565b60405180910390fd5b61218c84848484613142565b50505050565b601360049054906101000a900460ff1681565b6121ad612786565b73ffffffffffffffffffffffffffffffffffffffff166121cb611d10565b73ffffffffffffffffffffffffffffffffffffffff1614612221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221890614afe565b60405180910390fd5b80601360056101000a81548160ff0219169083151502179055504260218190555050565b60215481565b60606122568261271a565b612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c9061491e565b60405180910390fd5b73c121036b57cab00145f9c073ba7ec85af45ce0cf63ee61c9f483601360009054906101000a900460ff16600d600c6040518563ffffffff1660e01b81526004016122e39493929190614c3a565b60006040518083038186803b1580156122fb57600080fd5b505af415801561230f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906123389190614248565b9050919050565b601f5481565b60186020528060005260406000206000915054906101000a900460ff1681565b6014816003811061237557600080fd5b016000915090505481565b60125481565b61238e612786565b73ffffffffffffffffffffffffffffffffffffffff166123ac611d10565b73ffffffffffffffffffffffffffffffffffffffff1614612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990614afe565b60405180910390fd5b81600d9080519060200190612418929190613c48565b5080600c908051906020019061242f929190613c48565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124d0612786565b73ffffffffffffffffffffffffffffffffffffffff166124ee611d10565b73ffffffffffffffffffffffffffffffffffffffff1614612544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253b90614afe565b60405180910390fd5b816014826003811061257f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01819055505050565b612590612786565b73ffffffffffffffffffffffffffffffffffffffff166125ae611d10565b73ffffffffffffffffffffffffffffffffffffffff1614612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb90614afe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266b9061497e565b60405180910390fd5b61267d81612ef9565b50565b60176020528060005260406000206000915054906101000a900460ff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061271357506127128261319e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128018361189b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006128528261271a565b612891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288890614a1e565b60405180910390fd5b600061289c8361189b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128de57506128dd8185612434565b5b8061291c57508373ffffffffffffffffffffffffffffffffffffffff1661290484610e5b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129458261189b565b73ffffffffffffffffffffffffffffffffffffffff161461299b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129929061499e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a02906149de565b60405180910390fd5b612a16838383613280565b612a2160008261278e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a719190614ed9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac89190614e52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b87838383613290565b505050565b60008060649050612c1b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506014600060038110612c13577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015485613295565b15612c295760009050612d53565b612cb1858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506014600160038110612ca9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015485613295565b15612cbf5760019050612d52565b612d47858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506014600260038110612d3f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015485613295565b15612d5157600290505b5b5b809150509392505050565b6000811415612db457612d7d6001601d54612fbf90919063ffffffff16565b601d8190555060006018600084815260200190815260200160002060006101000a81548160ff021916908315150217905550612eab565b6001811415612e0a57612dd36001601e54612fbf90919063ffffffff16565b601e8190555060006018600084815260200190815260200160002060006101000a81548160ff021916908315150217905550612eaa565b6002811415612e6057612e296001601f54612fbf90919063ffffffff16565b601f8190555060016018600084815260200190815260200160002060006101000a81548160ff021916908315150217905550612ea9565b612e766001602054612fbf90919063ffffffff16565b60208190555060016018600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b5b5050565b612ec98282604051806020016040528060008152506132ac565b5050565b60008183612edb9190614ed9565b905092915050565b60008183612ef19190614ea8565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612fcd9190614e52565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303b906149fe565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131359190614896565b60405180910390a3505050565b61314d848484612925565b61315984848484613307565b613198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318f9061495e565b60405180910390fd5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061326957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061327957506132788261349e565b5b9050919050565b61328b838383613508565b505050565b505050565b6000826132a2858461361c565b1490509392505050565b6132b683836136b7565b6132c36000848484613307565b613302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f99061495e565b60405180910390fd5b505050565b60006133288473ffffffffffffffffffffffffffffffffffffffff16613891565b15613491578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613351612786565b8786866040518563ffffffff1660e01b8152600401613373949392919061484a565b602060405180830381600087803b15801561338d57600080fd5b505af19250505080156133be57506040513d601f19601f820116820180604052508101906133bb919061421f565b60015b613441573d80600081146133ee576040519150601f19603f3d011682016040523d82523d6000602084013e6133f3565b606091505b50600081511415613439576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134309061495e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613496565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6135138383836138b4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561355657613551816138b9565b613595565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613594576135938382613902565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135d8576135d381613a6f565b613617565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613616576136158282613bb2565b5b5b505050565b60008082905060005b84518110156136ac576000858281518110613669577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161368b576136848382613c31565b9250613698565b6136958184613c31565b92505b5080806136a490615030565b915050613625565b508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161371e90614abe565b60405180910390fd5b6137308161271a565b15613770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613767906149be565b60405180910390fd5b61377c60008383613280565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137cc9190614e52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461388d60008383613290565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161390f84611959565b6139199190614ed9565b90506000600760008481526020019081526020016000205490508181146139fe576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a839190614ed9565b9050600060096000848152602001908152602001600020549050600060088381548110613ad9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613b21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613b96577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613bbd83611959565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600082600052816020526040600020905092915050565b828054613c5490614fcd565b90600052602060002090601f016020900481019282613c765760008555613cbd565b82601f10613c8f57805160ff1916838001178555613cbd565b82800160010185558215613cbd579182015b82811115613cbc578251825591602001919060010190613ca1565b5b509050613cca9190613cce565b5090565b5b80821115613ce7576000816000905550600101613ccf565b5090565b6000613cfe613cf984614d92565b614d6d565b905082815260208101848484011115613d1657600080fd5b613d21848285614f8b565b509392505050565b6000613d3c613d3784614dc3565b614d6d565b905082815260208101848484011115613d5457600080fd5b613d5f848285614f8b565b509392505050565b6000613d7a613d7584614dc3565b614d6d565b905082815260208101848484011115613d9257600080fd5b613d9d848285614f9a565b509392505050565b600081359050613db4816156c2565b92915050565b60008083601f840112613dcc57600080fd5b8235905067ffffffffffffffff811115613de557600080fd5b602083019150836020820283011115613dfd57600080fd5b9250929050565b600081359050613e13816156d9565b92915050565b600081519050613e28816156d9565b92915050565b600081359050613e3d816156f0565b92915050565b600081359050613e5281615707565b92915050565b600081519050613e6781615707565b92915050565b600082601f830112613e7e57600080fd5b8135613e8e848260208601613ceb565b91505092915050565b600082601f830112613ea857600080fd5b8135613eb8848260208601613d29565b91505092915050565b600082601f830112613ed257600080fd5b8151613ee2848260208601613d67565b91505092915050565b600081359050613efa8161571e565b92915050565b600081519050613f0f8161571e565b92915050565b600060208284031215613f2757600080fd5b6000613f3584828501613da5565b91505092915050565b60008060408385031215613f5157600080fd5b6000613f5f85828601613da5565b9250506020613f7085828601613da5565b9150509250929050565b600080600060608486031215613f8f57600080fd5b6000613f9d86828701613da5565b9350506020613fae86828701613da5565b9250506040613fbf86828701613eeb565b9150509250925092565b60008060008060808587031215613fdf57600080fd5b6000613fed87828801613da5565b9450506020613ffe87828801613da5565b935050604061400f87828801613eeb565b925050606085013567ffffffffffffffff81111561402c57600080fd5b61403887828801613e6d565b91505092959194509250565b6000806040838503121561405757600080fd5b600061406585828601613da5565b925050602061407685828601613e04565b9150509250929050565b6000806040838503121561409357600080fd5b60006140a185828601613da5565b92505060206140b285828601613eeb565b9150509250929050565b600080602083850312156140cf57600080fd5b600083013567ffffffffffffffff8111156140e957600080fd5b6140f585828601613dba565b92509250509250929050565b60006020828403121561411357600080fd5b600061412184828501613e04565b91505092915050565b6000806040838503121561413d57600080fd5b600061414b85828601613e19565b925050602083015167ffffffffffffffff81111561416857600080fd5b61417485828601613ec1565b9150509250929050565b6000806040838503121561419157600080fd5b600061419f85828601613e04565b92505060206141b085828601613eeb565b9150509250929050565b600080604083850312156141cd57600080fd5b60006141db85828601613e2e565b92505060206141ec85828601613eeb565b9150509250929050565b60006020828403121561420857600080fd5b600061421684828501613e43565b91505092915050565b60006020828403121561423157600080fd5b600061423f84828501613e58565b91505092915050565b60006020828403121561425a57600080fd5b600082015167ffffffffffffffff81111561427457600080fd5b61428084828501613ec1565b91505092915050565b6000806040838503121561429c57600080fd5b600083013567ffffffffffffffff8111156142b657600080fd5b6142c285828601613e97565b925050602083013567ffffffffffffffff8111156142df57600080fd5b6142eb85828601613e97565b9150509250929050565b60006020828403121561430757600080fd5b600061431584828501613eeb565b91505092915050565b60006020828403121561433057600080fd5b600061433e84828501613f00565b91505092915050565b6000806040838503121561435a57600080fd5b600061436885828601613eeb565b925050602061437985828601613da5565b9150509250929050565b60008060006060848603121561439857600080fd5b60006143a686828701613eeb565b93505060206143b786828701613eeb565b92505060406143c886828701613eeb565b9150509250925092565b6143db81614f0d565b82525050565b6143f26143ed82614f0d565b615079565b82525050565b61440181614f1f565b82525050565b61441081614f1f565b82525050565b61441f81614f2b565b82525050565b600061443082614e09565b61443a8185614e1f565b935061444a818560208601614f9a565b61445381615159565b840191505092915050565b600061446982614e14565b6144738185614e30565b9350614483818560208601614f9a565b61448c81615159565b840191505092915050565b600081546144a481614fcd565b6144ae8186614e41565b945060018216600081146144c957600181146144db5761450e565b60ff198316865260208601935061450e565b6144e485614df4565b60005b83811015614506578154818901526001820191506020810190506144e7565b808801955050505b50505092915050565b6000614524601f83614e30565b915061452f82615177565b602082019050919050565b6000614547602b83614e30565b9150614552826151a0565b604082019050919050565b600061456a603283614e30565b9150614575826151ef565b604082019050919050565b600061458d602683614e30565b91506145988261523e565b604082019050919050565b60006145b0602583614e30565b91506145bb8261528d565b604082019050919050565b60006145d3601c83614e30565b91506145de826152dc565b602082019050919050565b60006145f6602483614e30565b915061460182615305565b604082019050919050565b6000614619601983614e30565b915061462482615354565b602082019050919050565b600061463c602c83614e30565b91506146478261537d565b604082019050919050565b600061465f603883614e30565b915061466a826153cc565b604082019050919050565b6000614682602a83614e30565b915061468d8261541b565b604082019050919050565b60006146a5601a83614e30565b91506146b08261546a565b602082019050919050565b60006146c8602983614e30565b91506146d382615493565b604082019050919050565b60006146eb602083614e30565b91506146f6826154e2565b602082019050919050565b600061470e602c83614e30565b91506147198261550b565b604082019050919050565b6000614731602083614e30565b915061473c8261555a565b602082019050919050565b6000614754602183614e30565b915061475f82615583565b604082019050919050565b6000614777601f83614e30565b9150614782826155d2565b602082019050919050565b600061479a603183614e30565b91506147a5826155fb565b604082019050919050565b60006147bd602c83614e30565b91506147c88261564a565b604082019050919050565b60006147e0601f83614e30565b91506147eb82615699565b602082019050919050565b6147ff81614f81565b82525050565b61480e81614f81565b82525050565b600061482082846143e1565b60148201915081905092915050565b600060208201905061484460008301846143d2565b92915050565b600060808201905061485f60008301876143d2565b61486c60208301866143d2565b61487960408301856147f6565b818103606083015261488b8184614425565b905095945050505050565b60006020820190506148ab60008301846143f8565b92915050565b60006040820190506148c660008301856143f8565b81810360208301526148d8818461445e565b90509392505050565b60006020820190506148f66000830184614416565b92915050565b60006020820190508181036000830152614916818461445e565b905092915050565b6000602082019050818103600083015261493781614517565b9050919050565b600060208201905081810360008301526149578161453a565b9050919050565b600060208201905081810360008301526149778161455d565b9050919050565b6000602082019050818103600083015261499781614580565b9050919050565b600060208201905081810360008301526149b7816145a3565b9050919050565b600060208201905081810360008301526149d7816145c6565b9050919050565b600060208201905081810360008301526149f7816145e9565b9050919050565b60006020820190508181036000830152614a178161460c565b9050919050565b60006020820190508181036000830152614a378161462f565b9050919050565b60006020820190508181036000830152614a5781614652565b9050919050565b60006020820190508181036000830152614a7781614675565b9050919050565b60006020820190508181036000830152614a9781614698565b9050919050565b60006020820190508181036000830152614ab7816146bb565b9050919050565b60006020820190508181036000830152614ad7816146de565b9050919050565b60006020820190508181036000830152614af781614701565b9050919050565b60006020820190508181036000830152614b1781614724565b9050919050565b60006020820190508181036000830152614b3781614747565b9050919050565b60006020820190508181036000830152614b578161476a565b9050919050565b60006020820190508181036000830152614b778161478d565b9050919050565b60006020820190508181036000830152614b97816147b0565b9050919050565b60006020820190508181036000830152614bb7816147d3565b9050919050565b6000602082019050614bd360008301846147f6565b92915050565b600060c082019050614bee6000830189614805565b614bfb6020830188614407565b614c086040830187614407565b614c156060830186614407565b614c226080830185614407565b614c2f60a0830184614407565b979650505050505050565b6000608082019050614c4f6000830187614805565b614c5c6020830186614407565b8181036040830152614c6e8185614497565b90508181036060830152614c828184614497565b905095945050505050565b600060a082019050614ca26000830188614805565b614caf6020830187614805565b614cbc6040830186614805565b614cc96060830185614805565b614cd66080830184614805565b9695505050505050565b600061012082019050614cf6600083018c614805565b614d03602083018b614805565b614d10604083018a614805565b614d1d6060830189614805565b614d2a6080830188614805565b614d3760a0830187614805565b614d4460c0830186614805565b614d5160e0830185614805565b614d5f610100830184614805565b9a9950505050505050505050565b6000614d77614d88565b9050614d838282614fff565b919050565b6000604051905090565b600067ffffffffffffffff821115614dad57614dac61512a565b5b614db682615159565b9050602081019050919050565b600067ffffffffffffffff821115614dde57614ddd61512a565b5b614de782615159565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614e5d82614f81565b9150614e6883614f81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e9d57614e9c61509d565b5b828201905092915050565b6000614eb382614f81565b9150614ebe83614f81565b925082614ece57614ecd6150cc565b5b828204905092915050565b6000614ee482614f81565b9150614eef83614f81565b925082821015614f0257614f0161509d565b5b828203905092915050565b6000614f1882614f61565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614fb8578082015181840152602081019050614f9d565b83811115614fc7576000848401525b50505050565b60006002820490506001821680614fe557607f821691505b60208210811415614ff957614ff86150fb565b5b50919050565b61500882615159565b810181811067ffffffffffffffff821117156150275761502661512a565b5b80604052505050565b600061503b82614f81565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561506e5761506d61509d565b5b600182019050919050565b60006150848261508b565b9050919050565b60006150968261516a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742070617961626c652076616c7565000000000000600082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e203130303030204e46547300600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6156cb81614f0d565b81146156d657600080fd5b50565b6156e281614f1f565b81146156ed57600080fd5b50565b6156f981614f2b565b811461570457600080fd5b50565b61571081614f35565b811461571b57600080fd5b50565b61572781614f81565b811461573257600080fd5b5056fea264697066735822122011b2bf8fe4c237955d44df5b9aaf725958e2dbcc462949d3e43aaeb7cf0db1fd64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103765760003560e01c80637cf07c42116101d1578063b552b9e611610102578063cd392a83116100a0578063e985e9c51161006f578063e985e9c514610ceb578063edbe2a2114610d28578063f2fde38b14610d51578063fa30297e14610d7a57610376565b8063cd392a8314610c1d578063cfcb1cd214610c5a578063e6c0e6d514610c97578063e825417414610cc257610376565b8063bf30d6c8116100dc578063bf30d6c814610b61578063c5d6a54214610b8a578063c87b56dd14610bb5578063ca58403f14610bf257610376565b8063b552b9e614610ad0578063b88d4fde14610b0d578063bc8893b414610b3657610376565b806395d89b411161016f578063a3aae17611610149578063a3aae17614610a12578063a475b5dd14610a3d578063b165b00214610a68578063b384236014610aa557610376565b806395d89b4114610995578063a10f151e146109c0578063a22cb465146109e957610376565b80638ba4cc3c116101ab5780638ba4cc3c146108d85780638bf7859b146109015780638da5cb5b1461092c5780638f4e76b91461095757610376565b80637cf07c421461085757806381bf3f391461088257806387c0568b146108ad57610376565b80634f6ccce7116102ab5780636352211e1161024957806370a082311161022357806370a08231146107af578063715018a6146107ec5780637192e111146108035780637c6c5e6c1461082c57610376565b80636352211e1461071c5780636817c76c146107595780636de3371b1461078457610376565b80635b661039116102855780635b661039146106955780635bb61ef3146106b15780635c5ab5b4146106da5780635f0f45b21461070557610376565b80634f6ccce71461060257806357b734f41461063f5780635a67a20d1461066a57610376565b80631d9a54bb116103185780632f745c59116102f25780632f745c591461055a5780633ccfd60b146105975780633fbca235146105ae57806342842e0e146105d957610376565b80631d9a54bb146104c857806323b872dd146104f357806329e9779a1461051c57610376565b8063095ea7b311610354578063095ea7b3146104205780630cbf54c8146104495780630f9bc75b1461047457806318160ddd1461049d57610376565b806301ffc9a71461037b57806306fdde03146103b8578063081812fc146103e3575b600080fd5b34801561038757600080fd5b506103a2600480360381019061039d91906141f6565b610db7565b6040516103af9190614896565b60405180910390f35b3480156103c457600080fd5b506103cd610dc9565b6040516103da91906148fc565b60405180910390f35b3480156103ef57600080fd5b5061040a600480360381019061040591906142f5565b610e5b565b604051610417919061482f565b60405180910390f35b34801561042c57600080fd5b5061044760048036038101906104429190614080565b610ee0565b005b34801561045557600080fd5b5061045e610ff8565b60405161046b9190614bbe565b60405180910390f35b34801561048057600080fd5b5061049b6004803603810190610496919061417e565b610ffe565b005b3480156104a957600080fd5b506104b261111d565b6040516104bf9190614bbe565b60405180910390f35b3480156104d457600080fd5b506104dd61112a565b6040516104ea9190614bbe565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190613f7a565b611130565b005b34801561052857600080fd5b50610543600480360381019061053e91906142f5565b611190565b6040516105519291906148b1565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190614080565b611249565b60405161058e9190614bbe565b60405180910390f35b3480156105a357600080fd5b506105ac6112ee565b005b3480156105ba57600080fd5b506105c36113c7565b6040516105d09190614bbe565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb9190613f7a565b6113cd565b005b34801561060e57600080fd5b50610629600480360381019061062491906142f5565b6113ed565b6040516106369190614bbe565b60405180910390f35b34801561064b57600080fd5b50610654611484565b6040516106619190614896565b60405180910390f35b34801561067657600080fd5b5061067f611497565b60405161068c9190614bbe565b60405180910390f35b6106af60048036038101906106aa91906140bc565b61149d565b005b3480156106bd57600080fd5b506106d860048036038101906106d39190614383565b611735565b005b3480156106e657600080fd5b506106ef6117fc565b6040516106fc9190614bbe565b60405180910390f35b34801561071157600080fd5b5061071a611802565b005b34801561072857600080fd5b50610743600480360381019061073e91906142f5565b61189b565b604051610750919061482f565b60405180910390f35b34801561076557600080fd5b5061076e61194d565b60405161077b9190614bbe565b60405180910390f35b34801561079057600080fd5b50610799611953565b6040516107a69190614bbe565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190613f15565b611959565b6040516107e39190614bbe565b60405180910390f35b3480156107f857600080fd5b50610801611a11565b005b34801561080f57600080fd5b5061082a60048036038101906108259190614383565b611a99565b005b34801561083857600080fd5b50610841611b74565b60405161084e9190614896565b60405180910390f35b34801561086357600080fd5b5061086c611b87565b6040516108799190614896565b60405180910390f35b34801561088e57600080fd5b50610897611b9a565b6040516108a49190614bbe565b60405180910390f35b3480156108b957600080fd5b506108c2611ba0565b6040516108cf9190614bbe565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190614080565b611ba6565b005b34801561090d57600080fd5b50610916611d0a565b6040516109239190614bbe565b60405180910390f35b34801561093857600080fd5b50610941611d10565b60405161094e919061482f565b60405180910390f35b34801561096357600080fd5b5061097e60048036038101906109799190614347565b611d3a565b60405161098c9291906148b1565b60405180910390f35b3480156109a157600080fd5b506109aa611ec6565b6040516109b791906148fc565b60405180910390f35b3480156109cc57600080fd5b506109e760048036038101906109e291906142f5565b611f58565b005b3480156109f557600080fd5b50610a106004803603810190610a0b9190614044565b611fde565b005b348015610a1e57600080fd5b50610a27611ff4565b604051610a349190614896565b60405180910390f35b348015610a4957600080fd5b50610a52612007565b604051610a5f9190614896565b60405180910390f35b348015610a7457600080fd5b50610a8f6004803603810190610a8a91906142f5565b61201a565b604051610a9c9190614896565b60405180910390f35b348015610ab157600080fd5b50610aba612044565b604051610ac79190614bbe565b60405180910390f35b348015610adc57600080fd5b50610af76004803603810190610af291906142f5565b61204a565b604051610b049190614bbe565b60405180910390f35b348015610b1957600080fd5b50610b346004803603810190610b2f9190613fc9565b612130565b005b348015610b4257600080fd5b50610b4b612192565b604051610b589190614896565b60405180910390f35b348015610b6d57600080fd5b50610b886004803603810190610b839190614101565b6121a5565b005b348015610b9657600080fd5b50610b9f612245565b604051610bac9190614bbe565b60405180910390f35b348015610bc157600080fd5b50610bdc6004803603810190610bd791906142f5565b61224b565b604051610be991906148fc565b60405180910390f35b348015610bfe57600080fd5b50610c0761233f565b604051610c149190614bbe565b60405180910390f35b348015610c2957600080fd5b50610c446004803603810190610c3f91906142f5565b612345565b604051610c519190614896565b60405180910390f35b348015610c6657600080fd5b50610c816004803603810190610c7c91906142f5565b612365565b604051610c8e91906148e1565b60405180910390f35b348015610ca357600080fd5b50610cac612380565b604051610cb99190614bbe565b60405180910390f35b348015610cce57600080fd5b50610ce96004803603810190610ce49190614289565b612386565b005b348015610cf757600080fd5b50610d126004803603810190610d0d9190613f3e565b612434565b604051610d1f9190614896565b60405180910390f35b348015610d3457600080fd5b50610d4f6004803603810190610d4a91906141ba565b6124c8565b005b348015610d5d57600080fd5b50610d786004803603810190610d739190613f15565b612588565b005b348015610d8657600080fd5b50610da16004803603810190610d9c9190613f15565b612680565b604051610dae9190614896565b60405180910390f35b6000610dc2826126a0565b9050919050565b606060008054610dd890614fcd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0490614fcd565b8015610e515780601f10610e2657610100808354040283529160200191610e51565b820191906000526020600020905b815481529060010190602001808311610e3457829003601f168201915b5050505050905090565b6000610e668261271a565b610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c90614ade565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610eeb8261189b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390614b1e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f7b612786565b73ffffffffffffffffffffffffffffffffffffffff161480610faa5750610fa981610fa4612786565b612434565b5b610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090614a3e565b60405180910390fd5b610ff3838361278e565b505050565b60115481565b611006612786565b73ffffffffffffffffffffffffffffffffffffffff16611024611d10565b73ffffffffffffffffffffffffffffffffffffffff161461107a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107190614afe565b60405180910390fd5b60008114156110a25781601360016101000a81548160ff021916908315150217905550611119565b60018114156110ca5781601360026101000a81548160ff021916908315150217905550611118565b60028114156110f25781601360036101000a81548160ff021916908315150217905550611117565b60038114156111165781601360046101000a81548160ff0219169083151502179055505b5b5b5b5050565b6000600880549050905090565b60205481565b61114161113b612786565b82612847565b611180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117790614b5e565b60405180910390fd5b61118b838383612925565b505050565b6000606073c121036b57cab00145f9c073ba7ec85af45ce0cf6306c011d784601d54601954601e54601a54601f54601b54602054601c546040518a63ffffffff1660e01b81526004016111eb99989796959493929190614ce0565b60006040518083038186803b15801561120357600080fd5b505af4158015611217573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611240919061412a565b91509150915091565b600061125483611959565b8210611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c9061493e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6112f6612786565b73ffffffffffffffffffffffffffffffffffffffff16611314611d10565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190614afe565b60405180910390fd5b73fa61b6e35613f014bd4387898790e89572f63b5773ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156113c4573d6000803e3d6000fd5b50565b601a5481565b6113e883838360405180602001604052806000815250612130565b505050565b60006113f761111d565b8210611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90614b7e565b60405180910390fd5b60088281548110611472577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601360039054906101000a900460ff1681565b600f5481565b6002600b5414156114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90614b9e565b60405180910390fd5b6002600b819055506000336040516020016114fe9190614814565b6040516020818303038152906040528051906020012090506000611523848484612b8c565b90506000806115328333611d3a565b9150915060008061154285611190565b91509150838390611589576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158091906148fc565b60405180910390fd5b508181906115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c491906148fc565b60405180910390fd5b5060006115d98661204a565b90503481111561161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590614a7e565b60405180910390fd5b6001601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600161168261111d565b61168c9190614e52565b90506116988188612d5e565b6116a23382612eaf565b601360059054906101000a900460ff16156117215760006116cc8334612ecd90919063ffffffff16565b9050600081111561171f573373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561171d573d6000803e3d6000fd5b505b505b50505050505050506001600b819055505050565b61173d612786565b73ffffffffffffffffffffffffffffffffffffffff1661175b611d10565b73ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890614afe565b60405180910390fd5b82600e8190555081600f81905550806011819055506117f16011546117e3600f54600e54612ecd90919063ffffffff16565b612ee390919063ffffffff16565b601281905550505050565b601b5481565b61180a612786565b73ffffffffffffffffffffffffffffffffffffffff16611828611d10565b73ffffffffffffffffffffffffffffffffffffffff161461187e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187590614afe565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193b90614a9e565b60405180910390fd5b80915050919050565b600e5481565b601e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190614a5e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a19612786565b73ffffffffffffffffffffffffffffffffffffffff16611a37611d10565b73ffffffffffffffffffffffffffffffffffffffff1614611a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8490614afe565b60405180910390fd5b611a976000612ef9565b565b611aa1612786565b73ffffffffffffffffffffffffffffffffffffffff16611abf611d10565b73ffffffffffffffffffffffffffffffffffffffff1614611b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0c90614afe565b60405180910390fd5b8260198190555081601a8190555080601b81905550611b69611b58601b54611b4a601a54601954612fbf90919063ffffffff16565b612fbf90919063ffffffff16565b612710612ecd90919063ffffffff16565b601c81905550505050565b601360059054906101000a900460ff1681565b601360029054906101000a900460ff1681565b601d5481565b60105481565b611bae612786565b73ffffffffffffffffffffffffffffffffffffffff16611bcc611d10565b73ffffffffffffffffffffffffffffffffffffffff1614611c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1990614afe565b60405180910390fd5b612710611c406001611c3261111d565b612fbf90919063ffffffff16565b1115611c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7890614b3e565b60405180910390fd5b6001601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060006001611ce561111d565b611cef9190614e52565b9050611cfb8183612d5e565b611d058382612eaf565b505050565b601c5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006060612710611d5c6001611d4e61111d565b612fbf90919063ffffffff16565b1115611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9490614b3e565b60405180910390fd5b73c121036b57cab00145f9c073ba7ec85af45ce0cf6320d5c82e85601360019054906101000a900460ff16601360029054906101000a900460ff16601360039054906101000a900460ff16601360049054906101000a900460ff16601760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166040518763ffffffff1660e01b8152600401611e6696959493929190614bd9565b60006040518083038186803b158015611e7e57600080fd5b505af4158015611e92573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611ebb919061412a565b915091509250929050565b606060018054611ed590614fcd565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0190614fcd565b8015611f4e5780601f10611f2357610100808354040283529160200191611f4e565b820191906000526020600020905b815481529060010190602001808311611f3157829003601f168201915b5050505050905090565b611f60612786565b73ffffffffffffffffffffffffffffffffffffffff16611f7e611d10565b73ffffffffffffffffffffffffffffffffffffffff1614611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb90614afe565b60405180910390fd5b8060108190555050565b611ff0611fe9612786565b8383612fd5565b5050565b601360019054906101000a900460ff1681565b601360009054906101000a900460ff1681565b60006018600083815260200190815260200160002060009054906101000a900460ff169050919050565b60195481565b60006001821161205d576000905061212b565b600282141561207057601054905061212b565b601360059054906101000a900460ff16156121255773c121036b57cab00145f9c073ba7ec85af45ce0cf63f495d1ee602154600e54601254600f546011546040518663ffffffff1660e01b81526004016120ce959493929190614c8d565b60206040518083038186803b1580156120e657600080fd5b505af41580156120fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061211e919061431e565b905061212b565b600f5490505b919050565b61214161213b612786565b83612847565b612180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217790614b5e565b60405180910390fd5b61218c84848484613142565b50505050565b601360049054906101000a900460ff1681565b6121ad612786565b73ffffffffffffffffffffffffffffffffffffffff166121cb611d10565b73ffffffffffffffffffffffffffffffffffffffff1614612221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221890614afe565b60405180910390fd5b80601360056101000a81548160ff0219169083151502179055504260218190555050565b60215481565b60606122568261271a565b612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c9061491e565b60405180910390fd5b73c121036b57cab00145f9c073ba7ec85af45ce0cf63ee61c9f483601360009054906101000a900460ff16600d600c6040518563ffffffff1660e01b81526004016122e39493929190614c3a565b60006040518083038186803b1580156122fb57600080fd5b505af415801561230f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906123389190614248565b9050919050565b601f5481565b60186020528060005260406000206000915054906101000a900460ff1681565b6014816003811061237557600080fd5b016000915090505481565b60125481565b61238e612786565b73ffffffffffffffffffffffffffffffffffffffff166123ac611d10565b73ffffffffffffffffffffffffffffffffffffffff1614612402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f990614afe565b60405180910390fd5b81600d9080519060200190612418929190613c48565b5080600c908051906020019061242f929190613c48565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124d0612786565b73ffffffffffffffffffffffffffffffffffffffff166124ee611d10565b73ffffffffffffffffffffffffffffffffffffffff1614612544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253b90614afe565b60405180910390fd5b816014826003811061257f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01819055505050565b612590612786565b73ffffffffffffffffffffffffffffffffffffffff166125ae611d10565b73ffffffffffffffffffffffffffffffffffffffff1614612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb90614afe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266b9061497e565b60405180910390fd5b61267d81612ef9565b50565b60176020528060005260406000206000915054906101000a900460ff1681565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061271357506127128261319e565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128018361189b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006128528261271a565b612891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288890614a1e565b60405180910390fd5b600061289c8361189b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128de57506128dd8185612434565b5b8061291c57508373ffffffffffffffffffffffffffffffffffffffff1661290484610e5b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129458261189b565b73ffffffffffffffffffffffffffffffffffffffff161461299b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129929061499e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a02906149de565b60405180910390fd5b612a16838383613280565b612a2160008261278e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a719190614ed9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac89190614e52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b87838383613290565b505050565b60008060649050612c1b858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506014600060038110612c13577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015485613295565b15612c295760009050612d53565b612cb1858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506014600160038110612ca9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015485613295565b15612cbf5760019050612d52565b612d47858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506014600260038110612d3f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015485613295565b15612d5157600290505b5b5b809150509392505050565b6000811415612db457612d7d6001601d54612fbf90919063ffffffff16565b601d8190555060006018600084815260200190815260200160002060006101000a81548160ff021916908315150217905550612eab565b6001811415612e0a57612dd36001601e54612fbf90919063ffffffff16565b601e8190555060006018600084815260200190815260200160002060006101000a81548160ff021916908315150217905550612eaa565b6002811415612e6057612e296001601f54612fbf90919063ffffffff16565b601f8190555060016018600084815260200190815260200160002060006101000a81548160ff021916908315150217905550612ea9565b612e766001602054612fbf90919063ffffffff16565b60208190555060016018600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b5b5050565b612ec98282604051806020016040528060008152506132ac565b5050565b60008183612edb9190614ed9565b905092915050565b60008183612ef19190614ea8565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612fcd9190614e52565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303b906149fe565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131359190614896565b60405180910390a3505050565b61314d848484612925565b61315984848484613307565b613198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318f9061495e565b60405180910390fd5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061326957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061327957506132788261349e565b5b9050919050565b61328b838383613508565b505050565b505050565b6000826132a2858461361c565b1490509392505050565b6132b683836136b7565b6132c36000848484613307565b613302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f99061495e565b60405180910390fd5b505050565b60006133288473ffffffffffffffffffffffffffffffffffffffff16613891565b15613491578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613351612786565b8786866040518563ffffffff1660e01b8152600401613373949392919061484a565b602060405180830381600087803b15801561338d57600080fd5b505af19250505080156133be57506040513d601f19601f820116820180604052508101906133bb919061421f565b60015b613441573d80600081146133ee576040519150601f19603f3d011682016040523d82523d6000602084013e6133f3565b606091505b50600081511415613439576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134309061495e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613496565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6135138383836138b4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561355657613551816138b9565b613595565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613594576135938382613902565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135d8576135d381613a6f565b613617565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613616576136158282613bb2565b5b5b505050565b60008082905060005b84518110156136ac576000858281518110613669577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161368b576136848382613c31565b9250613698565b6136958184613c31565b92505b5080806136a490615030565b915050613625565b508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161371e90614abe565b60405180910390fd5b6137308161271a565b15613770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613767906149be565b60405180910390fd5b61377c60008383613280565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137cc9190614e52565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461388d60008383613290565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161390f84611959565b6139199190614ed9565b90506000600760008481526020019081526020016000205490508181146139fe576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a839190614ed9565b9050600060096000848152602001908152602001600020549050600060088381548110613ad9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613b21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613b96577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613bbd83611959565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600082600052816020526040600020905092915050565b828054613c5490614fcd565b90600052602060002090601f016020900481019282613c765760008555613cbd565b82601f10613c8f57805160ff1916838001178555613cbd565b82800160010185558215613cbd579182015b82811115613cbc578251825591602001919060010190613ca1565b5b509050613cca9190613cce565b5090565b5b80821115613ce7576000816000905550600101613ccf565b5090565b6000613cfe613cf984614d92565b614d6d565b905082815260208101848484011115613d1657600080fd5b613d21848285614f8b565b509392505050565b6000613d3c613d3784614dc3565b614d6d565b905082815260208101848484011115613d5457600080fd5b613d5f848285614f8b565b509392505050565b6000613d7a613d7584614dc3565b614d6d565b905082815260208101848484011115613d9257600080fd5b613d9d848285614f9a565b509392505050565b600081359050613db4816156c2565b92915050565b60008083601f840112613dcc57600080fd5b8235905067ffffffffffffffff811115613de557600080fd5b602083019150836020820283011115613dfd57600080fd5b9250929050565b600081359050613e13816156d9565b92915050565b600081519050613e28816156d9565b92915050565b600081359050613e3d816156f0565b92915050565b600081359050613e5281615707565b92915050565b600081519050613e6781615707565b92915050565b600082601f830112613e7e57600080fd5b8135613e8e848260208601613ceb565b91505092915050565b600082601f830112613ea857600080fd5b8135613eb8848260208601613d29565b91505092915050565b600082601f830112613ed257600080fd5b8151613ee2848260208601613d67565b91505092915050565b600081359050613efa8161571e565b92915050565b600081519050613f0f8161571e565b92915050565b600060208284031215613f2757600080fd5b6000613f3584828501613da5565b91505092915050565b60008060408385031215613f5157600080fd5b6000613f5f85828601613da5565b9250506020613f7085828601613da5565b9150509250929050565b600080600060608486031215613f8f57600080fd5b6000613f9d86828701613da5565b9350506020613fae86828701613da5565b9250506040613fbf86828701613eeb565b9150509250925092565b60008060008060808587031215613fdf57600080fd5b6000613fed87828801613da5565b9450506020613ffe87828801613da5565b935050604061400f87828801613eeb565b925050606085013567ffffffffffffffff81111561402c57600080fd5b61403887828801613e6d565b91505092959194509250565b6000806040838503121561405757600080fd5b600061406585828601613da5565b925050602061407685828601613e04565b9150509250929050565b6000806040838503121561409357600080fd5b60006140a185828601613da5565b92505060206140b285828601613eeb565b9150509250929050565b600080602083850312156140cf57600080fd5b600083013567ffffffffffffffff8111156140e957600080fd5b6140f585828601613dba565b92509250509250929050565b60006020828403121561411357600080fd5b600061412184828501613e04565b91505092915050565b6000806040838503121561413d57600080fd5b600061414b85828601613e19565b925050602083015167ffffffffffffffff81111561416857600080fd5b61417485828601613ec1565b9150509250929050565b6000806040838503121561419157600080fd5b600061419f85828601613e04565b92505060206141b085828601613eeb565b9150509250929050565b600080604083850312156141cd57600080fd5b60006141db85828601613e2e565b92505060206141ec85828601613eeb565b9150509250929050565b60006020828403121561420857600080fd5b600061421684828501613e43565b91505092915050565b60006020828403121561423157600080fd5b600061423f84828501613e58565b91505092915050565b60006020828403121561425a57600080fd5b600082015167ffffffffffffffff81111561427457600080fd5b61428084828501613ec1565b91505092915050565b6000806040838503121561429c57600080fd5b600083013567ffffffffffffffff8111156142b657600080fd5b6142c285828601613e97565b925050602083013567ffffffffffffffff8111156142df57600080fd5b6142eb85828601613e97565b9150509250929050565b60006020828403121561430757600080fd5b600061431584828501613eeb565b91505092915050565b60006020828403121561433057600080fd5b600061433e84828501613f00565b91505092915050565b6000806040838503121561435a57600080fd5b600061436885828601613eeb565b925050602061437985828601613da5565b9150509250929050565b60008060006060848603121561439857600080fd5b60006143a686828701613eeb565b93505060206143b786828701613eeb565b92505060406143c886828701613eeb565b9150509250925092565b6143db81614f0d565b82525050565b6143f26143ed82614f0d565b615079565b82525050565b61440181614f1f565b82525050565b61441081614f1f565b82525050565b61441f81614f2b565b82525050565b600061443082614e09565b61443a8185614e1f565b935061444a818560208601614f9a565b61445381615159565b840191505092915050565b600061446982614e14565b6144738185614e30565b9350614483818560208601614f9a565b61448c81615159565b840191505092915050565b600081546144a481614fcd565b6144ae8186614e41565b945060018216600081146144c957600181146144db5761450e565b60ff198316865260208601935061450e565b6144e485614df4565b60005b83811015614506578154818901526001820191506020810190506144e7565b808801955050505b50505092915050565b6000614524601f83614e30565b915061452f82615177565b602082019050919050565b6000614547602b83614e30565b9150614552826151a0565b604082019050919050565b600061456a603283614e30565b9150614575826151ef565b604082019050919050565b600061458d602683614e30565b91506145988261523e565b604082019050919050565b60006145b0602583614e30565b91506145bb8261528d565b604082019050919050565b60006145d3601c83614e30565b91506145de826152dc565b602082019050919050565b60006145f6602483614e30565b915061460182615305565b604082019050919050565b6000614619601983614e30565b915061462482615354565b602082019050919050565b600061463c602c83614e30565b91506146478261537d565b604082019050919050565b600061465f603883614e30565b915061466a826153cc565b604082019050919050565b6000614682602a83614e30565b915061468d8261541b565b604082019050919050565b60006146a5601a83614e30565b91506146b08261546a565b602082019050919050565b60006146c8602983614e30565b91506146d382615493565b604082019050919050565b60006146eb602083614e30565b91506146f6826154e2565b602082019050919050565b600061470e602c83614e30565b91506147198261550b565b604082019050919050565b6000614731602083614e30565b915061473c8261555a565b602082019050919050565b6000614754602183614e30565b915061475f82615583565b604082019050919050565b6000614777601f83614e30565b9150614782826155d2565b602082019050919050565b600061479a603183614e30565b91506147a5826155fb565b604082019050919050565b60006147bd602c83614e30565b91506147c88261564a565b604082019050919050565b60006147e0601f83614e30565b91506147eb82615699565b602082019050919050565b6147ff81614f81565b82525050565b61480e81614f81565b82525050565b600061482082846143e1565b60148201915081905092915050565b600060208201905061484460008301846143d2565b92915050565b600060808201905061485f60008301876143d2565b61486c60208301866143d2565b61487960408301856147f6565b818103606083015261488b8184614425565b905095945050505050565b60006020820190506148ab60008301846143f8565b92915050565b60006040820190506148c660008301856143f8565b81810360208301526148d8818461445e565b90509392505050565b60006020820190506148f66000830184614416565b92915050565b60006020820190508181036000830152614916818461445e565b905092915050565b6000602082019050818103600083015261493781614517565b9050919050565b600060208201905081810360008301526149578161453a565b9050919050565b600060208201905081810360008301526149778161455d565b9050919050565b6000602082019050818103600083015261499781614580565b9050919050565b600060208201905081810360008301526149b7816145a3565b9050919050565b600060208201905081810360008301526149d7816145c6565b9050919050565b600060208201905081810360008301526149f7816145e9565b9050919050565b60006020820190508181036000830152614a178161460c565b9050919050565b60006020820190508181036000830152614a378161462f565b9050919050565b60006020820190508181036000830152614a5781614652565b9050919050565b60006020820190508181036000830152614a7781614675565b9050919050565b60006020820190508181036000830152614a9781614698565b9050919050565b60006020820190508181036000830152614ab7816146bb565b9050919050565b60006020820190508181036000830152614ad7816146de565b9050919050565b60006020820190508181036000830152614af781614701565b9050919050565b60006020820190508181036000830152614b1781614724565b9050919050565b60006020820190508181036000830152614b3781614747565b9050919050565b60006020820190508181036000830152614b578161476a565b9050919050565b60006020820190508181036000830152614b778161478d565b9050919050565b60006020820190508181036000830152614b97816147b0565b9050919050565b60006020820190508181036000830152614bb7816147d3565b9050919050565b6000602082019050614bd360008301846147f6565b92915050565b600060c082019050614bee6000830189614805565b614bfb6020830188614407565b614c086040830187614407565b614c156060830186614407565b614c226080830185614407565b614c2f60a0830184614407565b979650505050505050565b6000608082019050614c4f6000830187614805565b614c5c6020830186614407565b8181036040830152614c6e8185614497565b90508181036060830152614c828184614497565b905095945050505050565b600060a082019050614ca26000830188614805565b614caf6020830187614805565b614cbc6040830186614805565b614cc96060830185614805565b614cd66080830184614805565b9695505050505050565b600061012082019050614cf6600083018c614805565b614d03602083018b614805565b614d10604083018a614805565b614d1d6060830189614805565b614d2a6080830188614805565b614d3760a0830187614805565b614d4460c0830186614805565b614d5160e0830185614805565b614d5f610100830184614805565b9a9950505050505050505050565b6000614d77614d88565b9050614d838282614fff565b919050565b6000604051905090565b600067ffffffffffffffff821115614dad57614dac61512a565b5b614db682615159565b9050602081019050919050565b600067ffffffffffffffff821115614dde57614ddd61512a565b5b614de782615159565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614e5d82614f81565b9150614e6883614f81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e9d57614e9c61509d565b5b828201905092915050565b6000614eb382614f81565b9150614ebe83614f81565b925082614ece57614ecd6150cc565b5b828204905092915050565b6000614ee482614f81565b9150614eef83614f81565b925082821015614f0257614f0161509d565b5b828203905092915050565b6000614f1882614f61565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614fb8578082015181840152602081019050614f9d565b83811115614fc7576000848401525b50505050565b60006002820490506001821680614fe557607f821691505b60208210811415614ff957614ff86150fb565b5b50919050565b61500882615159565b810181811067ffffffffffffffff821117156150275761502661512a565b5b80604052505050565b600061503b82614f81565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561506e5761506d61509d565b5b600182019050919050565b60006150848261508b565b9050919050565b60006150968261516a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742070617961626c652076616c7565000000000000600082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e2774206d696e74206d6f7265207468616e203130303030204e46547300600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6156cb81614f0d565b81146156d657600080fd5b50565b6156e281614f1f565b81146156ed57600080fd5b50565b6156f981614f2b565b811461570457600080fd5b50565b61571081614f35565b811461571b57600080fd5b50565b61572781614f81565b811461573257600080fd5b5056fea264697066735822122011b2bf8fe4c237955d44df5b9aaf725958e2dbcc462949d3e43aaeb7cf0db1fd64736f6c63430008040033

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.