ETH Price: $3,308.99 (-1.74%)
Gas: 2 Gwei

Token

MergedPhunks (Phunks)
 

Overview

Max Total Supply

284 Phunks

Holders

109

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 Phunks
0x72cb40a11781ff0149abb55a1adebe2407575030
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:
MergedPhunks

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

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

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


contract MergedPhunks is ERC721URIStorage, Ownable{
    

    uint256 public maxMintAmount = 12;
    uint256 public maxSupply = 10000;
    uint256 public costPerNft = 0.0025 * 1e18;
    string private metadataFolderIpfsLink;
    string constant baseExtension = ".json";
    uint256 public publicmintActiveTime =1663115737;
    mapping(uint256 => uint256) public tokenIdIndex; 
    mapping(uint256 => uint256 ) public usedTokenId;
    mapping(address => uint256) public indivisualcounter;
    uint256 public totalSupply=0;

    // event

    event MintNFT(uint id);

    /// @notice constructor function will pass collection name and symbol to the parent contract that we have inherited from openzeppelin
    constructor() ERC721("MergedPhunks", "Phunks") {
    }

    ///@notice this is a support interface! we must need this
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    ///@notice this function will generate a random number
    function random(uint randNonce) private view returns (uint256) {
        for(uint256 i = 0;i<maxSupply;i++){
            uint256 randomNum = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender, randNonce))) % maxSupply;
            if(usedTokenId[randomNum]==0){
                return randomNum;
            }
        }
        return 0;
    } 

    ///@notice user can mint more then one NFT using this minting function
    function mint(uint256 _mintNumber) public payable{
        require(indivisualcounter[msg.sender]+_mintNumber <= maxMintAmount,"This person has reached his limit");
        if(indivisualcounter[msg.sender]==0){

        require((_mintNumber-1)*costPerNft <= msg.value,"NOT ENOUGH MONEY SENT");

        }
        else{

            require(_mintNumber*costPerNft <= msg.value,"NOT ENOUGH MONEY SENT");
        }
        for(uint i=0; i<_mintNumber ; i++){
            mintNFT();
        }
    }

    ///@notice this private function is a helper function for bulk mint
    function mintNFT() private {
        require(totalSupply<maxSupply,"Total number of NFT reached");
        uint256 newTokenId = random(totalSupply);
        usedTokenId[newTokenId] = 1;
        _safeMint(msg.sender, newTokenId);

        _setTokenURI(newTokenId, getTokenURI(newTokenId));
        totalSupply+=1;
        indivisualcounter[msg.sender]+=1;
        tokenIdIndex[totalSupply] = newTokenId;
        emit MintNFT(newTokenId);
    }

    function getTokenURI( uint256 _id) public view returns (string memory) {

        return string(abi.encodePacked(metadataFolderIpfsLink, Strings.toString(_id), baseExtension));
    }



  
    // only Owner
     function withdrawFunds() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
    }

    function setTheCostPerNft(uint256 _newCostPerNft) public onlyOwner {
        costPerNft = _newCostPerNft;
    }

    function setMaxMintAmountForUser(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setMetadataFolderIpfsLink(string memory _newMetadataFolderIpfsLink) public onlyOwner {
        metadataFolderIpfsLink = _newMetadataFolderIpfsLink;
    }

    function setSaleActiveTime(uint256 _publicmintActiveTime) public onlyOwner {
        publicmintActiveTime = _publicmintActiveTime;
    }
}

File 2 of 12 : 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 3 of 12 : 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 4 of 12 : 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 5 of 12 : 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 6 of 12 : 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 7 of 12 : 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 8 of 12 : 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 9 of 12 : 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 12 : 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 11 of 12 : 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 12 of 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"MintNFT","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costPerNft","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":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"indivisualcounter","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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintNumber","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicmintActiveTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmountForUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newMetadataFolderIpfsLink","type":"string"}],"name":"setMetadataFolderIpfsLink","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicmintActiveTime","type":"uint256"}],"name":"setSaleActiveTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCostPerNft","type":"uint256"}],"name":"setTheCostPerNft","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":"","type":"uint256"}],"name":"tokenIdIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFunds","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600c6008556127106009556608e1bc9bf04000600a5563632121d9600c5560006010553480156200003457600080fd5b506040518060400160405280600c81526020017f4d65726765645068756e6b7300000000000000000000000000000000000000008152506040518060400160405280600681526020017f5068756e6b7300000000000000000000000000000000000000000000000000008152508160009081620000b2919062000435565b508060019081620000c4919062000435565b505050620000e7620000db620000ed60201b60201c565b620000f560201b60201c565b6200051c565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200023d57607f821691505b602082108103620002535762000252620001f5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002bd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200027e565b620002c986836200027e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000316620003106200030a84620002e1565b620002eb565b620002e1565b9050919050565b6000819050919050565b6200033283620002f5565b6200034a62000341826200031d565b8484546200028b565b825550505050565b600090565b6200036162000352565b6200036e81848462000327565b505050565b5b8181101562000396576200038a60008262000357565b60018101905062000374565b5050565b601f821115620003e557620003af8162000259565b620003ba846200026e565b81016020851015620003ca578190505b620003e2620003d9856200026e565b83018262000373565b50505b505050565b600082821c905092915050565b60006200040a60001984600802620003ea565b1980831691505092915050565b6000620004258383620003f7565b9150826002028217905092915050565b6200044082620001bb565b67ffffffffffffffff8111156200045c576200045b620001c6565b5b62000468825462000224565b620004758282856200039a565b600060209050601f831160018114620004ad576000841562000498578287015190505b620004a4858262000417565b86555062000514565b601f198416620004bd8662000259565b60005b82811015620004e757848901518255600182019150602085019450602081019050620004c0565b8683101562000507578489015162000503601f891682620003f7565b8355505b6001600288020188555050505b505050505050565b613a42806200052c6000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063a8365e5e11610095578063c87b56dd11610064578063c87b56dd146106a0578063d5abeb01146106dd578063e985e9c514610708578063f2fde38b14610745576101d8565b8063a8365e5e146105e6578063ab84e56714610611578063b220a9c31461063a578063b88d4fde14610677576101d8565b806395d89b41116100d157806395d89b411461054b578063a0712d6814610576578063a1575c1814610592578063a22cb465146105bd576101d8565b8063715018a6146104b757806373d82563146104ce5780638821e5a1146104f75780638da5cb5b14610520576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103d75780636352211e1461040057806369d9dd4f1461043d57806370a082311461047a576101d8565b806323b872dd1461032a57806324600fc3146103535780632552342a1461035d5780633bb3a24d1461039a576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab5780631d9a2a55146102d6578063239c70ae146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061238a565b61076e565b60405161021191906123d2565b60405180910390f35b34801561022657600080fd5b5061022f610780565b60405161023c919061247d565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906124d5565b610812565b6040516102799190612543565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a4919061258a565b610858565b005b3480156102b757600080fd5b506102c061096f565b6040516102cd91906125d9565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906124d5565b610975565b005b34801561030b57600080fd5b50610314610987565b60405161032191906125d9565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c91906125f4565b61098d565b005b61035b6109ed565b005b34801561036957600080fd5b50610384600480360381019061037f91906124d5565b610a6e565b60405161039191906125d9565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc91906124d5565b610a86565b6040516103ce919061247d565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f991906125f4565b610af1565b005b34801561040c57600080fd5b50610427600480360381019061042291906124d5565b610b11565b6040516104349190612543565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f91906124d5565b610bc2565b60405161047191906125d9565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190612647565b610bda565b6040516104ae91906125d9565b60405180910390f35b3480156104c357600080fd5b506104cc610c91565b005b3480156104da57600080fd5b506104f560048036038101906104f091906124d5565b610ca5565b005b34801561050357600080fd5b5061051e600480360381019061051991906124d5565b610cb7565b005b34801561052c57600080fd5b50610535610cc9565b6040516105429190612543565b60405180910390f35b34801561055757600080fd5b50610560610cf3565b60405161056d919061247d565b60405180910390f35b610590600480360381019061058b91906124d5565b610d85565b005b34801561059e57600080fd5b506105a7610f37565b6040516105b491906125d9565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df91906126a0565b610f3d565b005b3480156105f257600080fd5b506105fb610f53565b60405161060891906125d9565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190612815565b610f59565b005b34801561064657600080fd5b50610661600480360381019061065c9190612647565b610f74565b60405161066e91906125d9565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906128ff565b610f8c565b005b3480156106ac57600080fd5b506106c760048036038101906106c291906124d5565b610fee565b6040516106d4919061247d565b60405180910390f35b3480156106e957600080fd5b506106f2611100565b6040516106ff91906125d9565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190612982565b611106565b60405161073c91906123d2565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190612647565b61119a565b005b60006107798261121d565b9050919050565b60606000805461078f906129f1565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb906129f1565b80156108085780601f106107dd57610100808354040283529160200191610808565b820191906000526020600020905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b600061081d826112ff565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086382610b11565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612a94565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f261134a565b73ffffffffffffffffffffffffffffffffffffffff16148061092157506109208161091b61134a565b611106565b5b610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790612b26565b60405180910390fd5b61096a8383611352565b505050565b60105481565b61097d61140b565b80600c8190555050565b60085481565b61099e61099861134a565b82611489565b6109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490612bb8565b60405180910390fd5b6109e883838361151e565b505050565b6109f561140b565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610a1b90612c09565b60006040518083038185875af1925050503d8060008114610a58576040519150601f19603f3d011682016040523d82523d6000602084013e610a5d565b606091505b5050905080610a6b57600080fd5b50565b600d6020528060005260406000206000915090505481565b6060600b610a9383611784565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001610adb93929190612cf2565b6040516020818303038152906040529050919050565b610b0c83838360405180602001604052806000815250610f8c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090612d6f565b60405180910390fd5b80915050919050565b600e6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190612e01565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c9961140b565b610ca360006118e4565b565b610cad61140b565b8060088190555050565b610cbf61140b565b80600a8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d02906129f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2e906129f1565b8015610d7b5780601f10610d5057610100808354040283529160200191610d7b565b820191906000526020600020905b815481529060010190602001808311610d5e57829003601f168201915b5050505050905090565b60085481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dd39190612e50565b1115610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90612ef6565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610ebc5734600a54600183610e6c9190612f16565b610e769190612f4a565b1115610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90612fd8565b60405180910390fd5b610f0d565b34600a5482610ecb9190612f4a565b1115610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390612fd8565b60405180910390fd5b5b60005b81811015610f3357610f206119aa565b8080610f2b90612ff8565b915050610f10565b5050565b600a5481565b610f4f610f4861134a565b8383611af9565b5050565b600c5481565b610f6161140b565b80600b9081610f7091906131d7565b5050565b600f6020528060005260406000206000915090505481565b610f9d610f9761134a565b83611489565b610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390612bb8565b60405180910390fd5b610fe884848484611c65565b50505050565b6060610ff9826112ff565b6000600660008481526020019081526020016000208054611019906129f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611045906129f1565b80156110925780601f1061106757610100808354040283529160200191611092565b820191906000526020600020905b81548152906001019060200180831161107557829003601f168201915b5050505050905060006110a3611cc1565b905060008151036110b85781925050506110fb565b6000825111156110ed5780826040516020016110d59291906132a9565b604051602081830303815290604052925050506110fb565b6110f684611cd8565b925050505b919050565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111a261140b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611211576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112089061333f565b60405180910390fd5b61121a816118e4565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112e857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806112f857506112f782611d40565b5b9050919050565b61130881611daa565b611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90612d6f565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113c583610b11565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61141361134a565b73ffffffffffffffffffffffffffffffffffffffff16611431610cc9565b73ffffffffffffffffffffffffffffffffffffffff1614611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906133ab565b60405180910390fd5b565b60008061149583610b11565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114d757506114d68185611106565b5b8061151557508373ffffffffffffffffffffffffffffffffffffffff166114fd84610812565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661153e82610b11565b73ffffffffffffffffffffffffffffffffffffffff1614611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b9061343d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa906134cf565b60405180910390fd5b61160e838383611e16565b611619600082611352565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116699190612f16565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116c09190612e50565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461177f838383611e1b565b505050565b6060600082036117cb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506118df565b600082905060005b600082146117fd5780806117e690612ff8565b915050600a826117f6919061351e565b91506117d3565b60008167ffffffffffffffff811115611819576118186126ea565b5b6040519080825280601f01601f19166020018201604052801561184b5781602001600182028036833780820191505090505b5090505b600085146118d8576001826118649190612f16565b9150600a85611873919061354f565b603061187f9190612e50565b60f81b81838151811061189557611894613580565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856118d1919061351e565b945061184f565b8093505050505b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600954601054106119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e7906135fb565b60405180910390fd5b60006119fd601054611e20565b90506001600e600083815260200190815260200160002081905550611a223382611eb5565b611a3481611a2f83610a86565b611ed3565b600160106000828254611a479190612e50565b925050819055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a9e9190612e50565b9250508190555080600d60006010548152602001908152602001600020819055507f2cc161d398589ff5526cd6b429338ae827d66c48171d3dbaeac9a7bf822935bd81604051611aee91906125d9565b60405180910390a150565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e90613667565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c5891906123d2565b60405180910390a3505050565b611c7084848461151e565b611c7c84848484611f40565b611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb2906136f9565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060611ce3826112ff565b6000611ced611cc1565b90506000815111611d0d5760405180602001604052806000815250611d38565b80611d1784611784565b604051602001611d289291906132a9565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b600080600090505b600954811015611eaa576000600954423386604051602001611e4c93929190613782565b6040516020818303038152906040528051906020012060001c611e6f919061354f565b90506000600e60008381526020019081526020016000205403611e96578092505050611eb0565b508080611ea290612ff8565b915050611e28565b50600090505b919050565b611ecf8282604051806020016040528060008152506120c7565b5050565b611edc82611daa565b611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1290613831565b60405180910390fd5b80600660008481526020019081526020016000209081611f3b91906131d7565b505050565b6000611f618473ffffffffffffffffffffffffffffffffffffffff16612122565b156120ba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f8a61134a565b8786866040518563ffffffff1660e01b8152600401611fac94939291906138a6565b6020604051808303816000875af1925050508015611fe857506040513d601f19601f82011682018060405250810190611fe59190613907565b60015b61206a573d8060008114612018576040519150601f19603f3d011682016040523d82523d6000602084013e61201d565b606091505b506000815103612062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612059906136f9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120bf565b600190505b949350505050565b6120d18383612145565b6120de6000848484611f40565b61211d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612114906136f9565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90613980565b60405180910390fd5b6121bd81611daa565b156121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f4906139ec565b60405180910390fd5b61220960008383611e16565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122599190612e50565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461231a60008383611e1b565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61236781612332565b811461237257600080fd5b50565b6000813590506123848161235e565b92915050565b6000602082840312156123a05761239f612328565b5b60006123ae84828501612375565b91505092915050565b60008115159050919050565b6123cc816123b7565b82525050565b60006020820190506123e760008301846123c3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561242757808201518184015260208101905061240c565b60008484015250505050565b6000601f19601f8301169050919050565b600061244f826123ed565b61245981856123f8565b9350612469818560208601612409565b61247281612433565b840191505092915050565b600060208201905081810360008301526124978184612444565b905092915050565b6000819050919050565b6124b28161249f565b81146124bd57600080fd5b50565b6000813590506124cf816124a9565b92915050565b6000602082840312156124eb576124ea612328565b5b60006124f9848285016124c0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061252d82612502565b9050919050565b61253d81612522565b82525050565b60006020820190506125586000830184612534565b92915050565b61256781612522565b811461257257600080fd5b50565b6000813590506125848161255e565b92915050565b600080604083850312156125a1576125a0612328565b5b60006125af85828601612575565b92505060206125c0858286016124c0565b9150509250929050565b6125d38161249f565b82525050565b60006020820190506125ee60008301846125ca565b92915050565b60008060006060848603121561260d5761260c612328565b5b600061261b86828701612575565b935050602061262c86828701612575565b925050604061263d868287016124c0565b9150509250925092565b60006020828403121561265d5761265c612328565b5b600061266b84828501612575565b91505092915050565b61267d816123b7565b811461268857600080fd5b50565b60008135905061269a81612674565b92915050565b600080604083850312156126b7576126b6612328565b5b60006126c585828601612575565b92505060206126d68582860161268b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61272282612433565b810181811067ffffffffffffffff82111715612741576127406126ea565b5b80604052505050565b600061275461231e565b90506127608282612719565b919050565b600067ffffffffffffffff8211156127805761277f6126ea565b5b61278982612433565b9050602081019050919050565b82818337600083830152505050565b60006127b86127b384612765565b61274a565b9050828152602081018484840111156127d4576127d36126e5565b5b6127df848285612796565b509392505050565b600082601f8301126127fc576127fb6126e0565b5b813561280c8482602086016127a5565b91505092915050565b60006020828403121561282b5761282a612328565b5b600082013567ffffffffffffffff8111156128495761284861232d565b5b612855848285016127e7565b91505092915050565b600067ffffffffffffffff821115612879576128786126ea565b5b61288282612433565b9050602081019050919050565b60006128a261289d8461285e565b61274a565b9050828152602081018484840111156128be576128bd6126e5565b5b6128c9848285612796565b509392505050565b600082601f8301126128e6576128e56126e0565b5b81356128f684826020860161288f565b91505092915050565b6000806000806080858703121561291957612918612328565b5b600061292787828801612575565b945050602061293887828801612575565b9350506040612949878288016124c0565b925050606085013567ffffffffffffffff81111561296a5761296961232d565b5b612976878288016128d1565b91505092959194509250565b6000806040838503121561299957612998612328565b5b60006129a785828601612575565b92505060206129b885828601612575565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a0957607f821691505b602082108103612a1c57612a1b6129c2565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a7e6021836123f8565b9150612a8982612a22565b604082019050919050565b60006020820190508181036000830152612aad81612a71565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612b10603e836123f8565b9150612b1b82612ab4565b604082019050919050565b60006020820190508181036000830152612b3f81612b03565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612ba2602e836123f8565b9150612bad82612b46565b604082019050919050565b60006020820190508181036000830152612bd181612b95565b9050919050565b600081905092915050565b50565b6000612bf3600083612bd8565b9150612bfe82612be3565b600082019050919050565b6000612c1482612be6565b9150819050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612c4b816129f1565b612c558186612c1e565b94506001821660008114612c705760018114612c8557612cb8565b60ff1983168652811515820286019350612cb8565b612c8e85612c29565b60005b83811015612cb057815481890152600182019150602081019050612c91565b838801955050505b50505092915050565b6000612ccc826123ed565b612cd68185612c1e565b9350612ce6818560208601612409565b80840191505092915050565b6000612cfe8286612c3e565b9150612d0a8285612cc1565b9150612d168284612cc1565b9150819050949350505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612d596018836123f8565b9150612d6482612d23565b602082019050919050565b60006020820190508181036000830152612d8881612d4c565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612deb6029836123f8565b9150612df682612d8f565b604082019050919050565b60006020820190508181036000830152612e1a81612dde565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5b8261249f565b9150612e668361249f565b9250828201905080821115612e7e57612e7d612e21565b5b92915050565b7f5468697320706572736f6e20686173207265616368656420686973206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ee06021836123f8565b9150612eeb82612e84565b604082019050919050565b60006020820190508181036000830152612f0f81612ed3565b9050919050565b6000612f218261249f565b9150612f2c8361249f565b9250828203905081811115612f4457612f43612e21565b5b92915050565b6000612f558261249f565b9150612f608361249f565b9250828202612f6e8161249f565b91508282048414831517612f8557612f84612e21565b5b5092915050565b7f4e4f5420454e4f554748204d4f4e45592053454e540000000000000000000000600082015250565b6000612fc26015836123f8565b9150612fcd82612f8c565b602082019050919050565b60006020820190508181036000830152612ff181612fb5565b9050919050565b60006130038261249f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361303557613034612e21565b5b600182019050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261308d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613050565b6130978683613050565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130d46130cf6130ca8461249f565b6130af565b61249f565b9050919050565b6000819050919050565b6130ee836130b9565b6131026130fa826130db565b84845461305d565b825550505050565b600090565b61311761310a565b6131228184846130e5565b505050565b5b818110156131465761313b60008261310f565b600181019050613128565b5050565b601f82111561318b5761315c81612c29565b61316584613040565b81016020851015613174578190505b61318861318085613040565b830182613127565b50505b505050565b600082821c905092915050565b60006131ae60001984600802613190565b1980831691505092915050565b60006131c7838361319d565b9150826002028217905092915050565b6131e0826123ed565b67ffffffffffffffff8111156131f9576131f86126ea565b5b61320382546129f1565b61320e82828561314a565b600060209050601f831160018114613241576000841561322f578287015190505b61323985826131bb565b8655506132a1565b601f19841661324f86612c29565b60005b8281101561327757848901518255600182019150602085019450602081019050613252565b868310156132945784890151613290601f89168261319d565b8355505b6001600288020188555050505b505050505050565b60006132b58285612cc1565b91506132c18284612cc1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133296026836123f8565b9150613334826132cd565b604082019050919050565b600060208201905081810360008301526133588161331c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133956020836123f8565b91506133a08261335f565b602082019050919050565b600060208201905081810360008301526133c481613388565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006134276025836123f8565b9150613432826133cb565b604082019050919050565b600060208201905081810360008301526134568161341a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006134b96024836123f8565b91506134c48261345d565b604082019050919050565b600060208201905081810360008301526134e8816134ac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135298261249f565b91506135348361249f565b925082613544576135436134ef565b5b828204905092915050565b600061355a8261249f565b91506135658361249f565b925082613575576135746134ef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f546f74616c206e756d626572206f66204e465420726561636865640000000000600082015250565b60006135e5601b836123f8565b91506135f0826135af565b602082019050919050565b60006020820190508181036000830152613614816135d8565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006136516019836123f8565b915061365c8261361b565b602082019050919050565b6000602082019050818103600083015261368081613644565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006136e36032836123f8565b91506136ee82613687565b604082019050919050565b60006020820190508181036000830152613712816136d6565b9050919050565b6000819050919050565b61373461372f8261249f565b613719565b82525050565b60008160601b9050919050565b60006137528261373a565b9050919050565b600061376482613747565b9050919050565b61377c61377782612522565b613759565b82525050565b600061378e8286613723565b60208201915061379e828561376b565b6014820191506137ae8284613723565b602082019150819050949350505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b600061381b602e836123f8565b9150613826826137bf565b604082019050919050565b6000602082019050818103600083015261384a8161380e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061387882613851565b613882818561385c565b9350613892818560208601612409565b61389b81612433565b840191505092915050565b60006080820190506138bb6000830187612534565b6138c86020830186612534565b6138d560408301856125ca565b81810360608301526138e7818461386d565b905095945050505050565b6000815190506139018161235e565b92915050565b60006020828403121561391d5761391c612328565b5b600061392b848285016138f2565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061396a6020836123f8565b915061397582613934565b602082019050919050565b600060208201905081810360008301526139998161395d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006139d6601c836123f8565b91506139e1826139a0565b602082019050919050565b60006020820190508181036000830152613a05816139c9565b905091905056fea26469706673582212202ab746ea6eb2d47ee36688cb43bfb840106404866bdb1e8617f2a4c49a4a9e0464736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a611610102578063a8365e5e11610095578063c87b56dd11610064578063c87b56dd146106a0578063d5abeb01146106dd578063e985e9c514610708578063f2fde38b14610745576101d8565b8063a8365e5e146105e6578063ab84e56714610611578063b220a9c31461063a578063b88d4fde14610677576101d8565b806395d89b41116100d157806395d89b411461054b578063a0712d6814610576578063a1575c1814610592578063a22cb465146105bd576101d8565b8063715018a6146104b757806373d82563146104ce5780638821e5a1146104f75780638da5cb5b14610520576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103d75780636352211e1461040057806369d9dd4f1461043d57806370a082311461047a576101d8565b806323b872dd1461032a57806324600fc3146103535780632552342a1461035d5780633bb3a24d1461039a576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab5780631d9a2a55146102d6578063239c70ae146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061238a565b61076e565b60405161021191906123d2565b60405180910390f35b34801561022657600080fd5b5061022f610780565b60405161023c919061247d565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906124d5565b610812565b6040516102799190612543565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a4919061258a565b610858565b005b3480156102b757600080fd5b506102c061096f565b6040516102cd91906125d9565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906124d5565b610975565b005b34801561030b57600080fd5b50610314610987565b60405161032191906125d9565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c91906125f4565b61098d565b005b61035b6109ed565b005b34801561036957600080fd5b50610384600480360381019061037f91906124d5565b610a6e565b60405161039191906125d9565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc91906124d5565b610a86565b6040516103ce919061247d565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f991906125f4565b610af1565b005b34801561040c57600080fd5b50610427600480360381019061042291906124d5565b610b11565b6040516104349190612543565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f91906124d5565b610bc2565b60405161047191906125d9565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190612647565b610bda565b6040516104ae91906125d9565b60405180910390f35b3480156104c357600080fd5b506104cc610c91565b005b3480156104da57600080fd5b506104f560048036038101906104f091906124d5565b610ca5565b005b34801561050357600080fd5b5061051e600480360381019061051991906124d5565b610cb7565b005b34801561052c57600080fd5b50610535610cc9565b6040516105429190612543565b60405180910390f35b34801561055757600080fd5b50610560610cf3565b60405161056d919061247d565b60405180910390f35b610590600480360381019061058b91906124d5565b610d85565b005b34801561059e57600080fd5b506105a7610f37565b6040516105b491906125d9565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df91906126a0565b610f3d565b005b3480156105f257600080fd5b506105fb610f53565b60405161060891906125d9565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190612815565b610f59565b005b34801561064657600080fd5b50610661600480360381019061065c9190612647565b610f74565b60405161066e91906125d9565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906128ff565b610f8c565b005b3480156106ac57600080fd5b506106c760048036038101906106c291906124d5565b610fee565b6040516106d4919061247d565b60405180910390f35b3480156106e957600080fd5b506106f2611100565b6040516106ff91906125d9565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a9190612982565b611106565b60405161073c91906123d2565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190612647565b61119a565b005b60006107798261121d565b9050919050565b60606000805461078f906129f1565b80601f01602080910402602001604051908101604052809291908181526020018280546107bb906129f1565b80156108085780601f106107dd57610100808354040283529160200191610808565b820191906000526020600020905b8154815290600101906020018083116107eb57829003601f168201915b5050505050905090565b600061081d826112ff565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086382610b11565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca90612a94565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f261134a565b73ffffffffffffffffffffffffffffffffffffffff16148061092157506109208161091b61134a565b611106565b5b610960576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095790612b26565b60405180910390fd5b61096a8383611352565b505050565b60105481565b61097d61140b565b80600c8190555050565b60085481565b61099e61099861134a565b82611489565b6109dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d490612bb8565b60405180910390fd5b6109e883838361151e565b505050565b6109f561140b565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610a1b90612c09565b60006040518083038185875af1925050503d8060008114610a58576040519150601f19603f3d011682016040523d82523d6000602084013e610a5d565b606091505b5050905080610a6b57600080fd5b50565b600d6020528060005260406000206000915090505481565b6060600b610a9383611784565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001610adb93929190612cf2565b6040516020818303038152906040529050919050565b610b0c83838360405180602001604052806000815250610f8c565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090612d6f565b60405180910390fd5b80915050919050565b600e6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190612e01565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c9961140b565b610ca360006118e4565b565b610cad61140b565b8060088190555050565b610cbf61140b565b80600a8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d02906129f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2e906129f1565b8015610d7b5780601f10610d5057610100808354040283529160200191610d7b565b820191906000526020600020905b815481529060010190602001808311610d5e57829003601f168201915b5050505050905090565b60085481600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dd39190612e50565b1115610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90612ef6565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205403610ebc5734600a54600183610e6c9190612f16565b610e769190612f4a565b1115610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90612fd8565b60405180910390fd5b610f0d565b34600a5482610ecb9190612f4a565b1115610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390612fd8565b60405180910390fd5b5b60005b81811015610f3357610f206119aa565b8080610f2b90612ff8565b915050610f10565b5050565b600a5481565b610f4f610f4861134a565b8383611af9565b5050565b600c5481565b610f6161140b565b80600b9081610f7091906131d7565b5050565b600f6020528060005260406000206000915090505481565b610f9d610f9761134a565b83611489565b610fdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd390612bb8565b60405180910390fd5b610fe884848484611c65565b50505050565b6060610ff9826112ff565b6000600660008481526020019081526020016000208054611019906129f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611045906129f1565b80156110925780601f1061106757610100808354040283529160200191611092565b820191906000526020600020905b81548152906001019060200180831161107557829003601f168201915b5050505050905060006110a3611cc1565b905060008151036110b85781925050506110fb565b6000825111156110ed5780826040516020016110d59291906132a9565b604051602081830303815290604052925050506110fb565b6110f684611cd8565b925050505b919050565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111a261140b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611211576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112089061333f565b60405180910390fd5b61121a816118e4565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112e857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806112f857506112f782611d40565b5b9050919050565b61130881611daa565b611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e90612d6f565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113c583610b11565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61141361134a565b73ffffffffffffffffffffffffffffffffffffffff16611431610cc9565b73ffffffffffffffffffffffffffffffffffffffff1614611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e906133ab565b60405180910390fd5b565b60008061149583610b11565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114d757506114d68185611106565b5b8061151557508373ffffffffffffffffffffffffffffffffffffffff166114fd84610812565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661153e82610b11565b73ffffffffffffffffffffffffffffffffffffffff1614611594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158b9061343d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa906134cf565b60405180910390fd5b61160e838383611e16565b611619600082611352565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116699190612f16565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116c09190612e50565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461177f838383611e1b565b505050565b6060600082036117cb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506118df565b600082905060005b600082146117fd5780806117e690612ff8565b915050600a826117f6919061351e565b91506117d3565b60008167ffffffffffffffff811115611819576118186126ea565b5b6040519080825280601f01601f19166020018201604052801561184b5781602001600182028036833780820191505090505b5090505b600085146118d8576001826118649190612f16565b9150600a85611873919061354f565b603061187f9190612e50565b60f81b81838151811061189557611894613580565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856118d1919061351e565b945061184f565b8093505050505b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600954601054106119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e7906135fb565b60405180910390fd5b60006119fd601054611e20565b90506001600e600083815260200190815260200160002081905550611a223382611eb5565b611a3481611a2f83610a86565b611ed3565b600160106000828254611a479190612e50565b925050819055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a9e9190612e50565b9250508190555080600d60006010548152602001908152602001600020819055507f2cc161d398589ff5526cd6b429338ae827d66c48171d3dbaeac9a7bf822935bd81604051611aee91906125d9565b60405180910390a150565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5e90613667565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c5891906123d2565b60405180910390a3505050565b611c7084848461151e565b611c7c84848484611f40565b611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb2906136f9565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060611ce3826112ff565b6000611ced611cc1565b90506000815111611d0d5760405180602001604052806000815250611d38565b80611d1784611784565b604051602001611d289291906132a9565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b600080600090505b600954811015611eaa576000600954423386604051602001611e4c93929190613782565b6040516020818303038152906040528051906020012060001c611e6f919061354f565b90506000600e60008381526020019081526020016000205403611e96578092505050611eb0565b508080611ea290612ff8565b915050611e28565b50600090505b919050565b611ecf8282604051806020016040528060008152506120c7565b5050565b611edc82611daa565b611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1290613831565b60405180910390fd5b80600660008481526020019081526020016000209081611f3b91906131d7565b505050565b6000611f618473ffffffffffffffffffffffffffffffffffffffff16612122565b156120ba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f8a61134a565b8786866040518563ffffffff1660e01b8152600401611fac94939291906138a6565b6020604051808303816000875af1925050508015611fe857506040513d601f19601f82011682018060405250810190611fe59190613907565b60015b61206a573d8060008114612018576040519150601f19603f3d011682016040523d82523d6000602084013e61201d565b606091505b506000815103612062576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612059906136f9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120bf565b600190505b949350505050565b6120d18383612145565b6120de6000848484611f40565b61211d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612114906136f9565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90613980565b60405180910390fd5b6121bd81611daa565b156121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f4906139ec565b60405180910390fd5b61220960008383611e16565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122599190612e50565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461231a60008383611e1b565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61236781612332565b811461237257600080fd5b50565b6000813590506123848161235e565b92915050565b6000602082840312156123a05761239f612328565b5b60006123ae84828501612375565b91505092915050565b60008115159050919050565b6123cc816123b7565b82525050565b60006020820190506123e760008301846123c3565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561242757808201518184015260208101905061240c565b60008484015250505050565b6000601f19601f8301169050919050565b600061244f826123ed565b61245981856123f8565b9350612469818560208601612409565b61247281612433565b840191505092915050565b600060208201905081810360008301526124978184612444565b905092915050565b6000819050919050565b6124b28161249f565b81146124bd57600080fd5b50565b6000813590506124cf816124a9565b92915050565b6000602082840312156124eb576124ea612328565b5b60006124f9848285016124c0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061252d82612502565b9050919050565b61253d81612522565b82525050565b60006020820190506125586000830184612534565b92915050565b61256781612522565b811461257257600080fd5b50565b6000813590506125848161255e565b92915050565b600080604083850312156125a1576125a0612328565b5b60006125af85828601612575565b92505060206125c0858286016124c0565b9150509250929050565b6125d38161249f565b82525050565b60006020820190506125ee60008301846125ca565b92915050565b60008060006060848603121561260d5761260c612328565b5b600061261b86828701612575565b935050602061262c86828701612575565b925050604061263d868287016124c0565b9150509250925092565b60006020828403121561265d5761265c612328565b5b600061266b84828501612575565b91505092915050565b61267d816123b7565b811461268857600080fd5b50565b60008135905061269a81612674565b92915050565b600080604083850312156126b7576126b6612328565b5b60006126c585828601612575565b92505060206126d68582860161268b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61272282612433565b810181811067ffffffffffffffff82111715612741576127406126ea565b5b80604052505050565b600061275461231e565b90506127608282612719565b919050565b600067ffffffffffffffff8211156127805761277f6126ea565b5b61278982612433565b9050602081019050919050565b82818337600083830152505050565b60006127b86127b384612765565b61274a565b9050828152602081018484840111156127d4576127d36126e5565b5b6127df848285612796565b509392505050565b600082601f8301126127fc576127fb6126e0565b5b813561280c8482602086016127a5565b91505092915050565b60006020828403121561282b5761282a612328565b5b600082013567ffffffffffffffff8111156128495761284861232d565b5b612855848285016127e7565b91505092915050565b600067ffffffffffffffff821115612879576128786126ea565b5b61288282612433565b9050602081019050919050565b60006128a261289d8461285e565b61274a565b9050828152602081018484840111156128be576128bd6126e5565b5b6128c9848285612796565b509392505050565b600082601f8301126128e6576128e56126e0565b5b81356128f684826020860161288f565b91505092915050565b6000806000806080858703121561291957612918612328565b5b600061292787828801612575565b945050602061293887828801612575565b9350506040612949878288016124c0565b925050606085013567ffffffffffffffff81111561296a5761296961232d565b5b612976878288016128d1565b91505092959194509250565b6000806040838503121561299957612998612328565b5b60006129a785828601612575565b92505060206129b885828601612575565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a0957607f821691505b602082108103612a1c57612a1b6129c2565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a7e6021836123f8565b9150612a8982612a22565b604082019050919050565b60006020820190508181036000830152612aad81612a71565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612b10603e836123f8565b9150612b1b82612ab4565b604082019050919050565b60006020820190508181036000830152612b3f81612b03565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612ba2602e836123f8565b9150612bad82612b46565b604082019050919050565b60006020820190508181036000830152612bd181612b95565b9050919050565b600081905092915050565b50565b6000612bf3600083612bd8565b9150612bfe82612be3565b600082019050919050565b6000612c1482612be6565b9150819050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612c4b816129f1565b612c558186612c1e565b94506001821660008114612c705760018114612c8557612cb8565b60ff1983168652811515820286019350612cb8565b612c8e85612c29565b60005b83811015612cb057815481890152600182019150602081019050612c91565b838801955050505b50505092915050565b6000612ccc826123ed565b612cd68185612c1e565b9350612ce6818560208601612409565b80840191505092915050565b6000612cfe8286612c3e565b9150612d0a8285612cc1565b9150612d168284612cc1565b9150819050949350505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612d596018836123f8565b9150612d6482612d23565b602082019050919050565b60006020820190508181036000830152612d8881612d4c565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612deb6029836123f8565b9150612df682612d8f565b604082019050919050565b60006020820190508181036000830152612e1a81612dde565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5b8261249f565b9150612e668361249f565b9250828201905080821115612e7e57612e7d612e21565b5b92915050565b7f5468697320706572736f6e20686173207265616368656420686973206c696d6960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ee06021836123f8565b9150612eeb82612e84565b604082019050919050565b60006020820190508181036000830152612f0f81612ed3565b9050919050565b6000612f218261249f565b9150612f2c8361249f565b9250828203905081811115612f4457612f43612e21565b5b92915050565b6000612f558261249f565b9150612f608361249f565b9250828202612f6e8161249f565b91508282048414831517612f8557612f84612e21565b5b5092915050565b7f4e4f5420454e4f554748204d4f4e45592053454e540000000000000000000000600082015250565b6000612fc26015836123f8565b9150612fcd82612f8c565b602082019050919050565b60006020820190508181036000830152612ff181612fb5565b9050919050565b60006130038261249f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361303557613034612e21565b5b600182019050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261308d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613050565b6130978683613050565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130d46130cf6130ca8461249f565b6130af565b61249f565b9050919050565b6000819050919050565b6130ee836130b9565b6131026130fa826130db565b84845461305d565b825550505050565b600090565b61311761310a565b6131228184846130e5565b505050565b5b818110156131465761313b60008261310f565b600181019050613128565b5050565b601f82111561318b5761315c81612c29565b61316584613040565b81016020851015613174578190505b61318861318085613040565b830182613127565b50505b505050565b600082821c905092915050565b60006131ae60001984600802613190565b1980831691505092915050565b60006131c7838361319d565b9150826002028217905092915050565b6131e0826123ed565b67ffffffffffffffff8111156131f9576131f86126ea565b5b61320382546129f1565b61320e82828561314a565b600060209050601f831160018114613241576000841561322f578287015190505b61323985826131bb565b8655506132a1565b601f19841661324f86612c29565b60005b8281101561327757848901518255600182019150602085019450602081019050613252565b868310156132945784890151613290601f89168261319d565b8355505b6001600288020188555050505b505050505050565b60006132b58285612cc1565b91506132c18284612cc1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133296026836123f8565b9150613334826132cd565b604082019050919050565b600060208201905081810360008301526133588161331c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133956020836123f8565b91506133a08261335f565b602082019050919050565b600060208201905081810360008301526133c481613388565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006134276025836123f8565b9150613432826133cb565b604082019050919050565b600060208201905081810360008301526134568161341a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006134b96024836123f8565b91506134c48261345d565b604082019050919050565b600060208201905081810360008301526134e8816134ac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135298261249f565b91506135348361249f565b925082613544576135436134ef565b5b828204905092915050565b600061355a8261249f565b91506135658361249f565b925082613575576135746134ef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f546f74616c206e756d626572206f66204e465420726561636865640000000000600082015250565b60006135e5601b836123f8565b91506135f0826135af565b602082019050919050565b60006020820190508181036000830152613614816135d8565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006136516019836123f8565b915061365c8261361b565b602082019050919050565b6000602082019050818103600083015261368081613644565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006136e36032836123f8565b91506136ee82613687565b604082019050919050565b60006020820190508181036000830152613712816136d6565b9050919050565b6000819050919050565b61373461372f8261249f565b613719565b82525050565b60008160601b9050919050565b60006137528261373a565b9050919050565b600061376482613747565b9050919050565b61377c61377782612522565b613759565b82525050565b600061378e8286613723565b60208201915061379e828561376b565b6014820191506137ae8284613723565b602082019150819050949350505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b600061381b602e836123f8565b9150613826826137bf565b604082019050919050565b6000602082019050818103600083015261384a8161380e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061387882613851565b613882818561385c565b9350613892818560208601612409565b61389b81612433565b840191505092915050565b60006080820190506138bb6000830187612534565b6138c86020830186612534565b6138d560408301856125ca565b81810360608301526138e7818461386d565b905095945050505050565b6000815190506139018161235e565b92915050565b60006020828403121561391d5761391c612328565b5b600061392b848285016138f2565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061396a6020836123f8565b915061397582613934565b602082019050919050565b600060208201905081810360008301526139998161395d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006139d6601c836123f8565b91506139e1826139a0565b602082019050919050565b60006020820190508181036000830152613a05816139c9565b905091905056fea26469706673582212202ab746ea6eb2d47ee36688cb43bfb840106404866bdb1e8617f2a4c49a4a9e0464736f6c63430008110033

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.