ETH Price: $3,168.26 (-7.81%)
Gas: 10 Gwei

Token

TeleptPass (TELEPT)
 

Overview

Max Total Supply

301 TELEPT

Holders

59

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
nakalya.eth
Balance
1 TELEPT
0x5bcd2bc57ba7b6b073c352fc75da9b01bf1b9fb6
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:
TeleptPass

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Pass.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract TeleptPass is ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;

    uint256 public maxMintCount = 1;
    uint256 public totalSupply = 300;
    uint256 public price = 0;

    bool public isMintActive = false;
    bool public requireInvitation = true;

    string baseURI = "https://pass.telept.xyz/token/";

    mapping(address => uint256) mintCount;
    mapping(address => bool) invitationList;

    constructor() ERC721("TeleptPass", "TELEPT") {}

    function mintNFT() public payable returns (uint256) {
        require(isMintActive, "minting is not active");

        if (price > 0) {
            require(msg.value >= price, "paid not enough");
        }

        return mintInternal(msg.sender);
    }

    function mintInternal(address to) internal returns (uint256) {
        uint256 newItemId = _tokenIds.current();

        if (maxMintCount > 0) {
            require(mintCount[to] < maxMintCount, "exceeded max mint count");
        }

        require(newItemId < totalSupply, "no more tokens");

        if (requireInvitation) {
            require(invitationList[to], "not in the invitation list");
        }

        _tokenIds.increment();

        uint256 tokenId = getFromattedDateFrom(newItemId);

        _mint(to, tokenId);
        _setTokenURI(
            tokenId,
            string(abi.encodePacked(baseURI, Strings.toString(tokenId)))
        );

        mintCount[to] += 1;

        return tokenId;
    }

    function airdrop(address[] calldata wAddresses) public onlyOwner {
        for (uint256 i = 0; i < wAddresses.length; i++) {
            mintInternal(wAddresses[i]);
        }
    }

    function setPrice(uint256 priceUpdate) public onlyOwner {
        price = priceUpdate;
    }

    function setTotalSupply(uint256 totalSupplyUpdate) public onlyOwner {
        totalSupply = totalSupplyUpdate;
    }

    function setMaxMintCount(uint256 maxMintCountUpdate) public onlyOwner {
        maxMintCount = maxMintCountUpdate;
    }

    function setMintActive(bool mintActiveUpdate) public onlyOwner {
        isMintActive = mintActiveUpdate;
    }

    function setRequireInvitation(bool requireInvitationUpdate)
        public
        onlyOwner
    {
        requireInvitation = requireInvitationUpdate;
    }

    function addToInvitationList(address[] calldata addresses)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            invitationList[addresses[i]] = true;
        }
    }

    function removeFromInvitationList(address[] calldata addresses)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            invitationList[addresses[i]] = false;
        }
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function getCurrentId() public view returns (uint256) {
        return _tokenIds.current();
    }

    uint256 constant START_TIMESTAMP = 1225411200;
    uint constant SECONDS_PER_DAY = 24 * 60 * 60;
    int constant OFFSET19700101 = 2440588;

    function getFromattedDateFrom(uint dayPassed)
        internal
        pure
        returns (uint date)
    {
        (uint year, uint mon, uint day) = timestampToDate(
            START_TIMESTAMP + dayPassed * SECONDS_PER_DAY
        );
        return year * 10000 + mon * 100 + day;
    }

    function _daysToDate(uint _days)
        internal
        pure
        returns (
            uint year,
            uint month,
            uint day
        )
    {
        int __days = int(_days);

        int L = __days + 68569 + OFFSET19700101;
        int N = (4 * L) / 146097;
        L = L - (146097 * N + 3) / 4;
        int _year = (4000 * (L + 1)) / 1461001;
        L = L - (1461 * _year) / 4 + 31;
        int _month = (80 * L) / 2447;
        int _day = L - (2447 * _month) / 80;
        L = _month / 11;
        _month = _month + 2 - 12 * L;
        _year = 100 * (N - 49) + _year + L;

        year = uint(_year);
        month = uint(_month);
        day = uint(_day);
    }

    function timestampToDate(uint timestamp)
        internal
        pure
        returns (
            uint year,
            uint month,
            uint day
        )
    {
        (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
    }
}

File 2 of 13 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally checks to see if a
     * token-specific URI was set for the token, and if so, it deletes the token URI from
     * the storage mapping.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 3 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 5 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 6 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToInvitationList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromInvitationList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requireInvitation","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintCountUpdate","type":"uint256"}],"name":"setMaxMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"mintActiveUpdate","type":"bool"}],"name":"setMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"priceUpdate","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"requireInvitationUpdate","type":"bool"}],"name":"setRequireInvitation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalSupplyUpdate","type":"uint256"}],"name":"setTotalSupply","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600160095561012c600a556000600b556000600c60006101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506040518060400160405280601e81526020017f68747470733a2f2f706173732e74656c6570742e78797a2f746f6b656e2f0000815250600d9080519060200190620000979291906200023a565b50348015620000a557600080fd5b506040518060400160405280600a81526020017f54656c65707450617373000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f54454c455054000000000000000000000000000000000000000000000000000081525081600090805190602001906200012a9291906200023a565b508060019080519060200190620001439291906200023a565b505050620001666200015a6200016c60201b60201c565b6200017460201b60201c565b6200034f565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002489062000319565b90600052602060002090601f0160209004810192826200026c5760008555620002b8565b82601f106200028757805160ff1916838001178555620002b8565b82800160010185558215620002b8579182015b82811115620002b75782518255916020019190600101906200029a565b5b509050620002c79190620002cb565b5090565b5b80821115620002e6576000816000905550600101620002cc565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033257607f821691505b60208210811415620003495762000348620002ea565b5b50919050565b613d8b806200035f6000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063f17f54a511610064578063f17f54a5146106bf578063f2fde38b146106e8578063f7ea7a3d14610711578063fa5f3a5d1461073a576101e3565b8063b88d4fde146105f3578063c87b56dd1461061c578063e985e9c514610659578063ee1cc94414610696576101e3565b806391b7f5ed116100d157806391b7f5ed1461054b57806395d89b4114610574578063a035b1fe1461059f578063a22cb465146105ca576101e3565b8063715018a6146104b5578063729ad39e146104cc5780637374b002146104f55780638da5cb5b14610520576101e3565b806332c60eef1161017a5780636352211e116101495780636352211e146103e75780636733feaa146104245780636c1438621461044d57806370a0823114610478576101e3565b806332c60eef146103515780633ccfd60b1461037c57806342842e0e146103935780635b92ac0d146103bc576101e3565b806311ce24b3116101b657806311ce24b3146102b657806314f710fe146102df57806318160ddd146102fd57806323b872dd14610328576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061269f565b610763565b60405161021c91906126e7565b60405180910390f35b34801561023157600080fd5b5061023a610845565b604051610247919061279b565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906127f3565b6108d7565b6040516102849190612861565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906128a8565b61091d565b005b3480156102c257600080fd5b506102dd60048036038101906102d8919061294d565b610a35565b005b6102e7610ae2565b6040516102f491906129a9565b60405180910390f35b34801561030957600080fd5b50610312610b92565b60405161031f91906129a9565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a91906129c4565b610b98565b005b34801561035d57600080fd5b50610366610bf8565b60405161037391906129a9565b60405180910390f35b34801561038857600080fd5b50610391610bfe565b005b34801561039f57600080fd5b506103ba60048036038101906103b591906129c4565b610c55565b005b3480156103c857600080fd5b506103d1610c75565b6040516103de91906126e7565b60405180910390f35b3480156103f357600080fd5b5061040e600480360381019061040991906127f3565b610c88565b60405161041b9190612861565b60405180910390f35b34801561043057600080fd5b5061044b6004803603810190610446919061294d565b610d3a565b005b34801561045957600080fd5b50610462610de7565b60405161046f91906129a9565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612a17565b610df8565b6040516104ac91906129a9565b60405180910390f35b3480156104c157600080fd5b506104ca610eb0565b005b3480156104d857600080fd5b506104f360048036038101906104ee919061294d565b610ec4565b005b34801561050157600080fd5b5061050a610f23565b60405161051791906126e7565b60405180910390f35b34801561052c57600080fd5b50610535610f36565b6040516105429190612861565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d91906127f3565b610f60565b005b34801561058057600080fd5b50610589610f72565b604051610596919061279b565b60405180910390f35b3480156105ab57600080fd5b506105b4611004565b6040516105c191906129a9565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190612a70565b61100a565b005b3480156105ff57600080fd5b5061061a60048036038101906106159190612be0565b611020565b005b34801561062857600080fd5b50610643600480360381019061063e91906127f3565b611082565b604051610650919061279b565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190612c63565b611195565b60405161068d91906126e7565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190612ca3565b611229565b005b3480156106cb57600080fd5b506106e660048036038101906106e191906127f3565b61124e565b005b3480156106f457600080fd5b5061070f600480360381019061070a9190612a17565b611260565b005b34801561071d57600080fd5b50610738600480360381019061073391906127f3565b6112e4565b005b34801561074657600080fd5b50610761600480360381019061075c9190612ca3565b6112f6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083e575061083d8261131b565b5b9050919050565b60606000805461085490612cff565b80601f016020809104026020016040519081016040528092919081815260200182805461088090612cff565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b60006108e282611385565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092882610c88565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099090612da3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b86113d0565b73ffffffffffffffffffffffffffffffffffffffff1614806109e757506109e6816109e16113d0565b611195565b5b610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90612e35565b60405180910390fd5b610a3083836113d8565b505050565b610a3d611491565b60005b82829050811015610add576000600f6000858585818110610a6457610a63612e55565b5b9050602002016020810190610a799190612a17565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ad590612eb3565b915050610a40565b505050565b6000600c60009054906101000a900460ff16610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90612f48565b60405180910390fd5b6000600b541115610b8457600b54341015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90612fb4565b60405180910390fd5b5b610b8d3361150f565b905090565b600a5481565b610ba9610ba36113d0565b82611749565b610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90613046565b60405180910390fd5b610bf38383836117de565b505050565b60095481565b610c06611491565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c51573d6000803e3d6000fd5b5050565b610c7083838360405180602001604052806000815250611020565b505050565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d28906130b2565b60405180910390fd5b80915050919050565b610d42611491565b60005b82829050811015610de2576001600f6000858585818110610d6957610d68612e55565b5b9050602002016020810190610d7e9190612a17565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610dda90612eb3565b915050610d45565b505050565b6000610df36008611a45565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090613144565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eb8611491565b610ec26000611a53565b565b610ecc611491565b60005b82829050811015610f1e57610f0a838383818110610ef057610eef612e55565b5b9050602002016020810190610f059190612a17565b61150f565b508080610f1690612eb3565b915050610ecf565b505050565b600c60019054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f68611491565b80600b8190555050565b606060018054610f8190612cff565b80601f0160208091040260200160405190810160405280929190818152602001828054610fad90612cff565b8015610ffa5780601f10610fcf57610100808354040283529160200191610ffa565b820191906000526020600020905b815481529060010190602001808311610fdd57829003601f168201915b5050505050905090565b600b5481565b61101c6110156113d0565b8383611b19565b5050565b61103161102b6113d0565b83611749565b611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790613046565b60405180910390fd5b61107c84848484611c86565b50505050565b606061108d82611385565b60006006600084815260200190815260200160002080546110ad90612cff565b80601f01602080910402602001604051908101604052809291908181526020018280546110d990612cff565b80156111265780601f106110fb57610100808354040283529160200191611126565b820191906000526020600020905b81548152906001019060200180831161110957829003601f168201915b505050505090506000611137611ce2565b905060008151141561114d578192505050611190565b60008251111561118257808260405160200161116a9291906131a0565b60405160208183030381529060405292505050611190565b61118b84611cf9565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611231611491565b80600c60006101000a81548160ff02191690831515021790555050565b611256611491565b8060098190555050565b611268611491565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90613236565b60405180910390fd5b6112e181611a53565b50565b6112ec611491565b80600a8190555050565b6112fe611491565b80600c60016101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61138e81611d61565b6113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c4906130b2565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661144b83610c88565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6114996113d0565b73ffffffffffffffffffffffffffffffffffffffff166114b7610f36565b73ffffffffffffffffffffffffffffffffffffffff161461150d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611504906132a2565b60405180910390fd5b565b60008061151c6008611a45565b9050600060095411156115ad57600954600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a39061330e565b60405180910390fd5b5b600a5481106115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e89061337a565b60405180910390fd5b600c60019054906101000a900460ff161561169357600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611689906133e6565b60405180910390fd5b5b61169d6008611dcd565b60006116a882611de3565b90506116b48482611e4f565b6116e881600d6116c384612029565b6040516020016116d492919061349a565b60405160208183030381529060405261218a565b6001600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461173891906134be565b925050819055508092505050919050565b60008061175583610c88565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061179757506117968185611195565b5b806117d557508373ffffffffffffffffffffffffffffffffffffffff166117bd846108d7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117fe82610c88565b73ffffffffffffffffffffffffffffffffffffffff1614611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b90613586565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb90613618565b60405180910390fd5b6118cf8383836121fe565b6118da6000826113d8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461192a9190613638565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461198191906134be565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a40838383612203565b505050565b600081600001549050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f906136b8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c7991906126e7565b60405180910390a3505050565b611c918484846117de565b611c9d84848484612208565b611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd39061374a565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060611d0482611385565b6000611d0e611ce2565b90506000815111611d2e5760405180602001604052806000815250611d59565b80611d3884612029565b604051602001611d499291906131a0565b6040516020818303038152906040525b915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6001816000016000828254019250508190555050565b600080600080611e0f6201518086611dfb919061376a565b63490a4a80611e0a91906134be565b61239f565b92509250925080606483611e23919061376a565b61271085611e31919061376a565b611e3b91906134be565b611e4591906134be565b9350505050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690613810565b60405180910390fd5b611ec881611d61565b15611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff9061387c565b60405180910390fd5b611f14600083836121fe565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f6491906134be565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461202560008383612203565b5050565b60606000821415612071576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612185565b600082905060005b600082146120a357808061208c90612eb3565b915050600a8261209c91906138cb565b9150612079565b60008167ffffffffffffffff8111156120bf576120be612ab5565b5b6040519080825280601f01601f1916602001820160405280156120f15781602001600182028036833780820191505090505b5090505b6000851461217e5760018261210a9190613638565b9150600a8561211991906138fc565b603061212591906134be565b60f81b81838151811061213b5761213a612e55565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561217791906138cb565b94506120f5565b8093505050505b919050565b61219382611d61565b6121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c99061399f565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906121f9929190612590565b505050565b505050565b505050565b60006122298473ffffffffffffffffffffffffffffffffffffffff166123ce565b15612392578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122526113d0565b8786866040518563ffffffff1660e01b81526004016122749493929190613a14565b602060405180830381600087803b15801561228e57600080fd5b505af19250505080156122bf57506040513d601f19601f820116820180604052508101906122bc9190613a75565b60015b612342573d80600081146122ef576040519150601f19603f3d011682016040523d82523d6000602084013e6122f4565b606091505b5060008151141561233a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123319061374a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612397565b600190505b949350505050565b60008060006123bb62015180856123b691906138cb565b6123f1565b8093508194508295505050509193909250565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600080849050600062253d8c62010bd98361240f9190613aac565b6124199190613aac565b9050600062023ab182600461242e9190613b40565b6124389190613c57565b9050600460038262023ab161244d9190613b40565b6124579190613aac565b6124619190613c57565b8261246c9190613cc1565b9150600062164b096001846124819190613aac565b610fa061248e9190613b40565b6124989190613c57565b9050601f6004826105b56124ac9190613b40565b6124b69190613c57565b846124c19190613cc1565b6124cb9190613aac565b9250600061098f8460506124df9190613b40565b6124e99190613c57565b9050600060508261098f6124fd9190613b40565b6125079190613c57565b856125129190613cc1565b9050600b826125219190613c57565b945084600c6125309190613b40565b60028361253d9190613aac565b6125479190613cc1565b915084836031866125589190613cc1565b60646125649190613b40565b61256e9190613aac565b6125789190613aac565b92508298508197508096505050505050509193909250565b82805461259c90612cff565b90600052602060002090601f0160209004810192826125be5760008555612605565b82601f106125d757805160ff1916838001178555612605565b82800160010185558215612605579182015b828111156126045782518255916020019190600101906125e9565b5b5090506126129190612616565b5090565b5b8082111561262f576000816000905550600101612617565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61267c81612647565b811461268757600080fd5b50565b60008135905061269981612673565b92915050565b6000602082840312156126b5576126b461263d565b5b60006126c38482850161268a565b91505092915050565b60008115159050919050565b6126e1816126cc565b82525050565b60006020820190506126fc60008301846126d8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561273c578082015181840152602081019050612721565b8381111561274b576000848401525b50505050565b6000601f19601f8301169050919050565b600061276d82612702565b612777818561270d565b935061278781856020860161271e565b61279081612751565b840191505092915050565b600060208201905081810360008301526127b58184612762565b905092915050565b6000819050919050565b6127d0816127bd565b81146127db57600080fd5b50565b6000813590506127ed816127c7565b92915050565b6000602082840312156128095761280861263d565b5b6000612817848285016127de565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061284b82612820565b9050919050565b61285b81612840565b82525050565b60006020820190506128766000830184612852565b92915050565b61288581612840565b811461289057600080fd5b50565b6000813590506128a28161287c565b92915050565b600080604083850312156128bf576128be61263d565b5b60006128cd85828601612893565b92505060206128de858286016127de565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261290d5761290c6128e8565b5b8235905067ffffffffffffffff81111561292a576129296128ed565b5b602083019150836020820283011115612946576129456128f2565b5b9250929050565b600080602083850312156129645761296361263d565b5b600083013567ffffffffffffffff81111561298257612981612642565b5b61298e858286016128f7565b92509250509250929050565b6129a3816127bd565b82525050565b60006020820190506129be600083018461299a565b92915050565b6000806000606084860312156129dd576129dc61263d565b5b60006129eb86828701612893565b93505060206129fc86828701612893565b9250506040612a0d868287016127de565b9150509250925092565b600060208284031215612a2d57612a2c61263d565b5b6000612a3b84828501612893565b91505092915050565b612a4d816126cc565b8114612a5857600080fd5b50565b600081359050612a6a81612a44565b92915050565b60008060408385031215612a8757612a8661263d565b5b6000612a9585828601612893565b9250506020612aa685828601612a5b565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612aed82612751565b810181811067ffffffffffffffff82111715612b0c57612b0b612ab5565b5b80604052505050565b6000612b1f612633565b9050612b2b8282612ae4565b919050565b600067ffffffffffffffff821115612b4b57612b4a612ab5565b5b612b5482612751565b9050602081019050919050565b82818337600083830152505050565b6000612b83612b7e84612b30565b612b15565b905082815260208101848484011115612b9f57612b9e612ab0565b5b612baa848285612b61565b509392505050565b600082601f830112612bc757612bc66128e8565b5b8135612bd7848260208601612b70565b91505092915050565b60008060008060808587031215612bfa57612bf961263d565b5b6000612c0887828801612893565b9450506020612c1987828801612893565b9350506040612c2a878288016127de565b925050606085013567ffffffffffffffff811115612c4b57612c4a612642565b5b612c5787828801612bb2565b91505092959194509250565b60008060408385031215612c7a57612c7961263d565b5b6000612c8885828601612893565b9250506020612c9985828601612893565b9150509250929050565b600060208284031215612cb957612cb861263d565b5b6000612cc784828501612a5b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d1757607f821691505b60208210811415612d2b57612d2a612cd0565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d8d60218361270d565b9150612d9882612d31565b604082019050919050565b60006020820190508181036000830152612dbc81612d80565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612e1f603e8361270d565b9150612e2a82612dc3565b604082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ebe826127bd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ef157612ef0612e84565b5b600182019050919050565b7f6d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b6000612f3260158361270d565b9150612f3d82612efc565b602082019050919050565b60006020820190508181036000830152612f6181612f25565b9050919050565b7f70616964206e6f7420656e6f7567680000000000000000000000000000000000600082015250565b6000612f9e600f8361270d565b9150612fa982612f68565b602082019050919050565b60006020820190508181036000830152612fcd81612f91565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613030602e8361270d565b915061303b82612fd4565b604082019050919050565b6000602082019050818103600083015261305f81613023565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061309c60188361270d565b91506130a782613066565b602082019050919050565b600060208201905081810360008301526130cb8161308f565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061312e60298361270d565b9150613139826130d2565b604082019050919050565b6000602082019050818103600083015261315d81613121565b9050919050565b600081905092915050565b600061317a82612702565b6131848185613164565b935061319481856020860161271e565b80840191505092915050565b60006131ac828561316f565b91506131b8828461316f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061322060268361270d565b915061322b826131c4565b604082019050919050565b6000602082019050818103600083015261324f81613213565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061328c60208361270d565b915061329782613256565b602082019050919050565b600060208201905081810360008301526132bb8161327f565b9050919050565b7f6578636565646564206d6178206d696e7420636f756e74000000000000000000600082015250565b60006132f860178361270d565b9150613303826132c2565b602082019050919050565b60006020820190508181036000830152613327816132eb565b9050919050565b7f6e6f206d6f726520746f6b656e73000000000000000000000000000000000000600082015250565b6000613364600e8361270d565b915061336f8261332e565b602082019050919050565b6000602082019050818103600083015261339381613357565b9050919050565b7f6e6f7420696e2074686520696e7669746174696f6e206c697374000000000000600082015250565b60006133d0601a8361270d565b91506133db8261339a565b602082019050919050565b600060208201905081810360008301526133ff816133c3565b9050919050565b60008190508160005260206000209050919050565b6000815461342881612cff565b6134328186613164565b9450600182166000811461344d576001811461345e57613491565b60ff19831686528186019350613491565b61346785613406565b60005b838110156134895781548189015260018201915060208101905061346a565b838801955050505b50505092915050565b60006134a6828561341b565b91506134b2828461316f565b91508190509392505050565b60006134c9826127bd565b91506134d4836127bd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561350957613508612e84565b5b828201905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061357060258361270d565b915061357b82613514565b604082019050919050565b6000602082019050818103600083015261359f81613563565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061360260248361270d565b915061360d826135a6565b604082019050919050565b60006020820190508181036000830152613631816135f5565b9050919050565b6000613643826127bd565b915061364e836127bd565b92508282101561366157613660612e84565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006136a260198361270d565b91506136ad8261366c565b602082019050919050565b600060208201905081810360008301526136d181613695565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061373460328361270d565b915061373f826136d8565b604082019050919050565b6000602082019050818103600083015261376381613727565b9050919050565b6000613775826127bd565b9150613780836127bd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137b9576137b8612e84565b5b828202905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006137fa60208361270d565b9150613805826137c4565b602082019050919050565b60006020820190508181036000830152613829816137ed565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613866601c8361270d565b915061387182613830565b602082019050919050565b6000602082019050818103600083015261389581613859565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138d6826127bd565b91506138e1836127bd565b9250826138f1576138f061389c565b5b828204905092915050565b6000613907826127bd565b9150613912836127bd565b9250826139225761392161389c565b5b828206905092915050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613989602e8361270d565b91506139948261392d565b604082019050919050565b600060208201905081810360008301526139b88161397c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139e6826139bf565b6139f081856139ca565b9350613a0081856020860161271e565b613a0981612751565b840191505092915050565b6000608082019050613a296000830187612852565b613a366020830186612852565b613a43604083018561299a565b8181036060830152613a5581846139db565b905095945050505050565b600081519050613a6f81612673565b92915050565b600060208284031215613a8b57613a8a61263d565b5b6000613a9984828501613a60565b91505092915050565b6000819050919050565b6000613ab782613aa2565b9150613ac283613aa2565b9250817f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03831360008312151615613afd57613afc612e84565b5b817f8000000000000000000000000000000000000000000000000000000000000000038312600083121615613b3557613b34612e84565b5b828201905092915050565b6000613b4b82613aa2565b9150613b5683613aa2565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482116000841360008413161615613b9557613b94612e84565b5b817f80000000000000000000000000000000000000000000000000000000000000000583126000841260008413161615613bd257613bd1612e84565b5b827f80000000000000000000000000000000000000000000000000000000000000000582126000841360008412161615613c0f57613c0e612e84565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0582126000841260008412161615613c4c57613c4b612e84565b5b828202905092915050565b6000613c6282613aa2565b9150613c6d83613aa2565b925082613c7d57613c7c61389c565b5b600160000383147f800000000000000000000000000000000000000000000000000000000000000083141615613cb657613cb5612e84565b5b828205905092915050565b6000613ccc82613aa2565b9150613cd783613aa2565b9250827f800000000000000000000000000000000000000000000000000000000000000001821260008412151615613d1257613d11612e84565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018213600084121615613d4a57613d49612e84565b5b82820390509291505056fea2646970667358221220e2b2ceedf90aac352ae6fdd9ce6a881fb8587c6ab3829aa2aa804dccbacf5c5e64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063f17f54a511610064578063f17f54a5146106bf578063f2fde38b146106e8578063f7ea7a3d14610711578063fa5f3a5d1461073a576101e3565b8063b88d4fde146105f3578063c87b56dd1461061c578063e985e9c514610659578063ee1cc94414610696576101e3565b806391b7f5ed116100d157806391b7f5ed1461054b57806395d89b4114610574578063a035b1fe1461059f578063a22cb465146105ca576101e3565b8063715018a6146104b5578063729ad39e146104cc5780637374b002146104f55780638da5cb5b14610520576101e3565b806332c60eef1161017a5780636352211e116101495780636352211e146103e75780636733feaa146104245780636c1438621461044d57806370a0823114610478576101e3565b806332c60eef146103515780633ccfd60b1461037c57806342842e0e146103935780635b92ac0d146103bc576101e3565b806311ce24b3116101b657806311ce24b3146102b657806314f710fe146102df57806318160ddd146102fd57806323b872dd14610328576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061269f565b610763565b60405161021c91906126e7565b60405180910390f35b34801561023157600080fd5b5061023a610845565b604051610247919061279b565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906127f3565b6108d7565b6040516102849190612861565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906128a8565b61091d565b005b3480156102c257600080fd5b506102dd60048036038101906102d8919061294d565b610a35565b005b6102e7610ae2565b6040516102f491906129a9565b60405180910390f35b34801561030957600080fd5b50610312610b92565b60405161031f91906129a9565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a91906129c4565b610b98565b005b34801561035d57600080fd5b50610366610bf8565b60405161037391906129a9565b60405180910390f35b34801561038857600080fd5b50610391610bfe565b005b34801561039f57600080fd5b506103ba60048036038101906103b591906129c4565b610c55565b005b3480156103c857600080fd5b506103d1610c75565b6040516103de91906126e7565b60405180910390f35b3480156103f357600080fd5b5061040e600480360381019061040991906127f3565b610c88565b60405161041b9190612861565b60405180910390f35b34801561043057600080fd5b5061044b6004803603810190610446919061294d565b610d3a565b005b34801561045957600080fd5b50610462610de7565b60405161046f91906129a9565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190612a17565b610df8565b6040516104ac91906129a9565b60405180910390f35b3480156104c157600080fd5b506104ca610eb0565b005b3480156104d857600080fd5b506104f360048036038101906104ee919061294d565b610ec4565b005b34801561050157600080fd5b5061050a610f23565b60405161051791906126e7565b60405180910390f35b34801561052c57600080fd5b50610535610f36565b6040516105429190612861565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d91906127f3565b610f60565b005b34801561058057600080fd5b50610589610f72565b604051610596919061279b565b60405180910390f35b3480156105ab57600080fd5b506105b4611004565b6040516105c191906129a9565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190612a70565b61100a565b005b3480156105ff57600080fd5b5061061a60048036038101906106159190612be0565b611020565b005b34801561062857600080fd5b50610643600480360381019061063e91906127f3565b611082565b604051610650919061279b565b60405180910390f35b34801561066557600080fd5b50610680600480360381019061067b9190612c63565b611195565b60405161068d91906126e7565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190612ca3565b611229565b005b3480156106cb57600080fd5b506106e660048036038101906106e191906127f3565b61124e565b005b3480156106f457600080fd5b5061070f600480360381019061070a9190612a17565b611260565b005b34801561071d57600080fd5b50610738600480360381019061073391906127f3565b6112e4565b005b34801561074657600080fd5b50610761600480360381019061075c9190612ca3565b6112f6565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083e575061083d8261131b565b5b9050919050565b60606000805461085490612cff565b80601f016020809104026020016040519081016040528092919081815260200182805461088090612cff565b80156108cd5780601f106108a2576101008083540402835291602001916108cd565b820191906000526020600020905b8154815290600101906020018083116108b057829003601f168201915b5050505050905090565b60006108e282611385565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092882610c88565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099090612da3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b86113d0565b73ffffffffffffffffffffffffffffffffffffffff1614806109e757506109e6816109e16113d0565b611195565b5b610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d90612e35565b60405180910390fd5b610a3083836113d8565b505050565b610a3d611491565b60005b82829050811015610add576000600f6000858585818110610a6457610a63612e55565b5b9050602002016020810190610a799190612a17565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ad590612eb3565b915050610a40565b505050565b6000600c60009054906101000a900460ff16610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90612f48565b60405180910390fd5b6000600b541115610b8457600b54341015610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90612fb4565b60405180910390fd5b5b610b8d3361150f565b905090565b600a5481565b610ba9610ba36113d0565b82611749565b610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90613046565b60405180910390fd5b610bf38383836117de565b505050565b60095481565b610c06611491565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c51573d6000803e3d6000fd5b5050565b610c7083838360405180602001604052806000815250611020565b505050565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d28906130b2565b60405180910390fd5b80915050919050565b610d42611491565b60005b82829050811015610de2576001600f6000858585818110610d6957610d68612e55565b5b9050602002016020810190610d7e9190612a17565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610dda90612eb3565b915050610d45565b505050565b6000610df36008611a45565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090613144565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610eb8611491565b610ec26000611a53565b565b610ecc611491565b60005b82829050811015610f1e57610f0a838383818110610ef057610eef612e55565b5b9050602002016020810190610f059190612a17565b61150f565b508080610f1690612eb3565b915050610ecf565b505050565b600c60019054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f68611491565b80600b8190555050565b606060018054610f8190612cff565b80601f0160208091040260200160405190810160405280929190818152602001828054610fad90612cff565b8015610ffa5780601f10610fcf57610100808354040283529160200191610ffa565b820191906000526020600020905b815481529060010190602001808311610fdd57829003601f168201915b5050505050905090565b600b5481565b61101c6110156113d0565b8383611b19565b5050565b61103161102b6113d0565b83611749565b611070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106790613046565b60405180910390fd5b61107c84848484611c86565b50505050565b606061108d82611385565b60006006600084815260200190815260200160002080546110ad90612cff565b80601f01602080910402602001604051908101604052809291908181526020018280546110d990612cff565b80156111265780601f106110fb57610100808354040283529160200191611126565b820191906000526020600020905b81548152906001019060200180831161110957829003601f168201915b505050505090506000611137611ce2565b905060008151141561114d578192505050611190565b60008251111561118257808260405160200161116a9291906131a0565b60405160208183030381529060405292505050611190565b61118b84611cf9565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611231611491565b80600c60006101000a81548160ff02191690831515021790555050565b611256611491565b8060098190555050565b611268611491565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90613236565b60405180910390fd5b6112e181611a53565b50565b6112ec611491565b80600a8190555050565b6112fe611491565b80600c60016101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61138e81611d61565b6113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c4906130b2565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661144b83610c88565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6114996113d0565b73ffffffffffffffffffffffffffffffffffffffff166114b7610f36565b73ffffffffffffffffffffffffffffffffffffffff161461150d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611504906132a2565b60405180910390fd5b565b60008061151c6008611a45565b9050600060095411156115ad57600954600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106115ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a39061330e565b60405180910390fd5b5b600a5481106115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e89061337a565b60405180910390fd5b600c60019054906101000a900460ff161561169357600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611689906133e6565b60405180910390fd5b5b61169d6008611dcd565b60006116a882611de3565b90506116b48482611e4f565b6116e881600d6116c384612029565b6040516020016116d492919061349a565b60405160208183030381529060405261218a565b6001600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461173891906134be565b925050819055508092505050919050565b60008061175583610c88565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061179757506117968185611195565b5b806117d557508373ffffffffffffffffffffffffffffffffffffffff166117bd846108d7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117fe82610c88565b73ffffffffffffffffffffffffffffffffffffffff1614611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b90613586565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bb90613618565b60405180910390fd5b6118cf8383836121fe565b6118da6000826113d8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461192a9190613638565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461198191906134be565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a40838383612203565b505050565b600081600001549050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7f906136b8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c7991906126e7565b60405180910390a3505050565b611c918484846117de565b611c9d84848484612208565b611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd39061374a565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060611d0482611385565b6000611d0e611ce2565b90506000815111611d2e5760405180602001604052806000815250611d59565b80611d3884612029565b604051602001611d499291906131a0565b6040516020818303038152906040525b915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6001816000016000828254019250508190555050565b600080600080611e0f6201518086611dfb919061376a565b63490a4a80611e0a91906134be565b61239f565b92509250925080606483611e23919061376a565b61271085611e31919061376a565b611e3b91906134be565b611e4591906134be565b9350505050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690613810565b60405180910390fd5b611ec881611d61565b15611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff9061387c565b60405180910390fd5b611f14600083836121fe565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f6491906134be565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461202560008383612203565b5050565b60606000821415612071576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612185565b600082905060005b600082146120a357808061208c90612eb3565b915050600a8261209c91906138cb565b9150612079565b60008167ffffffffffffffff8111156120bf576120be612ab5565b5b6040519080825280601f01601f1916602001820160405280156120f15781602001600182028036833780820191505090505b5090505b6000851461217e5760018261210a9190613638565b9150600a8561211991906138fc565b603061212591906134be565b60f81b81838151811061213b5761213a612e55565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561217791906138cb565b94506120f5565b8093505050505b919050565b61219382611d61565b6121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c99061399f565b60405180910390fd5b806006600084815260200190815260200160002090805190602001906121f9929190612590565b505050565b505050565b505050565b60006122298473ffffffffffffffffffffffffffffffffffffffff166123ce565b15612392578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122526113d0565b8786866040518563ffffffff1660e01b81526004016122749493929190613a14565b602060405180830381600087803b15801561228e57600080fd5b505af19250505080156122bf57506040513d601f19601f820116820180604052508101906122bc9190613a75565b60015b612342573d80600081146122ef576040519150601f19603f3d011682016040523d82523d6000602084013e6122f4565b606091505b5060008151141561233a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123319061374a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612397565b600190505b949350505050565b60008060006123bb62015180856123b691906138cb565b6123f1565b8093508194508295505050509193909250565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600080849050600062253d8c62010bd98361240f9190613aac565b6124199190613aac565b9050600062023ab182600461242e9190613b40565b6124389190613c57565b9050600460038262023ab161244d9190613b40565b6124579190613aac565b6124619190613c57565b8261246c9190613cc1565b9150600062164b096001846124819190613aac565b610fa061248e9190613b40565b6124989190613c57565b9050601f6004826105b56124ac9190613b40565b6124b69190613c57565b846124c19190613cc1565b6124cb9190613aac565b9250600061098f8460506124df9190613b40565b6124e99190613c57565b9050600060508261098f6124fd9190613b40565b6125079190613c57565b856125129190613cc1565b9050600b826125219190613c57565b945084600c6125309190613b40565b60028361253d9190613aac565b6125479190613cc1565b915084836031866125589190613cc1565b60646125649190613b40565b61256e9190613aac565b6125789190613aac565b92508298508197508096505050505050509193909250565b82805461259c90612cff565b90600052602060002090601f0160209004810192826125be5760008555612605565b82601f106125d757805160ff1916838001178555612605565b82800160010185558215612605579182015b828111156126045782518255916020019190600101906125e9565b5b5090506126129190612616565b5090565b5b8082111561262f576000816000905550600101612617565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61267c81612647565b811461268757600080fd5b50565b60008135905061269981612673565b92915050565b6000602082840312156126b5576126b461263d565b5b60006126c38482850161268a565b91505092915050565b60008115159050919050565b6126e1816126cc565b82525050565b60006020820190506126fc60008301846126d8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561273c578082015181840152602081019050612721565b8381111561274b576000848401525b50505050565b6000601f19601f8301169050919050565b600061276d82612702565b612777818561270d565b935061278781856020860161271e565b61279081612751565b840191505092915050565b600060208201905081810360008301526127b58184612762565b905092915050565b6000819050919050565b6127d0816127bd565b81146127db57600080fd5b50565b6000813590506127ed816127c7565b92915050565b6000602082840312156128095761280861263d565b5b6000612817848285016127de565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061284b82612820565b9050919050565b61285b81612840565b82525050565b60006020820190506128766000830184612852565b92915050565b61288581612840565b811461289057600080fd5b50565b6000813590506128a28161287c565b92915050565b600080604083850312156128bf576128be61263d565b5b60006128cd85828601612893565b92505060206128de858286016127de565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261290d5761290c6128e8565b5b8235905067ffffffffffffffff81111561292a576129296128ed565b5b602083019150836020820283011115612946576129456128f2565b5b9250929050565b600080602083850312156129645761296361263d565b5b600083013567ffffffffffffffff81111561298257612981612642565b5b61298e858286016128f7565b92509250509250929050565b6129a3816127bd565b82525050565b60006020820190506129be600083018461299a565b92915050565b6000806000606084860312156129dd576129dc61263d565b5b60006129eb86828701612893565b93505060206129fc86828701612893565b9250506040612a0d868287016127de565b9150509250925092565b600060208284031215612a2d57612a2c61263d565b5b6000612a3b84828501612893565b91505092915050565b612a4d816126cc565b8114612a5857600080fd5b50565b600081359050612a6a81612a44565b92915050565b60008060408385031215612a8757612a8661263d565b5b6000612a9585828601612893565b9250506020612aa685828601612a5b565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612aed82612751565b810181811067ffffffffffffffff82111715612b0c57612b0b612ab5565b5b80604052505050565b6000612b1f612633565b9050612b2b8282612ae4565b919050565b600067ffffffffffffffff821115612b4b57612b4a612ab5565b5b612b5482612751565b9050602081019050919050565b82818337600083830152505050565b6000612b83612b7e84612b30565b612b15565b905082815260208101848484011115612b9f57612b9e612ab0565b5b612baa848285612b61565b509392505050565b600082601f830112612bc757612bc66128e8565b5b8135612bd7848260208601612b70565b91505092915050565b60008060008060808587031215612bfa57612bf961263d565b5b6000612c0887828801612893565b9450506020612c1987828801612893565b9350506040612c2a878288016127de565b925050606085013567ffffffffffffffff811115612c4b57612c4a612642565b5b612c5787828801612bb2565b91505092959194509250565b60008060408385031215612c7a57612c7961263d565b5b6000612c8885828601612893565b9250506020612c9985828601612893565b9150509250929050565b600060208284031215612cb957612cb861263d565b5b6000612cc784828501612a5b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d1757607f821691505b60208210811415612d2b57612d2a612cd0565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d8d60218361270d565b9150612d9882612d31565b604082019050919050565b60006020820190508181036000830152612dbc81612d80565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612e1f603e8361270d565b9150612e2a82612dc3565b604082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ebe826127bd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ef157612ef0612e84565b5b600182019050919050565b7f6d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b6000612f3260158361270d565b9150612f3d82612efc565b602082019050919050565b60006020820190508181036000830152612f6181612f25565b9050919050565b7f70616964206e6f7420656e6f7567680000000000000000000000000000000000600082015250565b6000612f9e600f8361270d565b9150612fa982612f68565b602082019050919050565b60006020820190508181036000830152612fcd81612f91565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613030602e8361270d565b915061303b82612fd4565b604082019050919050565b6000602082019050818103600083015261305f81613023565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061309c60188361270d565b91506130a782613066565b602082019050919050565b600060208201905081810360008301526130cb8161308f565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b600061312e60298361270d565b9150613139826130d2565b604082019050919050565b6000602082019050818103600083015261315d81613121565b9050919050565b600081905092915050565b600061317a82612702565b6131848185613164565b935061319481856020860161271e565b80840191505092915050565b60006131ac828561316f565b91506131b8828461316f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061322060268361270d565b915061322b826131c4565b604082019050919050565b6000602082019050818103600083015261324f81613213565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061328c60208361270d565b915061329782613256565b602082019050919050565b600060208201905081810360008301526132bb8161327f565b9050919050565b7f6578636565646564206d6178206d696e7420636f756e74000000000000000000600082015250565b60006132f860178361270d565b9150613303826132c2565b602082019050919050565b60006020820190508181036000830152613327816132eb565b9050919050565b7f6e6f206d6f726520746f6b656e73000000000000000000000000000000000000600082015250565b6000613364600e8361270d565b915061336f8261332e565b602082019050919050565b6000602082019050818103600083015261339381613357565b9050919050565b7f6e6f7420696e2074686520696e7669746174696f6e206c697374000000000000600082015250565b60006133d0601a8361270d565b91506133db8261339a565b602082019050919050565b600060208201905081810360008301526133ff816133c3565b9050919050565b60008190508160005260206000209050919050565b6000815461342881612cff565b6134328186613164565b9450600182166000811461344d576001811461345e57613491565b60ff19831686528186019350613491565b61346785613406565b60005b838110156134895781548189015260018201915060208101905061346a565b838801955050505b50505092915050565b60006134a6828561341b565b91506134b2828461316f565b91508190509392505050565b60006134c9826127bd565b91506134d4836127bd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561350957613508612e84565b5b828201905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061357060258361270d565b915061357b82613514565b604082019050919050565b6000602082019050818103600083015261359f81613563565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061360260248361270d565b915061360d826135a6565b604082019050919050565b60006020820190508181036000830152613631816135f5565b9050919050565b6000613643826127bd565b915061364e836127bd565b92508282101561366157613660612e84565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006136a260198361270d565b91506136ad8261366c565b602082019050919050565b600060208201905081810360008301526136d181613695565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061373460328361270d565b915061373f826136d8565b604082019050919050565b6000602082019050818103600083015261376381613727565b9050919050565b6000613775826127bd565b9150613780836127bd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137b9576137b8612e84565b5b828202905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006137fa60208361270d565b9150613805826137c4565b602082019050919050565b60006020820190508181036000830152613829816137ed565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613866601c8361270d565b915061387182613830565b602082019050919050565b6000602082019050818103600083015261389581613859565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138d6826127bd565b91506138e1836127bd565b9250826138f1576138f061389c565b5b828204905092915050565b6000613907826127bd565b9150613912836127bd565b9250826139225761392161389c565b5b828206905092915050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613989602e8361270d565b91506139948261392d565b604082019050919050565b600060208201905081810360008301526139b88161397c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139e6826139bf565b6139f081856139ca565b9350613a0081856020860161271e565b613a0981612751565b840191505092915050565b6000608082019050613a296000830187612852565b613a366020830186612852565b613a43604083018561299a565b8181036060830152613a5581846139db565b905095945050505050565b600081519050613a6f81612673565b92915050565b600060208284031215613a8b57613a8a61263d565b5b6000613a9984828501613a60565b91505092915050565b6000819050919050565b6000613ab782613aa2565b9150613ac283613aa2565b9250817f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03831360008312151615613afd57613afc612e84565b5b817f8000000000000000000000000000000000000000000000000000000000000000038312600083121615613b3557613b34612e84565b5b828201905092915050565b6000613b4b82613aa2565b9150613b5683613aa2565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482116000841360008413161615613b9557613b94612e84565b5b817f80000000000000000000000000000000000000000000000000000000000000000583126000841260008413161615613bd257613bd1612e84565b5b827f80000000000000000000000000000000000000000000000000000000000000000582126000841360008412161615613c0f57613c0e612e84565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0582126000841260008412161615613c4c57613c4b612e84565b5b828202905092915050565b6000613c6282613aa2565b9150613c6d83613aa2565b925082613c7d57613c7c61389c565b5b600160000383147f800000000000000000000000000000000000000000000000000000000000000083141615613cb657613cb5612e84565b5b828205905092915050565b6000613ccc82613aa2565b9150613cd783613aa2565b9250827f800000000000000000000000000000000000000000000000000000000000000001821260008412151615613d1257613d11612e84565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff018213600084121615613d4a57613d49612e84565b5b82820390509291505056fea2646970667358221220e2b2ceedf90aac352ae6fdd9ce6a881fb8587c6ab3829aa2aa804dccbacf5c5e64736f6c63430008090033

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

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