ETH Price: $2,680.94 (+1.92%)
Gas: 1 Gwei

Token

Ranksys (RANK)
 

Overview

Max Total Supply

36 RANK

Holders

9

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 RANK
0xd32f90a1e65a6b24d7e5b086d01a580fd1ff1b53
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:
Ranksys

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-18
*/

/**
 *Submitted for verification at Etherscan.io on 2022-10-18
*/

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// 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: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/utils/Address.sol


// 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: @openzeppelin/contracts/utils/Strings.sol


// 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: contracts/Ranksys.sol


pragma solidity ^0.8.7;









// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used). 
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

    /**
     * @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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract Ranksys is ERC721A, Ownable {
    using Strings for uint256;
    
    uint256 public PRICE = 0.01 ether;
    uint256 public SALE_STEP = 0; // 0 => NONE, 1 => OPEN
    address public PAYMENT_WALLET;
    mapping(uint256 => string) private MAP_TOKEN_URI;

    constructor(address _paymentWallet) ERC721A("Ranksys", "RANK") {
        PAYMENT_WALLET = _paymentWallet;
    }

    function setPrice(uint256 _price) external onlyOwner {
        PRICE = _price;
    }
    
    function setPaymentWallet(address _paymentWallet) external onlyOwner {
        PAYMENT_WALLET = _paymentWallet;
    }

    function setSaleStep(uint256 _saleStep) external onlyOwner {
        SALE_STEP = _saleStep;
    }
    
    function numberMinted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function mintPublic(string memory _cid, address _to) external payable {
        require(SALE_STEP == 1, "Mint is not opened");

        require(msg.value >= PRICE, "ETH not enough");

        payable(PAYMENT_WALLET).transfer(msg.value);
        
        MAP_TOKEN_URI[_currentIndex] = _cid;

        _safeMint(_to, 1);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return string(abi.encodePacked("ipfs://", MAP_TOKEN_URI[tokenId]));
    }

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }

    function withdraw() external onlyOwner {
        payable(PAYMENT_WALLET).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_paymentWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PAYMENT_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_STEP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_cid","type":"string"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"address","name":"_paymentWallet","type":"address"}],"name":"setPaymentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStep","type":"uint256"}],"name":"setSaleStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc100006009556000600a553480156200002157600080fd5b5060405162003244380380620032448339818101604052810190620000479190620002e4565b6040518060400160405280600781526020017f52616e6b737973000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f52414e4b000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000cb9291906200021d565b508060039080519060200190620000e49291906200021d565b50505062000107620000fb6200014f60201b60201c565b6200015760201b60201c565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620003ce565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022b906200034a565b90600052602060002090601f0160209004810192826200024f57600085556200029b565b82601f106200026a57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029a5782518255916020019190600101906200027d565b5b509050620002aa9190620002ae565b5090565b5b80821115620002c9576000816000905550600101620002af565b5090565b600081519050620002de81620003b4565b92915050565b600060208284031215620002fd57620002fc620003af565b5b60006200030d84828501620002cd565b91505092915050565b600062000323826200032a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200036357607f821691505b602082108114156200037a576200037962000380565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620003bf8162000316565b8114620003cb57600080fd5b50565b612e6680620003de6000396000f3fe60806040526004361061019c5760003560e01c8063715018a6116100ec578063a22cb4651161008a578063dc33e68111610064578063dc33e681146105a5578063e985e9c5146105e2578063f2fde38b1461061f578063fd6cb613146106485761019c565b8063a22cb46514610516578063b88d4fde1461053f578063c87b56dd146105685761019c565b80638da5cb5b116100c65780638da5cb5b1461045a57806391b7f5ed146104855780639231ab2a146104ae57806395d89b41146104eb5761019c565b8063715018a6146103ed57806384b9a4a5146104045780638d859f3e1461042f5761019c565b806330f23ca61161015957806353e90cbd1161013357806353e90cbd1461031f5780636081dabf146103485780636352211e1461037357806370a08231146103b05761019c565b806330f23ca6146102c35780633ccfd60b146102df57806342842e0e146102f65761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612525565b610671565b6040516101d591906128f0565b60405180910390f35b3480156101ea57600080fd5b506101f3610753565b604051610200919061290b565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b91906125db565b6107e5565b60405161023d9190612889565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906124e5565b610861565b005b34801561027b57600080fd5b5061028461096c565b60405161029191906129e8565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906123cf565b61097a565b005b6102dd60048036038101906102d8919061257f565b61098a565b005b3480156102eb57600080fd5b506102f4610ab5565b005b34801561030257600080fd5b5061031d600480360381019061031891906123cf565b610b28565b005b34801561032b57600080fd5b50610346600480360381019061034191906125db565b610b48565b005b34801561035457600080fd5b5061035d610b5a565b60405161036a9190612889565b60405180910390f35b34801561037f57600080fd5b5061039a600480360381019061039591906125db565b610b80565b6040516103a79190612889565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190612362565b610b96565b6040516103e491906129e8565b60405180910390f35b3480156103f957600080fd5b50610402610c66565b005b34801561041057600080fd5b50610419610c7a565b60405161042691906129e8565b60405180910390f35b34801561043b57600080fd5b50610444610c80565b60405161045191906129e8565b60405180910390f35b34801561046657600080fd5b5061046f610c86565b60405161047c9190612889565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a791906125db565b610cb0565b005b3480156104ba57600080fd5b506104d560048036038101906104d091906125db565b610cc2565b6040516104e291906129cd565b60405180910390f35b3480156104f757600080fd5b50610500610cda565b60405161050d919061290b565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906124a5565b610d6c565b005b34801561054b57600080fd5b5061056660048036038101906105619190612422565b610ee4565b005b34801561057457600080fd5b5061058f600480360381019061058a91906125db565b610f37565b60405161059c919061290b565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612362565b610fba565b6040516105d991906129e8565b60405180910390f35b3480156105ee57600080fd5b506106096004803603810190610604919061238f565b610fcc565b60405161061691906128f0565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612362565b611060565b005b34801561065457600080fd5b5061066f600480360381019061066a9190612362565b6110e4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074c575061074b82611130565b5b9050919050565b60606002805461076290612bac565b80601f016020809104026020016040519081016040528092919081815260200182805461078e90612bac565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b5050505050905090565b60006107f08261119a565b610826576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086c82610b80565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f36111d4565b73ffffffffffffffffffffffffffffffffffffffff161415801561092557506109238161091e6111d4565b610fcc565b155b1561095c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109678383836111dc565b505050565b600060015460005403905090565b61098583838361128e565b505050565b6001600a54146109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c69061294d565b60405180910390fd5b600954341015610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b9061296d565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610a7c573d6000803e3d6000fd5b5081600c6000805481526020019081526020016000209080519060200190610aa5929190612133565b50610ab181600161177f565b5050565b610abd61179d565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b25573d6000803e3d6000fd5b50565b610b4383838360405180602001604052806000815250610ee4565b505050565b610b5061179d565b80600a8190555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610b8b8261181b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bfe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c6e61179d565b610c786000611a97565b565b600a5481565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cb861179d565b8060098190555050565b610cca6121b9565b610cd38261181b565b9050919050565b606060038054610ce990612bac565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1590612bac565b8015610d625780601f10610d3757610100808354040283529160200191610d62565b820191906000526020600020905b815481529060010190602001808311610d4557829003601f168201915b5050505050905090565b610d746111d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dd9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610de66111d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e936111d4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ed891906128f0565b60405180910390a35050565b610eef84848461128e565b610efb84848484611b5d565b610f31576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610f428261119a565b610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f78906129ad565b60405180910390fd5b600c6000838152602001908152602001600020604051602001610fa49190612867565b6040516020818303038152906040529050919050565b6000610fc582611ceb565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61106861179d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf9061292d565b60405180910390fd5b6110e181611a97565b50565b6110ec61179d565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156111cd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006112998261181b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166112c06111d4565b73ffffffffffffffffffffffffffffffffffffffff1614806112f357506112f282600001516112ed6111d4565b610fcc565b5b8061133857506113016111d4565b73ffffffffffffffffffffffffffffffffffffffff16611320846107e5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611371576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146113da576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611441576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61144e8585856001611dbb565b61145e60008484600001516111dc565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561170f5760005481101561170e5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117788585856001611dc1565b5050505050565b611799828260405180602001604052806000815250611dc7565b5050565b6117a56111d4565b73ffffffffffffffffffffffffffffffffffffffff166117c3610c86565b73ffffffffffffffffffffffffffffffffffffffff1614611819576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118109061298d565b60405180910390fd5b565b6118236121b9565b6000829050600054811015611a60576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a5e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611942578092505050611a92565b5b600115611a5d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a58578092505050611a92565b611943565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611b7e8473ffffffffffffffffffffffffffffffffffffffff16611dd9565b15611cde578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ba76111d4565b8786866040518563ffffffff1660e01b8152600401611bc994939291906128a4565b602060405180830381600087803b158015611be357600080fd5b505af1925050508015611c1457506040513d601f19601f82011682018060405250810190611c119190612552565b60015b611c8e573d8060008114611c44576040519150601f19603f3d011682016040523d82523d6000602084013e611c49565b606091505b50600081511415611c86576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ce3565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d53576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b611dd48383836001611dfc565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611e69576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611ea4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eb16000868387611dbb565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561211657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156120ca57506120c86000888488611b5d565b155b15612101576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061204f565b50806000819055505061212c6000868387611dc1565b5050505050565b82805461213f90612bac565b90600052602060002090601f01602090048101928261216157600085556121a8565b82601f1061217a57805160ff19168380011785556121a8565b828001600101855582156121a8579182015b828111156121a757825182559160200191906001019061218c565b5b5090506121b591906121fc565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156122155760008160009055506001016121fd565b5090565b600061222c61222784612a28565b612a03565b90508281526020810184848401111561224857612247612c72565b5b612253848285612b6a565b509392505050565b600061226e61226984612a59565b612a03565b90508281526020810184848401111561228a57612289612c72565b5b612295848285612b6a565b509392505050565b6000813590506122ac81612dd4565b92915050565b6000813590506122c181612deb565b92915050565b6000813590506122d681612e02565b92915050565b6000815190506122eb81612e02565b92915050565b600082601f83011261230657612305612c6d565b5b8135612316848260208601612219565b91505092915050565b600082601f83011261233457612333612c6d565b5b813561234484826020860161225b565b91505092915050565b60008135905061235c81612e19565b92915050565b60006020828403121561237857612377612c7c565b5b60006123868482850161229d565b91505092915050565b600080604083850312156123a6576123a5612c7c565b5b60006123b48582860161229d565b92505060206123c58582860161229d565b9150509250929050565b6000806000606084860312156123e8576123e7612c7c565b5b60006123f68682870161229d565b93505060206124078682870161229d565b92505060406124188682870161234d565b9150509250925092565b6000806000806080858703121561243c5761243b612c7c565b5b600061244a8782880161229d565b945050602061245b8782880161229d565b935050604061246c8782880161234d565b925050606085013567ffffffffffffffff81111561248d5761248c612c77565b5b612499878288016122f1565b91505092959194509250565b600080604083850312156124bc576124bb612c7c565b5b60006124ca8582860161229d565b92505060206124db858286016122b2565b9150509250929050565b600080604083850312156124fc576124fb612c7c565b5b600061250a8582860161229d565b925050602061251b8582860161234d565b9150509250929050565b60006020828403121561253b5761253a612c7c565b5b6000612549848285016122c7565b91505092915050565b60006020828403121561256857612567612c7c565b5b6000612576848285016122dc565b91505092915050565b6000806040838503121561259657612595612c7c565b5b600083013567ffffffffffffffff8111156125b4576125b3612c77565b5b6125c08582860161231f565b92505060206125d18582860161229d565b9150509250929050565b6000602082840312156125f1576125f0612c7c565b5b60006125ff8482850161234d565b91505092915050565b61261181612ae2565b82525050565b61262081612ae2565b82525050565b61262f81612af4565b82525050565b61263e81612af4565b82525050565b600061264f82612a9f565b6126598185612ab5565b9350612669818560208601612b79565b61267281612c81565b840191505092915050565b600061268882612aaa565b6126928185612ac6565b93506126a2818560208601612b79565b6126ab81612c81565b840191505092915050565b600081546126c381612bac565b6126cd8186612ad7565b945060018216600081146126e857600181146126f95761272c565b60ff1983168652818601935061272c565b61270285612a8a565b60005b8381101561272457815481890152600182019150602081019050612705565b838801955050505b50505092915050565b6000612742602683612ac6565b915061274d82612c92565b604082019050919050565b6000612765601283612ac6565b915061277082612ce1565b602082019050919050565b6000612788600783612ad7565b915061279382612d0a565b600782019050919050565b60006127ab600e83612ac6565b91506127b682612d33565b602082019050919050565b60006127ce602083612ac6565b91506127d982612d5c565b602082019050919050565b60006127f1602f83612ac6565b91506127fc82612d85565b604082019050919050565b60608201600082015161281d6000850182612608565b5060208201516128306020850182612858565b5060408201516128436040850182612626565b50505050565b61285281612b4c565b82525050565b61286181612b56565b82525050565b60006128728261277b565b915061287e82846126b6565b915081905092915050565b600060208201905061289e6000830184612617565b92915050565b60006080820190506128b96000830187612617565b6128c66020830186612617565b6128d36040830185612849565b81810360608301526128e58184612644565b905095945050505050565b60006020820190506129056000830184612635565b92915050565b60006020820190508181036000830152612925818461267d565b905092915050565b6000602082019050818103600083015261294681612735565b9050919050565b6000602082019050818103600083015261296681612758565b9050919050565b600060208201905081810360008301526129868161279e565b9050919050565b600060208201905081810360008301526129a6816127c1565b9050919050565b600060208201905081810360008301526129c6816127e4565b9050919050565b60006060820190506129e26000830184612807565b92915050565b60006020820190506129fd6000830184612849565b92915050565b6000612a0d612a1e565b9050612a198282612bde565b919050565b6000604051905090565b600067ffffffffffffffff821115612a4357612a42612c3e565b5b612a4c82612c81565b9050602081019050919050565b600067ffffffffffffffff821115612a7457612a73612c3e565b5b612a7d82612c81565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612aed82612b2c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015612b97578082015181840152602081019050612b7c565b83811115612ba6576000848401525b50505050565b60006002820490506001821680612bc457607f821691505b60208210811415612bd857612bd7612c0f565b5b50919050565b612be782612c81565b810181811067ffffffffffffffff82111715612c0657612c05612c3e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206f70656e65640000000000000000000000000000600082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f455448206e6f7420656e6f756768000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b612ddd81612ae2565b8114612de857600080fd5b50565b612df481612af4565b8114612dff57600080fd5b50565b612e0b81612b00565b8114612e1657600080fd5b50565b612e2281612b4c565b8114612e2d57600080fd5b5056fea2646970667358221220709e83436120875e6572ef08854b2e40e67c135b16194ba9f6e6b016efbb6ea564736f6c63430008070033000000000000000000000000ea5c08934a35996b93774c7ef7bccfb0b97e3e58

Deployed Bytecode

0x60806040526004361061019c5760003560e01c8063715018a6116100ec578063a22cb4651161008a578063dc33e68111610064578063dc33e681146105a5578063e985e9c5146105e2578063f2fde38b1461061f578063fd6cb613146106485761019c565b8063a22cb46514610516578063b88d4fde1461053f578063c87b56dd146105685761019c565b80638da5cb5b116100c65780638da5cb5b1461045a57806391b7f5ed146104855780639231ab2a146104ae57806395d89b41146104eb5761019c565b8063715018a6146103ed57806384b9a4a5146104045780638d859f3e1461042f5761019c565b806330f23ca61161015957806353e90cbd1161013357806353e90cbd1461031f5780636081dabf146103485780636352211e1461037357806370a08231146103b05761019c565b806330f23ca6146102c35780633ccfd60b146102df57806342842e0e146102f65761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612525565b610671565b6040516101d591906128f0565b60405180910390f35b3480156101ea57600080fd5b506101f3610753565b604051610200919061290b565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b91906125db565b6107e5565b60405161023d9190612889565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906124e5565b610861565b005b34801561027b57600080fd5b5061028461096c565b60405161029191906129e8565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc91906123cf565b61097a565b005b6102dd60048036038101906102d8919061257f565b61098a565b005b3480156102eb57600080fd5b506102f4610ab5565b005b34801561030257600080fd5b5061031d600480360381019061031891906123cf565b610b28565b005b34801561032b57600080fd5b50610346600480360381019061034191906125db565b610b48565b005b34801561035457600080fd5b5061035d610b5a565b60405161036a9190612889565b60405180910390f35b34801561037f57600080fd5b5061039a600480360381019061039591906125db565b610b80565b6040516103a79190612889565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190612362565b610b96565b6040516103e491906129e8565b60405180910390f35b3480156103f957600080fd5b50610402610c66565b005b34801561041057600080fd5b50610419610c7a565b60405161042691906129e8565b60405180910390f35b34801561043b57600080fd5b50610444610c80565b60405161045191906129e8565b60405180910390f35b34801561046657600080fd5b5061046f610c86565b60405161047c9190612889565b60405180910390f35b34801561049157600080fd5b506104ac60048036038101906104a791906125db565b610cb0565b005b3480156104ba57600080fd5b506104d560048036038101906104d091906125db565b610cc2565b6040516104e291906129cd565b60405180910390f35b3480156104f757600080fd5b50610500610cda565b60405161050d919061290b565b60405180910390f35b34801561052257600080fd5b5061053d600480360381019061053891906124a5565b610d6c565b005b34801561054b57600080fd5b5061056660048036038101906105619190612422565b610ee4565b005b34801561057457600080fd5b5061058f600480360381019061058a91906125db565b610f37565b60405161059c919061290b565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612362565b610fba565b6040516105d991906129e8565b60405180910390f35b3480156105ee57600080fd5b506106096004803603810190610604919061238f565b610fcc565b60405161061691906128f0565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612362565b611060565b005b34801561065457600080fd5b5061066f600480360381019061066a9190612362565b6110e4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061074c575061074b82611130565b5b9050919050565b60606002805461076290612bac565b80601f016020809104026020016040519081016040528092919081815260200182805461078e90612bac565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b5050505050905090565b60006107f08261119a565b610826576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086c82610b80565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f36111d4565b73ffffffffffffffffffffffffffffffffffffffff161415801561092557506109238161091e6111d4565b610fcc565b155b1561095c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109678383836111dc565b505050565b600060015460005403905090565b61098583838361128e565b505050565b6001600a54146109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c69061294d565b60405180910390fd5b600954341015610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b9061296d565b60405180910390fd5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610a7c573d6000803e3d6000fd5b5081600c6000805481526020019081526020016000209080519060200190610aa5929190612133565b50610ab181600161177f565b5050565b610abd61179d565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b25573d6000803e3d6000fd5b50565b610b4383838360405180602001604052806000815250610ee4565b505050565b610b5061179d565b80600a8190555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610b8b8261181b565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bfe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c6e61179d565b610c786000611a97565b565b600a5481565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610cb861179d565b8060098190555050565b610cca6121b9565b610cd38261181b565b9050919050565b606060038054610ce990612bac565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1590612bac565b8015610d625780601f10610d3757610100808354040283529160200191610d62565b820191906000526020600020905b815481529060010190602001808311610d4557829003601f168201915b5050505050905090565b610d746111d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dd9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610de66111d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e936111d4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ed891906128f0565b60405180910390a35050565b610eef84848461128e565b610efb84848484611b5d565b610f31576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610f428261119a565b610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f78906129ad565b60405180910390fd5b600c6000838152602001908152602001600020604051602001610fa49190612867565b6040516020818303038152906040529050919050565b6000610fc582611ceb565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61106861179d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf9061292d565b60405180910390fd5b6110e181611a97565b50565b6110ec61179d565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008054821080156111cd575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006112998261181b565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166112c06111d4565b73ffffffffffffffffffffffffffffffffffffffff1614806112f357506112f282600001516112ed6111d4565b610fcc565b5b8061133857506113016111d4565b73ffffffffffffffffffffffffffffffffffffffff16611320846107e5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611371576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146113da576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611441576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61144e8585856001611dbb565b61145e60008484600001516111dc565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561170f5760005481101561170e5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117788585856001611dc1565b5050505050565b611799828260405180602001604052806000815250611dc7565b5050565b6117a56111d4565b73ffffffffffffffffffffffffffffffffffffffff166117c3610c86565b73ffffffffffffffffffffffffffffffffffffffff1614611819576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118109061298d565b60405180910390fd5b565b6118236121b9565b6000829050600054811015611a60576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611a5e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611942578092505050611a92565b5b600115611a5d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611a58578092505050611a92565b611943565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611b7e8473ffffffffffffffffffffffffffffffffffffffff16611dd9565b15611cde578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ba76111d4565b8786866040518563ffffffff1660e01b8152600401611bc994939291906128a4565b602060405180830381600087803b158015611be357600080fd5b505af1925050508015611c1457506040513d601f19601f82011682018060405250810190611c119190612552565b60015b611c8e573d8060008114611c44576040519150601f19603f3d011682016040523d82523d6000602084013e611c49565b606091505b50600081511415611c86576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611ce3565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d53576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b611dd48383836001611dfc565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611e69576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415611ea4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eb16000868387611dbb565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561211657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156120ca57506120c86000888488611b5d565b155b15612101576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505061204f565b50806000819055505061212c6000868387611dc1565b5050505050565b82805461213f90612bac565b90600052602060002090601f01602090048101928261216157600085556121a8565b82601f1061217a57805160ff19168380011785556121a8565b828001600101855582156121a8579182015b828111156121a757825182559160200191906001019061218c565b5b5090506121b591906121fc565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156122155760008160009055506001016121fd565b5090565b600061222c61222784612a28565b612a03565b90508281526020810184848401111561224857612247612c72565b5b612253848285612b6a565b509392505050565b600061226e61226984612a59565b612a03565b90508281526020810184848401111561228a57612289612c72565b5b612295848285612b6a565b509392505050565b6000813590506122ac81612dd4565b92915050565b6000813590506122c181612deb565b92915050565b6000813590506122d681612e02565b92915050565b6000815190506122eb81612e02565b92915050565b600082601f83011261230657612305612c6d565b5b8135612316848260208601612219565b91505092915050565b600082601f83011261233457612333612c6d565b5b813561234484826020860161225b565b91505092915050565b60008135905061235c81612e19565b92915050565b60006020828403121561237857612377612c7c565b5b60006123868482850161229d565b91505092915050565b600080604083850312156123a6576123a5612c7c565b5b60006123b48582860161229d565b92505060206123c58582860161229d565b9150509250929050565b6000806000606084860312156123e8576123e7612c7c565b5b60006123f68682870161229d565b93505060206124078682870161229d565b92505060406124188682870161234d565b9150509250925092565b6000806000806080858703121561243c5761243b612c7c565b5b600061244a8782880161229d565b945050602061245b8782880161229d565b935050604061246c8782880161234d565b925050606085013567ffffffffffffffff81111561248d5761248c612c77565b5b612499878288016122f1565b91505092959194509250565b600080604083850312156124bc576124bb612c7c565b5b60006124ca8582860161229d565b92505060206124db858286016122b2565b9150509250929050565b600080604083850312156124fc576124fb612c7c565b5b600061250a8582860161229d565b925050602061251b8582860161234d565b9150509250929050565b60006020828403121561253b5761253a612c7c565b5b6000612549848285016122c7565b91505092915050565b60006020828403121561256857612567612c7c565b5b6000612576848285016122dc565b91505092915050565b6000806040838503121561259657612595612c7c565b5b600083013567ffffffffffffffff8111156125b4576125b3612c77565b5b6125c08582860161231f565b92505060206125d18582860161229d565b9150509250929050565b6000602082840312156125f1576125f0612c7c565b5b60006125ff8482850161234d565b91505092915050565b61261181612ae2565b82525050565b61262081612ae2565b82525050565b61262f81612af4565b82525050565b61263e81612af4565b82525050565b600061264f82612a9f565b6126598185612ab5565b9350612669818560208601612b79565b61267281612c81565b840191505092915050565b600061268882612aaa565b6126928185612ac6565b93506126a2818560208601612b79565b6126ab81612c81565b840191505092915050565b600081546126c381612bac565b6126cd8186612ad7565b945060018216600081146126e857600181146126f95761272c565b60ff1983168652818601935061272c565b61270285612a8a565b60005b8381101561272457815481890152600182019150602081019050612705565b838801955050505b50505092915050565b6000612742602683612ac6565b915061274d82612c92565b604082019050919050565b6000612765601283612ac6565b915061277082612ce1565b602082019050919050565b6000612788600783612ad7565b915061279382612d0a565b600782019050919050565b60006127ab600e83612ac6565b91506127b682612d33565b602082019050919050565b60006127ce602083612ac6565b91506127d982612d5c565b602082019050919050565b60006127f1602f83612ac6565b91506127fc82612d85565b604082019050919050565b60608201600082015161281d6000850182612608565b5060208201516128306020850182612858565b5060408201516128436040850182612626565b50505050565b61285281612b4c565b82525050565b61286181612b56565b82525050565b60006128728261277b565b915061287e82846126b6565b915081905092915050565b600060208201905061289e6000830184612617565b92915050565b60006080820190506128b96000830187612617565b6128c66020830186612617565b6128d36040830185612849565b81810360608301526128e58184612644565b905095945050505050565b60006020820190506129056000830184612635565b92915050565b60006020820190508181036000830152612925818461267d565b905092915050565b6000602082019050818103600083015261294681612735565b9050919050565b6000602082019050818103600083015261296681612758565b9050919050565b600060208201905081810360008301526129868161279e565b9050919050565b600060208201905081810360008301526129a6816127c1565b9050919050565b600060208201905081810360008301526129c6816127e4565b9050919050565b60006060820190506129e26000830184612807565b92915050565b60006020820190506129fd6000830184612849565b92915050565b6000612a0d612a1e565b9050612a198282612bde565b919050565b6000604051905090565b600067ffffffffffffffff821115612a4357612a42612c3e565b5b612a4c82612c81565b9050602081019050919050565b600067ffffffffffffffff821115612a7457612a73612c3e565b5b612a7d82612c81565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612aed82612b2c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015612b97578082015181840152602081019050612b7c565b83811115612ba6576000848401525b50505050565b60006002820490506001821680612bc457607f821691505b60208210811415612bd857612bd7612c0f565b5b50919050565b612be782612c81565b810181811067ffffffffffffffff82111715612c0657612c05612c3e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206973206e6f74206f70656e65640000000000000000000000000000600082015250565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b7f455448206e6f7420656e6f756768000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b612ddd81612ae2565b8114612de857600080fd5b50565b612df481612af4565b8114612dff57600080fd5b50565b612e0b81612b00565b8114612e1657600080fd5b50565b612e2281612b4c565b8114612e2d57600080fd5b5056fea2646970667358221220709e83436120875e6572ef08854b2e40e67c135b16194ba9f6e6b016efbb6ea564736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000ea5c08934a35996b93774c7ef7bccfb0b97e3e58

-----Decoded View---------------
Arg [0] : _paymentWallet (address): 0xea5c08934A35996b93774c7eF7bcCFB0B97E3e58

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ea5c08934a35996b93774c7ef7bccfb0b97e3e58


Deployed Bytecode Sourcemap

48352:1723:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31150:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34510:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36013:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35576:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30807:271;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36870:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49206:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49959:113;;;;;;;;;;;;;:::i;:::-;;37111:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48972:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48533:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34319:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31519:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15493:103;;;;;;;;;;;;;:::i;:::-;;48474:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48434:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14845:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48747:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49816:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34679:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36289:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37367:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49548:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49083:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36639:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15751:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48845:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31150:305;31252:4;31304:25;31289:40;;;:11;:40;;;;:105;;;;31361:33;31346:48;;;:11;:48;;;;31289:105;:158;;;;31411:36;31435:11;31411:23;:36::i;:::-;31289:158;31269:178;;31150:305;;;:::o;34510:100::-;34564:13;34597:5;34590:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34510:100;:::o;36013:204::-;36081:7;36106:16;36114:7;36106;:16::i;:::-;36101:64;;36131:34;;;;;;;;;;;;;;36101:64;36185:15;:24;36201:7;36185:24;;;;;;;;;;;;;;;;;;;;;36178:31;;36013:204;;;:::o;35576:371::-;35649:13;35665:24;35681:7;35665:15;:24::i;:::-;35649:40;;35710:5;35704:11;;:2;:11;;;35700:48;;;35724:24;;;;;;;;;;;;;;35700:48;35781:5;35765:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35791:37;35808:5;35815:12;:10;:12::i;:::-;35791:16;:37::i;:::-;35790:38;35765:63;35761:138;;;35852:35;;;;;;;;;;;;;;35761:138;35911:28;35920:2;35924:7;35933:5;35911:8;:28::i;:::-;35638:309;35576:371;;:::o;30807:271::-;30851:7;31043:12;;31027:13;;:28;31020:35;;30807:271;:::o;36870:170::-;37004:28;37014:4;37020:2;37024:7;37004:9;:28::i;:::-;36870:170;;;:::o;49206:334::-;49308:1;49295:9;;:14;49287:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49366:5;;49353:9;:18;;49345:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;49411:14;;;;;;;;;;;49403:32;;:43;49436:9;49403:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49498:4;49467:13;:28;49481:13;;49467:28;;;;;;;;;;;:35;;;;;;;;;;;;:::i;:::-;;49515:17;49525:3;49530:1;49515:9;:17::i;:::-;49206:334;;:::o;49959:113::-;14731:13;:11;:13::i;:::-;50017:14:::1;;;;;;;;;;;50009:32;;:55;50042:21;50009:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49959:113::o:0;37111:185::-;37249:39;37266:4;37272:2;37276:7;37249:39;;;;;;;;;;;;:16;:39::i;:::-;37111:185;;;:::o;48972:99::-;14731:13;:11;:13::i;:::-;49054:9:::1;49042;:21;;;;48972:99:::0;:::o;48533:29::-;;;;;;;;;;;;;:::o;34319:124::-;34383:7;34410:20;34422:7;34410:11;:20::i;:::-;:25;;;34403:32;;34319:124;;;:::o;31519:206::-;31583:7;31624:1;31607:19;;:5;:19;;;31603:60;;;31635:28;;;;;;;;;;;;;;31603:60;31689:12;:19;31702:5;31689:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31681:36;;31674:43;;31519:206;;;:::o;15493:103::-;14731:13;:11;:13::i;:::-;15558:30:::1;15585:1;15558:18;:30::i;:::-;15493:103::o:0;48474:28::-;;;;:::o;48434:33::-;;;;:::o;14845:87::-;14891:7;14918:6;;;;;;;;;;;14911:13;;14845:87;:::o;48747:86::-;14731:13;:11;:13::i;:::-;48819:6:::1;48811:5;:14;;;;48747:86:::0;:::o;49816:135::-;49882:21;;:::i;:::-;49923:20;49935:7;49923:11;:20::i;:::-;49916:27;;49816:135;;;:::o;34679:104::-;34735:13;34768:7;34761:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34679:104;:::o;36289:279::-;36392:12;:10;:12::i;:::-;36380:24;;:8;:24;;;36376:54;;;36413:17;;;;;;;;;;;;;;36376:54;36488:8;36443:18;:32;36462:12;:10;:12::i;:::-;36443:32;;;;;;;;;;;;;;;:42;36476:8;36443:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36541:8;36512:48;;36527:12;:10;:12::i;:::-;36512:48;;;36551:8;36512:48;;;;;;:::i;:::-;;;;;;;;36289:279;;:::o;37367:342::-;37534:28;37544:4;37550:2;37554:7;37534:9;:28::i;:::-;37578:48;37601:4;37607:2;37611:7;37620:5;37578:22;:48::i;:::-;37573:129;;37650:40;;;;;;;;;;;;;;37573:129;37367:342;;;;:::o;49548:260::-;49621:13;49655:16;49663:7;49655;:16::i;:::-;49647:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49776:13;:22;49790:7;49776:22;;;;;;;;;;;49748:51;;;;;;;;:::i;:::-;;;;;;;;;;;;;49734:66;;49548:260;;;:::o;49083:115::-;49142:7;49169:21;49183:6;49169:13;:21::i;:::-;49162:28;;49083:115;;;:::o;36639:164::-;36736:4;36760:18;:25;36779:5;36760:25;;;;;;;;;;;;;;;:35;36786:8;36760:35;;;;;;;;;;;;;;;;;;;;;;;;;36753:42;;36639:164;;;;:::o;15751:201::-;14731:13;:11;:13::i;:::-;15860:1:::1;15840:22;;:8;:22;;;;15832:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15916:28;15935:8;15916:18;:28::i;:::-;15751:201:::0;:::o;48845:119::-;14731:13;:11;:13::i;:::-;48942:14:::1;48925;;:31;;;;;;;;;;;;;;;;;;48845:119:::0;:::o;11499:157::-;11584:4;11623:25;11608:40;;;:11;:40;;;;11601:47;;11499:157;;;:::o;37964:144::-;38021:4;38055:13;;38045:7;:23;:55;;;;;38073:11;:20;38085:7;38073:20;;;;;;;;;;;:27;;;;;;;;;;;;38072:28;38045:55;38038:62;;37964:144;;;:::o;13396:98::-;13449:7;13476:10;13469:17;;13396:98;:::o;45170:196::-;45312:2;45285:15;:24;45301:7;45285:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45350:7;45346:2;45330:28;;45339:5;45330:28;;;;;;;;;;;;45170:196;;;:::o;40671:2112::-;40786:35;40824:20;40836:7;40824:11;:20::i;:::-;40786:58;;40857:22;40899:13;:18;;;40883:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40934:50;40951:13;:18;;;40971:12;:10;:12::i;:::-;40934:16;:50::i;:::-;40883:101;:154;;;;41025:12;:10;:12::i;:::-;41001:36;;:20;41013:7;41001:11;:20::i;:::-;:36;;;40883:154;40857:181;;41056:17;41051:66;;41082:35;;;;;;;;;;;;;;41051:66;41154:4;41132:26;;:13;:18;;;:26;;;41128:67;;41167:28;;;;;;;;;;;;;;41128:67;41224:1;41210:16;;:2;:16;;;41206:52;;;41235:23;;;;;;;;;;;;;;41206:52;41271:43;41293:4;41299:2;41303:7;41312:1;41271:21;:43::i;:::-;41379:49;41396:1;41400:7;41409:13;:18;;;41379:8;:49::i;:::-;41754:1;41724:12;:18;41737:4;41724:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41798:1;41770:12;:16;41783:2;41770:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41844:2;41816:11;:20;41828:7;41816:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41906:15;41861:11;:20;41873:7;41861:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42174:19;42206:1;42196:7;:11;42174:33;;42267:1;42226:43;;:11;:24;42238:11;42226:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42222:445;;;42451:13;;42437:11;:27;42433:219;;;42521:13;:18;;;42489:11;:24;42501:11;42489:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42604:13;:28;;;42562:11;:24;42574:11;42562:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42433:219;42222:445;41699:979;42714:7;42710:2;42695:27;;42704:4;42695:27;;;;;;;;;;;;42733:42;42754:4;42760:2;42764:7;42773:1;42733:20;:42::i;:::-;40775:2008;;40671:2112;;;:::o;38116:104::-;38185:27;38195:2;38199:8;38185:27;;;;;;;;;;;;:9;:27::i;:::-;38116:104;;:::o;15010:132::-;15085:12;:10;:12::i;:::-;15074:23;;:7;:5;:7::i;:::-;:23;;;15066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15010:132::o;33174:1083::-;33235:21;;:::i;:::-;33269:12;33284:7;33269:22;;33340:13;;33333:4;:20;33329:861;;;33374:31;33408:11;:17;33420:4;33408:17;;;;;;;;;;;33374:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33449:9;:16;;;33444:731;;33520:1;33494:28;;:9;:14;;;:28;;;33490:101;;33558:9;33551:16;;;;;;33490:101;33895:261;33902:4;33895:261;;;33935:6;;;;;;;;33980:11;:17;33992:4;33980:17;;;;;;;;;;;33968:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34054:1;34028:28;;:9;:14;;;:28;;;34024:109;;34096:9;34089:16;;;;;;34024:109;33895:261;;;33444:731;33355:835;33329:861;34218:31;;;;;;;;;;;;;;33174:1083;;;;:::o;16112:191::-;16186:16;16205:6;;;;;;;;;;;16186:25;;16231:8;16222:6;;:17;;;;;;;;;;;;;;;;;;16286:8;16255:40;;16276:8;16255:40;;;;;;;;;;;;16175:128;16112:191;:::o;45931:790::-;46086:4;46107:15;:2;:13;;;:15::i;:::-;46103:611;;;46159:2;46143:36;;;46180:12;:10;:12::i;:::-;46194:4;46200:7;46209:5;46143:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46139:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46406:1;46389:6;:13;:18;46385:259;;;46439:40;;;;;;;;;;;;;;46385:259;46594:6;46588:13;46579:6;46575:2;46571:15;46564:38;46139:520;46276:45;;;46266:55;;;:6;:55;;;;46259:62;;;;;46103:611;46698:4;46691:11;;45931:790;;;;;;;:::o;31807:207::-;31868:7;31909:1;31892:19;;:5;:19;;;31888:59;;;31920:27;;;;;;;;;;;;;;31888:59;31973:12;:19;31986:5;31973:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;31965:41;;31958:48;;31807:207;;;:::o;47369:159::-;;;;;:::o;48187:158::-;;;;;:::o;38583:163::-;38706:32;38712:2;38716:8;38726:5;38733:4;38706:5;:32::i;:::-;38583:163;;;:::o;17543:326::-;17603:4;17860:1;17838:7;:19;;;:23;17831:30;;17543:326;;;:::o;39005:1412::-;39144:20;39167:13;;39144:36;;39209:1;39195:16;;:2;:16;;;39191:48;;;39220:19;;;;;;;;;;;;;;39191:48;39266:1;39254:8;:13;39250:44;;;39276:18;;;;;;;;;;;;;;39250:44;39307:61;39337:1;39341:2;39345:12;39359:8;39307:21;:61::i;:::-;39680:8;39645:12;:16;39658:2;39645:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39744:8;39704:12;:16;39717:2;39704:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39803:2;39770:11;:25;39782:12;39770:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39870:15;39820:11;:25;39832:12;39820:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39903:20;39926:12;39903:35;;39960:9;39955:328;39975:8;39971:1;:12;39955:328;;;40039:12;40035:2;40014:38;;40031:1;40014:38;;;;;;;;;;;;40075:4;:68;;;;;40084:59;40115:1;40119:2;40123:12;40137:5;40084:22;:59::i;:::-;40083:60;40075:68;40071:164;;;40175:40;;;;;;;;;;;;;;40071:164;40253:14;;;;;;;39985:3;;;;;;;39955:328;;;;40315:12;40299:13;:28;;;;39620:719;40349:60;40378:1;40382:2;40386:12;40400:8;40349:20;:60::i;:::-;39133:1284;39005:1412;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:654::-;6386:6;6394;6443:2;6431:9;6422:7;6418:23;6414:32;6411:119;;;6449:79;;:::i;:::-;6411:119;6597:1;6586:9;6582:17;6569:31;6627:18;6619:6;6616:30;6613:117;;;6649:79;;:::i;:::-;6613:117;6754:63;6809:7;6800:6;6789:9;6785:22;6754:63;:::i;:::-;6744:73;;6540:287;6866:2;6892:53;6937:7;6928:6;6917:9;6913:22;6892:53;:::i;:::-;6882:63;;6837:118;6308:654;;;;;:::o;6968:329::-;7027:6;7076:2;7064:9;7055:7;7051:23;7047:32;7044:119;;;7082:79;;:::i;:::-;7044:119;7202:1;7227:53;7272:7;7263:6;7252:9;7248:22;7227:53;:::i;:::-;7217:63;;7173:117;6968:329;;;;:::o;7303:108::-;7380:24;7398:5;7380:24;:::i;:::-;7375:3;7368:37;7303:108;;:::o;7417:118::-;7504:24;7522:5;7504:24;:::i;:::-;7499:3;7492:37;7417:118;;:::o;7541:99::-;7612:21;7627:5;7612:21;:::i;:::-;7607:3;7600:34;7541:99;;:::o;7646:109::-;7727:21;7742:5;7727:21;:::i;:::-;7722:3;7715:34;7646:109;;:::o;7761:360::-;7847:3;7875:38;7907:5;7875:38;:::i;:::-;7929:70;7992:6;7987:3;7929:70;:::i;:::-;7922:77;;8008:52;8053:6;8048:3;8041:4;8034:5;8030:16;8008:52;:::i;:::-;8085:29;8107:6;8085:29;:::i;:::-;8080:3;8076:39;8069:46;;7851:270;7761:360;;;;:::o;8127:364::-;8215:3;8243:39;8276:5;8243:39;:::i;:::-;8298:71;8362:6;8357:3;8298:71;:::i;:::-;8291:78;;8378:52;8423:6;8418:3;8411:4;8404:5;8400:16;8378:52;:::i;:::-;8455:29;8477:6;8455:29;:::i;:::-;8450:3;8446:39;8439:46;;8219:272;8127:364;;;;:::o;8521:845::-;8624:3;8661:5;8655:12;8690:36;8716:9;8690:36;:::i;:::-;8742:89;8824:6;8819:3;8742:89;:::i;:::-;8735:96;;8862:1;8851:9;8847:17;8878:1;8873:137;;;;9024:1;9019:341;;;;8840:520;;8873:137;8957:4;8953:9;8942;8938:25;8933:3;8926:38;8993:6;8988:3;8984:16;8977:23;;8873:137;;9019:341;9086:38;9118:5;9086:38;:::i;:::-;9146:1;9160:154;9174:6;9171:1;9168:13;9160:154;;;9248:7;9242:14;9238:1;9233:3;9229:11;9222:35;9298:1;9289:7;9285:15;9274:26;;9196:4;9193:1;9189:12;9184:17;;9160:154;;;9343:6;9338:3;9334:16;9327:23;;9026:334;;8840:520;;8628:738;;8521:845;;;;:::o;9372:366::-;9514:3;9535:67;9599:2;9594:3;9535:67;:::i;:::-;9528:74;;9611:93;9700:3;9611:93;:::i;:::-;9729:2;9724:3;9720:12;9713:19;;9372:366;;;:::o;9744:::-;9886:3;9907:67;9971:2;9966:3;9907:67;:::i;:::-;9900:74;;9983:93;10072:3;9983:93;:::i;:::-;10101:2;10096:3;10092:12;10085:19;;9744:366;;;:::o;10116:400::-;10276:3;10297:84;10379:1;10374:3;10297:84;:::i;:::-;10290:91;;10390:93;10479:3;10390:93;:::i;:::-;10508:1;10503:3;10499:11;10492:18;;10116:400;;;:::o;10522:366::-;10664:3;10685:67;10749:2;10744:3;10685:67;:::i;:::-;10678:74;;10761:93;10850:3;10761:93;:::i;:::-;10879:2;10874:3;10870:12;10863:19;;10522:366;;;:::o;10894:::-;11036:3;11057:67;11121:2;11116:3;11057:67;:::i;:::-;11050:74;;11133:93;11222:3;11133:93;:::i;:::-;11251:2;11246:3;11242:12;11235:19;;10894:366;;;:::o;11266:::-;11408:3;11429:67;11493:2;11488:3;11429:67;:::i;:::-;11422:74;;11505:93;11594:3;11505:93;:::i;:::-;11623:2;11618:3;11614:12;11607:19;;11266:366;;;:::o;11708:699::-;11869:4;11864:3;11860:14;11956:4;11949:5;11945:16;11939:23;11975:63;12032:4;12027:3;12023:14;12009:12;11975:63;:::i;:::-;11884:164;12140:4;12133:5;12129:16;12123:23;12159:61;12214:4;12209:3;12205:14;12191:12;12159:61;:::i;:::-;12058:172;12314:4;12307:5;12303:16;12297:23;12333:57;12384:4;12379:3;12375:14;12361:12;12333:57;:::i;:::-;12240:160;11838:569;11708:699;;:::o;12413:118::-;12500:24;12518:5;12500:24;:::i;:::-;12495:3;12488:37;12413:118;;:::o;12537:105::-;12612:23;12629:5;12612:23;:::i;:::-;12607:3;12600:36;12537:105;;:::o;12648:535::-;12878:3;12900:148;13044:3;12900:148;:::i;:::-;12893:155;;13065:92;13153:3;13144:6;13065:92;:::i;:::-;13058:99;;13174:3;13167:10;;12648:535;;;;:::o;13189:222::-;13282:4;13320:2;13309:9;13305:18;13297:26;;13333:71;13401:1;13390:9;13386:17;13377:6;13333:71;:::i;:::-;13189:222;;;;:::o;13417:640::-;13612:4;13650:3;13639:9;13635:19;13627:27;;13664:71;13732:1;13721:9;13717:17;13708:6;13664:71;:::i;:::-;13745:72;13813:2;13802:9;13798:18;13789:6;13745:72;:::i;:::-;13827;13895:2;13884:9;13880:18;13871:6;13827:72;:::i;:::-;13946:9;13940:4;13936:20;13931:2;13920:9;13916:18;13909:48;13974:76;14045:4;14036:6;13974:76;:::i;:::-;13966:84;;13417:640;;;;;;;:::o;14063:210::-;14150:4;14188:2;14177:9;14173:18;14165:26;;14201:65;14263:1;14252:9;14248:17;14239:6;14201:65;:::i;:::-;14063:210;;;;:::o;14279:313::-;14392:4;14430:2;14419:9;14415:18;14407:26;;14479:9;14473:4;14469:20;14465:1;14454:9;14450:17;14443:47;14507:78;14580:4;14571:6;14507:78;:::i;:::-;14499:86;;14279:313;;;;:::o;14598:419::-;14764:4;14802:2;14791:9;14787:18;14779:26;;14851:9;14845:4;14841:20;14837:1;14826:9;14822:17;14815:47;14879:131;15005:4;14879:131;:::i;:::-;14871:139;;14598:419;;;:::o;15023:::-;15189:4;15227:2;15216:9;15212:18;15204:26;;15276:9;15270:4;15266:20;15262:1;15251:9;15247:17;15240:47;15304:131;15430:4;15304:131;:::i;:::-;15296:139;;15023:419;;;:::o;15448:::-;15614:4;15652:2;15641:9;15637:18;15629:26;;15701:9;15695:4;15691:20;15687:1;15676:9;15672:17;15665:47;15729:131;15855:4;15729:131;:::i;:::-;15721:139;;15448:419;;;:::o;15873:::-;16039:4;16077:2;16066:9;16062:18;16054:26;;16126:9;16120:4;16116:20;16112:1;16101:9;16097:17;16090:47;16154:131;16280:4;16154:131;:::i;:::-;16146:139;;15873:419;;;:::o;16298:::-;16464:4;16502:2;16491:9;16487:18;16479:26;;16551:9;16545:4;16541:20;16537:1;16526:9;16522:17;16515:47;16579:131;16705:4;16579:131;:::i;:::-;16571:139;;16298:419;;;:::o;16723:350::-;16880:4;16918:2;16907:9;16903:18;16895:26;;16931:135;17063:1;17052:9;17048:17;17039:6;16931:135;:::i;:::-;16723:350;;;;:::o;17079:222::-;17172:4;17210:2;17199:9;17195:18;17187:26;;17223:71;17291:1;17280:9;17276:17;17267:6;17223:71;:::i;:::-;17079:222;;;;:::o;17307:129::-;17341:6;17368:20;;:::i;:::-;17358:30;;17397:33;17425:4;17417:6;17397:33;:::i;:::-;17307:129;;;:::o;17442:75::-;17475:6;17508:2;17502:9;17492:19;;17442:75;:::o;17523:307::-;17584:4;17674:18;17666:6;17663:30;17660:56;;;17696:18;;:::i;:::-;17660:56;17734:29;17756:6;17734:29;:::i;:::-;17726:37;;17818:4;17812;17808:15;17800:23;;17523:307;;;:::o;17836:308::-;17898:4;17988:18;17980:6;17977:30;17974:56;;;18010:18;;:::i;:::-;17974:56;18048:29;18070:6;18048:29;:::i;:::-;18040:37;;18132:4;18126;18122:15;18114:23;;17836:308;;;:::o;18150:141::-;18199:4;18222:3;18214:11;;18245:3;18242:1;18235:14;18279:4;18276:1;18266:18;18258:26;;18150:141;;;:::o;18297:98::-;18348:6;18382:5;18376:12;18366:22;;18297:98;;;:::o;18401:99::-;18453:6;18487:5;18481:12;18471:22;;18401:99;;;:::o;18506:168::-;18589:11;18623:6;18618:3;18611:19;18663:4;18658:3;18654:14;18639:29;;18506:168;;;;:::o;18680:169::-;18764:11;18798:6;18793:3;18786:19;18838:4;18833:3;18829:14;18814:29;;18680:169;;;;:::o;18855:148::-;18957:11;18994:3;18979:18;;18855:148;;;;:::o;19009:96::-;19046:7;19075:24;19093:5;19075:24;:::i;:::-;19064:35;;19009:96;;;:::o;19111:90::-;19145:7;19188:5;19181:13;19174:21;19163:32;;19111:90;;;:::o;19207:149::-;19243:7;19283:66;19276:5;19272:78;19261:89;;19207:149;;;:::o;19362:126::-;19399:7;19439:42;19432:5;19428:54;19417:65;;19362:126;;;:::o;19494:77::-;19531:7;19560:5;19549:16;;19494:77;;;:::o;19577:101::-;19613:7;19653:18;19646:5;19642:30;19631:41;;19577:101;;;:::o;19684:154::-;19768:6;19763:3;19758;19745:30;19830:1;19821:6;19816:3;19812:16;19805:27;19684:154;;;:::o;19844:307::-;19912:1;19922:113;19936:6;19933:1;19930:13;19922:113;;;20021:1;20016:3;20012:11;20006:18;20002:1;19997:3;19993:11;19986:39;19958:2;19955:1;19951:10;19946:15;;19922:113;;;20053:6;20050:1;20047:13;20044:101;;;20133:1;20124:6;20119:3;20115:16;20108:27;20044:101;19893:258;19844:307;;;:::o;20157:320::-;20201:6;20238:1;20232:4;20228:12;20218:22;;20285:1;20279:4;20275:12;20306:18;20296:81;;20362:4;20354:6;20350:17;20340:27;;20296:81;20424:2;20416:6;20413:14;20393:18;20390:38;20387:84;;;20443:18;;:::i;:::-;20387:84;20208:269;20157:320;;;:::o;20483:281::-;20566:27;20588:4;20566:27;:::i;:::-;20558:6;20554:40;20696:6;20684:10;20681:22;20660:18;20648:10;20645:34;20642:62;20639:88;;;20707:18;;:::i;:::-;20639:88;20747:10;20743:2;20736:22;20526:238;20483:281;;:::o;20770:180::-;20818:77;20815:1;20808:88;20915:4;20912:1;20905:15;20939:4;20936:1;20929:15;20956:180;21004:77;21001:1;20994:88;21101:4;21098:1;21091:15;21125:4;21122:1;21115:15;21142:117;21251:1;21248;21241:12;21265:117;21374:1;21371;21364:12;21388:117;21497:1;21494;21487:12;21511:117;21620:1;21617;21610:12;21634:102;21675:6;21726:2;21722:7;21717:2;21710:5;21706:14;21702:28;21692:38;;21634:102;;;:::o;21742:225::-;21882:34;21878:1;21870:6;21866:14;21859:58;21951:8;21946:2;21938:6;21934:15;21927:33;21742:225;:::o;21973:168::-;22113:20;22109:1;22101:6;22097:14;22090:44;21973:168;:::o;22147:161::-;22287:9;22283:1;22275:6;22271:14;22264:33;22147:161;:::o;22318:172::-;22462:16;22458:1;22450:6;22446:14;22439:40;22318:172;:::o;22500:190::-;22644:34;22640:1;22632:6;22628:14;22621:58;22500:190;:::o;22700:246::-;22844:34;22840:1;22832:6;22828:14;22821:58;22917:17;22912:2;22904:6;22900:15;22893:42;22700:246;:::o;22956:130::-;23033:24;23051:5;23033:24;:::i;:::-;23026:5;23023:35;23013:63;;23072:1;23069;23062:12;23013:63;22956:130;:::o;23096:124::-;23170:21;23185:5;23170:21;:::i;:::-;23163:5;23160:32;23150:60;;23206:1;23203;23196:12;23150:60;23096:124;:::o;23230:128::-;23306:23;23323:5;23306:23;:::i;:::-;23299:5;23296:34;23286:62;;23344:1;23341;23334:12;23286:62;23230:128;:::o;23368:130::-;23445:24;23463:5;23445:24;:::i;:::-;23438:5;23435:35;23425:63;;23484:1;23481;23474:12;23425:63;23368:130;:::o

Swarm Source

ipfs://709e83436120875e6572ef08854b2e40e67c135b16194ba9f6e6b016efbb6ea5
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.