ETH Price: $2,471.87 (+1.14%)
Gas: 6.87 Gwei

Token

ASTROS (ASTROS)
 

Overview

Max Total Supply

495 ASTROS

Holders

248

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 ASTROS
0x5af18e15ba18b79725994d3f5c24acf4bed85d85
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:
ASTROS

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

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

contract ASTROS is ERC721, Ownable {
    using Strings for uint256;

    address public signer = 0x3f75B46Ffd304d7676468a024202c01679f8ccFf;
    uint256 public price = 0.07 ether;
    bool public revealed;
    string private _mysteryURI =
        "https://untitled.mypinata.cloud/ipfs/QmeVJxwL3EQsu5PTzXqgQQGm3ijTpV5unusYz43NQtYayU/1.json";
    string private _contractURI;
    string private _tokenBaseURI;

    uint256 public supply = 5555;
    uint256 public totalSupply;
    bool public saleLive = true;

    mapping(uint256 => bool) private usedNonce;

    constructor() ERC721("ASTROS", "ASTROS") {}

    function mintGiftOwner(uint256 tokenQuantity, address wallet)
        external
        onlyOwner
    {
        require(totalSupply + tokenQuantity <= supply, "BAD SUPPLY");

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

        totalSupply += tokenQuantity;
    }

    function mint(
        uint256 tokenQuantity,
        uint256 nonce,
        bytes memory signature
    ) external payable {
        require(saleLive, "SALE_CLOSED");
        require(tokenQuantity <= 10, "BAD MAX PER BUY");
        require(!usedNonce[nonce], "BAD NONCE");
        require(price * tokenQuantity <= msg.value, "BAD PRICE");
        require(totalSupply + tokenQuantity <= supply, "BAD MAX SUPPLY");

        require(
            matchSigner(hashTransaction(nonce), signature),
            "NOT ALLOWED TO MINT"
        );

        usedNonce[nonce] = true;

        for (uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(msg.sender, totalSupply + i + 1);
        }

        totalSupply += tokenQuantity;
    }

    function hashTransaction(uint256 nonce) internal pure returns (bytes32) {
        bytes32 hash = keccak256(
            abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                keccak256(abi.encodePacked(nonce))
            )
        );
        return hash;
    }

    function matchSigner(bytes32 hash, bytes memory signature)
        internal
        view
        returns (bool)
    {
        return signer == ECDSA.recover(hash, signature);
    }

    function withdraw() external {
        uint256 currentBalance = address(this).balance;
        payable(0x7F41CFb3D9241D6f968DB494Eb0a6138001390F4).transfer(
            (currentBalance * 25) / 1000
        );
        payable(0xaa6196b7BD461D3376caecbf248c9cD75cD2E3EA).transfer(
            (currentBalance * 195) / 1000
        );
        payable(0x9a2D28Af88235FfD3C818420FF70358467d4bB5C).transfer(
            (currentBalance * 110) / 1000
        );
        payable(0x46Ec7b4097fBccF6540791E35EAeb6a3ABA2e1F9).transfer(
            (currentBalance * 85) / 1000
        );
        payable(0x9a1219B330493A0DDE9d8C10C579d6fb84Ec1b8b).transfer(
            (currentBalance * 195) / 1000
        );
        payable(0x713eeD92d42dF88AB85934E7156aCDC47b9968C4).transfer(
            (currentBalance * 195) / 1000
        );
        payable(0xE5e7200a9d7F73157D1732715cA0cAA4E76690e6).transfer(
            (currentBalance * 65) / 1000
        );
        payable(0xa1053453525FFb4e460fe34BA10e8D4a37759675).transfer(
            (currentBalance * 130) / 1000
        );
    }

    function switchMysteryURI() public onlyOwner {
        revealed = !revealed;
    }

    function switchSaleStatus() external onlyOwner {
        saleLive = !saleLive;
    }

    function newMysteryURI(string calldata URI) public onlyOwner {
        _mysteryURI = URI;
    }

    function newPriceOfNFT(uint256 priceNew) external onlyOwner {
        price = priceNew;
    }

    function newContractURI(string calldata URI) external onlyOwner {
        _contractURI = URI;
    }

    function newBaseURI(string calldata URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Cannot query non-existent token");

        if (revealed == false) {
            return _mysteryURI;
        }

        return
            string(
                abi.encodePacked(_tokenBaseURI, tokenId.toString(), ".json")
            );
    }
}

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 3 of 12 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 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 4 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

File 5 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 6 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 7 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 8 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"tokenQuantity","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"mintGiftOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"newBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"newContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"newMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"priceNew","type":"uint256"}],"name":"newPriceOfNFT","outputs":[],"stateMutability":"nonpayable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","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":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"switchMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052733f75b46ffd304d7676468a024202c01679f8ccff600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555066f8b0a10e4700006008556040518060800160405280605a815260200162004cac605a9139600a90805190602001906200009592919062000259565b506115b3600d556001600f60006101000a81548160ff021916908315150217905550348015620000c457600080fd5b506040518060400160405280600681526020017f415354524f5300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f415354524f53000000000000000000000000000000000000000000000000000081525081600090805190602001906200014992919062000259565b5080600190805190602001906200016292919062000259565b50505062000185620001796200018b60201b60201c565b6200019360201b60201c565b6200036e565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002679062000309565b90600052602060002090601f0160209004810192826200028b5760008555620002d7565b82601f10620002a657805160ff1916838001178555620002d7565b82800160010185558215620002d7579182015b82811115620002d6578251825591602001919060010190620002b9565b5b509050620002e69190620002ea565b5090565b5b8082111562000305576000816000905550600101620002eb565b5090565b600060028204905060018216806200032257607f821691505b602082108114156200033957620003386200033f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61492e806200037e6000396000f3fe6080604052600436106101e35760003560e01c80637bd26ec511610102578063ba5a5ea211610095578063e8a3d48511610064578063e8a3d48514610697578063e985e9c5146106c2578063edbff598146106ff578063f2fde38b14610716576101e3565b8063ba5a5ea2146105ef578063c87b56dd14610606578063e081b78114610643578063e4e60e1c1461066e576101e3565b8063a035b1fe116100d1578063a035b1fe14610549578063a22cb46514610574578063b10b51121461059d578063b88d4fde146105c6576101e3565b80637bd26ec5146104a15780638b375e71146104ca5780638da5cb5b146104f357806395d89b411461051e576101e3565b806323b872dd1161017a5780636352211e116101495780636352211e146103e75780636fd452de1461042457806370a082311461044d578063715018a61461048a576101e3565b806323b872dd146103535780633ccfd60b1461037c57806342842e0e1461039357806351830227146103bc576101e3565b806308dc9f42116101b657806308dc9f42146102b8578063095ea7b3146102d457806318160ddd146102fd578063238ac93314610328576101e3565b806301ffc9a7146101e8578063047fc9aa1461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613156565b61073f565b60405161021c9190613942565b60405180910390f35b34801561023157600080fd5b5061023a610821565b6040516102479190613d24565b60405180910390f35b34801561025c57600080fd5b50610265610827565b60405161027291906139a2565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d91906131fd565b6108b9565b6040516102af91906138db565b60405180910390f35b6102d260048036038101906102cd919061326a565b61093e565b005b3480156102e057600080fd5b506102fb60048036038101906102f69190613116565b610bb1565b005b34801561030957600080fd5b50610312610cc9565b60405161031f9190613d24565b60405180910390f35b34801561033457600080fd5b5061033d610ccf565b60405161034a91906138db565b60405180910390f35b34801561035f57600080fd5b5061037a60048036038101906103759190613000565b610cf5565b005b34801561038857600080fd5b50610391610d55565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190613000565b6110fd565b005b3480156103c857600080fd5b506103d161111d565b6040516103de9190613942565b60405180910390f35b3480156103f357600080fd5b5061040e600480360381019061040991906131fd565b611130565b60405161041b91906138db565b60405180910390f35b34801561043057600080fd5b5061044b600480360381019061044691906131b0565b6111e2565b005b34801561045957600080fd5b50610474600480360381019061046f9190612f93565b611274565b6040516104819190613d24565b60405180910390f35b34801561049657600080fd5b5061049f61132c565b005b3480156104ad57600080fd5b506104c860048036038101906104c391906131b0565b6113b4565b005b3480156104d657600080fd5b506104f160048036038101906104ec91906131fd565b611446565b005b3480156104ff57600080fd5b506105086114cc565b60405161051591906138db565b60405180910390f35b34801561052a57600080fd5b506105336114f6565b60405161054091906139a2565b60405180910390f35b34801561055557600080fd5b5061055e611588565b60405161056b9190613d24565b60405180910390f35b34801561058057600080fd5b5061059b600480360381019061059691906130d6565b61158e565b005b3480156105a957600080fd5b506105c460048036038101906105bf919061322a565b6115a4565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190613053565b6116d1565b005b3480156105fb57600080fd5b50610604611733565b005b34801561061257600080fd5b5061062d600480360381019061062891906131fd565b6117db565b60405161063a91906139a2565b60405180910390f35b34801561064f57600080fd5b50610658611906565b6040516106659190613942565b60405180910390f35b34801561067a57600080fd5b50610695600480360381019061069091906131b0565b611919565b005b3480156106a357600080fd5b506106ac6119ab565b6040516106b991906139a2565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e49190612fc0565b611a3d565b6040516106f69190613942565b60405180910390f35b34801561070b57600080fd5b50610714611ad1565b005b34801561072257600080fd5b5061073d60048036038101906107389190612f93565b611b79565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081a575061081982611c71565b5b9050919050565b600d5481565b60606000805461083690613fcf565b80601f016020809104026020016040519081016040528092919081815260200182805461086290613fcf565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b60006108c482611cdb565b610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa90613c04565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f60009054906101000a900460ff1661098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490613ae4565b60405180910390fd5b600a8311156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890613be4565b60405180910390fd5b6010600083815260200190815260200160002060009054906101000a900460ff1615610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990613c84565b60405180910390fd5b3483600854610a419190613e74565b1115610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990613b84565b60405180910390fd5b600d5483600e54610a939190613ded565b1115610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90613aa4565b60405180910390fd5b610ae6610ae083611d47565b82611da2565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613c24565b60405180910390fd5b60016010600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b83811015610b9257610b7f33600183600e54610b709190613ded565b610b7a9190613ded565b611e06565b8080610b8a90614032565b915050610b54565b5082600e6000828254610ba59190613ded565b92505081905550505050565b6000610bbc82611130565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490613ce4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4c611e24565b73ffffffffffffffffffffffffffffffffffffffff161480610c7b5750610c7a81610c75611e24565b611a3d565b5b610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613b24565b60405180910390fd5b610cc48383611e2c565b505050565b600e5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d06610d00611e24565b82611ee5565b610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613d04565b60405180910390fd5b610d50838383611fc3565b505050565b6000479050737f41cfb3d9241d6f968db494eb0a6138001390f473ffffffffffffffffffffffffffffffffffffffff166108fc6103e8601984610d989190613e74565b610da29190613e43565b9081150290604051600060405180830381858888f19350505050158015610dcd573d6000803e3d6000fd5b5073aa6196b7bd461d3376caecbf248c9cd75cd2e3ea73ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c384610e0c9190613e74565b610e169190613e43565b9081150290604051600060405180830381858888f19350505050158015610e41573d6000803e3d6000fd5b50739a2d28af88235ffd3c818420ff70358467d4bb5c73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8606e84610e809190613e74565b610e8a9190613e43565b9081150290604051600060405180830381858888f19350505050158015610eb5573d6000803e3d6000fd5b507346ec7b4097fbccf6540791e35eaeb6a3aba2e1f973ffffffffffffffffffffffffffffffffffffffff166108fc6103e8605584610ef49190613e74565b610efe9190613e43565b9081150290604051600060405180830381858888f19350505050158015610f29573d6000803e3d6000fd5b50739a1219b330493a0dde9d8c10c579d6fb84ec1b8b73ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c384610f689190613e74565b610f729190613e43565b9081150290604051600060405180830381858888f19350505050158015610f9d573d6000803e3d6000fd5b5073713eed92d42df88ab85934e7156acdc47b9968c473ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c384610fdc9190613e74565b610fe69190613e43565b9081150290604051600060405180830381858888f19350505050158015611011573d6000803e3d6000fd5b5073e5e7200a9d7f73157d1732715ca0caa4e76690e673ffffffffffffffffffffffffffffffffffffffff166108fc6103e86041846110509190613e74565b61105a9190613e43565b9081150290604051600060405180830381858888f19350505050158015611085573d6000803e3d6000fd5b5073a1053453525ffb4e460fe34ba10e8d4a3775967573ffffffffffffffffffffffffffffffffffffffff166108fc6103e86082846110c49190613e74565b6110ce9190613e43565b9081150290604051600060405180830381858888f193505050501580156110f9573d6000803e3d6000fd5b5050565b611118838383604051806020016040528060008152506116d1565b505050565b600960009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d090613b64565b60405180910390fd5b80915050919050565b6111ea611e24565b73ffffffffffffffffffffffffffffffffffffffff166112086114cc565b73ffffffffffffffffffffffffffffffffffffffff161461125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590613c44565b60405180910390fd5b8181600b919061126f929190612dc1565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90613b44565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611334611e24565b73ffffffffffffffffffffffffffffffffffffffff166113526114cc565b73ffffffffffffffffffffffffffffffffffffffff16146113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90613c44565b60405180910390fd5b6113b2600061221f565b565b6113bc611e24565b73ffffffffffffffffffffffffffffffffffffffff166113da6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790613c44565b60405180910390fd5b8181600a9190611441929190612dc1565b505050565b61144e611e24565b73ffffffffffffffffffffffffffffffffffffffff1661146c6114cc565b73ffffffffffffffffffffffffffffffffffffffff16146114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990613c44565b60405180910390fd5b8060088190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461150590613fcf565b80601f016020809104026020016040519081016040528092919081815260200182805461153190613fcf565b801561157e5780601f106115535761010080835404028352916020019161157e565b820191906000526020600020905b81548152906001019060200180831161156157829003601f168201915b5050505050905090565b60085481565b6115a0611599611e24565b83836122e5565b5050565b6115ac611e24565b73ffffffffffffffffffffffffffffffffffffffff166115ca6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790613c44565b60405180910390fd5b600d5482600e546116319190613ded565b1115611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990613cc4565b60405180910390fd5b60005b828110156116b3576116a082600183600e546116919190613ded565b61169b9190613ded565b611e06565b80806116ab90614032565b915050611675565b5081600e60008282546116c69190613ded565b925050819055505050565b6116e26116dc611e24565b83611ee5565b611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613d04565b60405180910390fd5b61172d84848484612452565b50505050565b61173b611e24565b73ffffffffffffffffffffffffffffffffffffffff166117596114cc565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613c44565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b60606117e682611cdb565b611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c90613ca4565b60405180910390fd5b60001515600960009054906101000a900460ff16151514156118d357600a805461184e90613fcf565b80601f016020809104026020016040519081016040528092919081815260200182805461187a90613fcf565b80156118c75780601f1061189c576101008083540402835291602001916118c7565b820191906000526020600020905b8154815290600101906020018083116118aa57829003601f168201915b50505050509050611901565b600c6118de836124ae565b6040516020016118ef92919061386b565b60405160208183030381529060405290505b919050565b600f60009054906101000a900460ff1681565b611921611e24565b73ffffffffffffffffffffffffffffffffffffffff1661193f6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613c44565b60405180910390fd5b8181600c91906119a6929190612dc1565b505050565b6060600b80546119ba90613fcf565b80601f01602080910402602001604051908101604052809291908181526020018280546119e690613fcf565b8015611a335780601f10611a0857610100808354040283529160200191611a33565b820191906000526020600020905b815481529060010190602001808311611a1657829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad9611e24565b73ffffffffffffffffffffffffffffffffffffffff16611af76114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613c44565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611b81611e24565b73ffffffffffffffffffffffffffffffffffffffff16611b9f6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90613c44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90613a24565b60405180910390fd5b611c6e8161221f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60008082604051602001611d5b91906138c0565b60405160208183030381529060405280519060200120604051602001611d81919061389a565b60405160208183030381529060405280519060200120905080915050919050565b6000611dae838361260f565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b611e20828260405180602001604052806000815250612636565b5050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e9f83611130565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ef082611cdb565b611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2690613b04565b60405180910390fd5b6000611f3a83611130565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fa957508373ffffffffffffffffffffffffffffffffffffffff16611f91846108b9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fba5750611fb98185611a3d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fe382611130565b73ffffffffffffffffffffffffffffffffffffffff1614612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203090613c64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a090613a64565b60405180910390fd5b6120b4838383612691565b6120bf600082611e2c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461210f9190613ece565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121669190613ded565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90613a84565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124459190613942565b60405180910390a3505050565b61245d848484611fc3565b61246984848484612696565b6124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f90613a04565b60405180910390fd5b50505050565b606060008214156124f6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061260a565b600082905060005b6000821461252857808061251190614032565b915050600a826125219190613e43565b91506124fe565b60008167ffffffffffffffff811115612544576125436141ab565b5b6040519080825280601f01601f1916602001820160405280156125765781602001600182028036833780820191505090505b5090505b600085146126035760018261258f9190613ece565b9150600a8561259e919061408f565b60306125aa9190613ded565b60f81b8183815181106125c0576125bf61417c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125fc9190613e43565b945061257a565b8093505050505b919050565b600080600061261e858561282d565b9150915061262b816128b0565b819250505092915050565b6126408383612a85565b61264d6000848484612696565b61268c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268390613a04565b60405180910390fd5b505050565b505050565b60006126b78473ffffffffffffffffffffffffffffffffffffffff16612c53565b15612820578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126e0611e24565b8786866040518563ffffffff1660e01b815260040161270294939291906138f6565b602060405180830381600087803b15801561271c57600080fd5b505af192505050801561274d57506040513d601f19601f8201168201806040525081019061274a9190613183565b60015b6127d0573d806000811461277d576040519150601f19603f3d011682016040523d82523d6000602084013e612782565b606091505b506000815114156127c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bf90613a04565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612825565b600190505b949350505050565b60008060418351141561286f5760008060006020860151925060408601519150606086015160001a905061286387828585612c66565b945094505050506128a9565b6040835114156128a0576000806020850151915060408501519050612895868383612d73565b9350935050506128a9565b60006002915091505b9250929050565b600060048111156128c4576128c361411e565b5b8160048111156128d7576128d661411e565b5b14156128e257612a82565b600160048111156128f6576128f561411e565b5b8160048111156129095761290861411e565b5b141561294a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612941906139c4565b60405180910390fd5b6002600481111561295e5761295d61411e565b5b8160048111156129715761297061411e565b5b14156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a9906139e4565b60405180910390fd5b600360048111156129c6576129c561411e565b5b8160048111156129d9576129d861411e565b5b1415612a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1190613ac4565b60405180910390fd5b600480811115612a2d57612a2c61411e565b5b816004811115612a4057612a3f61411e565b5b1415612a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7890613ba4565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aec90613bc4565b60405180910390fd5b612afe81611cdb565b15612b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3590613a44565b60405180910390fd5b612b4a60008383612691565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9a9190613ded565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612ca1576000600391509150612d6a565b601b8560ff1614158015612cb95750601c8560ff1614155b15612ccb576000600491509150612d6a565b600060018787878760405160008152602001604052604051612cf0949392919061395d565b6020604051602081039080840390855afa158015612d12573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d6157600060019250925050612d6a565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050612db387828885612c66565b935093505050935093915050565b828054612dcd90613fcf565b90600052602060002090601f016020900481019282612def5760008555612e36565b82601f10612e0857803560ff1916838001178555612e36565b82800160010185558215612e36579182015b82811115612e35578235825591602001919060010190612e1a565b5b509050612e439190612e47565b5090565b5b80821115612e60576000816000905550600101612e48565b5090565b6000612e77612e7284613d64565b613d3f565b905082815260208101848484011115612e9357612e926141e9565b5b612e9e848285613f8d565b509392505050565b600081359050612eb58161489c565b92915050565b600081359050612eca816148b3565b92915050565b600081359050612edf816148ca565b92915050565b600081519050612ef4816148ca565b92915050565b600082601f830112612f0f57612f0e6141df565b5b8135612f1f848260208601612e64565b91505092915050565b60008083601f840112612f3e57612f3d6141df565b5b8235905067ffffffffffffffff811115612f5b57612f5a6141da565b5b602083019150836001820283011115612f7757612f766141e4565b5b9250929050565b600081359050612f8d816148e1565b92915050565b600060208284031215612fa957612fa86141f3565b5b6000612fb784828501612ea6565b91505092915050565b60008060408385031215612fd757612fd66141f3565b5b6000612fe585828601612ea6565b9250506020612ff685828601612ea6565b9150509250929050565b600080600060608486031215613019576130186141f3565b5b600061302786828701612ea6565b935050602061303886828701612ea6565b925050604061304986828701612f7e565b9150509250925092565b6000806000806080858703121561306d5761306c6141f3565b5b600061307b87828801612ea6565b945050602061308c87828801612ea6565b935050604061309d87828801612f7e565b925050606085013567ffffffffffffffff8111156130be576130bd6141ee565b5b6130ca87828801612efa565b91505092959194509250565b600080604083850312156130ed576130ec6141f3565b5b60006130fb85828601612ea6565b925050602061310c85828601612ebb565b9150509250929050565b6000806040838503121561312d5761312c6141f3565b5b600061313b85828601612ea6565b925050602061314c85828601612f7e565b9150509250929050565b60006020828403121561316c5761316b6141f3565b5b600061317a84828501612ed0565b91505092915050565b600060208284031215613199576131986141f3565b5b60006131a784828501612ee5565b91505092915050565b600080602083850312156131c7576131c66141f3565b5b600083013567ffffffffffffffff8111156131e5576131e46141ee565b5b6131f185828601612f28565b92509250509250929050565b600060208284031215613213576132126141f3565b5b600061322184828501612f7e565b91505092915050565b60008060408385031215613241576132406141f3565b5b600061324f85828601612f7e565b925050602061326085828601612ea6565b9150509250929050565b600080600060608486031215613283576132826141f3565b5b600061329186828701612f7e565b93505060206132a286828701612f7e565b925050604084013567ffffffffffffffff8111156132c3576132c26141ee565b5b6132cf86828701612efa565b9150509250925092565b6132e281613f02565b82525050565b6132f181613f14565b82525050565b61330081613f20565b82525050565b61331761331282613f20565b61407b565b82525050565b600061332882613daa565b6133328185613dc0565b9350613342818560208601613f9c565b61334b816141f8565b840191505092915050565b600061336182613db5565b61336b8185613dd1565b935061337b818560208601613f9c565b613384816141f8565b840191505092915050565b600061339a82613db5565b6133a48185613de2565b93506133b4818560208601613f9c565b80840191505092915050565b600081546133cd81613fcf565b6133d78186613de2565b945060018216600081146133f2576001811461340357613436565b60ff19831686528186019350613436565b61340c85613d95565b60005b8381101561342e5781548189015260018201915060208101905061340f565b838801955050505b50505092915050565b600061344c601883613dd1565b915061345782614209565b602082019050919050565b600061346f601f83613dd1565b915061347a82614232565b602082019050919050565b6000613492601c83613de2565b915061349d8261425b565b601c82019050919050565b60006134b5603283613dd1565b91506134c082614284565b604082019050919050565b60006134d8602683613dd1565b91506134e3826142d3565b604082019050919050565b60006134fb601c83613dd1565b915061350682614322565b602082019050919050565b600061351e602483613dd1565b91506135298261434b565b604082019050919050565b6000613541601983613dd1565b915061354c8261439a565b602082019050919050565b6000613564600e83613dd1565b915061356f826143c3565b602082019050919050565b6000613587602283613dd1565b9150613592826143ec565b604082019050919050565b60006135aa600b83613dd1565b91506135b58261443b565b602082019050919050565b60006135cd602c83613dd1565b91506135d882614464565b604082019050919050565b60006135f0603883613dd1565b91506135fb826144b3565b604082019050919050565b6000613613602a83613dd1565b915061361e82614502565b604082019050919050565b6000613636602983613dd1565b915061364182614551565b604082019050919050565b6000613659600983613dd1565b9150613664826145a0565b602082019050919050565b600061367c602283613dd1565b9150613687826145c9565b604082019050919050565b600061369f602083613dd1565b91506136aa82614618565b602082019050919050565b60006136c2600f83613dd1565b91506136cd82614641565b602082019050919050565b60006136e5602c83613dd1565b91506136f08261466a565b604082019050919050565b6000613708600583613de2565b9150613713826146b9565b600582019050919050565b600061372b601383613dd1565b9150613736826146e2565b602082019050919050565b600061374e602083613dd1565b91506137598261470b565b602082019050919050565b6000613771602983613dd1565b915061377c82614734565b604082019050919050565b6000613794600983613dd1565b915061379f82614783565b602082019050919050565b60006137b7601f83613dd1565b91506137c2826147ac565b602082019050919050565b60006137da600a83613dd1565b91506137e5826147d5565b602082019050919050565b60006137fd602183613dd1565b9150613808826147fe565b604082019050919050565b6000613820603183613dd1565b915061382b8261484d565b604082019050919050565b61383f81613f76565b82525050565b61385661385182613f76565b614085565b82525050565b61386581613f80565b82525050565b600061387782856133c0565b9150613883828461338f565b915061388e826136fb565b91508190509392505050565b60006138a582613485565b91506138b18284613306565b60208201915081905092915050565b60006138cc8284613845565b60208201915081905092915050565b60006020820190506138f060008301846132d9565b92915050565b600060808201905061390b60008301876132d9565b61391860208301866132d9565b6139256040830185613836565b8181036060830152613937818461331d565b905095945050505050565b600060208201905061395760008301846132e8565b92915050565b600060808201905061397260008301876132f7565b61397f602083018661385c565b61398c60408301856132f7565b61399960608301846132f7565b95945050505050565b600060208201905081810360008301526139bc8184613356565b905092915050565b600060208201905081810360008301526139dd8161343f565b9050919050565b600060208201905081810360008301526139fd81613462565b9050919050565b60006020820190508181036000830152613a1d816134a8565b9050919050565b60006020820190508181036000830152613a3d816134cb565b9050919050565b60006020820190508181036000830152613a5d816134ee565b9050919050565b60006020820190508181036000830152613a7d81613511565b9050919050565b60006020820190508181036000830152613a9d81613534565b9050919050565b60006020820190508181036000830152613abd81613557565b9050919050565b60006020820190508181036000830152613add8161357a565b9050919050565b60006020820190508181036000830152613afd8161359d565b9050919050565b60006020820190508181036000830152613b1d816135c0565b9050919050565b60006020820190508181036000830152613b3d816135e3565b9050919050565b60006020820190508181036000830152613b5d81613606565b9050919050565b60006020820190508181036000830152613b7d81613629565b9050919050565b60006020820190508181036000830152613b9d8161364c565b9050919050565b60006020820190508181036000830152613bbd8161366f565b9050919050565b60006020820190508181036000830152613bdd81613692565b9050919050565b60006020820190508181036000830152613bfd816136b5565b9050919050565b60006020820190508181036000830152613c1d816136d8565b9050919050565b60006020820190508181036000830152613c3d8161371e565b9050919050565b60006020820190508181036000830152613c5d81613741565b9050919050565b60006020820190508181036000830152613c7d81613764565b9050919050565b60006020820190508181036000830152613c9d81613787565b9050919050565b60006020820190508181036000830152613cbd816137aa565b9050919050565b60006020820190508181036000830152613cdd816137cd565b9050919050565b60006020820190508181036000830152613cfd816137f0565b9050919050565b60006020820190508181036000830152613d1d81613813565b9050919050565b6000602082019050613d396000830184613836565b92915050565b6000613d49613d5a565b9050613d558282614001565b919050565b6000604051905090565b600067ffffffffffffffff821115613d7f57613d7e6141ab565b5b613d88826141f8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613df882613f76565b9150613e0383613f76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e3857613e376140c0565b5b828201905092915050565b6000613e4e82613f76565b9150613e5983613f76565b925082613e6957613e686140ef565b5b828204905092915050565b6000613e7f82613f76565b9150613e8a83613f76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ec357613ec26140c0565b5b828202905092915050565b6000613ed982613f76565b9150613ee483613f76565b925082821015613ef757613ef66140c0565b5b828203905092915050565b6000613f0d82613f56565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613fba578082015181840152602081019050613f9f565b83811115613fc9576000848401525b50505050565b60006002820490506001821680613fe757607f821691505b60208210811415613ffb57613ffa61414d565b5b50919050565b61400a826141f8565b810181811067ffffffffffffffff82111715614029576140286141ab565b5b80604052505050565b600061403d82613f76565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140705761406f6140c0565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061409a82613f76565b91506140a583613f76565b9250826140b5576140b46140ef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f424144204d415820535550504c59000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4241442050524943450000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f424144204d415820504552204255590000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4e4f5420414c4c4f57454420544f204d494e5400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f424144204e4f4e43450000000000000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f42414420535550504c5900000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6148a581613f02565b81146148b057600080fd5b50565b6148bc81613f14565b81146148c757600080fd5b50565b6148d381613f2a565b81146148de57600080fd5b50565b6148ea81613f76565b81146148f557600080fd5b5056fea2646970667358221220b23eb5d6ff681a4303893a36f78e4becbed443d9d576549a750fa61a1a28691864736f6c6343000806003368747470733a2f2f756e7469746c65642e6d7970696e6174612e636c6f75642f697066732f516d65564a78774c33455173753550547a5871675151476d33696a54705635756e7573597a34334e5174596179552f312e6a736f6e

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80637bd26ec511610102578063ba5a5ea211610095578063e8a3d48511610064578063e8a3d48514610697578063e985e9c5146106c2578063edbff598146106ff578063f2fde38b14610716576101e3565b8063ba5a5ea2146105ef578063c87b56dd14610606578063e081b78114610643578063e4e60e1c1461066e576101e3565b8063a035b1fe116100d1578063a035b1fe14610549578063a22cb46514610574578063b10b51121461059d578063b88d4fde146105c6576101e3565b80637bd26ec5146104a15780638b375e71146104ca5780638da5cb5b146104f357806395d89b411461051e576101e3565b806323b872dd1161017a5780636352211e116101495780636352211e146103e75780636fd452de1461042457806370a082311461044d578063715018a61461048a576101e3565b806323b872dd146103535780633ccfd60b1461037c57806342842e0e1461039357806351830227146103bc576101e3565b806308dc9f42116101b657806308dc9f42146102b8578063095ea7b3146102d457806318160ddd146102fd578063238ac93314610328576101e3565b806301ffc9a7146101e8578063047fc9aa1461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613156565b61073f565b60405161021c9190613942565b60405180910390f35b34801561023157600080fd5b5061023a610821565b6040516102479190613d24565b60405180910390f35b34801561025c57600080fd5b50610265610827565b60405161027291906139a2565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d91906131fd565b6108b9565b6040516102af91906138db565b60405180910390f35b6102d260048036038101906102cd919061326a565b61093e565b005b3480156102e057600080fd5b506102fb60048036038101906102f69190613116565b610bb1565b005b34801561030957600080fd5b50610312610cc9565b60405161031f9190613d24565b60405180910390f35b34801561033457600080fd5b5061033d610ccf565b60405161034a91906138db565b60405180910390f35b34801561035f57600080fd5b5061037a60048036038101906103759190613000565b610cf5565b005b34801561038857600080fd5b50610391610d55565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190613000565b6110fd565b005b3480156103c857600080fd5b506103d161111d565b6040516103de9190613942565b60405180910390f35b3480156103f357600080fd5b5061040e600480360381019061040991906131fd565b611130565b60405161041b91906138db565b60405180910390f35b34801561043057600080fd5b5061044b600480360381019061044691906131b0565b6111e2565b005b34801561045957600080fd5b50610474600480360381019061046f9190612f93565b611274565b6040516104819190613d24565b60405180910390f35b34801561049657600080fd5b5061049f61132c565b005b3480156104ad57600080fd5b506104c860048036038101906104c391906131b0565b6113b4565b005b3480156104d657600080fd5b506104f160048036038101906104ec91906131fd565b611446565b005b3480156104ff57600080fd5b506105086114cc565b60405161051591906138db565b60405180910390f35b34801561052a57600080fd5b506105336114f6565b60405161054091906139a2565b60405180910390f35b34801561055557600080fd5b5061055e611588565b60405161056b9190613d24565b60405180910390f35b34801561058057600080fd5b5061059b600480360381019061059691906130d6565b61158e565b005b3480156105a957600080fd5b506105c460048036038101906105bf919061322a565b6115a4565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190613053565b6116d1565b005b3480156105fb57600080fd5b50610604611733565b005b34801561061257600080fd5b5061062d600480360381019061062891906131fd565b6117db565b60405161063a91906139a2565b60405180910390f35b34801561064f57600080fd5b50610658611906565b6040516106659190613942565b60405180910390f35b34801561067a57600080fd5b50610695600480360381019061069091906131b0565b611919565b005b3480156106a357600080fd5b506106ac6119ab565b6040516106b991906139a2565b60405180910390f35b3480156106ce57600080fd5b506106e960048036038101906106e49190612fc0565b611a3d565b6040516106f69190613942565b60405180910390f35b34801561070b57600080fd5b50610714611ad1565b005b34801561072257600080fd5b5061073d60048036038101906107389190612f93565b611b79565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081a575061081982611c71565b5b9050919050565b600d5481565b60606000805461083690613fcf565b80601f016020809104026020016040519081016040528092919081815260200182805461086290613fcf565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b60006108c482611cdb565b610903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fa90613c04565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f60009054906101000a900460ff1661098d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098490613ae4565b60405180910390fd5b600a8311156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890613be4565b60405180910390fd5b6010600083815260200190815260200160002060009054906101000a900460ff1615610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990613c84565b60405180910390fd5b3483600854610a419190613e74565b1115610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990613b84565b60405180910390fd5b600d5483600e54610a939190613ded565b1115610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90613aa4565b60405180910390fd5b610ae6610ae083611d47565b82611da2565b610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90613c24565b60405180910390fd5b60016010600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b83811015610b9257610b7f33600183600e54610b709190613ded565b610b7a9190613ded565b611e06565b8080610b8a90614032565b915050610b54565b5082600e6000828254610ba59190613ded565b92505081905550505050565b6000610bbc82611130565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490613ce4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4c611e24565b73ffffffffffffffffffffffffffffffffffffffff161480610c7b5750610c7a81610c75611e24565b611a3d565b5b610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613b24565b60405180910390fd5b610cc48383611e2c565b505050565b600e5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d06610d00611e24565b82611ee5565b610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613d04565b60405180910390fd5b610d50838383611fc3565b505050565b6000479050737f41cfb3d9241d6f968db494eb0a6138001390f473ffffffffffffffffffffffffffffffffffffffff166108fc6103e8601984610d989190613e74565b610da29190613e43565b9081150290604051600060405180830381858888f19350505050158015610dcd573d6000803e3d6000fd5b5073aa6196b7bd461d3376caecbf248c9cd75cd2e3ea73ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c384610e0c9190613e74565b610e169190613e43565b9081150290604051600060405180830381858888f19350505050158015610e41573d6000803e3d6000fd5b50739a2d28af88235ffd3c818420ff70358467d4bb5c73ffffffffffffffffffffffffffffffffffffffff166108fc6103e8606e84610e809190613e74565b610e8a9190613e43565b9081150290604051600060405180830381858888f19350505050158015610eb5573d6000803e3d6000fd5b507346ec7b4097fbccf6540791e35eaeb6a3aba2e1f973ffffffffffffffffffffffffffffffffffffffff166108fc6103e8605584610ef49190613e74565b610efe9190613e43565b9081150290604051600060405180830381858888f19350505050158015610f29573d6000803e3d6000fd5b50739a1219b330493a0dde9d8c10c579d6fb84ec1b8b73ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c384610f689190613e74565b610f729190613e43565b9081150290604051600060405180830381858888f19350505050158015610f9d573d6000803e3d6000fd5b5073713eed92d42df88ab85934e7156acdc47b9968c473ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c384610fdc9190613e74565b610fe69190613e43565b9081150290604051600060405180830381858888f19350505050158015611011573d6000803e3d6000fd5b5073e5e7200a9d7f73157d1732715ca0caa4e76690e673ffffffffffffffffffffffffffffffffffffffff166108fc6103e86041846110509190613e74565b61105a9190613e43565b9081150290604051600060405180830381858888f19350505050158015611085573d6000803e3d6000fd5b5073a1053453525ffb4e460fe34ba10e8d4a3775967573ffffffffffffffffffffffffffffffffffffffff166108fc6103e86082846110c49190613e74565b6110ce9190613e43565b9081150290604051600060405180830381858888f193505050501580156110f9573d6000803e3d6000fd5b5050565b611118838383604051806020016040528060008152506116d1565b505050565b600960009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d090613b64565b60405180910390fd5b80915050919050565b6111ea611e24565b73ffffffffffffffffffffffffffffffffffffffff166112086114cc565b73ffffffffffffffffffffffffffffffffffffffff161461125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590613c44565b60405180910390fd5b8181600b919061126f929190612dc1565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dc90613b44565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611334611e24565b73ffffffffffffffffffffffffffffffffffffffff166113526114cc565b73ffffffffffffffffffffffffffffffffffffffff16146113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90613c44565b60405180910390fd5b6113b2600061221f565b565b6113bc611e24565b73ffffffffffffffffffffffffffffffffffffffff166113da6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790613c44565b60405180910390fd5b8181600a9190611441929190612dc1565b505050565b61144e611e24565b73ffffffffffffffffffffffffffffffffffffffff1661146c6114cc565b73ffffffffffffffffffffffffffffffffffffffff16146114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990613c44565b60405180910390fd5b8060088190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461150590613fcf565b80601f016020809104026020016040519081016040528092919081815260200182805461153190613fcf565b801561157e5780601f106115535761010080835404028352916020019161157e565b820191906000526020600020905b81548152906001019060200180831161156157829003601f168201915b5050505050905090565b60085481565b6115a0611599611e24565b83836122e5565b5050565b6115ac611e24565b73ffffffffffffffffffffffffffffffffffffffff166115ca6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161790613c44565b60405180910390fd5b600d5482600e546116319190613ded565b1115611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990613cc4565b60405180910390fd5b60005b828110156116b3576116a082600183600e546116919190613ded565b61169b9190613ded565b611e06565b80806116ab90614032565b915050611675565b5081600e60008282546116c69190613ded565b925050819055505050565b6116e26116dc611e24565b83611ee5565b611721576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171890613d04565b60405180910390fd5b61172d84848484612452565b50505050565b61173b611e24565b73ffffffffffffffffffffffffffffffffffffffff166117596114cc565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613c44565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b60606117e682611cdb565b611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c90613ca4565b60405180910390fd5b60001515600960009054906101000a900460ff16151514156118d357600a805461184e90613fcf565b80601f016020809104026020016040519081016040528092919081815260200182805461187a90613fcf565b80156118c75780601f1061189c576101008083540402835291602001916118c7565b820191906000526020600020905b8154815290600101906020018083116118aa57829003601f168201915b50505050509050611901565b600c6118de836124ae565b6040516020016118ef92919061386b565b60405160208183030381529060405290505b919050565b600f60009054906101000a900460ff1681565b611921611e24565b73ffffffffffffffffffffffffffffffffffffffff1661193f6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613c44565b60405180910390fd5b8181600c91906119a6929190612dc1565b505050565b6060600b80546119ba90613fcf565b80601f01602080910402602001604051908101604052809291908181526020018280546119e690613fcf565b8015611a335780601f10611a0857610100808354040283529160200191611a33565b820191906000526020600020905b815481529060010190602001808311611a1657829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ad9611e24565b73ffffffffffffffffffffffffffffffffffffffff16611af76114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490613c44565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611b81611e24565b73ffffffffffffffffffffffffffffffffffffffff16611b9f6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec90613c44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90613a24565b60405180910390fd5b611c6e8161221f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60008082604051602001611d5b91906138c0565b60405160208183030381529060405280519060200120604051602001611d81919061389a565b60405160208183030381529060405280519060200120905080915050919050565b6000611dae838361260f565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b611e20828260405180602001604052806000815250612636565b5050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e9f83611130565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ef082611cdb565b611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2690613b04565b60405180910390fd5b6000611f3a83611130565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fa957508373ffffffffffffffffffffffffffffffffffffffff16611f91846108b9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fba5750611fb98185611a3d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fe382611130565b73ffffffffffffffffffffffffffffffffffffffff1614612039576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203090613c64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a090613a64565b60405180910390fd5b6120b4838383612691565b6120bf600082611e2c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461210f9190613ece565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121669190613ded565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90613a84565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124459190613942565b60405180910390a3505050565b61245d848484611fc3565b61246984848484612696565b6124a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249f90613a04565b60405180910390fd5b50505050565b606060008214156124f6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061260a565b600082905060005b6000821461252857808061251190614032565b915050600a826125219190613e43565b91506124fe565b60008167ffffffffffffffff811115612544576125436141ab565b5b6040519080825280601f01601f1916602001820160405280156125765781602001600182028036833780820191505090505b5090505b600085146126035760018261258f9190613ece565b9150600a8561259e919061408f565b60306125aa9190613ded565b60f81b8183815181106125c0576125bf61417c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125fc9190613e43565b945061257a565b8093505050505b919050565b600080600061261e858561282d565b9150915061262b816128b0565b819250505092915050565b6126408383612a85565b61264d6000848484612696565b61268c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268390613a04565b60405180910390fd5b505050565b505050565b60006126b78473ffffffffffffffffffffffffffffffffffffffff16612c53565b15612820578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126e0611e24565b8786866040518563ffffffff1660e01b815260040161270294939291906138f6565b602060405180830381600087803b15801561271c57600080fd5b505af192505050801561274d57506040513d601f19601f8201168201806040525081019061274a9190613183565b60015b6127d0573d806000811461277d576040519150601f19603f3d011682016040523d82523d6000602084013e612782565b606091505b506000815114156127c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bf90613a04565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612825565b600190505b949350505050565b60008060418351141561286f5760008060006020860151925060408601519150606086015160001a905061286387828585612c66565b945094505050506128a9565b6040835114156128a0576000806020850151915060408501519050612895868383612d73565b9350935050506128a9565b60006002915091505b9250929050565b600060048111156128c4576128c361411e565b5b8160048111156128d7576128d661411e565b5b14156128e257612a82565b600160048111156128f6576128f561411e565b5b8160048111156129095761290861411e565b5b141561294a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612941906139c4565b60405180910390fd5b6002600481111561295e5761295d61411e565b5b8160048111156129715761297061411e565b5b14156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a9906139e4565b60405180910390fd5b600360048111156129c6576129c561411e565b5b8160048111156129d9576129d861411e565b5b1415612a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1190613ac4565b60405180910390fd5b600480811115612a2d57612a2c61411e565b5b816004811115612a4057612a3f61411e565b5b1415612a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7890613ba4565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aec90613bc4565b60405180910390fd5b612afe81611cdb565b15612b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3590613a44565b60405180910390fd5b612b4a60008383612691565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9a9190613ded565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115612ca1576000600391509150612d6a565b601b8560ff1614158015612cb95750601c8560ff1614155b15612ccb576000600491509150612d6a565b600060018787878760405160008152602001604052604051612cf0949392919061395d565b6020604051602081039080840390855afa158015612d12573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d6157600060019250925050612d6a565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050612db387828885612c66565b935093505050935093915050565b828054612dcd90613fcf565b90600052602060002090601f016020900481019282612def5760008555612e36565b82601f10612e0857803560ff1916838001178555612e36565b82800160010185558215612e36579182015b82811115612e35578235825591602001919060010190612e1a565b5b509050612e439190612e47565b5090565b5b80821115612e60576000816000905550600101612e48565b5090565b6000612e77612e7284613d64565b613d3f565b905082815260208101848484011115612e9357612e926141e9565b5b612e9e848285613f8d565b509392505050565b600081359050612eb58161489c565b92915050565b600081359050612eca816148b3565b92915050565b600081359050612edf816148ca565b92915050565b600081519050612ef4816148ca565b92915050565b600082601f830112612f0f57612f0e6141df565b5b8135612f1f848260208601612e64565b91505092915050565b60008083601f840112612f3e57612f3d6141df565b5b8235905067ffffffffffffffff811115612f5b57612f5a6141da565b5b602083019150836001820283011115612f7757612f766141e4565b5b9250929050565b600081359050612f8d816148e1565b92915050565b600060208284031215612fa957612fa86141f3565b5b6000612fb784828501612ea6565b91505092915050565b60008060408385031215612fd757612fd66141f3565b5b6000612fe585828601612ea6565b9250506020612ff685828601612ea6565b9150509250929050565b600080600060608486031215613019576130186141f3565b5b600061302786828701612ea6565b935050602061303886828701612ea6565b925050604061304986828701612f7e565b9150509250925092565b6000806000806080858703121561306d5761306c6141f3565b5b600061307b87828801612ea6565b945050602061308c87828801612ea6565b935050604061309d87828801612f7e565b925050606085013567ffffffffffffffff8111156130be576130bd6141ee565b5b6130ca87828801612efa565b91505092959194509250565b600080604083850312156130ed576130ec6141f3565b5b60006130fb85828601612ea6565b925050602061310c85828601612ebb565b9150509250929050565b6000806040838503121561312d5761312c6141f3565b5b600061313b85828601612ea6565b925050602061314c85828601612f7e565b9150509250929050565b60006020828403121561316c5761316b6141f3565b5b600061317a84828501612ed0565b91505092915050565b600060208284031215613199576131986141f3565b5b60006131a784828501612ee5565b91505092915050565b600080602083850312156131c7576131c66141f3565b5b600083013567ffffffffffffffff8111156131e5576131e46141ee565b5b6131f185828601612f28565b92509250509250929050565b600060208284031215613213576132126141f3565b5b600061322184828501612f7e565b91505092915050565b60008060408385031215613241576132406141f3565b5b600061324f85828601612f7e565b925050602061326085828601612ea6565b9150509250929050565b600080600060608486031215613283576132826141f3565b5b600061329186828701612f7e565b93505060206132a286828701612f7e565b925050604084013567ffffffffffffffff8111156132c3576132c26141ee565b5b6132cf86828701612efa565b9150509250925092565b6132e281613f02565b82525050565b6132f181613f14565b82525050565b61330081613f20565b82525050565b61331761331282613f20565b61407b565b82525050565b600061332882613daa565b6133328185613dc0565b9350613342818560208601613f9c565b61334b816141f8565b840191505092915050565b600061336182613db5565b61336b8185613dd1565b935061337b818560208601613f9c565b613384816141f8565b840191505092915050565b600061339a82613db5565b6133a48185613de2565b93506133b4818560208601613f9c565b80840191505092915050565b600081546133cd81613fcf565b6133d78186613de2565b945060018216600081146133f2576001811461340357613436565b60ff19831686528186019350613436565b61340c85613d95565b60005b8381101561342e5781548189015260018201915060208101905061340f565b838801955050505b50505092915050565b600061344c601883613dd1565b915061345782614209565b602082019050919050565b600061346f601f83613dd1565b915061347a82614232565b602082019050919050565b6000613492601c83613de2565b915061349d8261425b565b601c82019050919050565b60006134b5603283613dd1565b91506134c082614284565b604082019050919050565b60006134d8602683613dd1565b91506134e3826142d3565b604082019050919050565b60006134fb601c83613dd1565b915061350682614322565b602082019050919050565b600061351e602483613dd1565b91506135298261434b565b604082019050919050565b6000613541601983613dd1565b915061354c8261439a565b602082019050919050565b6000613564600e83613dd1565b915061356f826143c3565b602082019050919050565b6000613587602283613dd1565b9150613592826143ec565b604082019050919050565b60006135aa600b83613dd1565b91506135b58261443b565b602082019050919050565b60006135cd602c83613dd1565b91506135d882614464565b604082019050919050565b60006135f0603883613dd1565b91506135fb826144b3565b604082019050919050565b6000613613602a83613dd1565b915061361e82614502565b604082019050919050565b6000613636602983613dd1565b915061364182614551565b604082019050919050565b6000613659600983613dd1565b9150613664826145a0565b602082019050919050565b600061367c602283613dd1565b9150613687826145c9565b604082019050919050565b600061369f602083613dd1565b91506136aa82614618565b602082019050919050565b60006136c2600f83613dd1565b91506136cd82614641565b602082019050919050565b60006136e5602c83613dd1565b91506136f08261466a565b604082019050919050565b6000613708600583613de2565b9150613713826146b9565b600582019050919050565b600061372b601383613dd1565b9150613736826146e2565b602082019050919050565b600061374e602083613dd1565b91506137598261470b565b602082019050919050565b6000613771602983613dd1565b915061377c82614734565b604082019050919050565b6000613794600983613dd1565b915061379f82614783565b602082019050919050565b60006137b7601f83613dd1565b91506137c2826147ac565b602082019050919050565b60006137da600a83613dd1565b91506137e5826147d5565b602082019050919050565b60006137fd602183613dd1565b9150613808826147fe565b604082019050919050565b6000613820603183613dd1565b915061382b8261484d565b604082019050919050565b61383f81613f76565b82525050565b61385661385182613f76565b614085565b82525050565b61386581613f80565b82525050565b600061387782856133c0565b9150613883828461338f565b915061388e826136fb565b91508190509392505050565b60006138a582613485565b91506138b18284613306565b60208201915081905092915050565b60006138cc8284613845565b60208201915081905092915050565b60006020820190506138f060008301846132d9565b92915050565b600060808201905061390b60008301876132d9565b61391860208301866132d9565b6139256040830185613836565b8181036060830152613937818461331d565b905095945050505050565b600060208201905061395760008301846132e8565b92915050565b600060808201905061397260008301876132f7565b61397f602083018661385c565b61398c60408301856132f7565b61399960608301846132f7565b95945050505050565b600060208201905081810360008301526139bc8184613356565b905092915050565b600060208201905081810360008301526139dd8161343f565b9050919050565b600060208201905081810360008301526139fd81613462565b9050919050565b60006020820190508181036000830152613a1d816134a8565b9050919050565b60006020820190508181036000830152613a3d816134cb565b9050919050565b60006020820190508181036000830152613a5d816134ee565b9050919050565b60006020820190508181036000830152613a7d81613511565b9050919050565b60006020820190508181036000830152613a9d81613534565b9050919050565b60006020820190508181036000830152613abd81613557565b9050919050565b60006020820190508181036000830152613add8161357a565b9050919050565b60006020820190508181036000830152613afd8161359d565b9050919050565b60006020820190508181036000830152613b1d816135c0565b9050919050565b60006020820190508181036000830152613b3d816135e3565b9050919050565b60006020820190508181036000830152613b5d81613606565b9050919050565b60006020820190508181036000830152613b7d81613629565b9050919050565b60006020820190508181036000830152613b9d8161364c565b9050919050565b60006020820190508181036000830152613bbd8161366f565b9050919050565b60006020820190508181036000830152613bdd81613692565b9050919050565b60006020820190508181036000830152613bfd816136b5565b9050919050565b60006020820190508181036000830152613c1d816136d8565b9050919050565b60006020820190508181036000830152613c3d8161371e565b9050919050565b60006020820190508181036000830152613c5d81613741565b9050919050565b60006020820190508181036000830152613c7d81613764565b9050919050565b60006020820190508181036000830152613c9d81613787565b9050919050565b60006020820190508181036000830152613cbd816137aa565b9050919050565b60006020820190508181036000830152613cdd816137cd565b9050919050565b60006020820190508181036000830152613cfd816137f0565b9050919050565b60006020820190508181036000830152613d1d81613813565b9050919050565b6000602082019050613d396000830184613836565b92915050565b6000613d49613d5a565b9050613d558282614001565b919050565b6000604051905090565b600067ffffffffffffffff821115613d7f57613d7e6141ab565b5b613d88826141f8565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613df882613f76565b9150613e0383613f76565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e3857613e376140c0565b5b828201905092915050565b6000613e4e82613f76565b9150613e5983613f76565b925082613e6957613e686140ef565b5b828204905092915050565b6000613e7f82613f76565b9150613e8a83613f76565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ec357613ec26140c0565b5b828202905092915050565b6000613ed982613f76565b9150613ee483613f76565b925082821015613ef757613ef66140c0565b5b828203905092915050565b6000613f0d82613f56565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613fba578082015181840152602081019050613f9f565b83811115613fc9576000848401525b50505050565b60006002820490506001821680613fe757607f821691505b60208210811415613ffb57613ffa61414d565b5b50919050565b61400a826141f8565b810181811067ffffffffffffffff82111715614029576140286141ab565b5b80604052505050565b600061403d82613f76565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140705761406f6140c0565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061409a82613f76565b91506140a583613f76565b9250826140b5576140b46140ef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f424144204d415820535550504c59000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4241442050524943450000000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f424144204d415820504552204255590000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4e4f5420414c4c4f57454420544f204d494e5400000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f424144204e4f4e43450000000000000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f42414420535550504c5900000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6148a581613f02565b81146148b057600080fd5b50565b6148bc81613f14565b81146148c757600080fd5b50565b6148d381613f2a565b81146148de57600080fd5b50565b6148ea81613f76565b81146148f557600080fd5b5056fea2646970667358221220b23eb5d6ff681a4303893a36f78e4becbed443d9d576549a750fa61a1a28691864736f6c63430008060033

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.