ETH Price: $3,275.63 (+0.92%)
Gas: 2 Gwei

Token

Cyber-Eve (CYBER-EVE)
 

Overview

Max Total Supply

177 CYBER-EVE

Holders

75

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CYBER-EVE
0x4d250bc3693a5cf0096f645d0ba1bc13bd856524
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
CyberEve

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : cyber-eve.sol
//SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

contract CyberEve is ERC721Enumerable, Ownable {
    using ECDSA for bytes32;
    
    // Max Supply
    uint256 constant MAX_SUPPLY = 4096;

    // Max Supply for presale
    uint256 constant MAX_SUPPLY_PRESALE = 3000;

    // Max allocaiton per wallet
    uint256 constant WALLET_MAX = 10;

    // Max presale allocation per wallet 
    uint constant PRESALE_MAX = 2;

    // The base link that leads to the image / video of the token
    string public baseTokenURI = "https://mint.cybereve.io/nft/";

    // Signer address
    address private signerAddress = 0xE904d85B6B92f0556c0Ac05bAf094Dcd51a889CA;

    // Pass signer address
    address private passSignerAddress = 0xFE42841957CD2A0a474246799dd84ab5101E7B76;

    // Starting and stopping sale
    bool public saleActive = false;
    
    // Starting and stopping presale
    bool public presaleActive = false;

    // Price of each token
    uint256 public price = 0.07 ether;

    // Price of each token
    uint256 public presalePrice = 0.05 ether;

    // NFTs per wallet record
    mapping(address => uint256) public walletMinted;
    mapping(address => bool) public freeMinted;
    mapping(address => uint256) public presaleMinted;

    // Used hashes
    mapping(bytes32 => bool) private usedHash;

    constructor () ERC721 ("Cyber-Eve", "CYBER-EVE") {}

    // Mint an NFT
    function mint(uint256 _amount) public payable {
        require(saleActive, "sale_is_closed");
        
        require(walletMinted[msg.sender] + _amount <= WALLET_MAX , "exceeded_max_per_wallet");
        require(totalSupply() + _amount <= MAX_SUPPLY, "out_of_stock");
        require(msg.value >= price * _amount, "insufficient_eth");

        for(uint256 i; i < _amount; i++){
            walletMinted[msg.sender]++;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    // Presale mint
    function mintPresale(bytes32 _hash, bytes memory _signature, string memory _nonce, uint256 _amount) public payable {
        require(!saleActive && presaleActive, "presale_is_closed");

        require(addressSignerValid(_hash, _signature, signerAddress), "unverified_mint");
        require(!usedHash[_hash], "hash_already_used");
        require(hashTransaction(msg.sender, _nonce, _amount) == _hash, "hash_mismatched");

        require(totalSupply() + _amount <= MAX_SUPPLY_PRESALE, "presale_out_of_stock");
        require(presaleMinted[msg.sender] + _amount <= PRESALE_MAX, "exceeded_max_per_wallet");

        require(msg.value >= presalePrice * _amount, "insufficient_eth");

        for (uint256 i = 0; i < _amount; i++) {
            walletMinted[msg.sender]++;
            presaleMinted[msg.sender]++;
            _safeMint(msg.sender, totalSupply() + 1);
        }

        usedHash[_hash] = true;
    }

    // Free mint
    function mintFree(bytes32 _hash, bytes memory _signature, string memory _nonce) public {
        require(saleActive || presaleActive, "presale_is_closed");

        require(addressSignerValid(_hash, _signature, passSignerAddress), "unverified_mint");
        require(!usedHash[_hash], "hash_already_used");
        require(hashTransaction(msg.sender, _nonce, 1) == _hash, "hash_mismatched");

        require(totalSupply() + 1 <= MAX_SUPPLY, "out_of_stock");
        require(!freeMinted[msg.sender], "eve_pass_already_claimed");

        walletMinted[msg.sender]++;
        freeMinted[msg.sender] = true;
        _safeMint(msg.sender, totalSupply() + 1);

        usedHash[_hash] = true;
    }

    // airdrop tokens to address for free
    function airdrop(address _to, uint256 _amount) public onlyOwner {
        require(totalSupply() + _amount <= MAX_SUPPLY, "out_of_stock");

        for (uint256 i = 0; i < _amount; i++) {
            _safeMint(_to, totalSupply() + 1);
        }
    }

    // See which address owns which tokens
    function tokensOfOwner(address addr) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(addr);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(addr, i);
        }

        return tokensId;
    }

    // State Management //

    // Start and stop sale
    function setSaleActive(bool _state) external onlyOwner {
        saleActive = _state;
    }

    // Start and stop presale
    function setPresaleActive(bool _state) external onlyOwner {
        presaleActive = _state;
    }

    // Set new baseURI
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseTokenURI = _newBaseURI;
    }

    // Set a different price in case ETH changes drastically
    function setPrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }

    // Set a different price in case ETH changes drastically
    function setPresalePrice(uint256 _newPrice) public onlyOwner {
        presalePrice = _newPrice;
    }

    // Set signer address
    function setSignerAddress(address _address) public onlyOwner {
        signerAddress = _address;
    }

    // Set pass signer address
    function setPassSignerAddress(address _address) public onlyOwner {
        passSignerAddress = _address;
    }

    // Withdraw funds from contracts for the team
    function withdrawTeam() external payable onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    // Create a keccak256 hash from the sender, amount and nonce
    function hashTransaction(address sender, string memory nonce, uint256 amount) private pure returns(bytes32) {
        bytes32 hash = keccak256(abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                keccak256(abi.encodePacked(sender, nonce, amount)))
        );

        return hash;
    }

    // Validate that the address that signed the hashed message with the signature is correct
    function addressSignerValid(bytes32 hash, bytes memory signature, address _signer) private pure returns(bool) {
        return _signer == hash.recover(signature);
    }

    // Override so the openzeppelin tokenURI() method will use this method to create the full tokenURI instead
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
}

File 2 of 14 : 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 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 14 : 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 7 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 overriden 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 || getApproved(tokenId) == spender || isApprovedForAll(owner, 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 8 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 9 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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 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);

    /**
     * @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;
}

File 10 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 13 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"string","name":"_nonce","type":"string"}],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"string","name":"_nonce","type":"string"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setPassSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setSignerAddress","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":[{"internalType":"address","name":"addr","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawTeam","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280601d81526020017f68747470733a2f2f6d696e742e63796265726576652e696f2f6e66742f000000815250600b908051906020019062000051929190620002ea565b5073e904d85b6b92f0556c0ac05baf094dcd51a889ca600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fe42841957cd2a0a474246799dd84ab5101e7b76600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d60146101000a81548160ff0219169083151502179055506000600d60156101000a81548160ff02191690831515021790555066f8b0a10e470000600e5566b1a2bc2ec50000600f553480156200015557600080fd5b506040518060400160405280600981526020017f43796265722d45766500000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f43594245522d45564500000000000000000000000000000000000000000000008152508160009080519060200190620001da929190620002ea565b508060019080519060200190620001f3929190620002ea565b505050620002166200020a6200021c60201b60201c565b6200022460201b60201c565b620003ff565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002f8906200039a565b90600052602060002090601f0160209004810192826200031c576000855562000368565b82601f106200033757805160ff191683800117855562000368565b8280016001018555821562000368579182015b82811115620003675782518255916020019190600101906200034a565b5b5090506200037791906200037b565b5090565b5b80821115620003965760008160009055506001016200037c565b5090565b60006002820490506001821680620003b357607f821691505b60208210811415620003ca57620003c9620003d0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615ad2806200040f6000396000f3fe60806040526004361061023a5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063d3738fc81161006f578063d3738fc814610867578063d547cfb7146108a4578063e22012d0146108cf578063e985e9c5146108f8578063f2fde38b146109355761023a565b8063b88d4fde14610791578063b9e2e2e9146107ba578063bb51f32d146107e3578063bc660cac146107ed578063c87b56dd1461082a5761023a565b806391b7f5ed116100f257806391b7f5ed146106cd57806395d89b41146106f6578063a035b1fe14610721578063a0712d681461074c578063a22cb465146107685761023a565b8063715018a6146105fc578063841718a6146106135780638462151c1461063c5780638ba4cc3c146106795780638da5cb5b146106a25761023a565b80633549345e116101bc57806353135ca01161018057806353135ca01461050357806355f804b31461052e5780636352211e1461055757806368428a1b1461059457806370a08231146105bf5761023a565b80633549345e1461040e578063389fcf06146104375780633f8121a21461047457806342842e0e1461049d5780634f6ccce7146104c65761023a565b8063095ea7b311610203578063095ea7b31461033857806318160ddd146103615780631fe3eb631461038c57806323b872dd146103a85780632f745c59146103d15761023a565b80620e7fa81461023f57806301ffc9a71461026a578063046dc166146102a757806306fdde03146102d0578063081812fc146102fb575b600080fd5b34801561024b57600080fd5b5061025461095e565b6040516102619190614cf0565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190614057565b610964565b60405161029e919061486e565b60405180910390f35b3480156102b357600080fd5b506102ce60048036038101906102c99190613d3d565b6109de565b005b3480156102dc57600080fd5b506102e5610a9e565b6040516102f291906148ce565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d91906140fa565b610b30565b60405161032f91906147e5565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190613ec0565b610bb5565b005b34801561036d57600080fd5b50610376610ccd565b6040516103839190614cf0565b60405180910390f35b6103a660048036038101906103a19190613fb8565b610cda565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190613daa565b6110a8565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190613ec0565b611108565b6040516104059190614cf0565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906140fa565b6111ad565b005b34801561044357600080fd5b5061045e60048036038101906104599190613d3d565b611233565b60405161046b919061486e565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190613f00565b611253565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190613daa565b6112ec565b005b3480156104d257600080fd5b506104ed60048036038101906104e891906140fa565b61130c565b6040516104fa9190614cf0565b60405180910390f35b34801561050f57600080fd5b5061051861137d565b604051610525919061486e565b60405180910390f35b34801561053a57600080fd5b50610555600480360381019061055091906140b1565b611390565b005b34801561056357600080fd5b5061057e600480360381019061057991906140fa565b611426565b60405161058b91906147e5565b60405180910390f35b3480156105a057600080fd5b506105a96114d8565b6040516105b6919061486e565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190613d3d565b6114eb565b6040516105f39190614cf0565b60405180910390f35b34801561060857600080fd5b506106116115a3565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613f00565b61162b565b005b34801561064857600080fd5b50610663600480360381019061065e9190613d3d565b6116c4565b604051610670919061484c565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190613ec0565b611772565b005b3480156106ae57600080fd5b506106b7611885565b6040516106c491906147e5565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef91906140fa565b6118af565b005b34801561070257600080fd5b5061070b611935565b60405161071891906148ce565b60405180910390f35b34801561072d57600080fd5b506107366119c7565b6040516107439190614cf0565b60405180910390f35b610766600480360381019061076191906140fa565b6119cd565b005b34801561077457600080fd5b5061078f600480360381019061078a9190613e80565b611be5565b005b34801561079d57600080fd5b506107b860048036038101906107b39190613dfd565b611bfb565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190613f2d565b611c5d565b005b6107eb611fbd565b005b3480156107f957600080fd5b50610814600480360381019061080f9190613d3d565b612082565b6040516108219190614cf0565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906140fa565b61209a565b60405161085e91906148ce565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190613d3d565b612141565b60405161089b9190614cf0565b60405180910390f35b3480156108b057600080fd5b506108b9612159565b6040516108c691906148ce565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190613d3d565b6121e7565b005b34801561090457600080fd5b5061091f600480360381019061091a9190613d6a565b6122a7565b60405161092c919061486e565b60405180910390f35b34801561094157600080fd5b5061095c60048036038101906109579190613d3d565b61233b565b005b600f5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d757506109d682612433565b5b9050919050565b6109e6612515565b73ffffffffffffffffffffffffffffffffffffffff16610a04611885565b73ffffffffffffffffffffffffffffffffffffffff1614610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5190614c10565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610aad90614ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad990614ff0565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050905090565b6000610b3b8261251d565b610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190614bd0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc082611426565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890614c70565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c50612515565b73ffffffffffffffffffffffffffffffffffffffff161480610c7f5750610c7e81610c79612515565b6122a7565b5b610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590614af0565b60405180910390fd5b610cc88383612589565b505050565b6000600880549050905090565b600d60149054906101000a900460ff16158015610d035750600d60159054906101000a900460ff165b610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990614c30565b60405180910390fd5b610d6f8484600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612642565b610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da5906149f0565b60405180910390fd5b6013600085815260200190815260200160002060009054906101000a900460ff1615610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690614b50565b60405180910390fd5b83610e1b33848461268e565b14610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290614cd0565b60405180910390fd5b610bb881610e67610ccd565b610e719190614e0e565b1115610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990614950565b60405180910390fd5b600281601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610eff9190614e0e565b1115610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3790614bf0565b60405180910390fd5b80600f54610f4e9190614e95565b341015610f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8790614a50565b60405180910390fd5b60005b8181101561107557601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610feb90615053565b9190505550601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061104090615053565b9190505550611062336001611053610ccd565b61105d9190614e0e565b6126ef565b808061106d90615053565b915050610f93565b5060016013600086815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6110b96110b3612515565b8261270d565b6110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90614c90565b60405180910390fd5b6111038383836127eb565b505050565b6000611113836114eb565b8210611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90614930565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111b5612515565b73ffffffffffffffffffffffffffffffffffffffff166111d3611885565b73ffffffffffffffffffffffffffffffffffffffff1614611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090614c10565b60405180910390fd5b80600f8190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b61125b612515565b73ffffffffffffffffffffffffffffffffffffffff16611279611885565b73ffffffffffffffffffffffffffffffffffffffff16146112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c690614c10565b60405180910390fd5b80600d60156101000a81548160ff02191690831515021790555050565b61130783838360405180602001604052806000815250611bfb565b505050565b6000611316610ccd565b8210611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90614cb0565b60405180910390fd5b6008828154811061136b5761136a6151f0565b5b90600052602060002001549050919050565b600d60159054906101000a900460ff1681565b611398612515565b73ffffffffffffffffffffffffffffffffffffffff166113b6611885565b73ffffffffffffffffffffffffffffffffffffffff161461140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140390614c10565b60405180910390fd5b80600b9080519060200190611422929190613b3c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690614b30565b60405180910390fd5b80915050919050565b600d60149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390614b10565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115ab612515565b73ffffffffffffffffffffffffffffffffffffffff166115c9611885565b73ffffffffffffffffffffffffffffffffffffffff161461161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690614c10565b60405180910390fd5b6116296000612a52565b565b611633612515565b73ffffffffffffffffffffffffffffffffffffffff16611651611885565b73ffffffffffffffffffffffffffffffffffffffff16146116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169e90614c10565b60405180910390fd5b80600d60146101000a81548160ff02191690831515021790555050565b606060006116d1836114eb565b905060008167ffffffffffffffff8111156116ef576116ee61521f565b5b60405190808252806020026020018201604052801561171d5781602001602082028036833780820191505090505b50905060005b82811015611767576117358582611108565b828281518110611748576117476151f0565b5b602002602001018181525050808061175f90615053565b915050611723565b508092505050919050565b61177a612515565b73ffffffffffffffffffffffffffffffffffffffff16611798611885565b73ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590614c10565b60405180910390fd5b611000816117fa610ccd565b6118049190614e0e565b1115611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90614bb0565b60405180910390fd5b60005b818110156118805761186d83600161185e610ccd565b6118689190614e0e565b6126ef565b808061187890615053565b915050611848565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118b7612515565b73ffffffffffffffffffffffffffffffffffffffff166118d5611885565b73ffffffffffffffffffffffffffffffffffffffff161461192b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192290614c10565b60405180910390fd5b80600e8190555050565b60606001805461194490614ff0565b80601f016020809104026020016040519081016040528092919081815260200182805461197090614ff0565b80156119bd5780601f10611992576101008083540402835291602001916119bd565b820191906000526020600020905b8154815290600101906020018083116119a057829003601f168201915b5050505050905090565b600e5481565b600d60149054906101000a900460ff16611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1390614ad0565b60405180910390fd5b600a81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a699190614e0e565b1115611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa190614bf0565b60405180910390fd5b61100081611ab6610ccd565b611ac09190614e0e565b1115611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af890614bb0565b60405180910390fd5b80600e54611b0f9190614e95565b341015611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4890614a50565b60405180910390fd5b60005b81811015611be157601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611bac90615053565b9190505550611bce336001611bbf610ccd565b611bc99190614e0e565b6126ef565b8080611bd990615053565b915050611b54565b5050565b611bf7611bf0612515565b8383612b18565b5050565b611c0c611c06612515565b8361270d565b611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4290614c90565b60405180910390fd5b611c5784848484612c85565b50505050565b600d60149054906101000a900460ff1680611c845750600d60159054906101000a900460ff165b611cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cba90614c30565b60405180910390fd5b611cf08383600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612642565b611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d26906149f0565b60405180910390fd5b6013600084815260200190815260200160002060009054906101000a900460ff1615611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790614b50565b60405180910390fd5b82611d9d3383600161268e565b14611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490614cd0565b60405180910390fd5b6110006001611dea610ccd565b611df49190614e0e565b1115611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c90614bb0565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990614a90565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611f1290615053565b91905055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f8c336001611f7d610ccd565b611f879190614e0e565b6126ef565b60016013600085815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b611fc5612515565b73ffffffffffffffffffffffffffffffffffffffff16611fe3611885565b73ffffffffffffffffffffffffffffffffffffffff1614612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203090614c10565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561207f573d6000803e3d6000fd5b50565b60126020528060005260406000206000915090505481565b60606120a58261251d565b6120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90614c50565b60405180910390fd5b60006120ee612ce1565b9050600081511161210e5760405180602001604052806000815250612139565b8061211884612d73565b60405160200161212992919061479b565b6040516020818303038152906040525b915050919050565b60106020528060005260406000206000915090505481565b600b805461216690614ff0565b80601f016020809104026020016040519081016040528092919081815260200182805461219290614ff0565b80156121df5780601f106121b4576101008083540402835291602001916121df565b820191906000526020600020905b8154815290600101906020018083116121c257829003601f168201915b505050505081565b6121ef612515565b73ffffffffffffffffffffffffffffffffffffffff1661220d611885565b73ffffffffffffffffffffffffffffffffffffffff1614612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a90614c10565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612343612515565b73ffffffffffffffffffffffffffffffffffffffff16612361611885565b73ffffffffffffffffffffffffffffffffffffffff16146123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90614c10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e90614990565b60405180910390fd5b61243081612a52565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061250e575061250d82612ed4565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125fc83611426565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126578385612f3e90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161490509392505050565b6000808484846040516020016126a693929190614762565b604051602081830303815290604052805190602001206040516020016126cc91906147bf565b604051602081830303815290604052805190602001209050809150509392505050565b612709828260405180602001604052806000815250612f65565b5050565b60006127188261251d565b612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90614ab0565b60405180910390fd5b600061276283611426565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127d157508373ffffffffffffffffffffffffffffffffffffffff166127b984610b30565b73ffffffffffffffffffffffffffffffffffffffff16145b806127e257506127e181856122a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661280b82611426565b73ffffffffffffffffffffffffffffffffffffffff1614612861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612858906149b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c890614a10565b60405180910390fd5b6128dc838383612fc0565b6128e7600082612589565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129379190614eef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461298e9190614e0e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4d8383836130d4565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7e90614a30565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c78919061486e565b60405180910390a3505050565b612c908484846127eb565b612c9c848484846130d9565b612cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd290614970565b60405180910390fd5b50505050565b6060600b8054612cf090614ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054612d1c90614ff0565b8015612d695780601f10612d3e57610100808354040283529160200191612d69565b820191906000526020600020905b815481529060010190602001808311612d4c57829003601f168201915b5050505050905090565b60606000821415612dbb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ecf565b600082905060005b60008214612ded578080612dd690615053565b915050600a82612de69190614e64565b9150612dc3565b60008167ffffffffffffffff811115612e0957612e0861521f565b5b6040519080825280601f01601f191660200182016040528015612e3b5781602001600182028036833780820191505090505b5090505b60008514612ec857600182612e549190614eef565b9150600a85612e6391906150d4565b6030612e6f9190614e0e565b60f81b818381518110612e8557612e846151f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ec19190614e64565b9450612e3f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000806000612f4d8585613270565b91509150612f5a816132f3565b819250505092915050565b612f6f83836134c8565b612f7c60008484846130d9565b612fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb290614970565b60405180910390fd5b505050565b612fcb8383836136a2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561300e57613009816136a7565b61304d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461304c5761304b83826136f0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130905761308b8161385d565b6130cf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130ce576130cd828261392e565b5b5b505050565b505050565b60006130fa8473ffffffffffffffffffffffffffffffffffffffff166139ad565b15613263578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613123612515565b8786866040518563ffffffff1660e01b81526004016131459493929190614800565b602060405180830381600087803b15801561315f57600080fd5b505af192505050801561319057506040513d601f19601f8201168201806040525081019061318d9190614084565b60015b613213573d80600081146131c0576040519150601f19603f3d011682016040523d82523d6000602084013e6131c5565b606091505b5060008151141561320b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320290614970565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613268565b600190505b949350505050565b6000806041835114156132b25760008060006020860151925060408601519150606086015160001a90506132a6878285856139d0565b945094505050506132ec565b6040835114156132e35760008060208501519150604085015190506132d8868383613add565b9350935050506132ec565b60006002915091505b9250929050565b6000600481111561330757613306615163565b5b81600481111561331a57613319615163565b5b1415613325576134c5565b6001600481111561333957613338615163565b5b81600481111561334c5761334b615163565b5b141561338d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613384906148f0565b60405180910390fd5b600260048111156133a1576133a0615163565b5b8160048111156133b4576133b3615163565b5b14156133f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ec90614910565b60405180910390fd5b6003600481111561340957613408615163565b5b81600481111561341c5761341b615163565b5b141561345d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345490614a70565b60405180910390fd5b6004808111156134705761346f615163565b5b81600481111561348357613482615163565b5b14156134c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bb90614b70565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352f90614b90565b60405180910390fd5b6135418161251d565b15613581576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613578906149d0565b60405180910390fd5b61358d60008383612fc0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135dd9190614e0e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461369e600083836130d4565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136fd846114eb565b6137079190614eef565b90506000600760008481526020019081526020016000205490508181146137ec576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138719190614eef565b90506000600960008481526020019081526020016000205490506000600883815481106138a1576138a06151f0565b5b9060005260206000200154905080600883815481106138c3576138c26151f0565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613912576139116151c1565b5b6001900381819060005260206000200160009055905550505050565b6000613939836114eb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613a0b576000600391509150613ad4565b601b8560ff1614158015613a235750601c8560ff1614155b15613a35576000600491509150613ad4565b600060018787878760405160008152602001604052604051613a5a9493929190614889565b6020604051602081039080840390855afa158015613a7c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613acb57600060019250925050613ad4565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613b209190614e0e565b9050613b2e878288856139d0565b935093505050935093915050565b828054613b4890614ff0565b90600052602060002090601f016020900481019282613b6a5760008555613bb1565b82601f10613b8357805160ff1916838001178555613bb1565b82800160010185558215613bb1579182015b82811115613bb0578251825591602001919060010190613b95565b5b509050613bbe9190613bc2565b5090565b5b80821115613bdb576000816000905550600101613bc3565b5090565b6000613bf2613bed84614d30565b614d0b565b905082815260208101848484011115613c0e57613c0d615253565b5b613c19848285614fae565b509392505050565b6000613c34613c2f84614d61565b614d0b565b905082815260208101848484011115613c5057613c4f615253565b5b613c5b848285614fae565b509392505050565b600081359050613c7281615a29565b92915050565b600081359050613c8781615a40565b92915050565b600081359050613c9c81615a57565b92915050565b600081359050613cb181615a6e565b92915050565b600081519050613cc681615a6e565b92915050565b600082601f830112613ce157613ce061524e565b5b8135613cf1848260208601613bdf565b91505092915050565b600082601f830112613d0f57613d0e61524e565b5b8135613d1f848260208601613c21565b91505092915050565b600081359050613d3781615a85565b92915050565b600060208284031215613d5357613d5261525d565b5b6000613d6184828501613c63565b91505092915050565b60008060408385031215613d8157613d8061525d565b5b6000613d8f85828601613c63565b9250506020613da085828601613c63565b9150509250929050565b600080600060608486031215613dc357613dc261525d565b5b6000613dd186828701613c63565b9350506020613de286828701613c63565b9250506040613df386828701613d28565b9150509250925092565b60008060008060808587031215613e1757613e1661525d565b5b6000613e2587828801613c63565b9450506020613e3687828801613c63565b9350506040613e4787828801613d28565b925050606085013567ffffffffffffffff811115613e6857613e67615258565b5b613e7487828801613ccc565b91505092959194509250565b60008060408385031215613e9757613e9661525d565b5b6000613ea585828601613c63565b9250506020613eb685828601613c78565b9150509250929050565b60008060408385031215613ed757613ed661525d565b5b6000613ee585828601613c63565b9250506020613ef685828601613d28565b9150509250929050565b600060208284031215613f1657613f1561525d565b5b6000613f2484828501613c78565b91505092915050565b600080600060608486031215613f4657613f4561525d565b5b6000613f5486828701613c8d565b935050602084013567ffffffffffffffff811115613f7557613f74615258565b5b613f8186828701613ccc565b925050604084013567ffffffffffffffff811115613fa257613fa1615258565b5b613fae86828701613cfa565b9150509250925092565b60008060008060808587031215613fd257613fd161525d565b5b6000613fe087828801613c8d565b945050602085013567ffffffffffffffff81111561400157614000615258565b5b61400d87828801613ccc565b935050604085013567ffffffffffffffff81111561402e5761402d615258565b5b61403a87828801613cfa565b925050606061404b87828801613d28565b91505092959194509250565b60006020828403121561406d5761406c61525d565b5b600061407b84828501613ca2565b91505092915050565b60006020828403121561409a5761409961525d565b5b60006140a884828501613cb7565b91505092915050565b6000602082840312156140c7576140c661525d565b5b600082013567ffffffffffffffff8111156140e5576140e4615258565b5b6140f184828501613cfa565b91505092915050565b6000602082840312156141105761410f61525d565b5b600061411e84828501613d28565b91505092915050565b6000614133838361471e565b60208301905092915050565b61414881614f23565b82525050565b61415f61415a82614f23565b61509c565b82525050565b600061417082614da2565b61417a8185614dd0565b935061418583614d92565b8060005b838110156141b657815161419d8882614127565b97506141a883614dc3565b925050600181019050614189565b5085935050505092915050565b6141cc81614f35565b82525050565b6141db81614f41565b82525050565b6141f26141ed82614f41565b6150ae565b82525050565b600061420382614dad565b61420d8185614de1565b935061421d818560208601614fbd565b61422681615262565b840191505092915050565b600061423c82614db8565b6142468185614df2565b9350614256818560208601614fbd565b61425f81615262565b840191505092915050565b600061427582614db8565b61427f8185614e03565b935061428f818560208601614fbd565b80840191505092915050565b60006142a8601883614df2565b91506142b382615280565b602082019050919050565b60006142cb601f83614df2565b91506142d6826152a9565b602082019050919050565b60006142ee601c83614e03565b91506142f9826152d2565b601c82019050919050565b6000614311602b83614df2565b915061431c826152fb565b604082019050919050565b6000614334601483614df2565b915061433f8261534a565b602082019050919050565b6000614357603283614df2565b915061436282615373565b604082019050919050565b600061437a602683614df2565b9150614385826153c2565b604082019050919050565b600061439d602583614df2565b91506143a882615411565b604082019050919050565b60006143c0601c83614df2565b91506143cb82615460565b602082019050919050565b60006143e3600f83614df2565b91506143ee82615489565b602082019050919050565b6000614406602483614df2565b9150614411826154b2565b604082019050919050565b6000614429601983614df2565b915061443482615501565b602082019050919050565b600061444c601083614df2565b91506144578261552a565b602082019050919050565b600061446f602283614df2565b915061447a82615553565b604082019050919050565b6000614492601883614df2565b915061449d826155a2565b602082019050919050565b60006144b5602c83614df2565b91506144c0826155cb565b604082019050919050565b60006144d8600e83614df2565b91506144e38261561a565b602082019050919050565b60006144fb603883614df2565b915061450682615643565b604082019050919050565b600061451e602a83614df2565b915061452982615692565b604082019050919050565b6000614541602983614df2565b915061454c826156e1565b604082019050919050565b6000614564601183614df2565b915061456f82615730565b602082019050919050565b6000614587602283614df2565b915061459282615759565b604082019050919050565b60006145aa602083614df2565b91506145b5826157a8565b602082019050919050565b60006145cd600c83614df2565b91506145d8826157d1565b602082019050919050565b60006145f0602c83614df2565b91506145fb826157fa565b604082019050919050565b6000614613601783614df2565b915061461e82615849565b602082019050919050565b6000614636602083614df2565b915061464182615872565b602082019050919050565b6000614659601183614df2565b91506146648261589b565b602082019050919050565b600061467c602f83614df2565b9150614687826158c4565b604082019050919050565b600061469f602183614df2565b91506146aa82615913565b604082019050919050565b60006146c2603183614df2565b91506146cd82615962565b604082019050919050565b60006146e5602c83614df2565b91506146f0826159b1565b604082019050919050565b6000614708600f83614df2565b915061471382615a00565b602082019050919050565b61472781614f97565b82525050565b61473681614f97565b82525050565b61474d61474882614f97565b6150ca565b82525050565b61475c81614fa1565b82525050565b600061476e828661414e565b60148201915061477e828561426a565b915061478a828461473c565b602082019150819050949350505050565b60006147a7828561426a565b91506147b3828461426a565b91508190509392505050565b60006147ca826142e1565b91506147d682846141e1565b60208201915081905092915050565b60006020820190506147fa600083018461413f565b92915050565b6000608082019050614815600083018761413f565b614822602083018661413f565b61482f604083018561472d565b818103606083015261484181846141f8565b905095945050505050565b600060208201905081810360008301526148668184614165565b905092915050565b600060208201905061488360008301846141c3565b92915050565b600060808201905061489e60008301876141d2565b6148ab6020830186614753565b6148b860408301856141d2565b6148c560608301846141d2565b95945050505050565b600060208201905081810360008301526148e88184614231565b905092915050565b600060208201905081810360008301526149098161429b565b9050919050565b60006020820190508181036000830152614929816142be565b9050919050565b6000602082019050818103600083015261494981614304565b9050919050565b6000602082019050818103600083015261496981614327565b9050919050565b600060208201905081810360008301526149898161434a565b9050919050565b600060208201905081810360008301526149a98161436d565b9050919050565b600060208201905081810360008301526149c981614390565b9050919050565b600060208201905081810360008301526149e9816143b3565b9050919050565b60006020820190508181036000830152614a09816143d6565b9050919050565b60006020820190508181036000830152614a29816143f9565b9050919050565b60006020820190508181036000830152614a498161441c565b9050919050565b60006020820190508181036000830152614a698161443f565b9050919050565b60006020820190508181036000830152614a8981614462565b9050919050565b60006020820190508181036000830152614aa981614485565b9050919050565b60006020820190508181036000830152614ac9816144a8565b9050919050565b60006020820190508181036000830152614ae9816144cb565b9050919050565b60006020820190508181036000830152614b09816144ee565b9050919050565b60006020820190508181036000830152614b2981614511565b9050919050565b60006020820190508181036000830152614b4981614534565b9050919050565b60006020820190508181036000830152614b6981614557565b9050919050565b60006020820190508181036000830152614b898161457a565b9050919050565b60006020820190508181036000830152614ba98161459d565b9050919050565b60006020820190508181036000830152614bc9816145c0565b9050919050565b60006020820190508181036000830152614be9816145e3565b9050919050565b60006020820190508181036000830152614c0981614606565b9050919050565b60006020820190508181036000830152614c2981614629565b9050919050565b60006020820190508181036000830152614c498161464c565b9050919050565b60006020820190508181036000830152614c698161466f565b9050919050565b60006020820190508181036000830152614c8981614692565b9050919050565b60006020820190508181036000830152614ca9816146b5565b9050919050565b60006020820190508181036000830152614cc9816146d8565b9050919050565b60006020820190508181036000830152614ce9816146fb565b9050919050565b6000602082019050614d05600083018461472d565b92915050565b6000614d15614d26565b9050614d218282615022565b919050565b6000604051905090565b600067ffffffffffffffff821115614d4b57614d4a61521f565b5b614d5482615262565b9050602081019050919050565b600067ffffffffffffffff821115614d7c57614d7b61521f565b5b614d8582615262565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e1982614f97565b9150614e2483614f97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e5957614e58615105565b5b828201905092915050565b6000614e6f82614f97565b9150614e7a83614f97565b925082614e8a57614e89615134565b5b828204905092915050565b6000614ea082614f97565b9150614eab83614f97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ee457614ee3615105565b5b828202905092915050565b6000614efa82614f97565b9150614f0583614f97565b925082821015614f1857614f17615105565b5b828203905092915050565b6000614f2e82614f77565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614fdb578082015181840152602081019050614fc0565b83811115614fea576000848401525b50505050565b6000600282049050600182168061500857607f821691505b6020821081141561501c5761501b615192565b5b50919050565b61502b82615262565b810181811067ffffffffffffffff8211171561504a5761504961521f565b5b80604052505050565b600061505e82614f97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561509157615090615105565b5b600182019050919050565b60006150a7826150b8565b9050919050565b6000819050919050565b60006150c382615273565b9050919050565b6000819050919050565b60006150df82614f97565b91506150ea83614f97565b9250826150fa576150f9615134565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f70726573616c655f6f75745f6f665f73746f636b000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f756e76657269666965645f6d696e740000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f696e73756666696369656e745f65746800000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f6576655f706173735f616c72656164795f636c61696d65640000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f73616c655f69735f636c6f736564000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f686173685f616c72656164795f75736564000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6f75745f6f665f73746f636b0000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f65786365656465645f6d61785f7065725f77616c6c6574000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f70726573616c655f69735f636c6f736564000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f686173685f6d69736d6174636865640000000000000000000000000000000000600082015250565b615a3281614f23565b8114615a3d57600080fd5b50565b615a4981614f35565b8114615a5457600080fd5b50565b615a6081614f41565b8114615a6b57600080fd5b50565b615a7781614f4b565b8114615a8257600080fd5b50565b615a8e81614f97565b8114615a9957600080fd5b5056fea26469706673582212206cb136d9632268d4a3a6f348ab5489214a3ff310a542ec9e758f4d07d6089d8664736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023a5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063d3738fc81161006f578063d3738fc814610867578063d547cfb7146108a4578063e22012d0146108cf578063e985e9c5146108f8578063f2fde38b146109355761023a565b8063b88d4fde14610791578063b9e2e2e9146107ba578063bb51f32d146107e3578063bc660cac146107ed578063c87b56dd1461082a5761023a565b806391b7f5ed116100f257806391b7f5ed146106cd57806395d89b41146106f6578063a035b1fe14610721578063a0712d681461074c578063a22cb465146107685761023a565b8063715018a6146105fc578063841718a6146106135780638462151c1461063c5780638ba4cc3c146106795780638da5cb5b146106a25761023a565b80633549345e116101bc57806353135ca01161018057806353135ca01461050357806355f804b31461052e5780636352211e1461055757806368428a1b1461059457806370a08231146105bf5761023a565b80633549345e1461040e578063389fcf06146104375780633f8121a21461047457806342842e0e1461049d5780634f6ccce7146104c65761023a565b8063095ea7b311610203578063095ea7b31461033857806318160ddd146103615780631fe3eb631461038c57806323b872dd146103a85780632f745c59146103d15761023a565b80620e7fa81461023f57806301ffc9a71461026a578063046dc166146102a757806306fdde03146102d0578063081812fc146102fb575b600080fd5b34801561024b57600080fd5b5061025461095e565b6040516102619190614cf0565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190614057565b610964565b60405161029e919061486e565b60405180910390f35b3480156102b357600080fd5b506102ce60048036038101906102c99190613d3d565b6109de565b005b3480156102dc57600080fd5b506102e5610a9e565b6040516102f291906148ce565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d91906140fa565b610b30565b60405161032f91906147e5565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190613ec0565b610bb5565b005b34801561036d57600080fd5b50610376610ccd565b6040516103839190614cf0565b60405180910390f35b6103a660048036038101906103a19190613fb8565b610cda565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190613daa565b6110a8565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190613ec0565b611108565b6040516104059190614cf0565b60405180910390f35b34801561041a57600080fd5b50610435600480360381019061043091906140fa565b6111ad565b005b34801561044357600080fd5b5061045e60048036038101906104599190613d3d565b611233565b60405161046b919061486e565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190613f00565b611253565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190613daa565b6112ec565b005b3480156104d257600080fd5b506104ed60048036038101906104e891906140fa565b61130c565b6040516104fa9190614cf0565b60405180910390f35b34801561050f57600080fd5b5061051861137d565b604051610525919061486e565b60405180910390f35b34801561053a57600080fd5b50610555600480360381019061055091906140b1565b611390565b005b34801561056357600080fd5b5061057e600480360381019061057991906140fa565b611426565b60405161058b91906147e5565b60405180910390f35b3480156105a057600080fd5b506105a96114d8565b6040516105b6919061486e565b60405180910390f35b3480156105cb57600080fd5b506105e660048036038101906105e19190613d3d565b6114eb565b6040516105f39190614cf0565b60405180910390f35b34801561060857600080fd5b506106116115a3565b005b34801561061f57600080fd5b5061063a60048036038101906106359190613f00565b61162b565b005b34801561064857600080fd5b50610663600480360381019061065e9190613d3d565b6116c4565b604051610670919061484c565b60405180910390f35b34801561068557600080fd5b506106a0600480360381019061069b9190613ec0565b611772565b005b3480156106ae57600080fd5b506106b7611885565b6040516106c491906147e5565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef91906140fa565b6118af565b005b34801561070257600080fd5b5061070b611935565b60405161071891906148ce565b60405180910390f35b34801561072d57600080fd5b506107366119c7565b6040516107439190614cf0565b60405180910390f35b610766600480360381019061076191906140fa565b6119cd565b005b34801561077457600080fd5b5061078f600480360381019061078a9190613e80565b611be5565b005b34801561079d57600080fd5b506107b860048036038101906107b39190613dfd565b611bfb565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190613f2d565b611c5d565b005b6107eb611fbd565b005b3480156107f957600080fd5b50610814600480360381019061080f9190613d3d565b612082565b6040516108219190614cf0565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906140fa565b61209a565b60405161085e91906148ce565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190613d3d565b612141565b60405161089b9190614cf0565b60405180910390f35b3480156108b057600080fd5b506108b9612159565b6040516108c691906148ce565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190613d3d565b6121e7565b005b34801561090457600080fd5b5061091f600480360381019061091a9190613d6a565b6122a7565b60405161092c919061486e565b60405180910390f35b34801561094157600080fd5b5061095c60048036038101906109579190613d3d565b61233b565b005b600f5481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d757506109d682612433565b5b9050919050565b6109e6612515565b73ffffffffffffffffffffffffffffffffffffffff16610a04611885565b73ffffffffffffffffffffffffffffffffffffffff1614610a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5190614c10565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610aad90614ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad990614ff0565b8015610b265780601f10610afb57610100808354040283529160200191610b26565b820191906000526020600020905b815481529060010190602001808311610b0957829003601f168201915b5050505050905090565b6000610b3b8261251d565b610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190614bd0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc082611426565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2890614c70565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c50612515565b73ffffffffffffffffffffffffffffffffffffffff161480610c7f5750610c7e81610c79612515565b6122a7565b5b610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb590614af0565b60405180910390fd5b610cc88383612589565b505050565b6000600880549050905090565b600d60149054906101000a900460ff16158015610d035750600d60159054906101000a900460ff165b610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990614c30565b60405180910390fd5b610d6f8484600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612642565b610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da5906149f0565b60405180910390fd5b6013600085815260200190815260200160002060009054906101000a900460ff1615610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690614b50565b60405180910390fd5b83610e1b33848461268e565b14610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290614cd0565b60405180910390fd5b610bb881610e67610ccd565b610e719190614e0e565b1115610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990614950565b60405180910390fd5b600281601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610eff9190614e0e565b1115610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3790614bf0565b60405180910390fd5b80600f54610f4e9190614e95565b341015610f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8790614a50565b60405180910390fd5b60005b8181101561107557601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610feb90615053565b9190505550601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061104090615053565b9190505550611062336001611053610ccd565b61105d9190614e0e565b6126ef565b808061106d90615053565b915050610f93565b5060016013600086815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6110b96110b3612515565b8261270d565b6110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90614c90565b60405180910390fd5b6111038383836127eb565b505050565b6000611113836114eb565b8210611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90614930565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111b5612515565b73ffffffffffffffffffffffffffffffffffffffff166111d3611885565b73ffffffffffffffffffffffffffffffffffffffff1614611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090614c10565b60405180910390fd5b80600f8190555050565b60116020528060005260406000206000915054906101000a900460ff1681565b61125b612515565b73ffffffffffffffffffffffffffffffffffffffff16611279611885565b73ffffffffffffffffffffffffffffffffffffffff16146112cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c690614c10565b60405180910390fd5b80600d60156101000a81548160ff02191690831515021790555050565b61130783838360405180602001604052806000815250611bfb565b505050565b6000611316610ccd565b8210611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90614cb0565b60405180910390fd5b6008828154811061136b5761136a6151f0565b5b90600052602060002001549050919050565b600d60159054906101000a900460ff1681565b611398612515565b73ffffffffffffffffffffffffffffffffffffffff166113b6611885565b73ffffffffffffffffffffffffffffffffffffffff161461140c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140390614c10565b60405180910390fd5b80600b9080519060200190611422929190613b3c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690614b30565b60405180910390fd5b80915050919050565b600d60149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390614b10565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115ab612515565b73ffffffffffffffffffffffffffffffffffffffff166115c9611885565b73ffffffffffffffffffffffffffffffffffffffff161461161f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161690614c10565b60405180910390fd5b6116296000612a52565b565b611633612515565b73ffffffffffffffffffffffffffffffffffffffff16611651611885565b73ffffffffffffffffffffffffffffffffffffffff16146116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169e90614c10565b60405180910390fd5b80600d60146101000a81548160ff02191690831515021790555050565b606060006116d1836114eb565b905060008167ffffffffffffffff8111156116ef576116ee61521f565b5b60405190808252806020026020018201604052801561171d5781602001602082028036833780820191505090505b50905060005b82811015611767576117358582611108565b828281518110611748576117476151f0565b5b602002602001018181525050808061175f90615053565b915050611723565b508092505050919050565b61177a612515565b73ffffffffffffffffffffffffffffffffffffffff16611798611885565b73ffffffffffffffffffffffffffffffffffffffff16146117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590614c10565b60405180910390fd5b611000816117fa610ccd565b6118049190614e0e565b1115611845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183c90614bb0565b60405180910390fd5b60005b818110156118805761186d83600161185e610ccd565b6118689190614e0e565b6126ef565b808061187890615053565b915050611848565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118b7612515565b73ffffffffffffffffffffffffffffffffffffffff166118d5611885565b73ffffffffffffffffffffffffffffffffffffffff161461192b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192290614c10565b60405180910390fd5b80600e8190555050565b60606001805461194490614ff0565b80601f016020809104026020016040519081016040528092919081815260200182805461197090614ff0565b80156119bd5780601f10611992576101008083540402835291602001916119bd565b820191906000526020600020905b8154815290600101906020018083116119a057829003601f168201915b5050505050905090565b600e5481565b600d60149054906101000a900460ff16611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1390614ad0565b60405180910390fd5b600a81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a699190614e0e565b1115611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa190614bf0565b60405180910390fd5b61100081611ab6610ccd565b611ac09190614e0e565b1115611b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af890614bb0565b60405180910390fd5b80600e54611b0f9190614e95565b341015611b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4890614a50565b60405180910390fd5b60005b81811015611be157601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611bac90615053565b9190505550611bce336001611bbf610ccd565b611bc99190614e0e565b6126ef565b8080611bd990615053565b915050611b54565b5050565b611bf7611bf0612515565b8383612b18565b5050565b611c0c611c06612515565b8361270d565b611c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4290614c90565b60405180910390fd5b611c5784848484612c85565b50505050565b600d60149054906101000a900460ff1680611c845750600d60159054906101000a900460ff165b611cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cba90614c30565b60405180910390fd5b611cf08383600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612642565b611d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d26906149f0565b60405180910390fd5b6013600084815260200190815260200160002060009054906101000a900460ff1615611d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8790614b50565b60405180910390fd5b82611d9d3383600161268e565b14611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd490614cd0565b60405180910390fd5b6110006001611dea610ccd565b611df49190614e0e565b1115611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c90614bb0565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990614a90565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611f1290615053565b91905055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f8c336001611f7d610ccd565b611f879190614e0e565b6126ef565b60016013600085815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b611fc5612515565b73ffffffffffffffffffffffffffffffffffffffff16611fe3611885565b73ffffffffffffffffffffffffffffffffffffffff1614612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203090614c10565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505015801561207f573d6000803e3d6000fd5b50565b60126020528060005260406000206000915090505481565b60606120a58261251d565b6120e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120db90614c50565b60405180910390fd5b60006120ee612ce1565b9050600081511161210e5760405180602001604052806000815250612139565b8061211884612d73565b60405160200161212992919061479b565b6040516020818303038152906040525b915050919050565b60106020528060005260406000206000915090505481565b600b805461216690614ff0565b80601f016020809104026020016040519081016040528092919081815260200182805461219290614ff0565b80156121df5780601f106121b4576101008083540402835291602001916121df565b820191906000526020600020905b8154815290600101906020018083116121c257829003601f168201915b505050505081565b6121ef612515565b73ffffffffffffffffffffffffffffffffffffffff1661220d611885565b73ffffffffffffffffffffffffffffffffffffffff1614612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a90614c10565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612343612515565b73ffffffffffffffffffffffffffffffffffffffff16612361611885565b73ffffffffffffffffffffffffffffffffffffffff16146123b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ae90614c10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241e90614990565b60405180910390fd5b61243081612a52565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124fe57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061250e575061250d82612ed4565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125fc83611426565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006126578385612f3e90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161490509392505050565b6000808484846040516020016126a693929190614762565b604051602081830303815290604052805190602001206040516020016126cc91906147bf565b604051602081830303815290604052805190602001209050809150509392505050565b612709828260405180602001604052806000815250612f65565b5050565b60006127188261251d565b612757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274e90614ab0565b60405180910390fd5b600061276283611426565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127d157508373ffffffffffffffffffffffffffffffffffffffff166127b984610b30565b73ffffffffffffffffffffffffffffffffffffffff16145b806127e257506127e181856122a7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661280b82611426565b73ffffffffffffffffffffffffffffffffffffffff1614612861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612858906149b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c890614a10565b60405180910390fd5b6128dc838383612fc0565b6128e7600082612589565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129379190614eef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461298e9190614e0e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a4d8383836130d4565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7e90614a30565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c78919061486e565b60405180910390a3505050565b612c908484846127eb565b612c9c848484846130d9565b612cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd290614970565b60405180910390fd5b50505050565b6060600b8054612cf090614ff0565b80601f0160208091040260200160405190810160405280929190818152602001828054612d1c90614ff0565b8015612d695780601f10612d3e57610100808354040283529160200191612d69565b820191906000526020600020905b815481529060010190602001808311612d4c57829003601f168201915b5050505050905090565b60606000821415612dbb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ecf565b600082905060005b60008214612ded578080612dd690615053565b915050600a82612de69190614e64565b9150612dc3565b60008167ffffffffffffffff811115612e0957612e0861521f565b5b6040519080825280601f01601f191660200182016040528015612e3b5781602001600182028036833780820191505090505b5090505b60008514612ec857600182612e549190614eef565b9150600a85612e6391906150d4565b6030612e6f9190614e0e565b60f81b818381518110612e8557612e846151f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ec19190614e64565b9450612e3f565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000806000612f4d8585613270565b91509150612f5a816132f3565b819250505092915050565b612f6f83836134c8565b612f7c60008484846130d9565b612fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb290614970565b60405180910390fd5b505050565b612fcb8383836136a2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561300e57613009816136a7565b61304d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461304c5761304b83826136f0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130905761308b8161385d565b6130cf565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130ce576130cd828261392e565b5b5b505050565b505050565b60006130fa8473ffffffffffffffffffffffffffffffffffffffff166139ad565b15613263578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613123612515565b8786866040518563ffffffff1660e01b81526004016131459493929190614800565b602060405180830381600087803b15801561315f57600080fd5b505af192505050801561319057506040513d601f19601f8201168201806040525081019061318d9190614084565b60015b613213573d80600081146131c0576040519150601f19603f3d011682016040523d82523d6000602084013e6131c5565b606091505b5060008151141561320b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320290614970565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613268565b600190505b949350505050565b6000806041835114156132b25760008060006020860151925060408601519150606086015160001a90506132a6878285856139d0565b945094505050506132ec565b6040835114156132e35760008060208501519150604085015190506132d8868383613add565b9350935050506132ec565b60006002915091505b9250929050565b6000600481111561330757613306615163565b5b81600481111561331a57613319615163565b5b1415613325576134c5565b6001600481111561333957613338615163565b5b81600481111561334c5761334b615163565b5b141561338d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613384906148f0565b60405180910390fd5b600260048111156133a1576133a0615163565b5b8160048111156133b4576133b3615163565b5b14156133f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ec90614910565b60405180910390fd5b6003600481111561340957613408615163565b5b81600481111561341c5761341b615163565b5b141561345d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345490614a70565b60405180910390fd5b6004808111156134705761346f615163565b5b81600481111561348357613482615163565b5b14156134c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134bb90614b70565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352f90614b90565b60405180910390fd5b6135418161251d565b15613581576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613578906149d0565b60405180910390fd5b61358d60008383612fc0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135dd9190614e0e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461369e600083836130d4565b5050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136fd846114eb565b6137079190614eef565b90506000600760008481526020019081526020016000205490508181146137ec576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138719190614eef565b90506000600960008481526020019081526020016000205490506000600883815481106138a1576138a06151f0565b5b9060005260206000200154905080600883815481106138c3576138c26151f0565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613912576139116151c1565b5b6001900381819060005260206000200160009055905550505050565b6000613939836114eb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613a0b576000600391509150613ad4565b601b8560ff1614158015613a235750601c8560ff1614155b15613a35576000600491509150613ad4565b600060018787878760405160008152602001604052604051613a5a9493929190614889565b6020604051602081039080840390855afa158015613a7c573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613acb57600060019250925050613ad4565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613b209190614e0e565b9050613b2e878288856139d0565b935093505050935093915050565b828054613b4890614ff0565b90600052602060002090601f016020900481019282613b6a5760008555613bb1565b82601f10613b8357805160ff1916838001178555613bb1565b82800160010185558215613bb1579182015b82811115613bb0578251825591602001919060010190613b95565b5b509050613bbe9190613bc2565b5090565b5b80821115613bdb576000816000905550600101613bc3565b5090565b6000613bf2613bed84614d30565b614d0b565b905082815260208101848484011115613c0e57613c0d615253565b5b613c19848285614fae565b509392505050565b6000613c34613c2f84614d61565b614d0b565b905082815260208101848484011115613c5057613c4f615253565b5b613c5b848285614fae565b509392505050565b600081359050613c7281615a29565b92915050565b600081359050613c8781615a40565b92915050565b600081359050613c9c81615a57565b92915050565b600081359050613cb181615a6e565b92915050565b600081519050613cc681615a6e565b92915050565b600082601f830112613ce157613ce061524e565b5b8135613cf1848260208601613bdf565b91505092915050565b600082601f830112613d0f57613d0e61524e565b5b8135613d1f848260208601613c21565b91505092915050565b600081359050613d3781615a85565b92915050565b600060208284031215613d5357613d5261525d565b5b6000613d6184828501613c63565b91505092915050565b60008060408385031215613d8157613d8061525d565b5b6000613d8f85828601613c63565b9250506020613da085828601613c63565b9150509250929050565b600080600060608486031215613dc357613dc261525d565b5b6000613dd186828701613c63565b9350506020613de286828701613c63565b9250506040613df386828701613d28565b9150509250925092565b60008060008060808587031215613e1757613e1661525d565b5b6000613e2587828801613c63565b9450506020613e3687828801613c63565b9350506040613e4787828801613d28565b925050606085013567ffffffffffffffff811115613e6857613e67615258565b5b613e7487828801613ccc565b91505092959194509250565b60008060408385031215613e9757613e9661525d565b5b6000613ea585828601613c63565b9250506020613eb685828601613c78565b9150509250929050565b60008060408385031215613ed757613ed661525d565b5b6000613ee585828601613c63565b9250506020613ef685828601613d28565b9150509250929050565b600060208284031215613f1657613f1561525d565b5b6000613f2484828501613c78565b91505092915050565b600080600060608486031215613f4657613f4561525d565b5b6000613f5486828701613c8d565b935050602084013567ffffffffffffffff811115613f7557613f74615258565b5b613f8186828701613ccc565b925050604084013567ffffffffffffffff811115613fa257613fa1615258565b5b613fae86828701613cfa565b9150509250925092565b60008060008060808587031215613fd257613fd161525d565b5b6000613fe087828801613c8d565b945050602085013567ffffffffffffffff81111561400157614000615258565b5b61400d87828801613ccc565b935050604085013567ffffffffffffffff81111561402e5761402d615258565b5b61403a87828801613cfa565b925050606061404b87828801613d28565b91505092959194509250565b60006020828403121561406d5761406c61525d565b5b600061407b84828501613ca2565b91505092915050565b60006020828403121561409a5761409961525d565b5b60006140a884828501613cb7565b91505092915050565b6000602082840312156140c7576140c661525d565b5b600082013567ffffffffffffffff8111156140e5576140e4615258565b5b6140f184828501613cfa565b91505092915050565b6000602082840312156141105761410f61525d565b5b600061411e84828501613d28565b91505092915050565b6000614133838361471e565b60208301905092915050565b61414881614f23565b82525050565b61415f61415a82614f23565b61509c565b82525050565b600061417082614da2565b61417a8185614dd0565b935061418583614d92565b8060005b838110156141b657815161419d8882614127565b97506141a883614dc3565b925050600181019050614189565b5085935050505092915050565b6141cc81614f35565b82525050565b6141db81614f41565b82525050565b6141f26141ed82614f41565b6150ae565b82525050565b600061420382614dad565b61420d8185614de1565b935061421d818560208601614fbd565b61422681615262565b840191505092915050565b600061423c82614db8565b6142468185614df2565b9350614256818560208601614fbd565b61425f81615262565b840191505092915050565b600061427582614db8565b61427f8185614e03565b935061428f818560208601614fbd565b80840191505092915050565b60006142a8601883614df2565b91506142b382615280565b602082019050919050565b60006142cb601f83614df2565b91506142d6826152a9565b602082019050919050565b60006142ee601c83614e03565b91506142f9826152d2565b601c82019050919050565b6000614311602b83614df2565b915061431c826152fb565b604082019050919050565b6000614334601483614df2565b915061433f8261534a565b602082019050919050565b6000614357603283614df2565b915061436282615373565b604082019050919050565b600061437a602683614df2565b9150614385826153c2565b604082019050919050565b600061439d602583614df2565b91506143a882615411565b604082019050919050565b60006143c0601c83614df2565b91506143cb82615460565b602082019050919050565b60006143e3600f83614df2565b91506143ee82615489565b602082019050919050565b6000614406602483614df2565b9150614411826154b2565b604082019050919050565b6000614429601983614df2565b915061443482615501565b602082019050919050565b600061444c601083614df2565b91506144578261552a565b602082019050919050565b600061446f602283614df2565b915061447a82615553565b604082019050919050565b6000614492601883614df2565b915061449d826155a2565b602082019050919050565b60006144b5602c83614df2565b91506144c0826155cb565b604082019050919050565b60006144d8600e83614df2565b91506144e38261561a565b602082019050919050565b60006144fb603883614df2565b915061450682615643565b604082019050919050565b600061451e602a83614df2565b915061452982615692565b604082019050919050565b6000614541602983614df2565b915061454c826156e1565b604082019050919050565b6000614564601183614df2565b915061456f82615730565b602082019050919050565b6000614587602283614df2565b915061459282615759565b604082019050919050565b60006145aa602083614df2565b91506145b5826157a8565b602082019050919050565b60006145cd600c83614df2565b91506145d8826157d1565b602082019050919050565b60006145f0602c83614df2565b91506145fb826157fa565b604082019050919050565b6000614613601783614df2565b915061461e82615849565b602082019050919050565b6000614636602083614df2565b915061464182615872565b602082019050919050565b6000614659601183614df2565b91506146648261589b565b602082019050919050565b600061467c602f83614df2565b9150614687826158c4565b604082019050919050565b600061469f602183614df2565b91506146aa82615913565b604082019050919050565b60006146c2603183614df2565b91506146cd82615962565b604082019050919050565b60006146e5602c83614df2565b91506146f0826159b1565b604082019050919050565b6000614708600f83614df2565b915061471382615a00565b602082019050919050565b61472781614f97565b82525050565b61473681614f97565b82525050565b61474d61474882614f97565b6150ca565b82525050565b61475c81614fa1565b82525050565b600061476e828661414e565b60148201915061477e828561426a565b915061478a828461473c565b602082019150819050949350505050565b60006147a7828561426a565b91506147b3828461426a565b91508190509392505050565b60006147ca826142e1565b91506147d682846141e1565b60208201915081905092915050565b60006020820190506147fa600083018461413f565b92915050565b6000608082019050614815600083018761413f565b614822602083018661413f565b61482f604083018561472d565b818103606083015261484181846141f8565b905095945050505050565b600060208201905081810360008301526148668184614165565b905092915050565b600060208201905061488360008301846141c3565b92915050565b600060808201905061489e60008301876141d2565b6148ab6020830186614753565b6148b860408301856141d2565b6148c560608301846141d2565b95945050505050565b600060208201905081810360008301526148e88184614231565b905092915050565b600060208201905081810360008301526149098161429b565b9050919050565b60006020820190508181036000830152614929816142be565b9050919050565b6000602082019050818103600083015261494981614304565b9050919050565b6000602082019050818103600083015261496981614327565b9050919050565b600060208201905081810360008301526149898161434a565b9050919050565b600060208201905081810360008301526149a98161436d565b9050919050565b600060208201905081810360008301526149c981614390565b9050919050565b600060208201905081810360008301526149e9816143b3565b9050919050565b60006020820190508181036000830152614a09816143d6565b9050919050565b60006020820190508181036000830152614a29816143f9565b9050919050565b60006020820190508181036000830152614a498161441c565b9050919050565b60006020820190508181036000830152614a698161443f565b9050919050565b60006020820190508181036000830152614a8981614462565b9050919050565b60006020820190508181036000830152614aa981614485565b9050919050565b60006020820190508181036000830152614ac9816144a8565b9050919050565b60006020820190508181036000830152614ae9816144cb565b9050919050565b60006020820190508181036000830152614b09816144ee565b9050919050565b60006020820190508181036000830152614b2981614511565b9050919050565b60006020820190508181036000830152614b4981614534565b9050919050565b60006020820190508181036000830152614b6981614557565b9050919050565b60006020820190508181036000830152614b898161457a565b9050919050565b60006020820190508181036000830152614ba98161459d565b9050919050565b60006020820190508181036000830152614bc9816145c0565b9050919050565b60006020820190508181036000830152614be9816145e3565b9050919050565b60006020820190508181036000830152614c0981614606565b9050919050565b60006020820190508181036000830152614c2981614629565b9050919050565b60006020820190508181036000830152614c498161464c565b9050919050565b60006020820190508181036000830152614c698161466f565b9050919050565b60006020820190508181036000830152614c8981614692565b9050919050565b60006020820190508181036000830152614ca9816146b5565b9050919050565b60006020820190508181036000830152614cc9816146d8565b9050919050565b60006020820190508181036000830152614ce9816146fb565b9050919050565b6000602082019050614d05600083018461472d565b92915050565b6000614d15614d26565b9050614d218282615022565b919050565b6000604051905090565b600067ffffffffffffffff821115614d4b57614d4a61521f565b5b614d5482615262565b9050602081019050919050565b600067ffffffffffffffff821115614d7c57614d7b61521f565b5b614d8582615262565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e1982614f97565b9150614e2483614f97565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e5957614e58615105565b5b828201905092915050565b6000614e6f82614f97565b9150614e7a83614f97565b925082614e8a57614e89615134565b5b828204905092915050565b6000614ea082614f97565b9150614eab83614f97565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ee457614ee3615105565b5b828202905092915050565b6000614efa82614f97565b9150614f0583614f97565b925082821015614f1857614f17615105565b5b828203905092915050565b6000614f2e82614f77565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614fdb578082015181840152602081019050614fc0565b83811115614fea576000848401525b50505050565b6000600282049050600182168061500857607f821691505b6020821081141561501c5761501b615192565b5b50919050565b61502b82615262565b810181811067ffffffffffffffff8211171561504a5761504961521f565b5b80604052505050565b600061505e82614f97565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561509157615090615105565b5b600182019050919050565b60006150a7826150b8565b9050919050565b6000819050919050565b60006150c382615273565b9050919050565b6000819050919050565b60006150df82614f97565b91506150ea83614f97565b9250826150fa576150f9615134565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f70726573616c655f6f75745f6f665f73746f636b000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f756e76657269666965645f6d696e740000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f696e73756666696369656e745f65746800000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f6576655f706173735f616c72656164795f636c61696d65640000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f73616c655f69735f636c6f736564000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f686173685f616c72656164795f75736564000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6f75745f6f665f73746f636b0000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f65786365656465645f6d61785f7065725f77616c6c6574000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f70726573616c655f69735f636c6f736564000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f686173685f6d69736d6174636865640000000000000000000000000000000000600082015250565b615a3281614f23565b8114615a3d57600080fd5b50565b615a4981614f35565b8114615a5457600080fd5b50565b615a6081614f41565b8114615a6b57600080fd5b50565b615a7781614f4b565b8114615a8257600080fd5b50565b615a8e81614f97565b8114615a9957600080fd5b5056fea26469706673582212206cb136d9632268d4a3a6f348ab5489214a3ff310a542ec9e758f4d07d6089d8664736f6c63430008070033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.