ETH Price: $3,764.31 (+1.88%)
Gas: 24 Gwei

Token

Boss Babes (BB)
 

Overview

Max Total Supply

1,440 BB

Holders

696

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BB
0xea19fd8976141f85a66f77a224a32618c1f57cae
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:
BossBabes

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : bb.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

// .----.  .---.  .----. .----.    .----.   .--.  .----. .----. .----.
// | {_} }/ {-. \{ {__-`{ {__-`    | {_} } / {} \ | {_} }} |__}{ {__-`
// | {_} }\ '-} /.-._} }.-._} }    | {_} }/  /\  \| {_} }} '__}.-._} }
// `----'  `---' `----' `----'     `----' `-'  `-'`----' `----'`----'

contract BossBabes is ERC721, Ownable {
    using Strings for uint256;
    address public bypass = 0x8707dD111700AeCF93490e746eBA93A5eD631370;
    mapping(address => bool) public presalerList;

    // Important variables
    // That help with the contract

    mapping(address => uint256) public presalerListPurchases;
    bool public revealed = false;
    uint256 public constant nftsPERMINT = 5;
    uint256 public nftMAX = 3000;
    string private _tokenBaseURI;
    string private _contractURI;
    string public _mysteryURI;
    uint256 public nftPRICE = 0.06 ether;
    mapping(uint256 => bool) private usedNonce;

    bool public giftOPEN = true;
    bool public saleOPEN = false;
    bool public presaleOPEN = false;

    uint256 public totalSupply;

    constructor() ERC721("Boss Babes", "BB") {}

    // gift to holders

    function giftToSomeone(uint256 amount, address wallet) external onlyOwner {
        require(giftOPEN, "gifting_others_not_open");

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

    // adding someone for the presale list situation

    function addToPresaleList(address[] calldata entries) external onlyOwner {
        for (uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "bad_address");
            require(!presalerList[entry], "duplicate_entry");

            presalerList[entry] = true;
        }
    }

    function removeFromPresaleList(address[] calldata entries)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "bad_address");

            presalerList[entry] = false;
        }
    }

    // This is for minting the nft for presale

    function presaleMintTheNFT(uint256 amount, uint256 nonce) external payable {
        require(presaleOPEN, "closed");
        require(totalSupply + amount <= nftMAX, "total_supply_passed");
        require(nftPRICE * amount <= msg.value, "not_enough_eth_sent");
        require(amount <= nftsPERMINT, "too_many_nfts_per_transaction");
        require(!usedNonce[nonce], "nonce_already_ran");
        require(presalerList[msg.sender], "not_on_presale_list");
        usedNonce[nonce] = true;
        for (uint256 j = 0; j < amount; j++) {
            _safeMint(msg.sender, totalSupply + j + 1);
        }

        totalSupply += amount;
    }

    // This is for main sale minting the NFT

    function mintTheNFT(
        uint256 amount,
        uint256 nonce,
        address wallet,
        bytes memory signature
    ) external payable {
        require(saleOPEN, "closed");
        require(totalSupply + amount <= nftMAX, "total_supply_passed");
        require(nftPRICE * amount <= msg.value, "not_enough_eth_sent");
        require(amount <= nftsPERMINT, "too_many_nfts_per_transaction");
        require(!usedNonce[nonce], "nonce_already_ran");
        require(
            matchSigner(hashTransaction(nonce, wallet, amount), signature),
            "not_allowed_to_mint"
        );
        usedNonce[nonce] = true;
        for (uint256 j = 0; j < amount; j++) {
            _safeMint(msg.sender, totalSupply + j + 1);
        }

        totalSupply += amount;
    }

    // Helps with checking transaction stuff

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

        return hash;
    }

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

    function withdrawTheMoney() external {
        uint256 currentBalance = address(this).balance;
        payable(0xf22b9a7046fD2DB996807afE47E5d20fc9cE0a05).transfer(
            (currentBalance * 20) / 100
        );
        payable(0xA8d7D90a9FE3A0d5F665c143a941Ea212a746b7B).transfer(
            (currentBalance * 10) / 100
        );
        payable(0x3075D37eCD4760Ee4941c197c0396e883A7C606b).transfer(
            (currentBalance * 10) / 100
        );
        payable(0x292905066D7e7D6803AfE51644D1683aB81149E8).transfer(
            (currentBalance * 5) / 100
        );
        payable(0xA7E154e82dcaee2a219B0D842f3698Cd892814Ce).transfer(
            (currentBalance * 2) / 100
        );
        payable(0x19e7a7d4f7052960a07F1a5379654DD7bDEc4Fe7).transfer(
            (currentBalance * 53) / 100
        );
    }

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

    function modifyPRICE(uint256 price) external onlyOwner {
        nftPRICE = price;
    }

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

    function enableSALE() external onlyOwner {
        saleOPEN = !saleOPEN;
    }

    function enableGIFT() external onlyOwner {
        giftOPEN = !giftOPEN;
    }

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

    function setMAXSUPPLY(uint256 max) external onlyOwner {
        nftMAX = max;
    }

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

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

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Cannot query non-existent token");
        if (revealed == false) {
            return _mysteryURI;
        }
        return
            string(
                abi.encodePacked(_tokenBaseURI, tokenId.toString(), ".json")
            );
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 3 of 12 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_mysteryURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bypass","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableGIFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMYSTERY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableSALE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftOPEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"giftToSomeone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintTheNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"modifyCONTRACTURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"modifyMYSTERY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"modifyPRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"modifyTOKENBASEURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftMAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftsPERMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"presaleMintTheNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleOPEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"previewCONTRACTURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","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":"saleOPEN","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":"uint256","name":"max","type":"uint256"}],"name":"setMAXSUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTheMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052738707dd111700aecf93490e746eba93a5ed631370600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60006101000a81548160ff021916908315150217905550610bb8600b5566d529ae9e860000600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff021916908315150217905550348015620000e357600080fd5b506040518060400160405280600a81526020017f426f7373204261626573000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f424200000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016892919062000278565b5080600190805190602001906200018192919062000278565b505050620001a462000198620001aa60201b60201c565b620001b260201b60201c565b6200038d565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002869062000328565b90600052602060002090601f016020900481019282620002aa5760008555620002f6565b82601f10620002c557805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f5578251825591602001919060010190620002d8565b5b50905062000305919062000309565b5090565b5b80821115620003245760008160009055506001016200030a565b5090565b600060028204905060018216806200034157607f821691505b602082108114156200035857620003576200035e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6155bf806200039d6000396000f3fe60806040526004361061025c5760003560e01c80638da5cb5b11610144578063afa777b8116100b6578063c5b8e4411161007a578063c5b8e4411461087e578063c87b56dd146108a9578063e985e9c5146108e6578063ee3c5d9a14610923578063efea3bcd1461093a578063f2fde38b146109635761025c565b8063afa777b8146107be578063b143397a146107e7578063b179e06014610810578063b88d4fde14610839578063c3822a46146108625761025c565b80639c2d4e41116101085780639c2d4e41146106cf5780639cf2e8d6146106e65780639e18002914610723578063a22cb4651461074e578063a4f8eaeb14610777578063aa5e5d9e146107a25761025c565b80638da5cb5b146105e85780638f329d6e1461061357806395d89b411461063c5780639a788846146106675780639bf80316146106925761025c565b8063391bdf9a116101dd5780636352211e116101a15780636352211e146104ec5780636f5015c81461052957806370a0823114610540578063715018a61461057d5780637204a3c914610594578063752a4588146105bd5761025c565b8063391bdf9a1461042b5780633f528c491461044257806342842e0e1461046d5780635183022714610496578063545668a6146104c15761025c565b8063115309c611610224578063115309c61461035857806318160ddd146103835780631f526075146103ae57806323b872dd146103d7578063270e5326146104005761025c565b806301df04ef1461026157806301ffc9a71461028a57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613c8c565b61098c565b005b34801561029657600080fd5b506102b160048036038101906102ac9190613be5565b610a12565b6040516102be91906144c7565b60405180910390f35b3480156102d357600080fd5b506102dc610af4565b6040516102e99190614527565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190613c8c565b610b86565b6040516103269190614460565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613b58565b610c0b565b005b34801561036457600080fd5b5061036d610d23565b60405161037a9190614909565b60405180910390f35b34801561038f57600080fd5b50610398610d29565b6040516103a59190614909565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613c3f565b610d2f565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190613a42565b610dc1565b005b34801561040c57600080fd5b50610415610e21565b6040516104229190614460565b60405180910390f35b34801561043757600080fd5b50610440610e47565b005b34801561044e57600080fd5b50610457610eef565b6040516104649190614909565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190613a42565b610ef4565b005b3480156104a257600080fd5b506104ab610f14565b6040516104b891906144c7565b60405180910390f35b3480156104cd57600080fd5b506104d6610f27565b6040516104e391906144c7565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190613c8c565b610f3a565b6040516105209190614460565b60405180910390f35b34801561053557600080fd5b5061053e610fec565b005b34801561054c57600080fd5b50610567600480360381019061056291906139d5565b611094565b6040516105749190614909565b60405180910390f35b34801561058957600080fd5b5061059261114c565b005b3480156105a057600080fd5b506105bb60048036038101906105b69190613b98565b6111d4565b005b3480156105c957600080fd5b506105d26113f8565b6040516105df9190614909565b60405180910390f35b3480156105f457600080fd5b506105fd6113fe565b60405161060a9190614460565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613c3f565b611428565b005b34801561064857600080fd5b506106516114ba565b60405161065e9190614527565b60405180910390f35b34801561067357600080fd5b5061067c61154c565b60405161068991906144c7565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b491906139d5565b61155f565b6040516106c69190614909565b60405180910390f35b3480156106db57600080fd5b506106e4611577565b005b3480156106f257600080fd5b5061070d600480360381019061070891906139d5565b611831565b60405161071a91906144c7565b60405180910390f35b34801561072f57600080fd5b50610738611851565b6040516107459190614527565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613b18565b6118e3565b005b34801561078357600080fd5b5061078c6118f9565b6040516107999190614527565b60405180910390f35b6107bc60048036038101906107b79190613d39565b611987565b005b3480156107ca57600080fd5b506107e560048036038101906107e09190613c8c565b611bfd565b005b3480156107f357600080fd5b5061080e60048036038101906108099190613c3f565b611c83565b005b34801561081c57600080fd5b5061083760048036038101906108329190613b98565b611d15565b005b34801561084557600080fd5b50610860600480360381019061085b9190613a95565b611eac565b005b61087c60048036038101906108779190613cf9565b611f0e565b005b34801561088a57600080fd5b506108936121bb565b6040516108a091906144c7565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613c8c565b6121ce565b6040516108dd9190614527565b60405180910390f35b3480156108f257600080fd5b5061090d60048036038101906109089190613a02565b6122f9565b60405161091a91906144c7565b60405180910390f35b34801561092f57600080fd5b5061093861238d565b005b34801561094657600080fd5b50610961600480360381019061095c9190613cb9565b612435565b005b34801561096f57600080fd5b5061098a600480360381019061098591906139d5565b61255f565b005b610994612657565b73ffffffffffffffffffffffffffffffffffffffff166109b26113fe565b73ffffffffffffffffffffffffffffffffffffffff1614610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff906147c9565b60405180910390fd5b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610add57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aed5750610aec8261265f565b5b9050919050565b606060008054610b0390614bb4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2f90614bb4565b8015610b7c5780601f10610b5157610100808354040283529160200191610b7c565b820191906000526020600020905b815481529060010190602001808311610b5f57829003601f168201915b5050505050905090565b6000610b91826126c9565b610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc7906147a9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1682610f3a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90614849565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ca6612657565b73ffffffffffffffffffffffffffffffffffffffff161480610cd55750610cd481610ccf612657565b6122f9565b5b610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90614709565b60405180910390fd5b610d1e8383612735565b505050565b600b5481565b60125481565b610d37612657565b73ffffffffffffffffffffffffffffffffffffffff16610d556113fe565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da2906147c9565b60405180910390fd5b8181600e9190610dbc9291906137ad565b505050565b610dd2610dcc612657565b826127ee565b610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890614889565b60405180910390fd5b610e1c8383836128cc565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e4f612657565b73ffffffffffffffffffffffffffffffffffffffff16610e6d6113fe565b73ffffffffffffffffffffffffffffffffffffffff1614610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba906147c9565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b600581565b610f0f83838360405180602001604052806000815250611eac565b505050565b600a60009054906101000a900460ff1681565b601160029054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90614749565b60405180910390fd5b80915050919050565b610ff4612657565b73ffffffffffffffffffffffffffffffffffffffff166110126113fe565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f906147c9565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc90614729565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611154612657565b73ffffffffffffffffffffffffffffffffffffffff166111726113fe565b73ffffffffffffffffffffffffffffffffffffffff16146111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf906147c9565b60405180910390fd5b6111d26000612b28565b565b6111dc612657565b73ffffffffffffffffffffffffffffffffffffffff166111fa6113fe565b73ffffffffffffffffffffffffffffffffffffffff1614611250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611247906147c9565b60405180910390fd5b60005b828290508110156113f357600083838381811061127357611272614d85565b5b905060200201602081019061128891906139d5565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f1906146e9565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90614669565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505080806113eb90614c17565b915050611253565b505050565b600f5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611430612657565b73ffffffffffffffffffffffffffffffffffffffff1661144e6113fe565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906147c9565b60405180910390fd5b8181600c91906114b59291906137ad565b505050565b6060600180546114c990614bb4565b80601f01602080910402602001604051908101604052809291908181526020018280546114f590614bb4565b80156115425780601f1061151757610100808354040283529160200191611542565b820191906000526020600020905b81548152906001019060200180831161152557829003601f168201915b5050505050905090565b601160009054906101000a900460ff1681565b60096020528060005260406000206000915090505481565b600047905073f22b9a7046fd2db996807afe47e5d20fc9ce0a0573ffffffffffffffffffffffffffffffffffffffff166108fc60646014846115b99190614a59565b6115c39190614a28565b9081150290604051600060405180830381858888f193505050501580156115ee573d6000803e3d6000fd5b5073a8d7d90a9fe3a0d5f665c143a941ea212a746b7b73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a8461162c9190614a59565b6116369190614a28565b9081150290604051600060405180830381858888f19350505050158015611661573d6000803e3d6000fd5b50733075d37ecd4760ee4941c197c0396e883a7c606b73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a8461169f9190614a59565b6116a99190614a28565b9081150290604051600060405180830381858888f193505050501580156116d4573d6000803e3d6000fd5b5073292905066d7e7d6803afe51644d1683ab81149e873ffffffffffffffffffffffffffffffffffffffff166108fc60646005846117129190614a59565b61171c9190614a28565b9081150290604051600060405180830381858888f19350505050158015611747573d6000803e3d6000fd5b5073a7e154e82dcaee2a219b0d842f3698cd892814ce73ffffffffffffffffffffffffffffffffffffffff166108fc60646002846117859190614a59565b61178f9190614a28565b9081150290604051600060405180830381858888f193505050501580156117ba573d6000803e3d6000fd5b507319e7a7d4f7052960a07f1a5379654dd7bdec4fe773ffffffffffffffffffffffffffffffffffffffff166108fc60646035846117f89190614a59565b6118029190614a28565b9081150290604051600060405180830381858888f1935050505015801561182d573d6000803e3d6000fd5b5050565b60086020528060005260406000206000915054906101000a900460ff1681565b6060600d805461186090614bb4565b80601f016020809104026020016040519081016040528092919081815260200182805461188c90614bb4565b80156118d95780601f106118ae576101008083540402835291602001916118d9565b820191906000526020600020905b8154815290600101906020018083116118bc57829003601f168201915b5050505050905090565b6118f56118ee612657565b8383612bee565b5050565b600e805461190690614bb4565b80601f016020809104026020016040519081016040528092919081815260200182805461193290614bb4565b801561197f5780601f106119545761010080835404028352916020019161197f565b820191906000526020600020905b81548152906001019060200180831161196257829003601f168201915b505050505081565b601160019054906101000a900460ff166119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd906146c9565b60405180910390fd5b600b54846012546119e791906149d2565b1115611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f906148a9565b60405180910390fd5b3484600f54611a379190614a59565b1115611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f90614609565b60405180910390fd5b6005841115611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390614869565b60405180910390fd5b6010600084815260200190815260200160002060009054906101000a900460ff1615611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b14906148c9565b60405180910390fd5b611b31611b2b848487612d5b565b82612dbc565b611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b67906148e9565b60405180910390fd5b60016010600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b84811015611bdd57611bca33600183601254611bbb91906149d2565b611bc591906149d2565b612e20565b8080611bd590614c17565b915050611b9f565b508360126000828254611bf091906149d2565b9250508190555050505050565b611c05612657565b73ffffffffffffffffffffffffffffffffffffffff16611c236113fe565b73ffffffffffffffffffffffffffffffffffffffff1614611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c70906147c9565b60405180910390fd5b80600f8190555050565b611c8b612657565b73ffffffffffffffffffffffffffffffffffffffff16611ca96113fe565b73ffffffffffffffffffffffffffffffffffffffff1614611cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf6906147c9565b60405180910390fd5b8181600d9190611d109291906137ad565b505050565b611d1d612657565b73ffffffffffffffffffffffffffffffffffffffff16611d3b6113fe565b73ffffffffffffffffffffffffffffffffffffffff1614611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d88906147c9565b60405180910390fd5b60005b82829050811015611ea7576000838383818110611db457611db3614d85565b5b9050602002016020810190611dc991906139d5565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e32906146e9565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611e9f90614c17565b915050611d94565b505050565b611ebd611eb7612657565b836127ee565b611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390614889565b60405180910390fd5b611f0884848484612e3e565b50505050565b601160029054906101000a900460ff16611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f54906146c9565b60405180910390fd5b600b5482601254611f6e91906149d2565b1115611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa6906148a9565b60405180910390fd5b3482600f54611fbe9190614a59565b1115611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690614609565b60405180910390fd5b6005821115612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a90614869565b60405180910390fd5b6010600082815260200190815260200160002060009054906101000a900460ff16156120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209b906148c9565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790614569565b60405180910390fd5b60016010600083815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b8281101561219d5761218a3360018360125461217b91906149d2565b61218591906149d2565b612e20565b808061219590614c17565b91505061215f565b5081601260008282546121b091906149d2565b925050819055505050565b601160019054906101000a900460ff1681565b60606121d9826126c9565b612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f90614809565b60405180910390fd5b60001515600a60009054906101000a900460ff16151514156122c657600e805461224190614bb4565b80601f016020809104026020016040519081016040528092919081815260200182805461226d90614bb4565b80156122ba5780601f1061228f576101008083540402835291602001916122ba565b820191906000526020600020905b81548152906001019060200180831161229d57829003601f168201915b505050505090506122f4565b600c6122d183612e9a565b6040516020016122e29291906143ce565b60405160208183030381529060405290505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612395612657565b73ffffffffffffffffffffffffffffffffffffffff166123b36113fe565b73ffffffffffffffffffffffffffffffffffffffff1614612409576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612400906147c9565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b61243d612657565b73ffffffffffffffffffffffffffffffffffffffff1661245b6113fe565b73ffffffffffffffffffffffffffffffffffffffff16146124b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a8906147c9565b60405180910390fd5b601160009054906101000a900460ff16612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f790614829565b60405180910390fd5b60005b828110156125415761252e8260018360125461251f91906149d2565b61252991906149d2565b612e20565b808061253990614c17565b915050612503565b50816012600082825461255491906149d2565b925050819055505050565b612567612657565b73ffffffffffffffffffffffffffffffffffffffff166125856113fe565b73ffffffffffffffffffffffffffffffffffffffff16146125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d2906147c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561264b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612642906145c9565b60405180910390fd5b61265481612b28565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127a883610f3a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127f9826126c9565b612838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282f906146a9565b60405180910390fd5b600061284383610f3a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128b257508373ffffffffffffffffffffffffffffffffffffffff1661289a84610b86565b73ffffffffffffffffffffffffffffffffffffffff16145b806128c357506128c281856122f9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128ec82610f3a565b73ffffffffffffffffffffffffffffffffffffffff1614612942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612939906147e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a990614629565b60405180910390fd5b6129bd838383612ffb565b6129c8600082612735565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a189190614ab3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a6f91906149d2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5490614649565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d4e91906144c7565b60405180910390a3505050565b600080848484604051602001612d7393929190614423565b60405160208183030381529060405280519060200120604051602001612d9991906143fd565b604051602081830303815290604052805190602001209050809150509392505050565b6000612dc88383613000565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612e3a828260405180602001604052806000815250613027565b5050565b612e498484846128cc565b612e5584848484613082565b612e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8b906145a9565b60405180910390fd5b50505050565b60606000821415612ee2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ff6565b600082905060005b60008214612f14578080612efd90614c17565b915050600a82612f0d9190614a28565b9150612eea565b60008167ffffffffffffffff811115612f3057612f2f614db4565b5b6040519080825280601f01601f191660200182016040528015612f625781602001600182028036833780820191505090505b5090505b60008514612fef57600182612f7b9190614ab3565b9150600a85612f8a9190614c98565b6030612f9691906149d2565b60f81b818381518110612fac57612fab614d85565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fe89190614a28565b9450612f66565b8093505050505b919050565b505050565b600080600061300f8585613219565b9150915061301c8161329c565b819250505092915050565b6130318383613471565b61303e6000848484613082565b61307d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613074906145a9565b60405180910390fd5b505050565b60006130a38473ffffffffffffffffffffffffffffffffffffffff1661363f565b1561320c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130cc612657565b8786866040518563ffffffff1660e01b81526004016130ee949392919061447b565b602060405180830381600087803b15801561310857600080fd5b505af192505050801561313957506040513d601f19601f820116820180604052508101906131369190613c12565b60015b6131bc573d8060008114613169576040519150601f19603f3d011682016040523d82523d6000602084013e61316e565b606091505b506000815114156131b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ab906145a9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613211565b600190505b949350505050565b60008060418351141561325b5760008060006020860151925060408601519150606086015160001a905061324f87828585613652565b94509450505050613295565b60408351141561328c57600080602085015191506040850151905061328186838361375f565b935093505050613295565b60006002915091505b9250929050565b600060048111156132b0576132af614d27565b5b8160048111156132c3576132c2614d27565b5b14156132ce5761346e565b600160048111156132e2576132e1614d27565b5b8160048111156132f5576132f4614d27565b5b1415613336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332d90614549565b60405180910390fd5b6002600481111561334a57613349614d27565b5b81600481111561335d5761335c614d27565b5b141561339e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339590614589565b60405180910390fd5b600360048111156133b2576133b1614d27565b5b8160048111156133c5576133c4614d27565b5b1415613406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133fd90614689565b60405180910390fd5b60048081111561341957613418614d27565b5b81600481111561342c5761342b614d27565b5b141561346d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346490614769565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d890614789565b60405180910390fd5b6134ea816126c9565b1561352a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613521906145e9565b60405180910390fd5b61353660008383612ffb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461358691906149d2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561368d576000600391509150613756565b601b8560ff16141580156136a55750601c8560ff1614155b156136b7576000600491509150613756565b6000600187878787604051600081526020016040526040516136dc94939291906144e2565b6020604051602081039080840390855afa1580156136fe573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561374d57600060019250925050613756565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c01905061379f87828885613652565b935093505050935093915050565b8280546137b990614bb4565b90600052602060002090601f0160209004810192826137db5760008555613822565b82601f106137f457803560ff1916838001178555613822565b82800160010185558215613822579182015b82811115613821578235825591602001919060010190613806565b5b50905061382f9190613833565b5090565b5b8082111561384c576000816000905550600101613834565b5090565b600061386361385e84614949565b614924565b90508281526020810184848401111561387f5761387e614df2565b5b61388a848285614b72565b509392505050565b6000813590506138a18161552d565b92915050565b60008083601f8401126138bd576138bc614de8565b5b8235905067ffffffffffffffff8111156138da576138d9614de3565b5b6020830191508360208202830111156138f6576138f5614ded565b5b9250929050565b60008135905061390c81615544565b92915050565b6000813590506139218161555b565b92915050565b6000815190506139368161555b565b92915050565b600082601f83011261395157613950614de8565b5b8135613961848260208601613850565b91505092915050565b60008083601f8401126139805761397f614de8565b5b8235905067ffffffffffffffff81111561399d5761399c614de3565b5b6020830191508360018202830111156139b9576139b8614ded565b5b9250929050565b6000813590506139cf81615572565b92915050565b6000602082840312156139eb576139ea614dfc565b5b60006139f984828501613892565b91505092915050565b60008060408385031215613a1957613a18614dfc565b5b6000613a2785828601613892565b9250506020613a3885828601613892565b9150509250929050565b600080600060608486031215613a5b57613a5a614dfc565b5b6000613a6986828701613892565b9350506020613a7a86828701613892565b9250506040613a8b868287016139c0565b9150509250925092565b60008060008060808587031215613aaf57613aae614dfc565b5b6000613abd87828801613892565b9450506020613ace87828801613892565b9350506040613adf878288016139c0565b925050606085013567ffffffffffffffff811115613b0057613aff614df7565b5b613b0c8782880161393c565b91505092959194509250565b60008060408385031215613b2f57613b2e614dfc565b5b6000613b3d85828601613892565b9250506020613b4e858286016138fd565b9150509250929050565b60008060408385031215613b6f57613b6e614dfc565b5b6000613b7d85828601613892565b9250506020613b8e858286016139c0565b9150509250929050565b60008060208385031215613baf57613bae614dfc565b5b600083013567ffffffffffffffff811115613bcd57613bcc614df7565b5b613bd9858286016138a7565b92509250509250929050565b600060208284031215613bfb57613bfa614dfc565b5b6000613c0984828501613912565b91505092915050565b600060208284031215613c2857613c27614dfc565b5b6000613c3684828501613927565b91505092915050565b60008060208385031215613c5657613c55614dfc565b5b600083013567ffffffffffffffff811115613c7457613c73614df7565b5b613c808582860161396a565b92509250509250929050565b600060208284031215613ca257613ca1614dfc565b5b6000613cb0848285016139c0565b91505092915050565b60008060408385031215613cd057613ccf614dfc565b5b6000613cde858286016139c0565b9250506020613cef85828601613892565b9150509250929050565b60008060408385031215613d1057613d0f614dfc565b5b6000613d1e858286016139c0565b9250506020613d2f858286016139c0565b9150509250929050565b60008060008060808587031215613d5357613d52614dfc565b5b6000613d61878288016139c0565b9450506020613d72878288016139c0565b9350506040613d8387828801613892565b925050606085013567ffffffffffffffff811115613da457613da3614df7565b5b613db08782880161393c565b91505092959194509250565b613dc581614ae7565b82525050565b613ddc613dd782614ae7565b614c60565b82525050565b613deb81614af9565b82525050565b613dfa81614b05565b82525050565b613e11613e0c82614b05565b614c72565b82525050565b6000613e228261498f565b613e2c81856149a5565b9350613e3c818560208601614b81565b613e4581614e01565b840191505092915050565b6000613e5b8261499a565b613e6581856149b6565b9350613e75818560208601614b81565b613e7e81614e01565b840191505092915050565b6000613e948261499a565b613e9e81856149c7565b9350613eae818560208601614b81565b80840191505092915050565b60008154613ec781614bb4565b613ed181866149c7565b94506001821660008114613eec5760018114613efd57613f30565b60ff19831686528186019350613f30565b613f068561497a565b60005b83811015613f2857815481890152600182019150602081019050613f09565b838801955050505b50505092915050565b6000613f466018836149b6565b9150613f5182614e1f565b602082019050919050565b6000613f696013836149b6565b9150613f7482614e48565b602082019050919050565b6000613f8c601f836149b6565b9150613f9782614e71565b602082019050919050565b6000613faf601c836149c7565b9150613fba82614e9a565b601c82019050919050565b6000613fd26032836149b6565b9150613fdd82614ec3565b604082019050919050565b6000613ff56026836149b6565b915061400082614f12565b604082019050919050565b6000614018601c836149b6565b915061402382614f61565b602082019050919050565b600061403b6013836149b6565b915061404682614f8a565b602082019050919050565b600061405e6024836149b6565b915061406982614fb3565b604082019050919050565b60006140816019836149b6565b915061408c82615002565b602082019050919050565b60006140a4600f836149b6565b91506140af8261502b565b602082019050919050565b60006140c76022836149b6565b91506140d282615054565b604082019050919050565b60006140ea602c836149b6565b91506140f5826150a3565b604082019050919050565b600061410d6006836149b6565b9150614118826150f2565b602082019050919050565b6000614130600b836149b6565b915061413b8261511b565b602082019050919050565b60006141536038836149b6565b915061415e82615144565b604082019050919050565b6000614176602a836149b6565b915061418182615193565b604082019050919050565b60006141996029836149b6565b91506141a4826151e2565b604082019050919050565b60006141bc6022836149b6565b91506141c782615231565b604082019050919050565b60006141df6020836149b6565b91506141ea82615280565b602082019050919050565b6000614202602c836149b6565b915061420d826152a9565b604082019050919050565b60006142256005836149c7565b9150614230826152f8565b600582019050919050565b60006142486020836149b6565b915061425382615321565b602082019050919050565b600061426b6029836149b6565b91506142768261534a565b604082019050919050565b600061428e601f836149b6565b915061429982615399565b602082019050919050565b60006142b16017836149b6565b91506142bc826153c2565b602082019050919050565b60006142d46021836149b6565b91506142df826153eb565b604082019050919050565b60006142f7601d836149b6565b91506143028261543a565b602082019050919050565b600061431a6031836149b6565b915061432582615463565b604082019050919050565b600061433d6013836149b6565b9150614348826154b2565b602082019050919050565b60006143606011836149b6565b915061436b826154db565b602082019050919050565b60006143836013836149b6565b915061438e82615504565b602082019050919050565b6143a281614b5b565b82525050565b6143b96143b482614b5b565b614c8e565b82525050565b6143c881614b65565b82525050565b60006143da8285613eba565b91506143e68284613e89565b91506143f182614218565b91508190509392505050565b600061440882613fa2565b91506144148284613e00565b60208201915081905092915050565b600061442f82866143a8565b60208201915061443f8285613dcb565b60148201915061444f82846143a8565b602082019150819050949350505050565b60006020820190506144756000830184613dbc565b92915050565b60006080820190506144906000830187613dbc565b61449d6020830186613dbc565b6144aa6040830185614399565b81810360608301526144bc8184613e17565b905095945050505050565b60006020820190506144dc6000830184613de2565b92915050565b60006080820190506144f76000830187613df1565b61450460208301866143bf565b6145116040830185613df1565b61451e6060830184613df1565b95945050505050565b600060208201905081810360008301526145418184613e50565b905092915050565b6000602082019050818103600083015261456281613f39565b9050919050565b6000602082019050818103600083015261458281613f5c565b9050919050565b600060208201905081810360008301526145a281613f7f565b9050919050565b600060208201905081810360008301526145c281613fc5565b9050919050565b600060208201905081810360008301526145e281613fe8565b9050919050565b600060208201905081810360008301526146028161400b565b9050919050565b600060208201905081810360008301526146228161402e565b9050919050565b6000602082019050818103600083015261464281614051565b9050919050565b6000602082019050818103600083015261466281614074565b9050919050565b6000602082019050818103600083015261468281614097565b9050919050565b600060208201905081810360008301526146a2816140ba565b9050919050565b600060208201905081810360008301526146c2816140dd565b9050919050565b600060208201905081810360008301526146e281614100565b9050919050565b6000602082019050818103600083015261470281614123565b9050919050565b6000602082019050818103600083015261472281614146565b9050919050565b6000602082019050818103600083015261474281614169565b9050919050565b600060208201905081810360008301526147628161418c565b9050919050565b60006020820190508181036000830152614782816141af565b9050919050565b600060208201905081810360008301526147a2816141d2565b9050919050565b600060208201905081810360008301526147c2816141f5565b9050919050565b600060208201905081810360008301526147e28161423b565b9050919050565b600060208201905081810360008301526148028161425e565b9050919050565b6000602082019050818103600083015261482281614281565b9050919050565b60006020820190508181036000830152614842816142a4565b9050919050565b60006020820190508181036000830152614862816142c7565b9050919050565b60006020820190508181036000830152614882816142ea565b9050919050565b600060208201905081810360008301526148a28161430d565b9050919050565b600060208201905081810360008301526148c281614330565b9050919050565b600060208201905081810360008301526148e281614353565b9050919050565b6000602082019050818103600083015261490281614376565b9050919050565b600060208201905061491e6000830184614399565b92915050565b600061492e61493f565b905061493a8282614be6565b919050565b6000604051905090565b600067ffffffffffffffff82111561496457614963614db4565b5b61496d82614e01565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149dd82614b5b565b91506149e883614b5b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1d57614a1c614cc9565b5b828201905092915050565b6000614a3382614b5b565b9150614a3e83614b5b565b925082614a4e57614a4d614cf8565b5b828204905092915050565b6000614a6482614b5b565b9150614a6f83614b5b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aa857614aa7614cc9565b5b828202905092915050565b6000614abe82614b5b565b9150614ac983614b5b565b925082821015614adc57614adb614cc9565b5b828203905092915050565b6000614af282614b3b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614b9f578082015181840152602081019050614b84565b83811115614bae576000848401525b50505050565b60006002820490506001821680614bcc57607f821691505b60208210811415614be057614bdf614d56565b5b50919050565b614bef82614e01565b810181811067ffffffffffffffff82111715614c0e57614c0d614db4565b5b80604052505050565b6000614c2282614b5b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c5557614c54614cc9565b5b600182019050919050565b6000614c6b82614c7c565b9050919050565b6000819050919050565b6000614c8782614e12565b9050919050565b6000819050919050565b6000614ca382614b5b565b9150614cae83614b5b565b925082614cbe57614cbd614cf8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f6e6f745f6f6e5f70726573616c655f6c69737400000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6e6f745f656e6f7567685f6574685f73656e7400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6475706c69636174655f656e7472790000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f636c6f7365640000000000000000000000000000000000000000000000000000600082015250565b7f6261645f61646472657373000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f67696674696e675f6f74686572735f6e6f745f6f70656e000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f746f6f5f6d616e795f6e6674735f7065725f7472616e73616374696f6e000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f746f74616c5f737570706c795f70617373656400000000000000000000000000600082015250565b7f6e6f6e63655f616c72656164795f72616e000000000000000000000000000000600082015250565b7f6e6f745f616c6c6f7765645f746f5f6d696e7400000000000000000000000000600082015250565b61553681614ae7565b811461554157600080fd5b50565b61554d81614af9565b811461555857600080fd5b50565b61556481614b0f565b811461556f57600080fd5b50565b61557b81614b5b565b811461558657600080fd5b5056fea2646970667358221220fcd75c5f793ff15b422d5c791bc1fb06adb67f0f7166656643d3f8f38e1e3bb564736f6c63430008060033

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80638da5cb5b11610144578063afa777b8116100b6578063c5b8e4411161007a578063c5b8e4411461087e578063c87b56dd146108a9578063e985e9c5146108e6578063ee3c5d9a14610923578063efea3bcd1461093a578063f2fde38b146109635761025c565b8063afa777b8146107be578063b143397a146107e7578063b179e06014610810578063b88d4fde14610839578063c3822a46146108625761025c565b80639c2d4e41116101085780639c2d4e41146106cf5780639cf2e8d6146106e65780639e18002914610723578063a22cb4651461074e578063a4f8eaeb14610777578063aa5e5d9e146107a25761025c565b80638da5cb5b146105e85780638f329d6e1461061357806395d89b411461063c5780639a788846146106675780639bf80316146106925761025c565b8063391bdf9a116101dd5780636352211e116101a15780636352211e146104ec5780636f5015c81461052957806370a0823114610540578063715018a61461057d5780637204a3c914610594578063752a4588146105bd5761025c565b8063391bdf9a1461042b5780633f528c491461044257806342842e0e1461046d5780635183022714610496578063545668a6146104c15761025c565b8063115309c611610224578063115309c61461035857806318160ddd146103835780631f526075146103ae57806323b872dd146103d7578063270e5326146104005761025c565b806301df04ef1461026157806301ffc9a71461028a57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613c8c565b61098c565b005b34801561029657600080fd5b506102b160048036038101906102ac9190613be5565b610a12565b6040516102be91906144c7565b60405180910390f35b3480156102d357600080fd5b506102dc610af4565b6040516102e99190614527565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190613c8c565b610b86565b6040516103269190614460565b60405180910390f35b34801561033b57600080fd5b5061035660048036038101906103519190613b58565b610c0b565b005b34801561036457600080fd5b5061036d610d23565b60405161037a9190614909565b60405180910390f35b34801561038f57600080fd5b50610398610d29565b6040516103a59190614909565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613c3f565b610d2f565b005b3480156103e357600080fd5b506103fe60048036038101906103f99190613a42565b610dc1565b005b34801561040c57600080fd5b50610415610e21565b6040516104229190614460565b60405180910390f35b34801561043757600080fd5b50610440610e47565b005b34801561044e57600080fd5b50610457610eef565b6040516104649190614909565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190613a42565b610ef4565b005b3480156104a257600080fd5b506104ab610f14565b6040516104b891906144c7565b60405180910390f35b3480156104cd57600080fd5b506104d6610f27565b6040516104e391906144c7565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190613c8c565b610f3a565b6040516105209190614460565b60405180910390f35b34801561053557600080fd5b5061053e610fec565b005b34801561054c57600080fd5b50610567600480360381019061056291906139d5565b611094565b6040516105749190614909565b60405180910390f35b34801561058957600080fd5b5061059261114c565b005b3480156105a057600080fd5b506105bb60048036038101906105b69190613b98565b6111d4565b005b3480156105c957600080fd5b506105d26113f8565b6040516105df9190614909565b60405180910390f35b3480156105f457600080fd5b506105fd6113fe565b60405161060a9190614460565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613c3f565b611428565b005b34801561064857600080fd5b506106516114ba565b60405161065e9190614527565b60405180910390f35b34801561067357600080fd5b5061067c61154c565b60405161068991906144c7565b60405180910390f35b34801561069e57600080fd5b506106b960048036038101906106b491906139d5565b61155f565b6040516106c69190614909565b60405180910390f35b3480156106db57600080fd5b506106e4611577565b005b3480156106f257600080fd5b5061070d600480360381019061070891906139d5565b611831565b60405161071a91906144c7565b60405180910390f35b34801561072f57600080fd5b50610738611851565b6040516107459190614527565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613b18565b6118e3565b005b34801561078357600080fd5b5061078c6118f9565b6040516107999190614527565b60405180910390f35b6107bc60048036038101906107b79190613d39565b611987565b005b3480156107ca57600080fd5b506107e560048036038101906107e09190613c8c565b611bfd565b005b3480156107f357600080fd5b5061080e60048036038101906108099190613c3f565b611c83565b005b34801561081c57600080fd5b5061083760048036038101906108329190613b98565b611d15565b005b34801561084557600080fd5b50610860600480360381019061085b9190613a95565b611eac565b005b61087c60048036038101906108779190613cf9565b611f0e565b005b34801561088a57600080fd5b506108936121bb565b6040516108a091906144c7565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613c8c565b6121ce565b6040516108dd9190614527565b60405180910390f35b3480156108f257600080fd5b5061090d60048036038101906109089190613a02565b6122f9565b60405161091a91906144c7565b60405180910390f35b34801561092f57600080fd5b5061093861238d565b005b34801561094657600080fd5b50610961600480360381019061095c9190613cb9565b612435565b005b34801561096f57600080fd5b5061098a600480360381019061098591906139d5565b61255f565b005b610994612657565b73ffffffffffffffffffffffffffffffffffffffff166109b26113fe565b73ffffffffffffffffffffffffffffffffffffffff1614610a08576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ff906147c9565b60405180910390fd5b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610add57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aed5750610aec8261265f565b5b9050919050565b606060008054610b0390614bb4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2f90614bb4565b8015610b7c5780601f10610b5157610100808354040283529160200191610b7c565b820191906000526020600020905b815481529060010190602001808311610b5f57829003601f168201915b5050505050905090565b6000610b91826126c9565b610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc7906147a9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1682610f3a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e90614849565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ca6612657565b73ffffffffffffffffffffffffffffffffffffffff161480610cd55750610cd481610ccf612657565b6122f9565b5b610d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0b90614709565b60405180910390fd5b610d1e8383612735565b505050565b600b5481565b60125481565b610d37612657565b73ffffffffffffffffffffffffffffffffffffffff16610d556113fe565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da2906147c9565b60405180910390fd5b8181600e9190610dbc9291906137ad565b505050565b610dd2610dcc612657565b826127ee565b610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890614889565b60405180910390fd5b610e1c8383836128cc565b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e4f612657565b73ffffffffffffffffffffffffffffffffffffffff16610e6d6113fe565b73ffffffffffffffffffffffffffffffffffffffff1614610ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eba906147c9565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b600581565b610f0f83838360405180602001604052806000815250611eac565b505050565b600a60009054906101000a900460ff1681565b601160029054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fda90614749565b60405180910390fd5b80915050919050565b610ff4612657565b73ffffffffffffffffffffffffffffffffffffffff166110126113fe565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f906147c9565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fc90614729565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611154612657565b73ffffffffffffffffffffffffffffffffffffffff166111726113fe565b73ffffffffffffffffffffffffffffffffffffffff16146111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf906147c9565b60405180910390fd5b6111d26000612b28565b565b6111dc612657565b73ffffffffffffffffffffffffffffffffffffffff166111fa6113fe565b73ffffffffffffffffffffffffffffffffffffffff1614611250576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611247906147c9565b60405180910390fd5b60005b828290508110156113f357600083838381811061127357611272614d85565b5b905060200201602081019061128891906139d5565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f1906146e9565b60405180910390fd5b600860008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90614669565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505080806113eb90614c17565b915050611253565b505050565b600f5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611430612657565b73ffffffffffffffffffffffffffffffffffffffff1661144e6113fe565b73ffffffffffffffffffffffffffffffffffffffff16146114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b906147c9565b60405180910390fd5b8181600c91906114b59291906137ad565b505050565b6060600180546114c990614bb4565b80601f01602080910402602001604051908101604052809291908181526020018280546114f590614bb4565b80156115425780601f1061151757610100808354040283529160200191611542565b820191906000526020600020905b81548152906001019060200180831161152557829003601f168201915b5050505050905090565b601160009054906101000a900460ff1681565b60096020528060005260406000206000915090505481565b600047905073f22b9a7046fd2db996807afe47e5d20fc9ce0a0573ffffffffffffffffffffffffffffffffffffffff166108fc60646014846115b99190614a59565b6115c39190614a28565b9081150290604051600060405180830381858888f193505050501580156115ee573d6000803e3d6000fd5b5073a8d7d90a9fe3a0d5f665c143a941ea212a746b7b73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a8461162c9190614a59565b6116369190614a28565b9081150290604051600060405180830381858888f19350505050158015611661573d6000803e3d6000fd5b50733075d37ecd4760ee4941c197c0396e883a7c606b73ffffffffffffffffffffffffffffffffffffffff166108fc6064600a8461169f9190614a59565b6116a99190614a28565b9081150290604051600060405180830381858888f193505050501580156116d4573d6000803e3d6000fd5b5073292905066d7e7d6803afe51644d1683ab81149e873ffffffffffffffffffffffffffffffffffffffff166108fc60646005846117129190614a59565b61171c9190614a28565b9081150290604051600060405180830381858888f19350505050158015611747573d6000803e3d6000fd5b5073a7e154e82dcaee2a219b0d842f3698cd892814ce73ffffffffffffffffffffffffffffffffffffffff166108fc60646002846117859190614a59565b61178f9190614a28565b9081150290604051600060405180830381858888f193505050501580156117ba573d6000803e3d6000fd5b507319e7a7d4f7052960a07f1a5379654dd7bdec4fe773ffffffffffffffffffffffffffffffffffffffff166108fc60646035846117f89190614a59565b6118029190614a28565b9081150290604051600060405180830381858888f1935050505015801561182d573d6000803e3d6000fd5b5050565b60086020528060005260406000206000915054906101000a900460ff1681565b6060600d805461186090614bb4565b80601f016020809104026020016040519081016040528092919081815260200182805461188c90614bb4565b80156118d95780601f106118ae576101008083540402835291602001916118d9565b820191906000526020600020905b8154815290600101906020018083116118bc57829003601f168201915b5050505050905090565b6118f56118ee612657565b8383612bee565b5050565b600e805461190690614bb4565b80601f016020809104026020016040519081016040528092919081815260200182805461193290614bb4565b801561197f5780601f106119545761010080835404028352916020019161197f565b820191906000526020600020905b81548152906001019060200180831161196257829003601f168201915b505050505081565b601160019054906101000a900460ff166119d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cd906146c9565b60405180910390fd5b600b54846012546119e791906149d2565b1115611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f906148a9565b60405180910390fd5b3484600f54611a379190614a59565b1115611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f90614609565b60405180910390fd5b6005841115611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390614869565b60405180910390fd5b6010600084815260200190815260200160002060009054906101000a900460ff1615611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b14906148c9565b60405180910390fd5b611b31611b2b848487612d5b565b82612dbc565b611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b67906148e9565b60405180910390fd5b60016010600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b84811015611bdd57611bca33600183601254611bbb91906149d2565b611bc591906149d2565b612e20565b8080611bd590614c17565b915050611b9f565b508360126000828254611bf091906149d2565b9250508190555050505050565b611c05612657565b73ffffffffffffffffffffffffffffffffffffffff16611c236113fe565b73ffffffffffffffffffffffffffffffffffffffff1614611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c70906147c9565b60405180910390fd5b80600f8190555050565b611c8b612657565b73ffffffffffffffffffffffffffffffffffffffff16611ca96113fe565b73ffffffffffffffffffffffffffffffffffffffff1614611cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf6906147c9565b60405180910390fd5b8181600d9190611d109291906137ad565b505050565b611d1d612657565b73ffffffffffffffffffffffffffffffffffffffff16611d3b6113fe565b73ffffffffffffffffffffffffffffffffffffffff1614611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d88906147c9565b60405180910390fd5b60005b82829050811015611ea7576000838383818110611db457611db3614d85565b5b9050602002016020810190611dc991906139d5565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e32906146e9565b60405180910390fd5b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611e9f90614c17565b915050611d94565b505050565b611ebd611eb7612657565b836127ee565b611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef390614889565b60405180910390fd5b611f0884848484612e3e565b50505050565b601160029054906101000a900460ff16611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f54906146c9565b60405180910390fd5b600b5482601254611f6e91906149d2565b1115611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa6906148a9565b60405180910390fd5b3482600f54611fbe9190614a59565b1115611fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff690614609565b60405180910390fd5b6005821115612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a90614869565b60405180910390fd5b6010600082815260200190815260200160002060009054906101000a900460ff16156120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209b906148c9565b60405180910390fd5b600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790614569565b60405180910390fd5b60016010600083815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b8281101561219d5761218a3360018360125461217b91906149d2565b61218591906149d2565b612e20565b808061219590614c17565b91505061215f565b5081601260008282546121b091906149d2565b925050819055505050565b601160019054906101000a900460ff1681565b60606121d9826126c9565b612218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220f90614809565b60405180910390fd5b60001515600a60009054906101000a900460ff16151514156122c657600e805461224190614bb4565b80601f016020809104026020016040519081016040528092919081815260200182805461226d90614bb4565b80156122ba5780601f1061228f576101008083540402835291602001916122ba565b820191906000526020600020905b81548152906001019060200180831161229d57829003601f168201915b505050505090506122f4565b600c6122d183612e9a565b6040516020016122e29291906143ce565b60405160208183030381529060405290505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612395612657565b73ffffffffffffffffffffffffffffffffffffffff166123b36113fe565b73ffffffffffffffffffffffffffffffffffffffff1614612409576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612400906147c9565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b61243d612657565b73ffffffffffffffffffffffffffffffffffffffff1661245b6113fe565b73ffffffffffffffffffffffffffffffffffffffff16146124b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a8906147c9565b60405180910390fd5b601160009054906101000a900460ff16612500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f790614829565b60405180910390fd5b60005b828110156125415761252e8260018360125461251f91906149d2565b61252991906149d2565b612e20565b808061253990614c17565b915050612503565b50816012600082825461255491906149d2565b925050819055505050565b612567612657565b73ffffffffffffffffffffffffffffffffffffffff166125856113fe565b73ffffffffffffffffffffffffffffffffffffffff16146125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d2906147c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561264b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612642906145c9565b60405180910390fd5b61265481612b28565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127a883610f3a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127f9826126c9565b612838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282f906146a9565b60405180910390fd5b600061284383610f3a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128b257508373ffffffffffffffffffffffffffffffffffffffff1661289a84610b86565b73ffffffffffffffffffffffffffffffffffffffff16145b806128c357506128c281856122f9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128ec82610f3a565b73ffffffffffffffffffffffffffffffffffffffff1614612942576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612939906147e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a990614629565b60405180910390fd5b6129bd838383612ffb565b6129c8600082612735565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a189190614ab3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a6f91906149d2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5490614649565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612d4e91906144c7565b60405180910390a3505050565b600080848484604051602001612d7393929190614423565b60405160208183030381529060405280519060200120604051602001612d9991906143fd565b604051602081830303815290604052805190602001209050809150509392505050565b6000612dc88383613000565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b612e3a828260405180602001604052806000815250613027565b5050565b612e498484846128cc565b612e5584848484613082565b612e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8b906145a9565b60405180910390fd5b50505050565b60606000821415612ee2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ff6565b600082905060005b60008214612f14578080612efd90614c17565b915050600a82612f0d9190614a28565b9150612eea565b60008167ffffffffffffffff811115612f3057612f2f614db4565b5b6040519080825280601f01601f191660200182016040528015612f625781602001600182028036833780820191505090505b5090505b60008514612fef57600182612f7b9190614ab3565b9150600a85612f8a9190614c98565b6030612f9691906149d2565b60f81b818381518110612fac57612fab614d85565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fe89190614a28565b9450612f66565b8093505050505b919050565b505050565b600080600061300f8585613219565b9150915061301c8161329c565b819250505092915050565b6130318383613471565b61303e6000848484613082565b61307d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613074906145a9565b60405180910390fd5b505050565b60006130a38473ffffffffffffffffffffffffffffffffffffffff1661363f565b1561320c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130cc612657565b8786866040518563ffffffff1660e01b81526004016130ee949392919061447b565b602060405180830381600087803b15801561310857600080fd5b505af192505050801561313957506040513d601f19601f820116820180604052508101906131369190613c12565b60015b6131bc573d8060008114613169576040519150601f19603f3d011682016040523d82523d6000602084013e61316e565b606091505b506000815114156131b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ab906145a9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613211565b600190505b949350505050565b60008060418351141561325b5760008060006020860151925060408601519150606086015160001a905061324f87828585613652565b94509450505050613295565b60408351141561328c57600080602085015191506040850151905061328186838361375f565b935093505050613295565b60006002915091505b9250929050565b600060048111156132b0576132af614d27565b5b8160048111156132c3576132c2614d27565b5b14156132ce5761346e565b600160048111156132e2576132e1614d27565b5b8160048111156132f5576132f4614d27565b5b1415613336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332d90614549565b60405180910390fd5b6002600481111561334a57613349614d27565b5b81600481111561335d5761335c614d27565b5b141561339e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339590614589565b60405180910390fd5b600360048111156133b2576133b1614d27565b5b8160048111156133c5576133c4614d27565b5b1415613406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133fd90614689565b60405180910390fd5b60048081111561341957613418614d27565b5b81600481111561342c5761342b614d27565b5b141561346d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346490614769565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d890614789565b60405180910390fd5b6134ea816126c9565b1561352a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613521906145e9565b60405180910390fd5b61353660008383612ffb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461358691906149d2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561368d576000600391509150613756565b601b8560ff16141580156136a55750601c8560ff1614155b156136b7576000600491509150613756565b6000600187878787604051600081526020016040526040516136dc94939291906144e2565b6020604051602081039080840390855afa1580156136fe573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561374d57600060019250925050613756565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c01905061379f87828885613652565b935093505050935093915050565b8280546137b990614bb4565b90600052602060002090601f0160209004810192826137db5760008555613822565b82601f106137f457803560ff1916838001178555613822565b82800160010185558215613822579182015b82811115613821578235825591602001919060010190613806565b5b50905061382f9190613833565b5090565b5b8082111561384c576000816000905550600101613834565b5090565b600061386361385e84614949565b614924565b90508281526020810184848401111561387f5761387e614df2565b5b61388a848285614b72565b509392505050565b6000813590506138a18161552d565b92915050565b60008083601f8401126138bd576138bc614de8565b5b8235905067ffffffffffffffff8111156138da576138d9614de3565b5b6020830191508360208202830111156138f6576138f5614ded565b5b9250929050565b60008135905061390c81615544565b92915050565b6000813590506139218161555b565b92915050565b6000815190506139368161555b565b92915050565b600082601f83011261395157613950614de8565b5b8135613961848260208601613850565b91505092915050565b60008083601f8401126139805761397f614de8565b5b8235905067ffffffffffffffff81111561399d5761399c614de3565b5b6020830191508360018202830111156139b9576139b8614ded565b5b9250929050565b6000813590506139cf81615572565b92915050565b6000602082840312156139eb576139ea614dfc565b5b60006139f984828501613892565b91505092915050565b60008060408385031215613a1957613a18614dfc565b5b6000613a2785828601613892565b9250506020613a3885828601613892565b9150509250929050565b600080600060608486031215613a5b57613a5a614dfc565b5b6000613a6986828701613892565b9350506020613a7a86828701613892565b9250506040613a8b868287016139c0565b9150509250925092565b60008060008060808587031215613aaf57613aae614dfc565b5b6000613abd87828801613892565b9450506020613ace87828801613892565b9350506040613adf878288016139c0565b925050606085013567ffffffffffffffff811115613b0057613aff614df7565b5b613b0c8782880161393c565b91505092959194509250565b60008060408385031215613b2f57613b2e614dfc565b5b6000613b3d85828601613892565b9250506020613b4e858286016138fd565b9150509250929050565b60008060408385031215613b6f57613b6e614dfc565b5b6000613b7d85828601613892565b9250506020613b8e858286016139c0565b9150509250929050565b60008060208385031215613baf57613bae614dfc565b5b600083013567ffffffffffffffff811115613bcd57613bcc614df7565b5b613bd9858286016138a7565b92509250509250929050565b600060208284031215613bfb57613bfa614dfc565b5b6000613c0984828501613912565b91505092915050565b600060208284031215613c2857613c27614dfc565b5b6000613c3684828501613927565b91505092915050565b60008060208385031215613c5657613c55614dfc565b5b600083013567ffffffffffffffff811115613c7457613c73614df7565b5b613c808582860161396a565b92509250509250929050565b600060208284031215613ca257613ca1614dfc565b5b6000613cb0848285016139c0565b91505092915050565b60008060408385031215613cd057613ccf614dfc565b5b6000613cde858286016139c0565b9250506020613cef85828601613892565b9150509250929050565b60008060408385031215613d1057613d0f614dfc565b5b6000613d1e858286016139c0565b9250506020613d2f858286016139c0565b9150509250929050565b60008060008060808587031215613d5357613d52614dfc565b5b6000613d61878288016139c0565b9450506020613d72878288016139c0565b9350506040613d8387828801613892565b925050606085013567ffffffffffffffff811115613da457613da3614df7565b5b613db08782880161393c565b91505092959194509250565b613dc581614ae7565b82525050565b613ddc613dd782614ae7565b614c60565b82525050565b613deb81614af9565b82525050565b613dfa81614b05565b82525050565b613e11613e0c82614b05565b614c72565b82525050565b6000613e228261498f565b613e2c81856149a5565b9350613e3c818560208601614b81565b613e4581614e01565b840191505092915050565b6000613e5b8261499a565b613e6581856149b6565b9350613e75818560208601614b81565b613e7e81614e01565b840191505092915050565b6000613e948261499a565b613e9e81856149c7565b9350613eae818560208601614b81565b80840191505092915050565b60008154613ec781614bb4565b613ed181866149c7565b94506001821660008114613eec5760018114613efd57613f30565b60ff19831686528186019350613f30565b613f068561497a565b60005b83811015613f2857815481890152600182019150602081019050613f09565b838801955050505b50505092915050565b6000613f466018836149b6565b9150613f5182614e1f565b602082019050919050565b6000613f696013836149b6565b9150613f7482614e48565b602082019050919050565b6000613f8c601f836149b6565b9150613f9782614e71565b602082019050919050565b6000613faf601c836149c7565b9150613fba82614e9a565b601c82019050919050565b6000613fd26032836149b6565b9150613fdd82614ec3565b604082019050919050565b6000613ff56026836149b6565b915061400082614f12565b604082019050919050565b6000614018601c836149b6565b915061402382614f61565b602082019050919050565b600061403b6013836149b6565b915061404682614f8a565b602082019050919050565b600061405e6024836149b6565b915061406982614fb3565b604082019050919050565b60006140816019836149b6565b915061408c82615002565b602082019050919050565b60006140a4600f836149b6565b91506140af8261502b565b602082019050919050565b60006140c76022836149b6565b91506140d282615054565b604082019050919050565b60006140ea602c836149b6565b91506140f5826150a3565b604082019050919050565b600061410d6006836149b6565b9150614118826150f2565b602082019050919050565b6000614130600b836149b6565b915061413b8261511b565b602082019050919050565b60006141536038836149b6565b915061415e82615144565b604082019050919050565b6000614176602a836149b6565b915061418182615193565b604082019050919050565b60006141996029836149b6565b91506141a4826151e2565b604082019050919050565b60006141bc6022836149b6565b91506141c782615231565b604082019050919050565b60006141df6020836149b6565b91506141ea82615280565b602082019050919050565b6000614202602c836149b6565b915061420d826152a9565b604082019050919050565b60006142256005836149c7565b9150614230826152f8565b600582019050919050565b60006142486020836149b6565b915061425382615321565b602082019050919050565b600061426b6029836149b6565b91506142768261534a565b604082019050919050565b600061428e601f836149b6565b915061429982615399565b602082019050919050565b60006142b16017836149b6565b91506142bc826153c2565b602082019050919050565b60006142d46021836149b6565b91506142df826153eb565b604082019050919050565b60006142f7601d836149b6565b91506143028261543a565b602082019050919050565b600061431a6031836149b6565b915061432582615463565b604082019050919050565b600061433d6013836149b6565b9150614348826154b2565b602082019050919050565b60006143606011836149b6565b915061436b826154db565b602082019050919050565b60006143836013836149b6565b915061438e82615504565b602082019050919050565b6143a281614b5b565b82525050565b6143b96143b482614b5b565b614c8e565b82525050565b6143c881614b65565b82525050565b60006143da8285613eba565b91506143e68284613e89565b91506143f182614218565b91508190509392505050565b600061440882613fa2565b91506144148284613e00565b60208201915081905092915050565b600061442f82866143a8565b60208201915061443f8285613dcb565b60148201915061444f82846143a8565b602082019150819050949350505050565b60006020820190506144756000830184613dbc565b92915050565b60006080820190506144906000830187613dbc565b61449d6020830186613dbc565b6144aa6040830185614399565b81810360608301526144bc8184613e17565b905095945050505050565b60006020820190506144dc6000830184613de2565b92915050565b60006080820190506144f76000830187613df1565b61450460208301866143bf565b6145116040830185613df1565b61451e6060830184613df1565b95945050505050565b600060208201905081810360008301526145418184613e50565b905092915050565b6000602082019050818103600083015261456281613f39565b9050919050565b6000602082019050818103600083015261458281613f5c565b9050919050565b600060208201905081810360008301526145a281613f7f565b9050919050565b600060208201905081810360008301526145c281613fc5565b9050919050565b600060208201905081810360008301526145e281613fe8565b9050919050565b600060208201905081810360008301526146028161400b565b9050919050565b600060208201905081810360008301526146228161402e565b9050919050565b6000602082019050818103600083015261464281614051565b9050919050565b6000602082019050818103600083015261466281614074565b9050919050565b6000602082019050818103600083015261468281614097565b9050919050565b600060208201905081810360008301526146a2816140ba565b9050919050565b600060208201905081810360008301526146c2816140dd565b9050919050565b600060208201905081810360008301526146e281614100565b9050919050565b6000602082019050818103600083015261470281614123565b9050919050565b6000602082019050818103600083015261472281614146565b9050919050565b6000602082019050818103600083015261474281614169565b9050919050565b600060208201905081810360008301526147628161418c565b9050919050565b60006020820190508181036000830152614782816141af565b9050919050565b600060208201905081810360008301526147a2816141d2565b9050919050565b600060208201905081810360008301526147c2816141f5565b9050919050565b600060208201905081810360008301526147e28161423b565b9050919050565b600060208201905081810360008301526148028161425e565b9050919050565b6000602082019050818103600083015261482281614281565b9050919050565b60006020820190508181036000830152614842816142a4565b9050919050565b60006020820190508181036000830152614862816142c7565b9050919050565b60006020820190508181036000830152614882816142ea565b9050919050565b600060208201905081810360008301526148a28161430d565b9050919050565b600060208201905081810360008301526148c281614330565b9050919050565b600060208201905081810360008301526148e281614353565b9050919050565b6000602082019050818103600083015261490281614376565b9050919050565b600060208201905061491e6000830184614399565b92915050565b600061492e61493f565b905061493a8282614be6565b919050565b6000604051905090565b600067ffffffffffffffff82111561496457614963614db4565b5b61496d82614e01565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006149dd82614b5b565b91506149e883614b5b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1d57614a1c614cc9565b5b828201905092915050565b6000614a3382614b5b565b9150614a3e83614b5b565b925082614a4e57614a4d614cf8565b5b828204905092915050565b6000614a6482614b5b565b9150614a6f83614b5b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aa857614aa7614cc9565b5b828202905092915050565b6000614abe82614b5b565b9150614ac983614b5b565b925082821015614adc57614adb614cc9565b5b828203905092915050565b6000614af282614b3b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614b9f578082015181840152602081019050614b84565b83811115614bae576000848401525b50505050565b60006002820490506001821680614bcc57607f821691505b60208210811415614be057614bdf614d56565b5b50919050565b614bef82614e01565b810181811067ffffffffffffffff82111715614c0e57614c0d614db4565b5b80604052505050565b6000614c2282614b5b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c5557614c54614cc9565b5b600182019050919050565b6000614c6b82614c7c565b9050919050565b6000819050919050565b6000614c8782614e12565b9050919050565b6000819050919050565b6000614ca382614b5b565b9150614cae83614b5b565b925082614cbe57614cbd614cf8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f6e6f745f6f6e5f70726573616c655f6c69737400000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6e6f745f656e6f7567685f6574685f73656e7400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6475706c69636174655f656e7472790000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f636c6f7365640000000000000000000000000000000000000000000000000000600082015250565b7f6261645f61646472657373000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f67696674696e675f6f74686572735f6e6f745f6f70656e000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f746f6f5f6d616e795f6e6674735f7065725f7472616e73616374696f6e000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f746f74616c5f737570706c795f70617373656400000000000000000000000000600082015250565b7f6e6f6e63655f616c72656164795f72616e000000000000000000000000000000600082015250565b7f6e6f745f616c6c6f7765645f746f5f6d696e7400000000000000000000000000600082015250565b61553681614ae7565b811461554157600080fd5b50565b61554d81614af9565b811461555857600080fd5b50565b61556481614b0f565b811461556f57600080fd5b50565b61557b81614b5b565b811461558657600080fd5b5056fea2646970667358221220fcd75c5f793ff15b422d5c791bc1fb06adb67f0f7166656643d3f8f38e1e3bb564736f6c63430008060033

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.