Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
5751
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OkayBearsRugClub
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /** * @title OkayBearsRugClub contract * @dev Extends ERC721A - thanks azuki */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @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 v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @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/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/IERC721.sol // OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @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/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: contracts/TwistedToonz.sol // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // 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 override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } /** * 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) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } /** * @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); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _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 override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } 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; require(to != address(0), "ERC721A: mint to the zero address"); require(quantity != 0, "ERC721A: quantity must be greater than 0"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(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) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } 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 || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _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)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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("ERC721A: transfer to non ERC721Receiver implementer"); } 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. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract OkayBearsRugClub is ERC721A, Ownable, ReentrancyGuard { string public baseURI; uint public maxPerTx = 5; uint public maxPerWallet = 5; uint public maxSupply = 7777; uint public nextOwnerToExplicitlySet; bool public mintEnabled; constructor() ERC721A("OkayBearsRugClub", "OBRC"){} function mint(uint256 amt) external payable { require(msg.sender == tx.origin,"Sender and origin should be same."); require(totalSupply() + amt < maxSupply + 1,"No more guilty bears."); require(mintEnabled, "Mint is not enabled."); require(numberMinted(msg.sender) + amt <= maxPerWallet,"Max mint per wallet is 5."); require( amt < maxPerTx + 1, "Max per TX reached."); _safeMint(msg.sender, amt); } function ownerBatchMint(uint256 amt) external onlyOwner { require(totalSupply() + amt < maxSupply + 1,"too many!"); _safeMint(msg.sender, amt); } function toggleMinting() external onlyOwner { mintEnabled = !mintEnabled; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function setMaxPerTx(uint256 maxPerTx_) external onlyOwner { maxPerTx = maxPerTx_; } function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner { maxPerWallet = maxPerWallet_; } function setmaxSupply(uint256 maxSupply_) external onlyOwner { maxSupply = maxSupply_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { require(quantity != 0, "quantity must be nonzero"); require(currentIndex != 0, "no tokens minted yet"); uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet; require(_nextOwnerToExplicitlySet < currentIndex, "all ownerships have been set"); // Index underflow is impossible. // Counter or index overflow is incredibly unrealistic. unchecked { uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1; // Set the end index to be the last token index if (endIndex + 1 > currentIndex) { endIndex = currentIndex - 1; } for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i].addr = ownership.addr; _ownerships[i].startTimestamp = ownership.startTimestamp; } } nextOwnerToExplicitlySet = endIndex + 1; } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"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":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"amt","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526005600a556005600b55611e61600c553480156200002157600080fd5b506040518060400160405280601081526020017f4f6b61794265617273527567436c7562000000000000000000000000000000008152506040518060400160405280600481526020017f4f425243000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000a6929190620001be565b508060029080519060200190620000bf929190620001be565b505050620000e2620000d6620000f060201b60201c565b620000f860201b60201c565b6001600881905550620002d3565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cc906200026e565b90600052602060002090601f016020900481019282620001f057600085556200023c565b82601f106200020b57805160ff19168380011785556200023c565b828001600101855582156200023c579182015b828111156200023b5782518255916020019190600101906200021e565b5b5090506200024b91906200024f565b5090565b5b808211156200026a57600081600090555060010162000250565b5090565b600060028204905060018216806200028757607f821691505b602082108114156200029e576200029d620002a4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614cc580620002e36000396000f3fe60806040526004361061020f5760003560e01c80637d55094d11610118578063c87b56dd116100a0578063dc33e6811161006f578063dc33e6811461077a578063e268e4d3146107b7578063e985e9c5146107e0578063f2fde38b1461081d578063f968adbe146108465761020f565b8063c87b56dd146106bc578063d1239730146106f9578063d5abeb0114610724578063d7224ba01461074f5761020f565b806395d89b41116100e757806395d89b41146105fa578063a0712d6814610625578063a22cb46514610641578063b88d4fde1461066a578063c6f6f216146106935761020f565b80637d55094d146105525780638da5cb5b146105695780638db89f07146105945780639231ab2a146105bd5761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461046d5780636352211e146104965780636c0360eb146104d357806370a08231146104fe578063715018a61461053b5761020f565b80633ccfd60b146103c557806342842e0e146103dc578063453c2310146104055780634f6ccce7146104305761020f565b806318160ddd116101e257806318160ddd146102e2578063228025e81461030d57806323b872dd146103365780632d20fb601461035f5780632f745c59146103885761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906134ac565b610871565b6040516102489190613bcb565b60405180910390f35b34801561025d57600080fd5b506102666109bb565b6040516102739190613be6565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613553565b610a4d565b6040516102b09190613b64565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061346c565b610ad2565b005b3480156102ee57600080fd5b506102f7610beb565b6040516103049190614003565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190613553565b610bf4565b005b34801561034257600080fd5b5061035d60048036038101906103589190613356565b610c7a565b005b34801561036b57600080fd5b5061038660048036038101906103819190613553565b610c8a565b005b34801561039457600080fd5b506103af60048036038101906103aa919061346c565b610d68565b6040516103bc9190614003565b60405180910390f35b3480156103d157600080fd5b506103da610f5a565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190613356565b6110db565b005b34801561041157600080fd5b5061041a6110fb565b6040516104279190614003565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190613553565b611101565b6040516104649190614003565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190613506565b611154565b005b3480156104a257600080fd5b506104bd60048036038101906104b89190613553565b6111e6565b6040516104ca9190613b64565b60405180910390f35b3480156104df57600080fd5b506104e86111fc565b6040516104f59190613be6565b60405180910390f35b34801561050a57600080fd5b50610525600480360381019061052091906132e9565b61128a565b6040516105329190614003565b60405180910390f35b34801561054757600080fd5b50610550611373565b005b34801561055e57600080fd5b506105676113fb565b005b34801561057557600080fd5b5061057e6114a3565b60405161058b9190613b64565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190613553565b6114cd565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613553565b6115b8565b6040516105f19190613fe8565b60405180910390f35b34801561060657600080fd5b5061060f6115d0565b60405161061c9190613be6565b60405180910390f35b61063f600480360381019061063a9190613553565b611662565b005b34801561064d57600080fd5b506106686004803603810190610663919061342c565b611836565b005b34801561067657600080fd5b50610691600480360381019061068c91906133a9565b6119b7565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190613553565b611a13565b005b3480156106c857600080fd5b506106e360048036038101906106de9190613553565b611a99565b6040516106f09190613be6565b60405180910390f35b34801561070557600080fd5b5061070e611b41565b60405161071b9190613bcb565b60405180910390f35b34801561073057600080fd5b50610739611b54565b6040516107469190614003565b60405180910390f35b34801561075b57600080fd5b50610764611b5a565b6040516107719190614003565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c91906132e9565b611b60565b6040516107ae9190614003565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190613553565b611b72565b005b3480156107ec57600080fd5b5061080760048036038101906108029190613316565b611bf8565b6040516108149190613bcb565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f91906132e9565b611c8c565b005b34801561085257600080fd5b5061085b611d84565b6040516108689190614003565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b457506109b382611d8a565b5b9050919050565b6060600180546109ca90614247565b80601f01602080910402602001604051908101604052809291908181526020018280546109f690614247565b8015610a435780601f10610a1857610100808354040283529160200191610a43565b820191906000526020600020905b815481529060010190602001808311610a2657829003601f168201915b5050505050905090565b6000610a5882611df4565b610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90613fc8565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610add826111e6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4590613ea8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6d611e01565b73ffffffffffffffffffffffffffffffffffffffff161480610b9c5750610b9b81610b96611e01565b611bf8565b5b610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290613d88565b60405180910390fd5b610be6838383611e09565b505050565b60008054905090565b610bfc611e01565b73ffffffffffffffffffffffffffffffffffffffff16610c1a6114a3565b73ffffffffffffffffffffffffffffffffffffffff1614610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6790613e08565b60405180910390fd5b80600c8190555050565b610c85838383611ebb565b505050565b610c92611e01565b73ffffffffffffffffffffffffffffffffffffffff16610cb06114a3565b73ffffffffffffffffffffffffffffffffffffffff1614610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd90613e08565b60405180910390fd5b60026008541415610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390613f88565b60405180910390fd5b6002600881905550610d5d816123fb565b600160088190555050565b6000610d738361128a565b8210610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90613c08565b60405180910390fd5b6000610dbe610beb565b905060008060005b83811015610f18576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eb857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0a5786841415610f01578195505050505050610f54565b83806001019450505b508080600101915050610dc6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613f68565b60405180910390fd5b92915050565b610f62611e01565b73ffffffffffffffffffffffffffffffffffffffff16610f806114a3565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90613e08565b60405180910390fd5b6002600854141561101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390613f88565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161104a90613b4f565b60006040518083038185875af1925050503d8060008114611087576040519150601f19603f3d011682016040523d82523d6000602084013e61108c565b606091505b50509050806110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790613ec8565b60405180910390fd5b506001600881905550565b6110f6838383604051806020016040528060008152506119b7565b505050565b600b5481565b600061110b610beb565b821061114c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114390613ce8565b60405180910390fd5b819050919050565b61115c611e01565b73ffffffffffffffffffffffffffffffffffffffff1661117a6114a3565b73ffffffffffffffffffffffffffffffffffffffff16146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790613e08565b60405180910390fd5b8181600991906111e19291906130dd565b505050565b60006111f18261262d565b600001519050919050565b6009805461120990614247565b80601f016020809104026020016040519081016040528092919081815260200182805461123590614247565b80156112825780601f1061125757610100808354040283529160200191611282565b820191906000526020600020905b81548152906001019060200180831161126557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290613dc8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61137b611e01565b73ffffffffffffffffffffffffffffffffffffffff166113996114a3565b73ffffffffffffffffffffffffffffffffffffffff16146113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e690613e08565b60405180910390fd5b6113f960006127c7565b565b611403611e01565b73ffffffffffffffffffffffffffffffffffffffff166114216114a3565b73ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613e08565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d5611e01565b73ffffffffffffffffffffffffffffffffffffffff166114f36114a3565b73ffffffffffffffffffffffffffffffffffffffff1614611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090613e08565b60405180910390fd5b6001600c5461155891906140c2565b81611561610beb565b61156b91906140c2565b106115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290613d68565b60405180910390fd5b6115b5338261288d565b50565b6115c0613163565b6115c98261262d565b9050919050565b6060600280546115df90614247565b80601f016020809104026020016040519081016040528092919081815260200182805461160b90614247565b80156116585780601f1061162d57610100808354040283529160200191611658565b820191906000526020600020905b81548152906001019060200180831161163b57829003601f168201915b5050505050905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790613c28565b60405180910390fd5b6001600c546116df91906140c2565b816116e8610beb565b6116f291906140c2565b10611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990613c88565b60405180910390fd5b600e60009054906101000a900460ff16611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177890613e88565b60405180910390fd5b600b548161178e33611b60565b61179891906140c2565b11156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613cc8565b60405180910390fd5b6001600a546117e891906140c2565b8110611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090613f48565b60405180910390fd5b611833338261288d565b50565b61183e611e01565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390613e48565b60405180910390fd5b80600660006118b9611e01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611966611e01565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ab9190613bcb565b60405180910390a35050565b6119c2848484611ebb565b6119ce848484846128ab565b611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613ee8565b60405180910390fd5b50505050565b611a1b611e01565b73ffffffffffffffffffffffffffffffffffffffff16611a396114a3565b73ffffffffffffffffffffffffffffffffffffffff1614611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690613e08565b60405180910390fd5b80600a8190555050565b6060611aa482611df4565b611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90613e28565b60405180910390fd5b6000611aed612a42565b9050600081511415611b0e5760405180602001604052806000815250611b39565b80611b1884612ad4565b604051602001611b29929190613b20565b6040516020818303038152906040525b915050919050565b600e60009054906101000a900460ff1681565b600c5481565b600d5481565b6000611b6b82612c35565b9050919050565b611b7a611e01565b73ffffffffffffffffffffffffffffffffffffffff16611b986114a3565b73ffffffffffffffffffffffffffffffffffffffff1614611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be590613e08565b60405180910390fd5b80600b8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c94611e01565b73ffffffffffffffffffffffffffffffffffffffff16611cb26114a3565b73ffffffffffffffffffffffffffffffffffffffff1614611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff90613e08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90613c48565b60405180910390fd5b611d81816127c7565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ec68261262d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611eed611e01565b73ffffffffffffffffffffffffffffffffffffffff161480611f495750611f12611e01565b73ffffffffffffffffffffffffffffffffffffffff16611f3184610a4d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f655750611f648260000151611f5f611e01565b611bf8565b5b905080611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90613e68565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090613de8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208090613d08565b60405180910390fd5b6120968585856001612d1e565b6120a66000848460000151611e09565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561238b576122ea81611df4565b1561238a5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123f48585856001612d24565b5050505050565b600081141561243f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243690613da8565b60405180910390fd5b600080541415612484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247b90613ca8565b60405180910390fd5b6000600d54905060005481106124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c690613d48565b60405180910390fd5b600060018383010390506000546001820111156124ef5760016000540390505b60008290505b81811161261d57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126105760006125728261262d565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b80806001019150506124f5565b5060018101600d81905550505050565b612635613163565b61263e82611df4565b61267d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267490613c68565b60405180910390fd5b60008290505b60008110612786576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127775780925050506127c2565b50808060019003915050612683565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b990613fa8565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128a7828260405180602001604052806000815250612d2a565b5050565b60006128cc8473ffffffffffffffffffffffffffffffffffffffff16612d3c565b15612a35578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128f5611e01565b8786866040518563ffffffff1660e01b81526004016129179493929190613b7f565b602060405180830381600087803b15801561293157600080fd5b505af192505050801561296257506040513d601f19601f8201168201806040525081019061295f91906134d9565b60015b6129e5573d8060008114612992576040519150601f19603f3d011682016040523d82523d6000602084013e612997565b606091505b506000815114156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490613ee8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a3a565b600190505b949350505050565b606060098054612a5190614247565b80601f0160208091040260200160405190810160405280929190818152602001828054612a7d90614247565b8015612aca5780601f10612a9f57610100808354040283529160200191612aca565b820191906000526020600020905b815481529060010190602001808311612aad57829003601f168201915b5050505050905090565b60606000821415612b1c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c30565b600082905060005b60008214612b4e578080612b37906142aa565b915050600a82612b479190614118565b9150612b24565b60008167ffffffffffffffff811115612b6a57612b696143e0565b5b6040519080825280601f01601f191660200182016040528015612b9c5781602001600182028036833780820191505090505b5090505b60008514612c2957600182612bb59190614149565b9150600a85612bc491906142f3565b6030612bd091906140c2565b60f81b818381518110612be657612be56143b1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c229190614118565b9450612ba0565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9d90613d28565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612d378383836001612d5f565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcc90613f08565b60405180910390fd5b6000841415612e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1090613f28565b60405180910390fd5b612e266000868387612d1e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156130c057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156130ab5761306b60008884886128ab565b6130aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a190613ee8565b60405180910390fd5b5b81806001019250508080600101915050612ff4565b5080600081905550506130d66000868387612d24565b5050505050565b8280546130e990614247565b90600052602060002090601f01602090048101928261310b5760008555613152565b82601f1061312457803560ff1916838001178555613152565b82800160010185558215613152579182015b82811115613151578235825591602001919060010190613136565b5b50905061315f919061319d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131b657600081600090555060010161319e565b5090565b60006131cd6131c884614043565b61401e565b9050828152602081018484840111156131e9576131e861441e565b5b6131f4848285614205565b509392505050565b60008135905061320b81614c33565b92915050565b60008135905061322081614c4a565b92915050565b60008135905061323581614c61565b92915050565b60008151905061324a81614c61565b92915050565b600082601f83011261326557613264614414565b5b81356132758482602086016131ba565b91505092915050565b60008083601f84011261329457613293614414565b5b8235905067ffffffffffffffff8111156132b1576132b061440f565b5b6020830191508360018202830111156132cd576132cc614419565b5b9250929050565b6000813590506132e381614c78565b92915050565b6000602082840312156132ff576132fe614428565b5b600061330d848285016131fc565b91505092915050565b6000806040838503121561332d5761332c614428565b5b600061333b858286016131fc565b925050602061334c858286016131fc565b9150509250929050565b60008060006060848603121561336f5761336e614428565b5b600061337d868287016131fc565b935050602061338e868287016131fc565b925050604061339f868287016132d4565b9150509250925092565b600080600080608085870312156133c3576133c2614428565b5b60006133d1878288016131fc565b94505060206133e2878288016131fc565b93505060406133f3878288016132d4565b925050606085013567ffffffffffffffff81111561341457613413614423565b5b61342087828801613250565b91505092959194509250565b6000806040838503121561344357613442614428565b5b6000613451858286016131fc565b925050602061346285828601613211565b9150509250929050565b6000806040838503121561348357613482614428565b5b6000613491858286016131fc565b92505060206134a2858286016132d4565b9150509250929050565b6000602082840312156134c2576134c1614428565b5b60006134d084828501613226565b91505092915050565b6000602082840312156134ef576134ee614428565b5b60006134fd8482850161323b565b91505092915050565b6000806020838503121561351d5761351c614428565b5b600083013567ffffffffffffffff81111561353b5761353a614423565b5b6135478582860161327e565b92509250509250929050565b60006020828403121561356957613568614428565b5b6000613577848285016132d4565b91505092915050565b6135898161417d565b82525050565b6135988161417d565b82525050565b6135a78161418f565b82525050565b60006135b882614074565b6135c2818561408a565b93506135d2818560208601614214565b6135db8161442d565b840191505092915050565b60006135f18261407f565b6135fb81856140a6565b935061360b818560208601614214565b6136148161442d565b840191505092915050565b600061362a8261407f565b61363481856140b7565b9350613644818560208601614214565b80840191505092915050565b600061365d6022836140a6565b91506136688261443e565b604082019050919050565b60006136806021836140a6565b915061368b8261448d565b604082019050919050565b60006136a36026836140a6565b91506136ae826144dc565b604082019050919050565b60006136c6602a836140a6565b91506136d18261452b565b604082019050919050565b60006136e96015836140a6565b91506136f48261457a565b602082019050919050565b600061370c6014836140a6565b9150613717826145a3565b602082019050919050565b600061372f6019836140a6565b915061373a826145cc565b602082019050919050565b60006137526023836140a6565b915061375d826145f5565b604082019050919050565b60006137756025836140a6565b915061378082614644565b604082019050919050565b60006137986031836140a6565b91506137a382614693565b604082019050919050565b60006137bb601c836140a6565b91506137c6826146e2565b602082019050919050565b60006137de6009836140a6565b91506137e98261470b565b602082019050919050565b60006138016039836140a6565b915061380c82614734565b604082019050919050565b60006138246018836140a6565b915061382f82614783565b602082019050919050565b6000613847602b836140a6565b9150613852826147ac565b604082019050919050565b600061386a6026836140a6565b9150613875826147fb565b604082019050919050565b600061388d6005836140b7565b91506138988261484a565b600582019050919050565b60006138b06020836140a6565b91506138bb82614873565b602082019050919050565b60006138d3602f836140a6565b91506138de8261489c565b604082019050919050565b60006138f6601a836140a6565b9150613901826148eb565b602082019050919050565b60006139196032836140a6565b915061392482614914565b604082019050919050565b600061393c6014836140a6565b915061394782614963565b602082019050919050565b600061395f6022836140a6565b915061396a8261498c565b604082019050919050565b600061398260008361409b565b915061398d826149db565b600082019050919050565b60006139a56010836140a6565b91506139b0826149de565b602082019050919050565b60006139c86033836140a6565b91506139d382614a07565b604082019050919050565b60006139eb6021836140a6565b91506139f682614a56565b604082019050919050565b6000613a0e6028836140a6565b9150613a1982614aa5565b604082019050919050565b6000613a316013836140a6565b9150613a3c82614af4565b602082019050919050565b6000613a54602e836140a6565b9150613a5f82614b1d565b604082019050919050565b6000613a77601f836140a6565b9150613a8282614b6c565b602082019050919050565b6000613a9a602f836140a6565b9150613aa582614b95565b604082019050919050565b6000613abd602d836140a6565b9150613ac882614be4565b604082019050919050565b604082016000820151613ae96000850182613580565b506020820151613afc6020850182613b11565b50505050565b613b0b816141e7565b82525050565b613b1a816141f1565b82525050565b6000613b2c828561361f565b9150613b38828461361f565b9150613b4382613880565b91508190509392505050565b6000613b5a82613975565b9150819050919050565b6000602082019050613b79600083018461358f565b92915050565b6000608082019050613b94600083018761358f565b613ba1602083018661358f565b613bae6040830185613b02565b8181036060830152613bc081846135ad565b905095945050505050565b6000602082019050613be0600083018461359e565b92915050565b60006020820190508181036000830152613c0081846135e6565b905092915050565b60006020820190508181036000830152613c2181613650565b9050919050565b60006020820190508181036000830152613c4181613673565b9050919050565b60006020820190508181036000830152613c6181613696565b9050919050565b60006020820190508181036000830152613c81816136b9565b9050919050565b60006020820190508181036000830152613ca1816136dc565b9050919050565b60006020820190508181036000830152613cc1816136ff565b9050919050565b60006020820190508181036000830152613ce181613722565b9050919050565b60006020820190508181036000830152613d0181613745565b9050919050565b60006020820190508181036000830152613d2181613768565b9050919050565b60006020820190508181036000830152613d418161378b565b9050919050565b60006020820190508181036000830152613d61816137ae565b9050919050565b60006020820190508181036000830152613d81816137d1565b9050919050565b60006020820190508181036000830152613da1816137f4565b9050919050565b60006020820190508181036000830152613dc181613817565b9050919050565b60006020820190508181036000830152613de18161383a565b9050919050565b60006020820190508181036000830152613e018161385d565b9050919050565b60006020820190508181036000830152613e21816138a3565b9050919050565b60006020820190508181036000830152613e41816138c6565b9050919050565b60006020820190508181036000830152613e61816138e9565b9050919050565b60006020820190508181036000830152613e818161390c565b9050919050565b60006020820190508181036000830152613ea18161392f565b9050919050565b60006020820190508181036000830152613ec181613952565b9050919050565b60006020820190508181036000830152613ee181613998565b9050919050565b60006020820190508181036000830152613f01816139bb565b9050919050565b60006020820190508181036000830152613f21816139de565b9050919050565b60006020820190508181036000830152613f4181613a01565b9050919050565b60006020820190508181036000830152613f6181613a24565b9050919050565b60006020820190508181036000830152613f8181613a47565b9050919050565b60006020820190508181036000830152613fa181613a6a565b9050919050565b60006020820190508181036000830152613fc181613a8d565b9050919050565b60006020820190508181036000830152613fe181613ab0565b9050919050565b6000604082019050613ffd6000830184613ad3565b92915050565b60006020820190506140186000830184613b02565b92915050565b6000614028614039565b90506140348282614279565b919050565b6000604051905090565b600067ffffffffffffffff82111561405e5761405d6143e0565b5b6140678261442d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140cd826141e7565b91506140d8836141e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561410d5761410c614324565b5b828201905092915050565b6000614123826141e7565b915061412e836141e7565b92508261413e5761413d614353565b5b828204905092915050565b6000614154826141e7565b915061415f836141e7565b92508282101561417257614171614324565b5b828203905092915050565b6000614188826141c7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614232578082015181840152602081019050614217565b83811115614241576000848401525b50505050565b6000600282049050600182168061425f57607f821691505b6020821081141561427357614272614382565b5b50919050565b6142828261442d565b810181811067ffffffffffffffff821117156142a1576142a06143e0565b5b80604052505050565b60006142b5826141e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142e8576142e7614324565b5b600182019050919050565b60006142fe826141e7565b9150614309836141e7565b92508261431957614318614353565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53656e64657220616e64206f726967696e2073686f756c642062652073616d6560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265206775696c74792062656172732e0000000000000000000000600082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f4d6178206d696e74207065722077616c6c657420697320352e00000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d696e74206973206e6f7420656e61626c65642e000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614c3c8161417d565b8114614c4757600080fd5b50565b614c538161418f565b8114614c5e57600080fd5b50565b614c6a8161419b565b8114614c7557600080fd5b50565b614c81816141e7565b8114614c8c57600080fd5b5056fea2646970667358221220161ddb0421882fe226b92466888ad93c43672103bb7a1cddb7dac3799866eb7964736f6c63430008070033
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80637d55094d11610118578063c87b56dd116100a0578063dc33e6811161006f578063dc33e6811461077a578063e268e4d3146107b7578063e985e9c5146107e0578063f2fde38b1461081d578063f968adbe146108465761020f565b8063c87b56dd146106bc578063d1239730146106f9578063d5abeb0114610724578063d7224ba01461074f5761020f565b806395d89b41116100e757806395d89b41146105fa578063a0712d6814610625578063a22cb46514610641578063b88d4fde1461066a578063c6f6f216146106935761020f565b80637d55094d146105525780638da5cb5b146105695780638db89f07146105945780639231ab2a146105bd5761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461046d5780636352211e146104965780636c0360eb146104d357806370a08231146104fe578063715018a61461053b5761020f565b80633ccfd60b146103c557806342842e0e146103dc578063453c2310146104055780634f6ccce7146104305761020f565b806318160ddd116101e257806318160ddd146102e2578063228025e81461030d57806323b872dd146103365780632d20fb601461035f5780632f745c59146103885761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906134ac565b610871565b6040516102489190613bcb565b60405180910390f35b34801561025d57600080fd5b506102666109bb565b6040516102739190613be6565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613553565b610a4d565b6040516102b09190613b64565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061346c565b610ad2565b005b3480156102ee57600080fd5b506102f7610beb565b6040516103049190614003565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190613553565b610bf4565b005b34801561034257600080fd5b5061035d60048036038101906103589190613356565b610c7a565b005b34801561036b57600080fd5b5061038660048036038101906103819190613553565b610c8a565b005b34801561039457600080fd5b506103af60048036038101906103aa919061346c565b610d68565b6040516103bc9190614003565b60405180910390f35b3480156103d157600080fd5b506103da610f5a565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190613356565b6110db565b005b34801561041157600080fd5b5061041a6110fb565b6040516104279190614003565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190613553565b611101565b6040516104649190614003565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190613506565b611154565b005b3480156104a257600080fd5b506104bd60048036038101906104b89190613553565b6111e6565b6040516104ca9190613b64565b60405180910390f35b3480156104df57600080fd5b506104e86111fc565b6040516104f59190613be6565b60405180910390f35b34801561050a57600080fd5b50610525600480360381019061052091906132e9565b61128a565b6040516105329190614003565b60405180910390f35b34801561054757600080fd5b50610550611373565b005b34801561055e57600080fd5b506105676113fb565b005b34801561057557600080fd5b5061057e6114a3565b60405161058b9190613b64565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190613553565b6114cd565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613553565b6115b8565b6040516105f19190613fe8565b60405180910390f35b34801561060657600080fd5b5061060f6115d0565b60405161061c9190613be6565b60405180910390f35b61063f600480360381019061063a9190613553565b611662565b005b34801561064d57600080fd5b506106686004803603810190610663919061342c565b611836565b005b34801561067657600080fd5b50610691600480360381019061068c91906133a9565b6119b7565b005b34801561069f57600080fd5b506106ba60048036038101906106b59190613553565b611a13565b005b3480156106c857600080fd5b506106e360048036038101906106de9190613553565b611a99565b6040516106f09190613be6565b60405180910390f35b34801561070557600080fd5b5061070e611b41565b60405161071b9190613bcb565b60405180910390f35b34801561073057600080fd5b50610739611b54565b6040516107469190614003565b60405180910390f35b34801561075b57600080fd5b50610764611b5a565b6040516107719190614003565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c91906132e9565b611b60565b6040516107ae9190614003565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190613553565b611b72565b005b3480156107ec57600080fd5b5061080760048036038101906108029190613316565b611bf8565b6040516108149190613bcb565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f91906132e9565b611c8c565b005b34801561085257600080fd5b5061085b611d84565b6040516108689190614003565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b457506109b382611d8a565b5b9050919050565b6060600180546109ca90614247565b80601f01602080910402602001604051908101604052809291908181526020018280546109f690614247565b8015610a435780601f10610a1857610100808354040283529160200191610a43565b820191906000526020600020905b815481529060010190602001808311610a2657829003601f168201915b5050505050905090565b6000610a5882611df4565b610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90613fc8565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610add826111e6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4590613ea8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6d611e01565b73ffffffffffffffffffffffffffffffffffffffff161480610b9c5750610b9b81610b96611e01565b611bf8565b5b610bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd290613d88565b60405180910390fd5b610be6838383611e09565b505050565b60008054905090565b610bfc611e01565b73ffffffffffffffffffffffffffffffffffffffff16610c1a6114a3565b73ffffffffffffffffffffffffffffffffffffffff1614610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6790613e08565b60405180910390fd5b80600c8190555050565b610c85838383611ebb565b505050565b610c92611e01565b73ffffffffffffffffffffffffffffffffffffffff16610cb06114a3565b73ffffffffffffffffffffffffffffffffffffffff1614610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd90613e08565b60405180910390fd5b60026008541415610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4390613f88565b60405180910390fd5b6002600881905550610d5d816123fb565b600160088190555050565b6000610d738361128a565b8210610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90613c08565b60405180910390fd5b6000610dbe610beb565b905060008060005b83811015610f18576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eb857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0a5786841415610f01578195505050505050610f54565b83806001019450505b508080600101915050610dc6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4b90613f68565b60405180910390fd5b92915050565b610f62611e01565b73ffffffffffffffffffffffffffffffffffffffff16610f806114a3565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90613e08565b60405180910390fd5b6002600854141561101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390613f88565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161104a90613b4f565b60006040518083038185875af1925050503d8060008114611087576040519150601f19603f3d011682016040523d82523d6000602084013e61108c565b606091505b50509050806110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790613ec8565b60405180910390fd5b506001600881905550565b6110f6838383604051806020016040528060008152506119b7565b505050565b600b5481565b600061110b610beb565b821061114c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114390613ce8565b60405180910390fd5b819050919050565b61115c611e01565b73ffffffffffffffffffffffffffffffffffffffff1661117a6114a3565b73ffffffffffffffffffffffffffffffffffffffff16146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790613e08565b60405180910390fd5b8181600991906111e19291906130dd565b505050565b60006111f18261262d565b600001519050919050565b6009805461120990614247565b80601f016020809104026020016040519081016040528092919081815260200182805461123590614247565b80156112825780601f1061125757610100808354040283529160200191611282565b820191906000526020600020905b81548152906001019060200180831161126557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290613dc8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61137b611e01565b73ffffffffffffffffffffffffffffffffffffffff166113996114a3565b73ffffffffffffffffffffffffffffffffffffffff16146113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e690613e08565b60405180910390fd5b6113f960006127c7565b565b611403611e01565b73ffffffffffffffffffffffffffffffffffffffff166114216114a3565b73ffffffffffffffffffffffffffffffffffffffff1614611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e90613e08565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d5611e01565b73ffffffffffffffffffffffffffffffffffffffff166114f36114a3565b73ffffffffffffffffffffffffffffffffffffffff1614611549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154090613e08565b60405180910390fd5b6001600c5461155891906140c2565b81611561610beb565b61156b91906140c2565b106115ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a290613d68565b60405180910390fd5b6115b5338261288d565b50565b6115c0613163565b6115c98261262d565b9050919050565b6060600280546115df90614247565b80601f016020809104026020016040519081016040528092919081815260200182805461160b90614247565b80156116585780601f1061162d57610100808354040283529160200191611658565b820191906000526020600020905b81548152906001019060200180831161163b57829003601f168201915b5050505050905090565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790613c28565b60405180910390fd5b6001600c546116df91906140c2565b816116e8610beb565b6116f291906140c2565b10611732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172990613c88565b60405180910390fd5b600e60009054906101000a900460ff16611781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177890613e88565b60405180910390fd5b600b548161178e33611b60565b61179891906140c2565b11156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613cc8565b60405180910390fd5b6001600a546117e891906140c2565b8110611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090613f48565b60405180910390fd5b611833338261288d565b50565b61183e611e01565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390613e48565b60405180910390fd5b80600660006118b9611e01565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611966611e01565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119ab9190613bcb565b60405180910390a35050565b6119c2848484611ebb565b6119ce848484846128ab565b611a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0490613ee8565b60405180910390fd5b50505050565b611a1b611e01565b73ffffffffffffffffffffffffffffffffffffffff16611a396114a3565b73ffffffffffffffffffffffffffffffffffffffff1614611a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8690613e08565b60405180910390fd5b80600a8190555050565b6060611aa482611df4565b611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada90613e28565b60405180910390fd5b6000611aed612a42565b9050600081511415611b0e5760405180602001604052806000815250611b39565b80611b1884612ad4565b604051602001611b29929190613b20565b6040516020818303038152906040525b915050919050565b600e60009054906101000a900460ff1681565b600c5481565b600d5481565b6000611b6b82612c35565b9050919050565b611b7a611e01565b73ffffffffffffffffffffffffffffffffffffffff16611b986114a3565b73ffffffffffffffffffffffffffffffffffffffff1614611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be590613e08565b60405180910390fd5b80600b8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c94611e01565b73ffffffffffffffffffffffffffffffffffffffff16611cb26114a3565b73ffffffffffffffffffffffffffffffffffffffff1614611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff90613e08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6f90613c48565b60405180910390fd5b611d81816127c7565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ec68261262d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611eed611e01565b73ffffffffffffffffffffffffffffffffffffffff161480611f495750611f12611e01565b73ffffffffffffffffffffffffffffffffffffffff16611f3184610a4d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f655750611f648260000151611f5f611e01565b611bf8565b5b905080611fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9e90613e68565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090613de8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208090613d08565b60405180910390fd5b6120968585856001612d1e565b6120a66000848460000151611e09565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561238b576122ea81611df4565b1561238a5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123f48585856001612d24565b5050505050565b600081141561243f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243690613da8565b60405180910390fd5b600080541415612484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247b90613ca8565b60405180910390fd5b6000600d54905060005481106124cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c690613d48565b60405180910390fd5b600060018383010390506000546001820111156124ef5760016000540390505b60008290505b81811161261d57600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126105760006125728261262d565b905080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080602001516003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550505b80806001019150506124f5565b5060018101600d81905550505050565b612635613163565b61263e82611df4565b61267d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267490613c68565b60405180910390fd5b60008290505b60008110612786576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127775780925050506127c2565b50808060019003915050612683565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b990613fa8565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128a7828260405180602001604052806000815250612d2a565b5050565b60006128cc8473ffffffffffffffffffffffffffffffffffffffff16612d3c565b15612a35578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128f5611e01565b8786866040518563ffffffff1660e01b81526004016129179493929190613b7f565b602060405180830381600087803b15801561293157600080fd5b505af192505050801561296257506040513d601f19601f8201168201806040525081019061295f91906134d9565b60015b6129e5573d8060008114612992576040519150601f19603f3d011682016040523d82523d6000602084013e612997565b606091505b506000815114156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490613ee8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a3a565b600190505b949350505050565b606060098054612a5190614247565b80601f0160208091040260200160405190810160405280929190818152602001828054612a7d90614247565b8015612aca5780601f10612a9f57610100808354040283529160200191612aca565b820191906000526020600020905b815481529060010190602001808311612aad57829003601f168201915b5050505050905090565b60606000821415612b1c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c30565b600082905060005b60008214612b4e578080612b37906142aa565b915050600a82612b479190614118565b9150612b24565b60008167ffffffffffffffff811115612b6a57612b696143e0565b5b6040519080825280601f01601f191660200182016040528015612b9c5781602001600182028036833780820191505090505b5090505b60008514612c2957600182612bb59190614149565b9150600a85612bc491906142f3565b6030612bd091906140c2565b60f81b818381518110612be657612be56143b1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c229190614118565b9450612ba0565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9d90613d28565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b612d378383836001612d5f565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcc90613f08565b60405180910390fd5b6000841415612e19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1090613f28565b60405180910390fd5b612e266000868387612d1e565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156130c057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156130ab5761306b60008884886128ab565b6130aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a190613ee8565b60405180910390fd5b5b81806001019250508080600101915050612ff4565b5080600081905550506130d66000868387612d24565b5050505050565b8280546130e990614247565b90600052602060002090601f01602090048101928261310b5760008555613152565b82601f1061312457803560ff1916838001178555613152565b82800160010185558215613152579182015b82811115613151578235825591602001919060010190613136565b5b50905061315f919061319d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156131b657600081600090555060010161319e565b5090565b60006131cd6131c884614043565b61401e565b9050828152602081018484840111156131e9576131e861441e565b5b6131f4848285614205565b509392505050565b60008135905061320b81614c33565b92915050565b60008135905061322081614c4a565b92915050565b60008135905061323581614c61565b92915050565b60008151905061324a81614c61565b92915050565b600082601f83011261326557613264614414565b5b81356132758482602086016131ba565b91505092915050565b60008083601f84011261329457613293614414565b5b8235905067ffffffffffffffff8111156132b1576132b061440f565b5b6020830191508360018202830111156132cd576132cc614419565b5b9250929050565b6000813590506132e381614c78565b92915050565b6000602082840312156132ff576132fe614428565b5b600061330d848285016131fc565b91505092915050565b6000806040838503121561332d5761332c614428565b5b600061333b858286016131fc565b925050602061334c858286016131fc565b9150509250929050565b60008060006060848603121561336f5761336e614428565b5b600061337d868287016131fc565b935050602061338e868287016131fc565b925050604061339f868287016132d4565b9150509250925092565b600080600080608085870312156133c3576133c2614428565b5b60006133d1878288016131fc565b94505060206133e2878288016131fc565b93505060406133f3878288016132d4565b925050606085013567ffffffffffffffff81111561341457613413614423565b5b61342087828801613250565b91505092959194509250565b6000806040838503121561344357613442614428565b5b6000613451858286016131fc565b925050602061346285828601613211565b9150509250929050565b6000806040838503121561348357613482614428565b5b6000613491858286016131fc565b92505060206134a2858286016132d4565b9150509250929050565b6000602082840312156134c2576134c1614428565b5b60006134d084828501613226565b91505092915050565b6000602082840312156134ef576134ee614428565b5b60006134fd8482850161323b565b91505092915050565b6000806020838503121561351d5761351c614428565b5b600083013567ffffffffffffffff81111561353b5761353a614423565b5b6135478582860161327e565b92509250509250929050565b60006020828403121561356957613568614428565b5b6000613577848285016132d4565b91505092915050565b6135898161417d565b82525050565b6135988161417d565b82525050565b6135a78161418f565b82525050565b60006135b882614074565b6135c2818561408a565b93506135d2818560208601614214565b6135db8161442d565b840191505092915050565b60006135f18261407f565b6135fb81856140a6565b935061360b818560208601614214565b6136148161442d565b840191505092915050565b600061362a8261407f565b61363481856140b7565b9350613644818560208601614214565b80840191505092915050565b600061365d6022836140a6565b91506136688261443e565b604082019050919050565b60006136806021836140a6565b915061368b8261448d565b604082019050919050565b60006136a36026836140a6565b91506136ae826144dc565b604082019050919050565b60006136c6602a836140a6565b91506136d18261452b565b604082019050919050565b60006136e96015836140a6565b91506136f48261457a565b602082019050919050565b600061370c6014836140a6565b9150613717826145a3565b602082019050919050565b600061372f6019836140a6565b915061373a826145cc565b602082019050919050565b60006137526023836140a6565b915061375d826145f5565b604082019050919050565b60006137756025836140a6565b915061378082614644565b604082019050919050565b60006137986031836140a6565b91506137a382614693565b604082019050919050565b60006137bb601c836140a6565b91506137c6826146e2565b602082019050919050565b60006137de6009836140a6565b91506137e98261470b565b602082019050919050565b60006138016039836140a6565b915061380c82614734565b604082019050919050565b60006138246018836140a6565b915061382f82614783565b602082019050919050565b6000613847602b836140a6565b9150613852826147ac565b604082019050919050565b600061386a6026836140a6565b9150613875826147fb565b604082019050919050565b600061388d6005836140b7565b91506138988261484a565b600582019050919050565b60006138b06020836140a6565b91506138bb82614873565b602082019050919050565b60006138d3602f836140a6565b91506138de8261489c565b604082019050919050565b60006138f6601a836140a6565b9150613901826148eb565b602082019050919050565b60006139196032836140a6565b915061392482614914565b604082019050919050565b600061393c6014836140a6565b915061394782614963565b602082019050919050565b600061395f6022836140a6565b915061396a8261498c565b604082019050919050565b600061398260008361409b565b915061398d826149db565b600082019050919050565b60006139a56010836140a6565b91506139b0826149de565b602082019050919050565b60006139c86033836140a6565b91506139d382614a07565b604082019050919050565b60006139eb6021836140a6565b91506139f682614a56565b604082019050919050565b6000613a0e6028836140a6565b9150613a1982614aa5565b604082019050919050565b6000613a316013836140a6565b9150613a3c82614af4565b602082019050919050565b6000613a54602e836140a6565b9150613a5f82614b1d565b604082019050919050565b6000613a77601f836140a6565b9150613a8282614b6c565b602082019050919050565b6000613a9a602f836140a6565b9150613aa582614b95565b604082019050919050565b6000613abd602d836140a6565b9150613ac882614be4565b604082019050919050565b604082016000820151613ae96000850182613580565b506020820151613afc6020850182613b11565b50505050565b613b0b816141e7565b82525050565b613b1a816141f1565b82525050565b6000613b2c828561361f565b9150613b38828461361f565b9150613b4382613880565b91508190509392505050565b6000613b5a82613975565b9150819050919050565b6000602082019050613b79600083018461358f565b92915050565b6000608082019050613b94600083018761358f565b613ba1602083018661358f565b613bae6040830185613b02565b8181036060830152613bc081846135ad565b905095945050505050565b6000602082019050613be0600083018461359e565b92915050565b60006020820190508181036000830152613c0081846135e6565b905092915050565b60006020820190508181036000830152613c2181613650565b9050919050565b60006020820190508181036000830152613c4181613673565b9050919050565b60006020820190508181036000830152613c6181613696565b9050919050565b60006020820190508181036000830152613c81816136b9565b9050919050565b60006020820190508181036000830152613ca1816136dc565b9050919050565b60006020820190508181036000830152613cc1816136ff565b9050919050565b60006020820190508181036000830152613ce181613722565b9050919050565b60006020820190508181036000830152613d0181613745565b9050919050565b60006020820190508181036000830152613d2181613768565b9050919050565b60006020820190508181036000830152613d418161378b565b9050919050565b60006020820190508181036000830152613d61816137ae565b9050919050565b60006020820190508181036000830152613d81816137d1565b9050919050565b60006020820190508181036000830152613da1816137f4565b9050919050565b60006020820190508181036000830152613dc181613817565b9050919050565b60006020820190508181036000830152613de18161383a565b9050919050565b60006020820190508181036000830152613e018161385d565b9050919050565b60006020820190508181036000830152613e21816138a3565b9050919050565b60006020820190508181036000830152613e41816138c6565b9050919050565b60006020820190508181036000830152613e61816138e9565b9050919050565b60006020820190508181036000830152613e818161390c565b9050919050565b60006020820190508181036000830152613ea18161392f565b9050919050565b60006020820190508181036000830152613ec181613952565b9050919050565b60006020820190508181036000830152613ee181613998565b9050919050565b60006020820190508181036000830152613f01816139bb565b9050919050565b60006020820190508181036000830152613f21816139de565b9050919050565b60006020820190508181036000830152613f4181613a01565b9050919050565b60006020820190508181036000830152613f6181613a24565b9050919050565b60006020820190508181036000830152613f8181613a47565b9050919050565b60006020820190508181036000830152613fa181613a6a565b9050919050565b60006020820190508181036000830152613fc181613a8d565b9050919050565b60006020820190508181036000830152613fe181613ab0565b9050919050565b6000604082019050613ffd6000830184613ad3565b92915050565b60006020820190506140186000830184613b02565b92915050565b6000614028614039565b90506140348282614279565b919050565b6000604051905090565b600067ffffffffffffffff82111561405e5761405d6143e0565b5b6140678261442d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140cd826141e7565b91506140d8836141e7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561410d5761410c614324565b5b828201905092915050565b6000614123826141e7565b915061412e836141e7565b92508261413e5761413d614353565b5b828204905092915050565b6000614154826141e7565b915061415f836141e7565b92508282101561417257614171614324565b5b828203905092915050565b6000614188826141c7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614232578082015181840152602081019050614217565b83811115614241576000848401525b50505050565b6000600282049050600182168061425f57607f821691505b6020821081141561427357614272614382565b5b50919050565b6142828261442d565b810181811067ffffffffffffffff821117156142a1576142a06143e0565b5b80604052505050565b60006142b5826141e7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142e8576142e7614324565b5b600182019050919050565b60006142fe826141e7565b9150614309836141e7565b92508261431957614318614353565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53656e64657220616e64206f726967696e2073686f756c642062652073616d6560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f206d6f7265206775696c74792062656172732e0000000000000000000000600082015250565b7f6e6f20746f6b656e73206d696e74656420796574000000000000000000000000600082015250565b7f4d6178206d696e74207065722077616c6c657420697320352e00000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f616c6c206f776e657273686970732068617665206265656e2073657400000000600082015250565b7f746f6f206d616e79210000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d696e74206973206e6f7420656e61626c65642e000000000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614c3c8161417d565b8114614c4757600080fd5b50565b614c538161418f565b8114614c5e57600080fd5b50565b614c6a8161419b565b8114614c7557600080fd5b50565b614c81816141e7565b8114614c8c57600080fd5b5056fea2646970667358221220161ddb0421882fe226b92466888ad93c43672103bb7a1cddb7dac3799866eb7964736f6c63430008070033
Loading...
Loading
Loading...
Loading
[ 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.