ETH Price: $3,126.73 (-5.03%)
Gas: 4 Gwei

Token

HITS BLUNT (HITSBLUNT)
 

Overview

Max Total Supply

446 HITSBLUNT

Holders

195

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rugjira.eth
Balance
1 HITSBLUNT
0x82f1f55bea8b3ae051cc84e13b54a763181f383a
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:
HITSBLUNT

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

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

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

    address public verifiedSigner = 0xfA9500C2F2d397e95de8E67a0D78EeaC98340921;
    address private memberOne = 0x306292fd115063F8E72efEDBA3a2B71cb817437B;

    uint256 public NFT_MAX = 10000;
    uint256 public NFT_PRICE = 0.07 ether;
    uint256 public constant NFTS_PER_MINT = 10000;
    string private _contractURI;
    string private _tokenBaseURI;
    string public _mysteryURI =
        "https://gateway.pinata.cloud/ipfs/QmTgsrsX3UyKEZGkNghwF1eJoDeTg7hXkakNQLwf3wD7hr/1.json";

    mapping(uint256 => bool) private usedNonce;

    bool public revealed;
    bool public saleLive = true;
    bool public giftLive = true;
    bool public burnLive;

    uint256 public totalSupply;
    uint256 public totalBurnedSupply;

    constructor() ERC721("HITS BLUNT", "HITSBLUNT") {}

    function mintGiftAsOwner(uint256 tokenQuantity, address wallet)
        external
        onlyOwner
    {
        require(giftLive, "GIFTING_CLOSED");
        require(totalSupply < NFT_MAX, "OUT_OF_STOCK");
        require(totalSupply + tokenQuantity <= NFT_MAX, "EXCEED_STOCK");

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

        totalSupply += tokenQuantity;
    }

    function mintGift(
        uint256 tokenQuantity,
        uint256 nonce,
        address wallet,
        bytes memory signature
    ) external {
        require(giftLive, "GIFTING_CLOSED");
        require(totalSupply < NFT_MAX, "OUT_OF_STOCK");
        require(totalSupply + tokenQuantity <= NFT_MAX, "EXCEED_PUBLIC");
        require(usedNonce[nonce] == false, "NONCE_ALREADY_USED");
        require(
            matchSigner(
                hashTransaction(nonce, wallet, tokenQuantity),
                signature
            ),
            "NOT_ALLOWED_TO_MINT"
        );
        usedNonce[nonce] = true;

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

        totalSupply += tokenQuantity;
    }

    function mint(
        uint256 tokenQuantity,
        uint256 nonce,
        address wallet,
        bytes memory signature
    ) external payable {
        require(saleLive, "SALE_CLOSED");
        require(totalSupply < NFT_MAX, "OUT_OF_STOCK");
        require(totalSupply + tokenQuantity <= NFT_MAX, "EXCEED_STOCK");
        require(NFT_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");
        require(!usedNonce[nonce], "NONCE_ALREADY_USED");
        require(tokenQuantity <= NFTS_PER_MINT, "EXCEED_NFTS_PER_MINT");
        require(
            matchSigner(
                hashTransaction(nonce, wallet, tokenQuantity),
                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,
        address wallet,
        uint256 tokenQuantity
    ) internal pure returns (bytes32) {
        bytes32 hash = keccak256(
            abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                keccak256(abi.encodePacked(nonce, wallet, tokenQuantity))
            )
        );
        return hash;
    }

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

    function withdraw() external {
        uint256 currentBalance = address(this).balance;
        payable(memberOne).transfer(currentBalance);
    }

    function burnMint(uint256 _tokenId) public {
        require(burnLive == true, "BURN_IS_NOT_LIVE");
        require(ownerOf(_tokenId) == msg.sender, "TOKEN_TO_BURN_NOT_BY_OWNER");
        _burn(_tokenId);
        totalBurnedSupply = totalBurnedSupply + 1;
    }

    function burnMintAsOwner(uint256 _tokenId) public onlyOwner {
        require(burnLive == true, "BURN_IS_NOT_LIVE");
        _burn(_tokenId);
        totalBurnedSupply = totalBurnedSupply + 1;
    }

    function toggleBurnStatus() external onlyOwner {
        burnLive = !burnLive;
    }

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

    function toggleSaleGiftStatus() external onlyOwner {
        giftLive = !giftLive;
    }

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

    function setVerifiedSigner(address wallet) public onlyOwner {
        verifiedSigner = wallet;
    }

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

    function setPriceOfNFT(uint256 price) external onlyOwner {
        // 70000000000000000 = .07 eth
        NFT_PRICE = price;
    }

    function setNFTMax(uint256 max) external onlyOwner {
        NFT_MAX = max;
    }

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

    function setBaseURI(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 : 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 3 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 4 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 5 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 6 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 7 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 8 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 9 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 10 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 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":[],"name":"NFTS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mysteryURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnMintAsOwner","outputs":[],"stateMutability":"nonpayable","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":[],"name":"giftLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"wallet","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"mintGiftAsOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setNFTMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPriceOfNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setVerifiedSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleBurnStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleGiftStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurnedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"verifiedSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273fa9500c2f2d397e95de8e67a0d78eeac98340921600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073306292fd115063f8e72efedba3a2b71cb817437b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061271060095566f8b0a10e470000600a55604051806080016040528060578152602001620057c360579139600d9080519060200190620000f0929190620002c9565b506001600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff0219169083151502179055503480156200013457600080fd5b506040518060400160405280600a81526020017f4849545320424c554e54000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f48495453424c554e5400000000000000000000000000000000000000000000008152508160009080519060200190620001b9929190620002c9565b508060019080519060200190620001d2929190620002c9565b505050620001f5620001e9620001fb60201b60201c565b6200020360201b60201c565b620003de565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d79062000379565b90600052602060002090601f016020900481019282620002fb576000855562000347565b82601f106200031657805160ff191683800117855562000347565b8280016001018555821562000347579182015b828111156200034657825182559160200191906001019062000329565b5b5090506200035691906200035a565b5090565b5b80821115620003755760008160009055506001016200035b565b5090565b600060028204905060018216806200039257607f821691505b60208210811415620003a957620003a8620003af565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6153d580620003ee6000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063c87b56dd116100b6578063e423a5111161007a578063e423a5111461089b578063e72be68a146108c4578063e8a3d485146108ed578063e985e9c514610918578063ee37520b14610955578063f2fde38b1461096c57610267565b8063c87b56dd146107c8578063c9f9a72314610805578063cb908cce1461082e578063d1b85c5314610845578063e081b7811461087057610267565b806395d89b411161010857806395d89b41146106cc578063978528c0146106f7578063a22cb46514610720578063a4f8eaeb14610749578063b88d4fde14610774578063c30e76841461079d57610267565b806370a08231146105f9578063715018a61461063657806372bfb1af1461064d5780638da5cb5b14610678578063938e3d7b146106a357610267565b806335ef4fb7116101dd57806351830227116101a157806351830227146104f857806355f804b3146105235780635b0c52fd1461054c5780635ca5933a146105755780636352211e14610591578063676dd563146105ce57610267565b806335ef4fb71461044b57806339aba407146104765780633ccfd60b146104a157806342842e0e146104b857806345bcf17f146104e157610267565b806311084c971161022f57806311084c971461035157806318160ddd1461037a5780631bd98e72146103a557806323b872dd146103ce5780632cff9e06146103f75780633125ac6c1461042257610267565b806301ffc9a71461026c578063049c5c49146102a957806306fdde03146102c0578063081812fc146102eb578063095ea7b314610328575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906139cf565b610995565b6040516102a09190614294565b60405180910390f35b3480156102b557600080fd5b506102be610a77565b005b3480156102cc57600080fd5b506102d5610b1f565b6040516102e291906142f4565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190613a76565b610bb1565b60405161031f919061422d565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a919061398f565b610c36565b005b34801561035d57600080fd5b5061037860048036038101906103739190613ae3565b610d4e565b005b34801561038657600080fd5b5061038f610f7c565b60405161039c91906146f6565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190613aa3565b610f82565b005b3480156103da57600080fd5b506103f560048036038101906103f09190613879565b611144565b005b34801561040357600080fd5b5061040c6111a4565b6040516104199190614294565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613a76565b6111b7565b005b34801561045757600080fd5b506104606112a4565b60405161046d919061422d565b60405180910390f35b34801561048257600080fd5b5061048b6112ca565b60405161049891906146f6565b60405180910390f35b3480156104ad57600080fd5b506104b66112d0565b005b3480156104c457600080fd5b506104df60048036038101906104da9190613879565b611341565b005b3480156104ed57600080fd5b506104f6611361565b005b34801561050457600080fd5b5061050d611409565b60405161051a9190614294565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613a29565b61141c565b005b34801561055857600080fd5b50610573600480360381019061056e9190613a76565b6114ae565b005b61058f600480360381019061058a9190613ae3565b611534565b005b34801561059d57600080fd5b506105b860048036038101906105b39190613a76565b6117f1565b6040516105c5919061422d565b60405180910390f35b3480156105da57600080fd5b506105e36118a3565b6040516105f091906146f6565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b919061380c565b6118a9565b60405161062d91906146f6565b60405180910390f35b34801561064257600080fd5b5061064b611961565b005b34801561065957600080fd5b506106626119e9565b60405161066f91906146f6565b60405180910390f35b34801561068457600080fd5b5061068d6119ef565b60405161069a919061422d565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190613a29565b611a19565b005b3480156106d857600080fd5b506106e1611aab565b6040516106ee91906142f4565b60405180910390f35b34801561070357600080fd5b5061071e6004803603810190610719919061380c565b611b3d565b005b34801561072c57600080fd5b506107476004803603810190610742919061394f565b611bfd565b005b34801561075557600080fd5b5061075e611c13565b60405161076b91906142f4565b60405180910390f35b34801561078057600080fd5b5061079b600480360381019061079691906138cc565b611ca1565b005b3480156107a957600080fd5b506107b2611d03565b6040516107bf91906146f6565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613a76565b611d09565b6040516107fc91906142f4565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613a76565b611e34565b005b34801561083a57600080fd5b50610843611f27565b005b34801561085157600080fd5b5061085a611fcf565b6040516108679190614294565b60405180910390f35b34801561087c57600080fd5b50610885611fe2565b6040516108929190614294565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613a76565b611ff5565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613a29565b61207b565b005b3480156108f957600080fd5b5061090261210d565b60405161090f91906142f4565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190613839565b61219f565b60405161094c9190614294565b60405180910390f35b34801561096157600080fd5b5061096a612233565b005b34801561097857600080fd5b50610993600480360381019061098e919061380c565b6122db565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a705750610a6f826123d3565b5b9050919050565b610a7f61243d565b73ffffffffffffffffffffffffffffffffffffffff16610a9d6119ef565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90614596565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b606060008054610b2e906149a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5a906149a1565b8015610ba75780601f10610b7c57610100808354040283529160200191610ba7565b820191906000526020600020905b815481529060010190602001808311610b8a57829003601f168201915b5050505050905090565b6000610bbc82612445565b610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290614576565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c41826117f1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca9906145f6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cd161243d565b73ffffffffffffffffffffffffffffffffffffffff161480610d005750610cff81610cfa61243d565b61219f565b5b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d36906144b6565b60405180910390fd5b610d4983836124b1565b505050565b600f60029054906101000a900460ff16610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d94906146d6565b60405180910390fd5b60095460105410610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda90614436565b60405180910390fd5b60095484601054610df491906147bf565b1115610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c90614616565b60405180910390fd5b60001515600e600085815260200190815260200160002060009054906101000a900460ff16151514610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390614516565b60405180910390fd5b610eb0610eaa84848761256a565b826125cb565b610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690614636565b60405180910390fd5b6001600e600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b84811015610f5c57610f4983600183601054610f3a91906147bf565b610f4491906147bf565b61262f565b8080610f5490614a04565b915050610f1e565b508360106000828254610f6f91906147bf565b9250508190555050505050565b60105481565b610f8a61243d565b73ffffffffffffffffffffffffffffffffffffffff16610fa86119ef565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590614596565b60405180910390fd5b600f60029054906101000a900460ff1661104d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611044906146d6565b60405180910390fd5b60095460105410611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90614436565b60405180910390fd5b600954826010546110a491906147bf565b11156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906143b6565b60405180910390fd5b60005b82811015611126576111138260018360105461110491906147bf565b61110e91906147bf565b61262f565b808061111e90614a04565b9150506110e8565b50816010600082825461113991906147bf565b925050819055505050565b61115561114f61243d565b8261264d565b611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90614656565b60405180910390fd5b61119f83838361272b565b505050565b600f60029054906101000a900460ff1681565b60011515600f60039054906101000a900460ff1615151461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490614336565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661122d826117f1565b73ffffffffffffffffffffffffffffffffffffffff1614611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90614676565b60405180910390fd5b61128c81612987565b600160115461129b91906147bf565b60118190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561133d573d6000803e3d6000fd5b5050565b61135c83838360405180602001604052806000815250611ca1565b505050565b61136961243d565b73ffffffffffffffffffffffffffffffffffffffff166113876119ef565b73ffffffffffffffffffffffffffffffffffffffff16146113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490614596565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600f60009054906101000a900460ff1681565b61142461243d565b73ffffffffffffffffffffffffffffffffffffffff166114426119ef565b73ffffffffffffffffffffffffffffffffffffffff1614611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90614596565b60405180910390fd5b8181600c91906114a992919061363a565b505050565b6114b661243d565b73ffffffffffffffffffffffffffffffffffffffff166114d46119ef565b73ffffffffffffffffffffffffffffffffffffffff161461152a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152190614596565b60405180910390fd5b8060098190555050565b600f60019054906101000a900460ff16611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90614476565b60405180910390fd5b600954601054106115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090614436565b60405180910390fd5b600954846010546115da91906147bf565b111561161b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611612906143b6565b60405180910390fd5b3484600a5461162a9190614846565b111561166b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611662906146b6565b60405180910390fd5b600e600084815260200190815260200160002060009054906101000a900460ff16156116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390614516565b60405180910390fd5b612710841115611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890614696565b60405180910390fd5b61172561171f84848761256a565b826125cb565b611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90614636565b60405180910390fd5b6001600e600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b848110156117d1576117be336001836010546117af91906147bf565b6117b991906147bf565b61262f565b80806117c990614a04565b915050611793565b5083601060008282546117e491906147bf565b9250508190555050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561189a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611891906144f6565b60405180910390fd5b80915050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611911906144d6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61196961243d565b73ffffffffffffffffffffffffffffffffffffffff166119876119ef565b73ffffffffffffffffffffffffffffffffffffffff16146119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490614596565b60405180910390fd5b6119e76000612a98565b565b61271081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a2161243d565b73ffffffffffffffffffffffffffffffffffffffff16611a3f6119ef565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90614596565b60405180910390fd5b8181600b9190611aa692919061363a565b505050565b606060018054611aba906149a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae6906149a1565b8015611b335780601f10611b0857610100808354040283529160200191611b33565b820191906000526020600020905b815481529060010190602001808311611b1657829003601f168201915b5050505050905090565b611b4561243d565b73ffffffffffffffffffffffffffffffffffffffff16611b636119ef565b73ffffffffffffffffffffffffffffffffffffffff1614611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090614596565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c0f611c0861243d565b8383612b5e565b5050565b600d8054611c20906149a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4c906149a1565b8015611c995780601f10611c6e57610100808354040283529160200191611c99565b820191906000526020600020905b815481529060010190602001808311611c7c57829003601f168201915b505050505081565b611cb2611cac61243d565b8361264d565b611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce890614656565b60405180910390fd5b611cfd84848484612ccb565b50505050565b60095481565b6060611d1482612445565b611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a906145d6565b60405180910390fd5b60001515600f60009054906101000a900460ff1615151415611e0157600d8054611d7c906149a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611da8906149a1565b8015611df55780601f10611dca57610100808354040283529160200191611df5565b820191906000526020600020905b815481529060010190602001808311611dd857829003601f168201915b50505050509050611e2f565b600c611e0c83612d27565b604051602001611e1d92919061419b565b60405160208183030381529060405290505b919050565b611e3c61243d565b73ffffffffffffffffffffffffffffffffffffffff16611e5a6119ef565b73ffffffffffffffffffffffffffffffffffffffff1614611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea790614596565b60405180910390fd5b60011515600f60039054906101000a900460ff16151514611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90614336565b60405180910390fd5b611f0f81612987565b6001601154611f1e91906147bf565b60118190555050565b611f2f61243d565b73ffffffffffffffffffffffffffffffffffffffff16611f4d6119ef565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90614596565b60405180910390fd5b600f60029054906101000a900460ff1615600f60026101000a81548160ff021916908315150217905550565b600f60039054906101000a900460ff1681565b600f60019054906101000a900460ff1681565b611ffd61243d565b73ffffffffffffffffffffffffffffffffffffffff1661201b6119ef565b73ffffffffffffffffffffffffffffffffffffffff1614612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206890614596565b60405180910390fd5b80600a8190555050565b61208361243d565b73ffffffffffffffffffffffffffffffffffffffff166120a16119ef565b73ffffffffffffffffffffffffffffffffffffffff16146120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ee90614596565b60405180910390fd5b8181600d919061210892919061363a565b505050565b6060600b805461211c906149a1565b80601f0160208091040260200160405190810160405280929190818152602001828054612148906149a1565b80156121955780601f1061216a57610100808354040283529160200191612195565b820191906000526020600020905b81548152906001019060200180831161217857829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61223b61243d565b73ffffffffffffffffffffffffffffffffffffffff166122596119ef565b73ffffffffffffffffffffffffffffffffffffffff16146122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a690614596565b60405180910390fd5b600f60039054906101000a900460ff1615600f60036101000a81548160ff021916908315150217905550565b6122e361243d565b73ffffffffffffffffffffffffffffffffffffffff166123016119ef565b73ffffffffffffffffffffffffffffffffffffffff1614612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e90614596565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be90614396565b60405180910390fd5b6123d081612a98565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612524836117f1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080848484604051602001612582939291906141f0565b604051602081830303815290604052805190602001206040516020016125a891906141ca565b604051602081830303815290604052805190602001209050809150509392505050565b60006125d78383612e88565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612649828260405180602001604052806000815250612eaf565b5050565b600061265882612445565b612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90614496565b60405180910390fd5b60006126a2836117f1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061271157508373ffffffffffffffffffffffffffffffffffffffff166126f984610bb1565b73ffffffffffffffffffffffffffffffffffffffff16145b806127225750612721818561219f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661274b826117f1565b73ffffffffffffffffffffffffffffffffffffffff16146127a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612798906145b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612811576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612808906143f6565b60405180910390fd5b61281c838383612f0a565b6128276000826124b1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461287791906148a0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128ce91906147bf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612992826117f1565b90506129a081600084612f0a565b6129ab6000836124b1565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129fb91906148a0565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc490614416565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612cbe9190614294565b60405180910390a3505050565b612cd684848461272b565b612ce284848484612f0f565b612d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1890614376565b60405180910390fd5b50505050565b60606000821415612d6f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e83565b600082905060005b60008214612da1578080612d8a90614a04565b915050600a82612d9a9190614815565b9150612d77565b60008167ffffffffffffffff811115612dbd57612dbc614ba1565b5b6040519080825280601f01601f191660200182016040528015612def5781602001600182028036833780820191505090505b5090505b60008514612e7c57600182612e0891906148a0565b9150600a85612e179190614a85565b6030612e2391906147bf565b60f81b818381518110612e3957612e38614b72565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e759190614815565b9450612df3565b8093505050505b919050565b6000806000612e9785856130a6565b91509150612ea481613129565b819250505092915050565b612eb983836132fe565b612ec66000848484612f0f565b612f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efc90614376565b60405180910390fd5b505050565b505050565b6000612f308473ffffffffffffffffffffffffffffffffffffffff166134cc565b15613099578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f5961243d565b8786866040518563ffffffff1660e01b8152600401612f7b9493929190614248565b602060405180830381600087803b158015612f9557600080fd5b505af1925050508015612fc657506040513d601f19601f82011682018060405250810190612fc391906139fc565b60015b613049573d8060008114612ff6576040519150601f19603f3d011682016040523d82523d6000602084013e612ffb565b606091505b50600081511415613041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303890614376565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061309e565b600190505b949350505050565b6000806041835114156130e85760008060006020860151925060408601519150606086015160001a90506130dc878285856134df565b94509450505050613122565b60408351141561311957600080602085015191506040850151905061310e8683836135ec565b935093505050613122565b60006002915091505b9250929050565b6000600481111561313d5761313c614b14565b5b8160048111156131505761314f614b14565b5b141561315b576132fb565b6001600481111561316f5761316e614b14565b5b81600481111561318257613181614b14565b5b14156131c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ba90614316565b60405180910390fd5b600260048111156131d7576131d6614b14565b5b8160048111156131ea576131e9614b14565b5b141561322b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322290614356565b60405180910390fd5b6003600481111561323f5761323e614b14565b5b81600481111561325257613251614b14565b5b1415613293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328a90614456565b60405180910390fd5b6004808111156132a6576132a5614b14565b5b8160048111156132b9576132b8614b14565b5b14156132fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f190614536565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561336e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336590614556565b60405180910390fd5b61337781612445565b156133b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ae906143d6565b60405180910390fd5b6133c360008383612f0a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461341391906147bf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561351a5760006003915091506135e3565b601b8560ff16141580156135325750601c8560ff1614155b156135445760006004915091506135e3565b60006001878787876040516000815260200160405260405161356994939291906142af565b6020604051602081039080840390855afa15801561358b573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156135da576000600192509250506135e3565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c01905061362c878288856134df565b935093505050935093915050565b828054613646906149a1565b90600052602060002090601f01602090048101928261366857600085556136af565b82601f1061368157803560ff19168380011785556136af565b828001600101855582156136af579182015b828111156136ae578235825591602001919060010190613693565b5b5090506136bc91906136c0565b5090565b5b808211156136d95760008160009055506001016136c1565b5090565b60006136f06136eb84614736565b614711565b90508281526020810184848401111561370c5761370b614bdf565b5b61371784828561495f565b509392505050565b60008135905061372e81615343565b92915050565b6000813590506137438161535a565b92915050565b60008135905061375881615371565b92915050565b60008151905061376d81615371565b92915050565b600082601f83011261378857613787614bd5565b5b81356137988482602086016136dd565b91505092915050565b60008083601f8401126137b7576137b6614bd5565b5b8235905067ffffffffffffffff8111156137d4576137d3614bd0565b5b6020830191508360018202830111156137f0576137ef614bda565b5b9250929050565b60008135905061380681615388565b92915050565b60006020828403121561382257613821614be9565b5b60006138308482850161371f565b91505092915050565b600080604083850312156138505761384f614be9565b5b600061385e8582860161371f565b925050602061386f8582860161371f565b9150509250929050565b60008060006060848603121561389257613891614be9565b5b60006138a08682870161371f565b93505060206138b18682870161371f565b92505060406138c2868287016137f7565b9150509250925092565b600080600080608085870312156138e6576138e5614be9565b5b60006138f48782880161371f565b94505060206139058782880161371f565b9350506040613916878288016137f7565b925050606085013567ffffffffffffffff81111561393757613936614be4565b5b61394387828801613773565b91505092959194509250565b6000806040838503121561396657613965614be9565b5b60006139748582860161371f565b925050602061398585828601613734565b9150509250929050565b600080604083850312156139a6576139a5614be9565b5b60006139b48582860161371f565b92505060206139c5858286016137f7565b9150509250929050565b6000602082840312156139e5576139e4614be9565b5b60006139f384828501613749565b91505092915050565b600060208284031215613a1257613a11614be9565b5b6000613a208482850161375e565b91505092915050565b60008060208385031215613a4057613a3f614be9565b5b600083013567ffffffffffffffff811115613a5e57613a5d614be4565b5b613a6a858286016137a1565b92509250509250929050565b600060208284031215613a8c57613a8b614be9565b5b6000613a9a848285016137f7565b91505092915050565b60008060408385031215613aba57613ab9614be9565b5b6000613ac8858286016137f7565b9250506020613ad98582860161371f565b9150509250929050565b60008060008060808587031215613afd57613afc614be9565b5b6000613b0b878288016137f7565b9450506020613b1c878288016137f7565b9350506040613b2d8782880161371f565b925050606085013567ffffffffffffffff811115613b4e57613b4d614be4565b5b613b5a87828801613773565b91505092959194509250565b613b6f816148d4565b82525050565b613b86613b81826148d4565b614a4d565b82525050565b613b95816148e6565b82525050565b613ba4816148f2565b82525050565b613bbb613bb6826148f2565b614a5f565b82525050565b6000613bcc8261477c565b613bd68185614792565b9350613be681856020860161496e565b613bef81614bee565b840191505092915050565b6000613c0582614787565b613c0f81856147a3565b9350613c1f81856020860161496e565b613c2881614bee565b840191505092915050565b6000613c3e82614787565b613c4881856147b4565b9350613c5881856020860161496e565b80840191505092915050565b60008154613c71816149a1565b613c7b81866147b4565b94506001821660008114613c965760018114613ca757613cda565b60ff19831686528186019350613cda565b613cb085614767565b60005b83811015613cd257815481890152600182019150602081019050613cb3565b838801955050505b50505092915050565b6000613cf06018836147a3565b9150613cfb82614c0c565b602082019050919050565b6000613d136010836147a3565b9150613d1e82614c35565b602082019050919050565b6000613d36601f836147a3565b9150613d4182614c5e565b602082019050919050565b6000613d59601c836147b4565b9150613d6482614c87565b601c82019050919050565b6000613d7c6032836147a3565b9150613d8782614cb0565b604082019050919050565b6000613d9f6026836147a3565b9150613daa82614cff565b604082019050919050565b6000613dc2600c836147a3565b9150613dcd82614d4e565b602082019050919050565b6000613de5601c836147a3565b9150613df082614d77565b602082019050919050565b6000613e086024836147a3565b9150613e1382614da0565b604082019050919050565b6000613e2b6019836147a3565b9150613e3682614def565b602082019050919050565b6000613e4e600c836147a3565b9150613e5982614e18565b602082019050919050565b6000613e716022836147a3565b9150613e7c82614e41565b604082019050919050565b6000613e94600b836147a3565b9150613e9f82614e90565b602082019050919050565b6000613eb7602c836147a3565b9150613ec282614eb9565b604082019050919050565b6000613eda6038836147a3565b9150613ee582614f08565b604082019050919050565b6000613efd602a836147a3565b9150613f0882614f57565b604082019050919050565b6000613f206029836147a3565b9150613f2b82614fa6565b604082019050919050565b6000613f436012836147a3565b9150613f4e82614ff5565b602082019050919050565b6000613f666022836147a3565b9150613f718261501e565b604082019050919050565b6000613f896020836147a3565b9150613f948261506d565b602082019050919050565b6000613fac602c836147a3565b9150613fb782615096565b604082019050919050565b6000613fcf6005836147b4565b9150613fda826150e5565b600582019050919050565b6000613ff26020836147a3565b9150613ffd8261510e565b602082019050919050565b60006140156029836147a3565b915061402082615137565b604082019050919050565b6000614038601f836147a3565b915061404382615186565b602082019050919050565b600061405b6021836147a3565b9150614066826151af565b604082019050919050565b600061407e600d836147a3565b9150614089826151fe565b602082019050919050565b60006140a16013836147a3565b91506140ac82615227565b602082019050919050565b60006140c46031836147a3565b91506140cf82615250565b604082019050919050565b60006140e7601a836147a3565b91506140f28261529f565b602082019050919050565b600061410a6014836147a3565b9150614115826152c8565b602082019050919050565b600061412d6010836147a3565b9150614138826152f1565b602082019050919050565b6000614150600e836147a3565b915061415b8261531a565b602082019050919050565b61416f81614948565b82525050565b61418661418182614948565b614a7b565b82525050565b61419581614952565b82525050565b60006141a78285613c64565b91506141b38284613c33565b91506141be82613fc2565b91508190509392505050565b60006141d582613d4c565b91506141e18284613baa565b60208201915081905092915050565b60006141fc8286614175565b60208201915061420c8285613b75565b60148201915061421c8284614175565b602082019150819050949350505050565b60006020820190506142426000830184613b66565b92915050565b600060808201905061425d6000830187613b66565b61426a6020830186613b66565b6142776040830185614166565b81810360608301526142898184613bc1565b905095945050505050565b60006020820190506142a96000830184613b8c565b92915050565b60006080820190506142c46000830187613b9b565b6142d1602083018661418c565b6142de6040830185613b9b565b6142eb6060830184613b9b565b95945050505050565b6000602082019050818103600083015261430e8184613bfa565b905092915050565b6000602082019050818103600083015261432f81613ce3565b9050919050565b6000602082019050818103600083015261434f81613d06565b9050919050565b6000602082019050818103600083015261436f81613d29565b9050919050565b6000602082019050818103600083015261438f81613d6f565b9050919050565b600060208201905081810360008301526143af81613d92565b9050919050565b600060208201905081810360008301526143cf81613db5565b9050919050565b600060208201905081810360008301526143ef81613dd8565b9050919050565b6000602082019050818103600083015261440f81613dfb565b9050919050565b6000602082019050818103600083015261442f81613e1e565b9050919050565b6000602082019050818103600083015261444f81613e41565b9050919050565b6000602082019050818103600083015261446f81613e64565b9050919050565b6000602082019050818103600083015261448f81613e87565b9050919050565b600060208201905081810360008301526144af81613eaa565b9050919050565b600060208201905081810360008301526144cf81613ecd565b9050919050565b600060208201905081810360008301526144ef81613ef0565b9050919050565b6000602082019050818103600083015261450f81613f13565b9050919050565b6000602082019050818103600083015261452f81613f36565b9050919050565b6000602082019050818103600083015261454f81613f59565b9050919050565b6000602082019050818103600083015261456f81613f7c565b9050919050565b6000602082019050818103600083015261458f81613f9f565b9050919050565b600060208201905081810360008301526145af81613fe5565b9050919050565b600060208201905081810360008301526145cf81614008565b9050919050565b600060208201905081810360008301526145ef8161402b565b9050919050565b6000602082019050818103600083015261460f8161404e565b9050919050565b6000602082019050818103600083015261462f81614071565b9050919050565b6000602082019050818103600083015261464f81614094565b9050919050565b6000602082019050818103600083015261466f816140b7565b9050919050565b6000602082019050818103600083015261468f816140da565b9050919050565b600060208201905081810360008301526146af816140fd565b9050919050565b600060208201905081810360008301526146cf81614120565b9050919050565b600060208201905081810360008301526146ef81614143565b9050919050565b600060208201905061470b6000830184614166565b92915050565b600061471b61472c565b905061472782826149d3565b919050565b6000604051905090565b600067ffffffffffffffff82111561475157614750614ba1565b5b61475a82614bee565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006147ca82614948565b91506147d583614948565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561480a57614809614ab6565b5b828201905092915050565b600061482082614948565b915061482b83614948565b92508261483b5761483a614ae5565b5b828204905092915050565b600061485182614948565b915061485c83614948565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561489557614894614ab6565b5b828202905092915050565b60006148ab82614948565b91506148b683614948565b9250828210156148c9576148c8614ab6565b5b828203905092915050565b60006148df82614928565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561498c578082015181840152602081019050614971565b8381111561499b576000848401525b50505050565b600060028204905060018216806149b957607f821691505b602082108114156149cd576149cc614b43565b5b50919050565b6149dc82614bee565b810181811067ffffffffffffffff821117156149fb576149fa614ba1565b5b80604052505050565b6000614a0f82614948565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a4257614a41614ab6565b5b600182019050919050565b6000614a5882614a69565b9050919050565b6000819050919050565b6000614a7482614bff565b9050919050565b6000819050919050565b6000614a9082614948565b9150614a9b83614948565b925082614aab57614aaa614ae5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4255524e5f49535f4e4f545f4c49564500000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f53544f434b0000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e4f4e43455f414c52454144595f555345440000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f5055424c494300000000000000000000000000000000000000600082015250565b7f4e4f545f414c4c4f5745445f544f5f4d494e5400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f544f4b454e5f544f5f4255524e5f4e4f545f42595f4f574e4552000000000000600082015250565b7f4558434545445f4e4654535f5045525f4d494e54000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b7f47494654494e475f434c4f534544000000000000000000000000000000000000600082015250565b61534c816148d4565b811461535757600080fd5b50565b615363816148e6565b811461536e57600080fd5b50565b61537a816148fc565b811461538557600080fd5b50565b61539181614948565b811461539c57600080fd5b5056fea26469706673582212205228c0ba58cce8a6bd95311b5db02e0a096088963d9fb4d2f1096ee49513543d64736f6c6343000806003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5467737273583355794b455a476b4e6768774631654a6f446554673768586b616b4e514c77663377443768722f312e6a736f6e

Deployed Bytecode

0x6080604052600436106102675760003560e01c806370a0823111610144578063c87b56dd116100b6578063e423a5111161007a578063e423a5111461089b578063e72be68a146108c4578063e8a3d485146108ed578063e985e9c514610918578063ee37520b14610955578063f2fde38b1461096c57610267565b8063c87b56dd146107c8578063c9f9a72314610805578063cb908cce1461082e578063d1b85c5314610845578063e081b7811461087057610267565b806395d89b411161010857806395d89b41146106cc578063978528c0146106f7578063a22cb46514610720578063a4f8eaeb14610749578063b88d4fde14610774578063c30e76841461079d57610267565b806370a08231146105f9578063715018a61461063657806372bfb1af1461064d5780638da5cb5b14610678578063938e3d7b146106a357610267565b806335ef4fb7116101dd57806351830227116101a157806351830227146104f857806355f804b3146105235780635b0c52fd1461054c5780635ca5933a146105755780636352211e14610591578063676dd563146105ce57610267565b806335ef4fb71461044b57806339aba407146104765780633ccfd60b146104a157806342842e0e146104b857806345bcf17f146104e157610267565b806311084c971161022f57806311084c971461035157806318160ddd1461037a5780631bd98e72146103a557806323b872dd146103ce5780632cff9e06146103f75780633125ac6c1461042257610267565b806301ffc9a71461026c578063049c5c49146102a957806306fdde03146102c0578063081812fc146102eb578063095ea7b314610328575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906139cf565b610995565b6040516102a09190614294565b60405180910390f35b3480156102b557600080fd5b506102be610a77565b005b3480156102cc57600080fd5b506102d5610b1f565b6040516102e291906142f4565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190613a76565b610bb1565b60405161031f919061422d565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a919061398f565b610c36565b005b34801561035d57600080fd5b5061037860048036038101906103739190613ae3565b610d4e565b005b34801561038657600080fd5b5061038f610f7c565b60405161039c91906146f6565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190613aa3565b610f82565b005b3480156103da57600080fd5b506103f560048036038101906103f09190613879565b611144565b005b34801561040357600080fd5b5061040c6111a4565b6040516104199190614294565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613a76565b6111b7565b005b34801561045757600080fd5b506104606112a4565b60405161046d919061422d565b60405180910390f35b34801561048257600080fd5b5061048b6112ca565b60405161049891906146f6565b60405180910390f35b3480156104ad57600080fd5b506104b66112d0565b005b3480156104c457600080fd5b506104df60048036038101906104da9190613879565b611341565b005b3480156104ed57600080fd5b506104f6611361565b005b34801561050457600080fd5b5061050d611409565b60405161051a9190614294565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613a29565b61141c565b005b34801561055857600080fd5b50610573600480360381019061056e9190613a76565b6114ae565b005b61058f600480360381019061058a9190613ae3565b611534565b005b34801561059d57600080fd5b506105b860048036038101906105b39190613a76565b6117f1565b6040516105c5919061422d565b60405180910390f35b3480156105da57600080fd5b506105e36118a3565b6040516105f091906146f6565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b919061380c565b6118a9565b60405161062d91906146f6565b60405180910390f35b34801561064257600080fd5b5061064b611961565b005b34801561065957600080fd5b506106626119e9565b60405161066f91906146f6565b60405180910390f35b34801561068457600080fd5b5061068d6119ef565b60405161069a919061422d565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190613a29565b611a19565b005b3480156106d857600080fd5b506106e1611aab565b6040516106ee91906142f4565b60405180910390f35b34801561070357600080fd5b5061071e6004803603810190610719919061380c565b611b3d565b005b34801561072c57600080fd5b506107476004803603810190610742919061394f565b611bfd565b005b34801561075557600080fd5b5061075e611c13565b60405161076b91906142f4565b60405180910390f35b34801561078057600080fd5b5061079b600480360381019061079691906138cc565b611ca1565b005b3480156107a957600080fd5b506107b2611d03565b6040516107bf91906146f6565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613a76565b611d09565b6040516107fc91906142f4565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613a76565b611e34565b005b34801561083a57600080fd5b50610843611f27565b005b34801561085157600080fd5b5061085a611fcf565b6040516108679190614294565b60405180910390f35b34801561087c57600080fd5b50610885611fe2565b6040516108929190614294565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613a76565b611ff5565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613a29565b61207b565b005b3480156108f957600080fd5b5061090261210d565b60405161090f91906142f4565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190613839565b61219f565b60405161094c9190614294565b60405180910390f35b34801561096157600080fd5b5061096a612233565b005b34801561097857600080fd5b50610993600480360381019061098e919061380c565b6122db565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a705750610a6f826123d3565b5b9050919050565b610a7f61243d565b73ffffffffffffffffffffffffffffffffffffffff16610a9d6119ef565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90614596565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b606060008054610b2e906149a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5a906149a1565b8015610ba75780601f10610b7c57610100808354040283529160200191610ba7565b820191906000526020600020905b815481529060010190602001808311610b8a57829003601f168201915b5050505050905090565b6000610bbc82612445565b610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290614576565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c41826117f1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca9906145f6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cd161243d565b73ffffffffffffffffffffffffffffffffffffffff161480610d005750610cff81610cfa61243d565b61219f565b5b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d36906144b6565b60405180910390fd5b610d4983836124b1565b505050565b600f60029054906101000a900460ff16610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d94906146d6565b60405180910390fd5b60095460105410610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda90614436565b60405180910390fd5b60095484601054610df491906147bf565b1115610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c90614616565b60405180910390fd5b60001515600e600085815260200190815260200160002060009054906101000a900460ff16151514610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390614516565b60405180910390fd5b610eb0610eaa84848761256a565b826125cb565b610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690614636565b60405180910390fd5b6001600e600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b84811015610f5c57610f4983600183601054610f3a91906147bf565b610f4491906147bf565b61262f565b8080610f5490614a04565b915050610f1e565b508360106000828254610f6f91906147bf565b9250508190555050505050565b60105481565b610f8a61243d565b73ffffffffffffffffffffffffffffffffffffffff16610fa86119ef565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590614596565b60405180910390fd5b600f60029054906101000a900460ff1661104d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611044906146d6565b60405180910390fd5b60095460105410611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90614436565b60405180910390fd5b600954826010546110a491906147bf565b11156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906143b6565b60405180910390fd5b60005b82811015611126576111138260018360105461110491906147bf565b61110e91906147bf565b61262f565b808061111e90614a04565b9150506110e8565b50816010600082825461113991906147bf565b925050819055505050565b61115561114f61243d565b8261264d565b611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90614656565b60405180910390fd5b61119f83838361272b565b505050565b600f60029054906101000a900460ff1681565b60011515600f60039054906101000a900460ff1615151461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490614336565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661122d826117f1565b73ffffffffffffffffffffffffffffffffffffffff1614611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90614676565b60405180910390fd5b61128c81612987565b600160115461129b91906147bf565b60118190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561133d573d6000803e3d6000fd5b5050565b61135c83838360405180602001604052806000815250611ca1565b505050565b61136961243d565b73ffffffffffffffffffffffffffffffffffffffff166113876119ef565b73ffffffffffffffffffffffffffffffffffffffff16146113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490614596565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600f60009054906101000a900460ff1681565b61142461243d565b73ffffffffffffffffffffffffffffffffffffffff166114426119ef565b73ffffffffffffffffffffffffffffffffffffffff1614611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f90614596565b60405180910390fd5b8181600c91906114a992919061363a565b505050565b6114b661243d565b73ffffffffffffffffffffffffffffffffffffffff166114d46119ef565b73ffffffffffffffffffffffffffffffffffffffff161461152a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152190614596565b60405180910390fd5b8060098190555050565b600f60019054906101000a900460ff16611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90614476565b60405180910390fd5b600954601054106115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090614436565b60405180910390fd5b600954846010546115da91906147bf565b111561161b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611612906143b6565b60405180910390fd5b3484600a5461162a9190614846565b111561166b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611662906146b6565b60405180910390fd5b600e600084815260200190815260200160002060009054906101000a900460ff16156116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390614516565b60405180910390fd5b612710841115611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890614696565b60405180910390fd5b61172561171f84848761256a565b826125cb565b611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90614636565b60405180910390fd5b6001600e600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b848110156117d1576117be336001836010546117af91906147bf565b6117b991906147bf565b61262f565b80806117c990614a04565b915050611793565b5083601060008282546117e491906147bf565b9250508190555050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561189a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611891906144f6565b60405180910390fd5b80915050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611911906144d6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61196961243d565b73ffffffffffffffffffffffffffffffffffffffff166119876119ef565b73ffffffffffffffffffffffffffffffffffffffff16146119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490614596565b60405180910390fd5b6119e76000612a98565b565b61271081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a2161243d565b73ffffffffffffffffffffffffffffffffffffffff16611a3f6119ef565b73ffffffffffffffffffffffffffffffffffffffff1614611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90614596565b60405180910390fd5b8181600b9190611aa692919061363a565b505050565b606060018054611aba906149a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae6906149a1565b8015611b335780601f10611b0857610100808354040283529160200191611b33565b820191906000526020600020905b815481529060010190602001808311611b1657829003601f168201915b5050505050905090565b611b4561243d565b73ffffffffffffffffffffffffffffffffffffffff16611b636119ef565b73ffffffffffffffffffffffffffffffffffffffff1614611bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb090614596565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c0f611c0861243d565b8383612b5e565b5050565b600d8054611c20906149a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4c906149a1565b8015611c995780601f10611c6e57610100808354040283529160200191611c99565b820191906000526020600020905b815481529060010190602001808311611c7c57829003601f168201915b505050505081565b611cb2611cac61243d565b8361264d565b611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce890614656565b60405180910390fd5b611cfd84848484612ccb565b50505050565b60095481565b6060611d1482612445565b611d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4a906145d6565b60405180910390fd5b60001515600f60009054906101000a900460ff1615151415611e0157600d8054611d7c906149a1565b80601f0160208091040260200160405190810160405280929190818152602001828054611da8906149a1565b8015611df55780601f10611dca57610100808354040283529160200191611df5565b820191906000526020600020905b815481529060010190602001808311611dd857829003601f168201915b50505050509050611e2f565b600c611e0c83612d27565b604051602001611e1d92919061419b565b60405160208183030381529060405290505b919050565b611e3c61243d565b73ffffffffffffffffffffffffffffffffffffffff16611e5a6119ef565b73ffffffffffffffffffffffffffffffffffffffff1614611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea790614596565b60405180910390fd5b60011515600f60039054906101000a900460ff16151514611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90614336565b60405180910390fd5b611f0f81612987565b6001601154611f1e91906147bf565b60118190555050565b611f2f61243d565b73ffffffffffffffffffffffffffffffffffffffff16611f4d6119ef565b73ffffffffffffffffffffffffffffffffffffffff1614611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90614596565b60405180910390fd5b600f60029054906101000a900460ff1615600f60026101000a81548160ff021916908315150217905550565b600f60039054906101000a900460ff1681565b600f60019054906101000a900460ff1681565b611ffd61243d565b73ffffffffffffffffffffffffffffffffffffffff1661201b6119ef565b73ffffffffffffffffffffffffffffffffffffffff1614612071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206890614596565b60405180910390fd5b80600a8190555050565b61208361243d565b73ffffffffffffffffffffffffffffffffffffffff166120a16119ef565b73ffffffffffffffffffffffffffffffffffffffff16146120f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ee90614596565b60405180910390fd5b8181600d919061210892919061363a565b505050565b6060600b805461211c906149a1565b80601f0160208091040260200160405190810160405280929190818152602001828054612148906149a1565b80156121955780601f1061216a57610100808354040283529160200191612195565b820191906000526020600020905b81548152906001019060200180831161217857829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61223b61243d565b73ffffffffffffffffffffffffffffffffffffffff166122596119ef565b73ffffffffffffffffffffffffffffffffffffffff16146122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a690614596565b60405180910390fd5b600f60039054906101000a900460ff1615600f60036101000a81548160ff021916908315150217905550565b6122e361243d565b73ffffffffffffffffffffffffffffffffffffffff166123016119ef565b73ffffffffffffffffffffffffffffffffffffffff1614612357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234e90614596565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be90614396565b60405180910390fd5b6123d081612a98565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612524836117f1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080848484604051602001612582939291906141f0565b604051602081830303815290604052805190602001206040516020016125a891906141ca565b604051602081830303815290604052805190602001209050809150509392505050565b60006125d78383612e88565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612649828260405180602001604052806000815250612eaf565b5050565b600061265882612445565b612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90614496565b60405180910390fd5b60006126a2836117f1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061271157508373ffffffffffffffffffffffffffffffffffffffff166126f984610bb1565b73ffffffffffffffffffffffffffffffffffffffff16145b806127225750612721818561219f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661274b826117f1565b73ffffffffffffffffffffffffffffffffffffffff16146127a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612798906145b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612811576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612808906143f6565b60405180910390fd5b61281c838383612f0a565b6128276000826124b1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461287791906148a0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128ce91906147bf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612992826117f1565b90506129a081600084612f0a565b6129ab6000836124b1565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129fb91906148a0565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc490614416565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612cbe9190614294565b60405180910390a3505050565b612cd684848461272b565b612ce284848484612f0f565b612d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1890614376565b60405180910390fd5b50505050565b60606000821415612d6f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e83565b600082905060005b60008214612da1578080612d8a90614a04565b915050600a82612d9a9190614815565b9150612d77565b60008167ffffffffffffffff811115612dbd57612dbc614ba1565b5b6040519080825280601f01601f191660200182016040528015612def5781602001600182028036833780820191505090505b5090505b60008514612e7c57600182612e0891906148a0565b9150600a85612e179190614a85565b6030612e2391906147bf565b60f81b818381518110612e3957612e38614b72565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e759190614815565b9450612df3565b8093505050505b919050565b6000806000612e9785856130a6565b91509150612ea481613129565b819250505092915050565b612eb983836132fe565b612ec66000848484612f0f565b612f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efc90614376565b60405180910390fd5b505050565b505050565b6000612f308473ffffffffffffffffffffffffffffffffffffffff166134cc565b15613099578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f5961243d565b8786866040518563ffffffff1660e01b8152600401612f7b9493929190614248565b602060405180830381600087803b158015612f9557600080fd5b505af1925050508015612fc657506040513d601f19601f82011682018060405250810190612fc391906139fc565b60015b613049573d8060008114612ff6576040519150601f19603f3d011682016040523d82523d6000602084013e612ffb565b606091505b50600081511415613041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303890614376565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061309e565b600190505b949350505050565b6000806041835114156130e85760008060006020860151925060408601519150606086015160001a90506130dc878285856134df565b94509450505050613122565b60408351141561311957600080602085015191506040850151905061310e8683836135ec565b935093505050613122565b60006002915091505b9250929050565b6000600481111561313d5761313c614b14565b5b8160048111156131505761314f614b14565b5b141561315b576132fb565b6001600481111561316f5761316e614b14565b5b81600481111561318257613181614b14565b5b14156131c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ba90614316565b60405180910390fd5b600260048111156131d7576131d6614b14565b5b8160048111156131ea576131e9614b14565b5b141561322b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322290614356565b60405180910390fd5b6003600481111561323f5761323e614b14565b5b81600481111561325257613251614b14565b5b1415613293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328a90614456565b60405180910390fd5b6004808111156132a6576132a5614b14565b5b8160048111156132b9576132b8614b14565b5b14156132fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f190614536565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561336e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336590614556565b60405180910390fd5b61337781612445565b156133b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ae906143d6565b60405180910390fd5b6133c360008383612f0a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461341391906147bf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561351a5760006003915091506135e3565b601b8560ff16141580156135325750601c8560ff1614155b156135445760006004915091506135e3565b60006001878787876040516000815260200160405260405161356994939291906142af565b6020604051602081039080840390855afa15801561358b573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156135da576000600192509250506135e3565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c01905061362c878288856134df565b935093505050935093915050565b828054613646906149a1565b90600052602060002090601f01602090048101928261366857600085556136af565b82601f1061368157803560ff19168380011785556136af565b828001600101855582156136af579182015b828111156136ae578235825591602001919060010190613693565b5b5090506136bc91906136c0565b5090565b5b808211156136d95760008160009055506001016136c1565b5090565b60006136f06136eb84614736565b614711565b90508281526020810184848401111561370c5761370b614bdf565b5b61371784828561495f565b509392505050565b60008135905061372e81615343565b92915050565b6000813590506137438161535a565b92915050565b60008135905061375881615371565b92915050565b60008151905061376d81615371565b92915050565b600082601f83011261378857613787614bd5565b5b81356137988482602086016136dd565b91505092915050565b60008083601f8401126137b7576137b6614bd5565b5b8235905067ffffffffffffffff8111156137d4576137d3614bd0565b5b6020830191508360018202830111156137f0576137ef614bda565b5b9250929050565b60008135905061380681615388565b92915050565b60006020828403121561382257613821614be9565b5b60006138308482850161371f565b91505092915050565b600080604083850312156138505761384f614be9565b5b600061385e8582860161371f565b925050602061386f8582860161371f565b9150509250929050565b60008060006060848603121561389257613891614be9565b5b60006138a08682870161371f565b93505060206138b18682870161371f565b92505060406138c2868287016137f7565b9150509250925092565b600080600080608085870312156138e6576138e5614be9565b5b60006138f48782880161371f565b94505060206139058782880161371f565b9350506040613916878288016137f7565b925050606085013567ffffffffffffffff81111561393757613936614be4565b5b61394387828801613773565b91505092959194509250565b6000806040838503121561396657613965614be9565b5b60006139748582860161371f565b925050602061398585828601613734565b9150509250929050565b600080604083850312156139a6576139a5614be9565b5b60006139b48582860161371f565b92505060206139c5858286016137f7565b9150509250929050565b6000602082840312156139e5576139e4614be9565b5b60006139f384828501613749565b91505092915050565b600060208284031215613a1257613a11614be9565b5b6000613a208482850161375e565b91505092915050565b60008060208385031215613a4057613a3f614be9565b5b600083013567ffffffffffffffff811115613a5e57613a5d614be4565b5b613a6a858286016137a1565b92509250509250929050565b600060208284031215613a8c57613a8b614be9565b5b6000613a9a848285016137f7565b91505092915050565b60008060408385031215613aba57613ab9614be9565b5b6000613ac8858286016137f7565b9250506020613ad98582860161371f565b9150509250929050565b60008060008060808587031215613afd57613afc614be9565b5b6000613b0b878288016137f7565b9450506020613b1c878288016137f7565b9350506040613b2d8782880161371f565b925050606085013567ffffffffffffffff811115613b4e57613b4d614be4565b5b613b5a87828801613773565b91505092959194509250565b613b6f816148d4565b82525050565b613b86613b81826148d4565b614a4d565b82525050565b613b95816148e6565b82525050565b613ba4816148f2565b82525050565b613bbb613bb6826148f2565b614a5f565b82525050565b6000613bcc8261477c565b613bd68185614792565b9350613be681856020860161496e565b613bef81614bee565b840191505092915050565b6000613c0582614787565b613c0f81856147a3565b9350613c1f81856020860161496e565b613c2881614bee565b840191505092915050565b6000613c3e82614787565b613c4881856147b4565b9350613c5881856020860161496e565b80840191505092915050565b60008154613c71816149a1565b613c7b81866147b4565b94506001821660008114613c965760018114613ca757613cda565b60ff19831686528186019350613cda565b613cb085614767565b60005b83811015613cd257815481890152600182019150602081019050613cb3565b838801955050505b50505092915050565b6000613cf06018836147a3565b9150613cfb82614c0c565b602082019050919050565b6000613d136010836147a3565b9150613d1e82614c35565b602082019050919050565b6000613d36601f836147a3565b9150613d4182614c5e565b602082019050919050565b6000613d59601c836147b4565b9150613d6482614c87565b601c82019050919050565b6000613d7c6032836147a3565b9150613d8782614cb0565b604082019050919050565b6000613d9f6026836147a3565b9150613daa82614cff565b604082019050919050565b6000613dc2600c836147a3565b9150613dcd82614d4e565b602082019050919050565b6000613de5601c836147a3565b9150613df082614d77565b602082019050919050565b6000613e086024836147a3565b9150613e1382614da0565b604082019050919050565b6000613e2b6019836147a3565b9150613e3682614def565b602082019050919050565b6000613e4e600c836147a3565b9150613e5982614e18565b602082019050919050565b6000613e716022836147a3565b9150613e7c82614e41565b604082019050919050565b6000613e94600b836147a3565b9150613e9f82614e90565b602082019050919050565b6000613eb7602c836147a3565b9150613ec282614eb9565b604082019050919050565b6000613eda6038836147a3565b9150613ee582614f08565b604082019050919050565b6000613efd602a836147a3565b9150613f0882614f57565b604082019050919050565b6000613f206029836147a3565b9150613f2b82614fa6565b604082019050919050565b6000613f436012836147a3565b9150613f4e82614ff5565b602082019050919050565b6000613f666022836147a3565b9150613f718261501e565b604082019050919050565b6000613f896020836147a3565b9150613f948261506d565b602082019050919050565b6000613fac602c836147a3565b9150613fb782615096565b604082019050919050565b6000613fcf6005836147b4565b9150613fda826150e5565b600582019050919050565b6000613ff26020836147a3565b9150613ffd8261510e565b602082019050919050565b60006140156029836147a3565b915061402082615137565b604082019050919050565b6000614038601f836147a3565b915061404382615186565b602082019050919050565b600061405b6021836147a3565b9150614066826151af565b604082019050919050565b600061407e600d836147a3565b9150614089826151fe565b602082019050919050565b60006140a16013836147a3565b91506140ac82615227565b602082019050919050565b60006140c46031836147a3565b91506140cf82615250565b604082019050919050565b60006140e7601a836147a3565b91506140f28261529f565b602082019050919050565b600061410a6014836147a3565b9150614115826152c8565b602082019050919050565b600061412d6010836147a3565b9150614138826152f1565b602082019050919050565b6000614150600e836147a3565b915061415b8261531a565b602082019050919050565b61416f81614948565b82525050565b61418661418182614948565b614a7b565b82525050565b61419581614952565b82525050565b60006141a78285613c64565b91506141b38284613c33565b91506141be82613fc2565b91508190509392505050565b60006141d582613d4c565b91506141e18284613baa565b60208201915081905092915050565b60006141fc8286614175565b60208201915061420c8285613b75565b60148201915061421c8284614175565b602082019150819050949350505050565b60006020820190506142426000830184613b66565b92915050565b600060808201905061425d6000830187613b66565b61426a6020830186613b66565b6142776040830185614166565b81810360608301526142898184613bc1565b905095945050505050565b60006020820190506142a96000830184613b8c565b92915050565b60006080820190506142c46000830187613b9b565b6142d1602083018661418c565b6142de6040830185613b9b565b6142eb6060830184613b9b565b95945050505050565b6000602082019050818103600083015261430e8184613bfa565b905092915050565b6000602082019050818103600083015261432f81613ce3565b9050919050565b6000602082019050818103600083015261434f81613d06565b9050919050565b6000602082019050818103600083015261436f81613d29565b9050919050565b6000602082019050818103600083015261438f81613d6f565b9050919050565b600060208201905081810360008301526143af81613d92565b9050919050565b600060208201905081810360008301526143cf81613db5565b9050919050565b600060208201905081810360008301526143ef81613dd8565b9050919050565b6000602082019050818103600083015261440f81613dfb565b9050919050565b6000602082019050818103600083015261442f81613e1e565b9050919050565b6000602082019050818103600083015261444f81613e41565b9050919050565b6000602082019050818103600083015261446f81613e64565b9050919050565b6000602082019050818103600083015261448f81613e87565b9050919050565b600060208201905081810360008301526144af81613eaa565b9050919050565b600060208201905081810360008301526144cf81613ecd565b9050919050565b600060208201905081810360008301526144ef81613ef0565b9050919050565b6000602082019050818103600083015261450f81613f13565b9050919050565b6000602082019050818103600083015261452f81613f36565b9050919050565b6000602082019050818103600083015261454f81613f59565b9050919050565b6000602082019050818103600083015261456f81613f7c565b9050919050565b6000602082019050818103600083015261458f81613f9f565b9050919050565b600060208201905081810360008301526145af81613fe5565b9050919050565b600060208201905081810360008301526145cf81614008565b9050919050565b600060208201905081810360008301526145ef8161402b565b9050919050565b6000602082019050818103600083015261460f8161404e565b9050919050565b6000602082019050818103600083015261462f81614071565b9050919050565b6000602082019050818103600083015261464f81614094565b9050919050565b6000602082019050818103600083015261466f816140b7565b9050919050565b6000602082019050818103600083015261468f816140da565b9050919050565b600060208201905081810360008301526146af816140fd565b9050919050565b600060208201905081810360008301526146cf81614120565b9050919050565b600060208201905081810360008301526146ef81614143565b9050919050565b600060208201905061470b6000830184614166565b92915050565b600061471b61472c565b905061472782826149d3565b919050565b6000604051905090565b600067ffffffffffffffff82111561475157614750614ba1565b5b61475a82614bee565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006147ca82614948565b91506147d583614948565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561480a57614809614ab6565b5b828201905092915050565b600061482082614948565b915061482b83614948565b92508261483b5761483a614ae5565b5b828204905092915050565b600061485182614948565b915061485c83614948565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561489557614894614ab6565b5b828202905092915050565b60006148ab82614948565b91506148b683614948565b9250828210156148c9576148c8614ab6565b5b828203905092915050565b60006148df82614928565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561498c578082015181840152602081019050614971565b8381111561499b576000848401525b50505050565b600060028204905060018216806149b957607f821691505b602082108114156149cd576149cc614b43565b5b50919050565b6149dc82614bee565b810181811067ffffffffffffffff821117156149fb576149fa614ba1565b5b80604052505050565b6000614a0f82614948565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a4257614a41614ab6565b5b600182019050919050565b6000614a5882614a69565b9050919050565b6000819050919050565b6000614a7482614bff565b9050919050565b6000819050919050565b6000614a9082614948565b9150614a9b83614948565b925082614aab57614aaa614ae5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4255524e5f49535f4e4f545f4c49564500000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f53544f434b0000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e4f4e43455f414c52454144595f555345440000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f5055424c494300000000000000000000000000000000000000600082015250565b7f4e4f545f414c4c4f5745445f544f5f4d494e5400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f544f4b454e5f544f5f4255524e5f4e4f545f42595f4f574e4552000000000000600082015250565b7f4558434545445f4e4654535f5045525f4d494e54000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b7f47494654494e475f434c4f534544000000000000000000000000000000000000600082015250565b61534c816148d4565b811461535757600080fd5b50565b615363816148e6565b811461536e57600080fd5b50565b61537a816148fc565b811461538557600080fd5b50565b61539181614948565b811461539c57600080fd5b5056fea26469706673582212205228c0ba58cce8a6bd95311b5db02e0a096088963d9fb4d2f1096ee49513543d64736f6c63430008060033

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.