Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,022 KPC
Holders
499
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 KPCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xf1495938...5967568a7 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
KangarooPunchClub
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526//SPDX-License-Identifier: UNLICENSEDpragma solidity ^0.8.0;import "erc721a/contracts/ERC721A.sol";import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";import "@openzeppelin/contracts/finance/PaymentSplitter.sol";import "@openzeppelin/contracts/access/Ownable.sol";contract KangarooPunchClub is ERC721A, Ownable, PaymentSplitter {using Strings for uint256;using ECDSA for bytes32;uint256 public maxSupply = 9999;uint256 public price = 0.099 ether;uint256 public presalePrice = 0.088 ether;address private whitelistAddress = 0xFEa34B493Eb11af26f2DfCcc0eDB9322154c2Df9;uint256 public presaleStart = 1647448140;uint256 public publicStart = 1647449940;string public baseURI;string public notRevealedUri;bool public revealed = false;bool public paused = false;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** By default, the owner account will be the one that deploys the contract. This* can later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);/*** @dev Initializes the contract setting the deployer as the initial owner.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)pragma solidity ^0.8.0;import "../token/ERC20/utils/SafeERC20.sol";import "../utils/Address.sol";import "../utils/Context.sol";/*** @title PaymentSplitter* @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware* that the Ether will be split in this way, since it is handled transparently by the contract.** The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each* account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim* an amount proportional to the percentage of total shares they were assigned.** `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the* accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}* function.** NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and* tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you* to run tests before sending real value to this contract.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.0;import "../Strings.sol";/*** @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.** These functions can be used to verify that a message was signed by the holder* of the private keys of a given address.*/library ECDSA {enum RecoverError {NoError,InvalidSignature,InvalidSignatureLength,InvalidSignatureS,InvalidSignatureV}function _throwError(RecoverError error) private pure {if (error == RecoverError.NoError) {return; // no error: do nothing} else if (error == RecoverError.InvalidSignature) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// Creator: Chiru Labspragma solidity ^0.8.0;import '@openzeppelin/contracts/token/ERC721/IERC721.sol';import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';import '@openzeppelin/contracts/utils/Address.sol';import '@openzeppelin/contracts/utils/Context.sol';import '@openzeppelin/contracts/utils/Strings.sol';import '@openzeppelin/contracts/utils/introspection/ERC165.sol';/*** @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 (max value of uint128) of supply*/contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {using Address for address;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragma solidity ^0.8.0;import "./IERC165.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check* for the additional interface id that will be supported. For example:** ```solidity* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);* }* ```** Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// 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.solif (value == 0) {return "0";}uint256 temp = value;uint256 digits;while (temp != 0) {digits++;temp /= 10;
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)pragma solidity ^0.8.0;/*** @dev Collection of functions related to the address type*/library Address {/*** @dev Returns true if `account` is a contract.** [IMPORTANT]* ====* It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.** Among others, `isContract` will return false for the following* types of addresses:** - an externally-owned account* - a contract in construction* - an address where a contract will be created* - an address where a contract lived, but was destroyed* ====*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @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 tokenId);/*** @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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.0;import "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional metadata extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Metadata is IERC721 {/*** @dev Returns the token collection name.*/function name() external view returns (string memory);/*** @dev Returns the token collection symbol.*/function symbol() external view returns (string memory);/*** @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.*/function tokenURI(uint256 tokenId) external view returns (string memory);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// 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);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)pragma solidity ^0.8.0;import "../../utils/introspection/IERC165.sol";/*** @dev Required interface of an ERC721 compliant contract.*/interface IERC721 is IERC165 {/*** @dev Emitted when `tokenId` token is transferred from `from` to `to`.*/event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.*/event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.*/event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)pragma solidity ^0.8.0;import "../IERC20.sol";import "../../../utils/Address.sol";/*** @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));
12345678910111213141516171819202122232425// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[EIP].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (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 `recipient`.** Returns a boolean value indicating whether the operation succeeded.** Emits a {Transfer} event.*/
123456789101112131415161718{"optimizer": {"enabled": true,"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"forceMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStart","type":"uint256"}],"name":"setPresaleStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStart","type":"uint256"}],"name":"setPublicStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setWhitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"switchPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"tokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6000805561270f600f5567015fb7f9b8c38000601055670138a388a43c0000601155601280546001600160a01b03191673fea34b493eb11af26f2dfccc0edb9322154c2df9179055636232104c60135563623217546014556017805461ffff1916905560e060405273051e27ddd2fd877f31ee5d68aac95599eb68f4db608090815273567e7f90d97dd1de458c926e60242dfb42529fad60a05273b7972f8ed9c302f50b697ddd6c10d8b2687cf58560c052620000c190601990600362000b62565b50604080516060810182526061815260026020820152600191810191909152620000f090601a90600362000bcc565b50348015620000fe57600080fd5b5060198054806020026020016040519081016040528092919081815260200182805480156200015757602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000138575b5050505050601a805480602002602001604051908101604052809291908181526020018280548015620001aa57602002820191906000526020600020905b81548152602001906001019080831162000195575b5050604080518082018252601181527025b0b733b0b937b7a83ab731b421b63ab160791b6020808301918252835180850190945260038452624b504360e81b9084015281519195509193506200020592506001919062000c0f565b5080516200021b90600290602084019062000c0f565b5050506200023862000232620003bd60201b60201c565b620003c1565b8051825114620002aa5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002fd5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620002a1565b60005b825181101562000369576200035483828151811062000323576200032362000e0b565b602002602001015183838151811062000340576200034062000e0b565b60200260200101516200041360201b60201c565b80620003608162000dd7565b91505062000300565b505060408051602081019091526000815262000386915062000601565b620003aa604051806060016040528060358152602001620048e86035913962000665565b620003b7336001620006c5565b62000e21565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004805760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620002a1565b60008111620004d25760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620002a1565b6001600160a01b0382166000908152600a6020526040902054156200054e5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620002a1565b600c8054600181019091557fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0384169081179091556000908152600a60205260409020819055600854620005b890829062000d7f565b600855604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6007546001600160a01b031633146200064c5760405162461bcd60e51b815260206004820181905260248201526000805160206200491d8339815191526044820152606401620002a1565b80516200066190601590602084019062000c0f565b5050565b6007546001600160a01b03163314620006b05760405162461bcd60e51b815260206004820181905260248201526000805160206200491d8339815191526044820152606401620002a1565b80516200066190601690602084019062000c0f565b62000661828260405180602001604052806000815250620006e760201b60201c565b6000546001600160a01b0384166200074c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401620002a1565b62000758816000541190565b15620007a75760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401620002a1565b60008311620008055760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401620002a1565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906200086390879062000d51565b6001600160801b0316815260200185836020015162000883919062000d51565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015620009e75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4620009696000888488620009f2565b620009c25760405162461bcd60e51b815260206004820152603360248201526000805160206200493d83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401620002a1565b81620009ce8162000dd7565b9250508080620009de9062000dd7565b91505062000919565b506000555050505050565b600062000a13846001600160a01b031662000b5c60201b620020091760201c565b1562000b5057604051630a85bd0160e11b81526001600160a01b0385169063150b7a029062000a4d90339089908890889060040162000cd6565b602060405180830381600087803b15801562000a6857600080fd5b505af192505050801562000a9b575060408051601f3d908101601f1916820190925262000a989181019062000ca3565b60015b62000b35573d80801562000acc576040519150601f19603f3d011682016040523d82523d6000602084013e62000ad1565b606091505b50805162000b2d5760405162461bcd60e51b815260206004820152603360248201526000805160206200493d83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401620002a1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000b54565b5060015b949350505050565b3b151590565b82805482825590600052602060002090810192821562000bba579160200282015b8281111562000bba57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000b83565b5062000bc892915062000c8c565b5090565b82805482825590600052602060002090810192821562000bba579160200282015b8281111562000bba578251829060ff1690559160200191906001019062000bed565b82805462000c1d9062000d9a565b90600052602060002090601f01602090048101928262000c41576000855562000bba565b82601f1062000c5c57805160ff191683800117855562000bba565b8280016001018555821562000bba579182015b8281111562000bba57825182559160200191906001019062000c6f565b5b8082111562000bc8576000815560010162000c8d565b60006020828403121562000cb657600080fd5b81516001600160e01b03198116811462000ccf57600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b8281101562000d255785810182015185820160a00152810162000d07565b8281111562000d3857600060a084870101525b5050601f01601f19169190910160a00195945050505050565b60006001600160801b0382811684821680830382111562000d765762000d7662000df5565b01949350505050565b6000821982111562000d955762000d9562000df5565b500190565b600181811c9082168062000daf57607f821691505b6020821081141562000dd157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000dee5762000dee62000df5565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b613ab78062000e316000396000f3fe60806040526004361061036e5760003560e01c8063715018a6116101c6578063a5f4c6ff116100f7578063d63ba14911610095578063e33b7de31161006f578063e33b7de314610a17578063e985e9c514610a2c578063f2c4ce1e14610a75578063f2fde38b14610a9557600080fd5b8063d63ba149146109b8578063d79779b2146109cb578063de8801e514610a0157600080fd5b8063b88d4fde116100d1578063b88d4fde1461092c578063c87b56dd1461094c578063ce7c2ac21461096c578063d5abeb01146109a257600080fd5b8063a5f4c6ff146108ee578063b3ab66b014610904578063b76325911461091757600080fd5b8063942244c011610164578063a035b1fe1161013e578063a035b1fe14610883578063a224c74514610899578063a22cb465146108b9578063a475b5dd146108d957600080fd5b8063942244c01461082357806395d89b41146108385780639852595c1461084d57600080fd5b806378152bbe116101a057806378152bbe146107a55780638b83209b146107c55780638da5cb5b146107e557806391b7f5ed1461080357600080fd5b8063715018a61461075b578063729ad39e1461077057806377ee4b0f1461079057600080fd5b8063406072a9116102a0578063561714171161023e5780636c0360eb116102185780636c0360eb146106e65780636c1fff59146106fb5780636f8b44b01461071b57806370a082311461073b57600080fd5b806356171417146106875780635c975abb146106a75780636352211e146106c657600080fd5b80634f6ccce71161027a5780634f6ccce7146106005780635183022714610620578063546104811461063a57806355f804b31461066757600080fd5b8063406072a91461057a57806342842e0e146105c057806348b75044146105e057600080fd5b8063191655871161030d5780632f745c59116102e75780632f745c59146105105780632fbc0bf1146105305780633549345e146105455780633a98ef391461056557600080fd5b806319165587146104bb57806323b872dd146104db5780632cd981d4146104fb57600080fd5b8063081812fc11610349578063081812fc14610437578063081c8c441461046f578063095ea7b31461048457806318160ddd146104a657600080fd5b80620e7fa8146103bc57806301ffc9a7146103e557806306fdde031461041557600080fd5b366103b7577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103c857600080fd5b506103d260115481565b6040519081526020015b60405180910390f35b3480156103f157600080fd5b506104056104003660046134f1565b610ab5565b60405190151581526020016103dc565b34801561042157600080fd5b5061042a610b22565b6040516103dc91906136da565b34801561044357600080fd5b50610457610452366004613574565b610bb4565b6040516001600160a01b0390911681526020016103dc565b34801561047b57600080fd5b5061042a610c44565b34801561049057600080fd5b506104a461049f366004613433565b610cd2565b005b3480156104b257600080fd5b506000546103d2565b3480156104c757600080fd5b506104a46104d63660046132ee565b610dea565b3480156104e757600080fd5b506104a46104f6366004613344565b610f18565b34801561050757600080fd5b506104a4610f23565b34801561051c57600080fd5b506103d261052b366004613433565b610f6a565b34801561053c57600080fd5b506010546103d2565b34801561055157600080fd5b506104a4610560366004613574565b6110d8565b34801561057157600080fd5b506008546103d2565b34801561058657600080fd5b506103d261059536600461330b565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b3480156105cc57600080fd5b506104a46105db366004613344565b611107565b3480156105ec57600080fd5b506104a46105fb36600461330b565b611122565b34801561060c57600080fd5b506103d261061b366004613574565b61130a565b34801561062c57600080fd5b506017546104059060ff1681565b34801561064657600080fd5b506103d26106553660046132ee565b60186020526000908152604090205481565b34801561067357600080fd5b506104a461068236600461352b565b61136c565b34801561069357600080fd5b506104a46106a2366004613574565b6113ad565b3480156106b357600080fd5b5060175461040590610100900460ff1681565b3480156106d257600080fd5b506104576106e1366004613574565b6113dc565b3480156106f257600080fd5b5061042a6113ee565b34801561070757600080fd5b506104a4610716366004613574565b6113fb565b34801561072757600080fd5b506104a4610736366004613574565b611467565b34801561074757600080fd5b506103d26107563660046132ee565b611496565b34801561076757600080fd5b506104a4611527565b34801561077c57600080fd5b506104a461078b36600461345f565b61155d565b34801561079c57600080fd5b506011546103d2565b3480156107b157600080fd5b506104a46107c0366004613574565b611609565b3480156107d157600080fd5b506104576107e0366004613574565b611638565b3480156107f157600080fd5b506007546001600160a01b0316610457565b34801561080f57600080fd5b506104a461081e366004613574565b611668565b34801561082f57600080fd5b506013546103d2565b34801561084457600080fd5b5061042a611697565b34801561085957600080fd5b506103d26108683660046132ee565b6001600160a01b03166000908152600b602052604090205490565b34801561088f57600080fd5b506103d260105481565b3480156108a557600080fd5b506104a46108b43660046132ee565b6116a6565b3480156108c557600080fd5b506104a46108d4366004613405565b61173e565b3480156108e557600080fd5b506104a4611803565b3480156108fa57600080fd5b506103d260145481565b6104a4610912366004613574565b61183c565b34801561092357600080fd5b506014546103d2565b34801561093857600080fd5b506104a4610947366004613385565b611a06565b34801561095857600080fd5b5061042a610967366004613574565b611a39565b34801561097857600080fd5b506103d26109873660046132ee565b6001600160a01b03166000908152600a602052604090205490565b3480156109ae57600080fd5b506103d2600f5481565b6104a46109c63660046135a6565b611bb7565b3480156109d757600080fd5b506103d26109e63660046132ee565b6001600160a01b03166000908152600d602052604090205490565b348015610a0d57600080fd5b506103d260135481565b348015610a2357600080fd5b506009546103d2565b348015610a3857600080fd5b50610405610a4736600461330b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a8157600080fd5b506104a4610a9036600461352b565b611f34565b348015610aa157600080fd5b506104a4610ab03660046132ee565b611f71565b60006001600160e01b031982166380ac58cd60e01b1480610ae657506001600160e01b03198216635b5e139f60e01b145b80610b0157506001600160e01b0319821663780e9d6360e01b145b80610b1c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610b3190613970565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d90613970565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b5050505050905090565b6000610bc1826000541190565b610c285760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60168054610c5190613970565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7d90613970565b8015610cca5780601f10610c9f57610100808354040283529160200191610cca565b820191906000526020600020905b815481529060010190602001808311610cad57829003601f168201915b505050505081565b6000610cdd826113dc565b9050806001600160a01b0316836001600160a01b03161415610d4c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c1f565b336001600160a01b0382161480610d685750610d688133610a47565b610dda5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c1f565b610de583838361200f565b505050565b6001600160a01b0381166000908152600a6020526040902054610e1f5760405162461bcd60e51b8152600401610c1f90613790565b6000610e2a60095490565b610e3490476138cb565b90506000610e618383610e5c866001600160a01b03166000908152600b602052604090205490565b61206b565b905080610e805760405162461bcd60e51b8152600401610c1f906137d6565b6001600160a01b0383166000908152600b602052604081208054839290610ea89084906138cb565b925050819055508060096000828254610ec191906138cb565b90915550610ed1905083826120b1565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610de58383836121ca565b6007546001600160a01b03163314610f4d5760405162461bcd60e51b8152600401610c1f90613821565b6017805461ff001981166101009182900460ff1615909102179055565b6000610f7583611496565b8210610fce5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c1f565b600080549080805b83811015611078576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561102957805192505b876001600160a01b0316836001600160a01b03161415611065578684141561105757509350610b1c92505050565b83611061816139ab565b9450505b5080611070816139ab565b915050610fd6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610c1f565b6007546001600160a01b031633146111025760405162461bcd60e51b8152600401610c1f90613821565b601155565b610de583838360405180602001604052806000815250611a06565b6001600160a01b0381166000908152600a60205260409020546111575760405162461bcd60e51b8152600401610c1f90613790565b6001600160a01b0382166000908152600d60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156111af57600080fd5b505afa1580156111c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e7919061358d565b6111f191906138cb565b9050600061122a8383610e5c87876001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b9050806112495760405162461bcd60e51b8152600401610c1f906137d6565b6001600160a01b038085166000908152600e60209081526040808320938716835292905290812080548392906112809084906138cb565b90915550506001600160a01b0384166000908152600d6020526040812080548392906112ad9084906138cb565b909155506112be9050848483612511565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000805482106113685760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c1f565b5090565b6007546001600160a01b031633146113965760405162461bcd60e51b8152600401610c1f90613821565b80516113a99060159060208401906131e8565b5050565b6007546001600160a01b031633146113d75760405162461bcd60e51b8152600401610c1f90613821565b601455565b60006113e782612563565b5192915050565b60158054610c5190613970565b6007546001600160a01b031633146114255760405162461bcd60e51b8152600401610c1f90613821565b600f548161143260005490565b61143c91906138cb565b111561145a5760405162461bcd60e51b8152600401610c1f90613733565b6114643382612643565b50565b6007546001600160a01b031633146114915760405162461bcd60e51b8152600401610c1f90613821565b600f55565b60006001600160a01b0382166115025760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c1f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146115515760405162461bcd60e51b8152600401610c1f90613821565b61155b600061265d565b565b6007546001600160a01b031633146115875760405162461bcd60e51b8152600401610c1f90613821565b600054600f5461159783836138cb565b11156115b55760405162461bcd60e51b8152600401610c1f90613733565b60005b82811015611603576115f18484838181106115d5576115d5613a1c565b90506020020160208101906115ea91906132ee565b6001612643565b806115fb816139ab565b9150506115b8565b50505050565b6007546001600160a01b031633146116335760405162461bcd60e51b8152600401610c1f90613821565b601355565b6000600c828154811061164d5761164d613a1c565b6000918252602090912001546001600160a01b031692915050565b6007546001600160a01b031633146116925760405162461bcd60e51b8152600401610c1f90613821565b601055565b606060028054610b3190613970565b6007546001600160a01b031633146116d05760405162461bcd60e51b8152600401610c1f90613821565b6001600160a01b03811661171c5760405162461bcd60e51b815260206004820152601360248201527243414e2754205055542030204144445245535360681b6044820152606401610c1f565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382163314156117975760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c1f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461182d5760405162461bcd60e51b8152600401610c1f90613821565b6017805460ff19166001179055565b601754610100900460ff16156118895760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610c1f565b600054816118d95760405162461bcd60e51b815260206004820152601f60248201527f596f75206d757374206d696e74206174206c65617374206f6e65204e46542e006044820152606401610c1f565b600f546118e683836138cb565b11156119345760405162461bcd60e51b815260206004820152601e60248201527f4b616e6761726f6f2050756e636820436c75623a20536f6c64206f75742100006044820152606401610c1f565b600060145411801561194857506014544210155b6119aa5760405162461bcd60e51b815260206004820152602d60248201527f4b616e6761726f6f2050756e636820436c75623a207075626c69632073616c6560448201526c103737ba1039ba30b93a32b21760991b6064820152608401610c1f565b816010546119b891906138f7565b3410156119d75760405162461bcd60e51b8152600401610c1f906136ed565b33600090815260186020526040812080548492906119f69084906138cb565b909155506113a990503383612643565b611a118484846121ca565b611a1d848484846126af565b6116035760405162461bcd60e51b8152600401610c1f90613856565b60175460609060ff16611ad85760168054611a5390613970565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7f90613970565b8015611acc5780601f10611aa157610100808354040283529160200191611acc565b820191906000526020600020905b815481529060010190602001808311611aaf57829003601f168201915b50505050509050919050565b600060158054611ae790613970565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1390613970565b8015611b605780601f10611b3557610100808354040283529160200191611b60565b820191906000526020600020905b815481529060010190602001808311611b4357829003601f168201915b505050505090506000815111611b855760405180602001604052806000815250611bb0565b80611b8f846127bc565b604051602001611ba092919061366e565b6040516020818303038152906040525b9392505050565b601754610100900460ff1615611c045760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610c1f565b60005484611c545760405162461bcd60e51b815260206004820181905260248201527f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e6044820152606401610c1f565b601254611caa906001600160a01b0316611c6e86336128ba565b85858080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506128ff92505050565b611cf65760405162461bcd60e51b815260206004820152601b60248201527f5349474e41545552455f56414c49444154494f4e5f4641494c454400000000006044820152606401610c1f565b6000601354118015611d0a57506013544210155b611d7c5760405162461bcd60e51b815260206004820152603760248201527f4b616e6761726f6f2050756e636820436c75623a2057686974656c697374206d60448201527f696e74206973206e6f74207374617274656420796574210000000000000000006064820152608401610c1f565b6000601454118015611d8f575060145442105b611df45760405162461bcd60e51b815260206004820152603060248201527f4b616e6761726f6f2050756e636820436c75623a2057686974656c697374206d60448201526f696e742069732066696e69736865642160801b6064820152608401610c1f565b336000908152601860205260409020548490611e119087906138cb565b1115611e765760405162461bcd60e51b815260206004820152602e60248201527f4b616e6761726f6f2050756e636820436c75623a20596f752063616e2774206d60448201526d696e74206d6f7265204e4654732160901b6064820152608401610c1f565b600f54611e8386836138cb565b1115611ed15760405162461bcd60e51b815260206004820152601f60248201527f4b616e6761726f6f2050756e636820436c75623a20534f4c44204f55542021006044820152606401610c1f565b84601154611edf91906138f7565b341015611efe5760405162461bcd60e51b8152600401610c1f906136ed565b3360009081526018602052604081208054879290611f1d9084906138cb565b90915550611f2d90503386612643565b5050505050565b6007546001600160a01b03163314611f5e5760405162461bcd60e51b8152600401610c1f90613821565b80516113a99060169060208401906131e8565b6007546001600160a01b03163314611f9b5760405162461bcd60e51b8152600401610c1f90613821565b6001600160a01b0381166120005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c1f565b6114648161265d565b3b151590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0384166000908152600a60205260408120549091839161209590866138f7565b61209f91906138e3565b6120a99190613916565b949350505050565b804710156121015760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c1f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461214e576040519150601f19603f3d011682016040523d82523d6000602084013e612153565b606091505b5050905080610de55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c1f565b60006121d582612563565b80519091506000906001600160a01b0316336001600160a01b0316148061220c57503361220184610bb4565b6001600160a01b0316145b8061221e5750815161221e9033610a47565b9050806122885760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610c1f565b846001600160a01b031682600001516001600160a01b0316146122fc5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c1f565b6001600160a01b0384166123605760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c1f565b612370600084846000015161200f565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906124359085906138cb565b6000818152600360205260409020549091506001600160a01b03166124c75761245f816000541190565b156124c75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610de590849061297f565b6040805180820190915260008082526020820152612582826000541190565b6125e15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c1f565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612630579392505050565b508061263b81613959565b9150506125e3565b6113a9828260405180602001604052806000815250612a51565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156127b157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126f390339089908890889060040161369d565b602060405180830381600087803b15801561270d57600080fd5b505af192505050801561273d575060408051601f3d908101601f1916820190925261273a9181019061350e565b60015b612797573d80801561276b576040519150601f19603f3d011682016040523d82523d6000602084013e612770565b606091505b50805161278f5760405162461bcd60e51b8152600401610c1f90613856565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120a9565b506001949350505050565b6060816127e05750506040805180820190915260018152600360fc1b602082015290565b8160005b811561280a57806127f4816139ab565b91506128039050600a836138e3565b91506127e4565b60008167ffffffffffffffff81111561282557612825613a32565b6040519080825280601f01601f19166020018201604052801561284f576020820181803683370190505b5090505b84156120a957612864600183613916565b9150612871600a866139c6565b61287c9060306138cb565b60f81b81838151811061289157612891613a1c565b60200101906001600160f81b031916908160001a9053506128b3600a866138e3565b9450612853565b600082826040516020016128e19291909182526001600160a01b0316602082015260400190565b60405160208183030381529060405280519060200120905092915050565b60006129628261295c856040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90612d0d565b6001600160a01b0316846001600160a01b03161490509392505050565b60006129d4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d319092919063ffffffff16565b805190915015610de557808060200190518101906129f291906134d4565b610de55760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c1f565b6000546001600160a01b038416612ab45760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c1f565b612abf816000541190565b15612b0c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610c1f565b60008311612b685760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610c1f565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612bc49087906138a9565b6001600160801b03168152602001858360200151612be291906138a9565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612d025760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612cc660008884886126af565b612ce25760405162461bcd60e51b8152600401610c1f90613856565b81612cec816139ab565b9250508080612cfa906139ab565b915050612c79565b506000819055612509565b6000806000612d1c8585612d40565b91509150612d2981612db0565b509392505050565b60606120a98484600085612f6b565b600080825160411415612d775760208301516040840151606085015160001a612d6b87828585613093565b94509450505050612da9565b825160401415612da15760208301516040840151612d96868383613180565b935093505050612da9565b506000905060025b9250929050565b6000816004811115612dc457612dc4613a06565b1415612dcd5750565b6001816004811115612de157612de1613a06565b1415612e2f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610c1f565b6002816004811115612e4357612e43613a06565b1415612e915760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610c1f565b6003816004811115612ea557612ea5613a06565b1415612efe5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610c1f565b6004816004811115612f1257612f12613a06565b14156114645760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610c1f565b606082471015612fcc5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610c1f565b843b61301a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c1f565b600080866001600160a01b031685876040516130369190613652565b60006040518083038185875af1925050503d8060008114613073576040519150601f19603f3d011682016040523d82523d6000602084013e613078565b606091505b50915091506130888282866131af565b979650505050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156130ca5750600090506003613177565b8460ff16601b141580156130e257508460ff16601c14155b156130f35750600090506004613177565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613147573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661317057600060019250925050613177565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016131a187828885613093565b935093505050935093915050565b606083156131be575081611bb0565b8251156131ce5782518084602001fd5b8160405162461bcd60e51b8152600401610c1f91906136da565b8280546131f490613970565b90600052602060002090601f016020900481019282613216576000855561325c565b82601f1061322f57805160ff191683800117855561325c565b8280016001018555821561325c579182015b8281111561325c578251825591602001919060010190613241565b506113689291505b808211156113685760008155600101613264565b600067ffffffffffffffff8084111561329357613293613a32565b604051601f8501601f19908116603f011681019082821181831017156132bb576132bb613a32565b816040528093508581528686860111156132d457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561330057600080fd5b8135611bb081613a48565b6000806040838503121561331e57600080fd5b823561332981613a48565b9150602083013561333981613a48565b809150509250929050565b60008060006060848603121561335957600080fd5b833561336481613a48565b9250602084013561337481613a48565b929592945050506040919091013590565b6000806000806080858703121561339b57600080fd5b84356133a681613a48565b935060208501356133b681613a48565b925060408501359150606085013567ffffffffffffffff8111156133d957600080fd5b8501601f810187136133ea57600080fd5b6133f987823560208401613278565b91505092959194509250565b6000806040838503121561341857600080fd5b823561342381613a48565b9150602083013561333981613a5d565b6000806040838503121561344657600080fd5b823561345181613a48565b946020939093013593505050565b6000806020838503121561347257600080fd5b823567ffffffffffffffff8082111561348a57600080fd5b818501915085601f83011261349e57600080fd5b8135818111156134ad57600080fd5b8660208260051b85010111156134c257600080fd5b60209290920196919550909350505050565b6000602082840312156134e657600080fd5b8151611bb081613a5d565b60006020828403121561350357600080fd5b8135611bb081613a6b565b60006020828403121561352057600080fd5b8151611bb081613a6b565b60006020828403121561353d57600080fd5b813567ffffffffffffffff81111561355457600080fd5b8201601f8101841361356557600080fd5b6120a984823560208401613278565b60006020828403121561358657600080fd5b5035919050565b60006020828403121561359f57600080fd5b5051919050565b600080600080606085870312156135bc57600080fd5b8435935060208501359250604085013567ffffffffffffffff808211156135e257600080fd5b818701915087601f8301126135f657600080fd5b81358181111561360557600080fd5b88602082850101111561361757600080fd5b95989497505060200194505050565b6000815180845261363e81602086016020860161392d565b601f01601f19169290920160200192915050565b6000825161366481846020870161392d565b9190910192915050565b6000835161368081846020880161392d565b83519083019061369481836020880161392d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136d090830184613626565b9695505050505050565b602081526000611bb06020830184613626565b60208082526026908201527f4b616e6761726f6f2050756e636820436c75623a20496e737566696369656e746040820152652066756e647360d01b606082015260800190565b60208082526038908201527f4b616e6761726f6f2050756e636820436c75623a20596f752063616e2774206d60408201527f696e74206d6f7265207468616e206d617820737570706c790000000000000000606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115613694576136946139da565b600082198211156138de576138de6139da565b500190565b6000826138f2576138f26139f0565b500490565b6000816000190483118215151615613911576139116139da565b500290565b600082821015613928576139286139da565b500390565b60005b83811015613948578181015183820152602001613930565b838111156116035750506000910152565b600081613968576139686139da565b506000190190565b600181811c9082168061398457607f821691505b602082108114156139a557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139bf576139bf6139da565b5060010190565b6000826139d5576139d56139f0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461146457600080fd5b801515811461146457600080fd5b6001600160e01b03198116811461146457600080fdfea26469706673582212206422416963ee7c86778fce6bec1eec5d3835520a4f296bf1fd580175770dbb3d64736f6c63430008070033697066733a2f2f516d56575a46687478657a446841747937736e35623435777331684a6d6164677370624a51426a6d4557664643774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572455243373231413a207472616e7366657220746f206e6f6e2045524337323152
Deployed Bytecode
0x60806040526004361061036e5760003560e01c8063715018a6116101c6578063a5f4c6ff116100f7578063d63ba14911610095578063e33b7de31161006f578063e33b7de314610a17578063e985e9c514610a2c578063f2c4ce1e14610a75578063f2fde38b14610a9557600080fd5b8063d63ba149146109b8578063d79779b2146109cb578063de8801e514610a0157600080fd5b8063b88d4fde116100d1578063b88d4fde1461092c578063c87b56dd1461094c578063ce7c2ac21461096c578063d5abeb01146109a257600080fd5b8063a5f4c6ff146108ee578063b3ab66b014610904578063b76325911461091757600080fd5b8063942244c011610164578063a035b1fe1161013e578063a035b1fe14610883578063a224c74514610899578063a22cb465146108b9578063a475b5dd146108d957600080fd5b8063942244c01461082357806395d89b41146108385780639852595c1461084d57600080fd5b806378152bbe116101a057806378152bbe146107a55780638b83209b146107c55780638da5cb5b146107e557806391b7f5ed1461080357600080fd5b8063715018a61461075b578063729ad39e1461077057806377ee4b0f1461079057600080fd5b8063406072a9116102a0578063561714171161023e5780636c0360eb116102185780636c0360eb146106e65780636c1fff59146106fb5780636f8b44b01461071b57806370a082311461073b57600080fd5b806356171417146106875780635c975abb146106a75780636352211e146106c657600080fd5b80634f6ccce71161027a5780634f6ccce7146106005780635183022714610620578063546104811461063a57806355f804b31461066757600080fd5b8063406072a91461057a57806342842e0e146105c057806348b75044146105e057600080fd5b8063191655871161030d5780632f745c59116102e75780632f745c59146105105780632fbc0bf1146105305780633549345e146105455780633a98ef391461056557600080fd5b806319165587146104bb57806323b872dd146104db5780632cd981d4146104fb57600080fd5b8063081812fc11610349578063081812fc14610437578063081c8c441461046f578063095ea7b31461048457806318160ddd146104a657600080fd5b80620e7fa8146103bc57806301ffc9a7146103e557806306fdde031461041557600080fd5b366103b7577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103c857600080fd5b506103d260115481565b6040519081526020015b60405180910390f35b3480156103f157600080fd5b506104056104003660046134f1565b610ab5565b60405190151581526020016103dc565b34801561042157600080fd5b5061042a610b22565b6040516103dc91906136da565b34801561044357600080fd5b50610457610452366004613574565b610bb4565b6040516001600160a01b0390911681526020016103dc565b34801561047b57600080fd5b5061042a610c44565b34801561049057600080fd5b506104a461049f366004613433565b610cd2565b005b3480156104b257600080fd5b506000546103d2565b3480156104c757600080fd5b506104a46104d63660046132ee565b610dea565b3480156104e757600080fd5b506104a46104f6366004613344565b610f18565b34801561050757600080fd5b506104a4610f23565b34801561051c57600080fd5b506103d261052b366004613433565b610f6a565b34801561053c57600080fd5b506010546103d2565b34801561055157600080fd5b506104a4610560366004613574565b6110d8565b34801561057157600080fd5b506008546103d2565b34801561058657600080fd5b506103d261059536600461330b565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b3480156105cc57600080fd5b506104a46105db366004613344565b611107565b3480156105ec57600080fd5b506104a46105fb36600461330b565b611122565b34801561060c57600080fd5b506103d261061b366004613574565b61130a565b34801561062c57600080fd5b506017546104059060ff1681565b34801561064657600080fd5b506103d26106553660046132ee565b60186020526000908152604090205481565b34801561067357600080fd5b506104a461068236600461352b565b61136c565b34801561069357600080fd5b506104a46106a2366004613574565b6113ad565b3480156106b357600080fd5b5060175461040590610100900460ff1681565b3480156106d257600080fd5b506104576106e1366004613574565b6113dc565b3480156106f257600080fd5b5061042a6113ee565b34801561070757600080fd5b506104a4610716366004613574565b6113fb565b34801561072757600080fd5b506104a4610736366004613574565b611467565b34801561074757600080fd5b506103d26107563660046132ee565b611496565b34801561076757600080fd5b506104a4611527565b34801561077c57600080fd5b506104a461078b36600461345f565b61155d565b34801561079c57600080fd5b506011546103d2565b3480156107b157600080fd5b506104a46107c0366004613574565b611609565b3480156107d157600080fd5b506104576107e0366004613574565b611638565b3480156107f157600080fd5b506007546001600160a01b0316610457565b34801561080f57600080fd5b506104a461081e366004613574565b611668565b34801561082f57600080fd5b506013546103d2565b34801561084457600080fd5b5061042a611697565b34801561085957600080fd5b506103d26108683660046132ee565b6001600160a01b03166000908152600b602052604090205490565b34801561088f57600080fd5b506103d260105481565b3480156108a557600080fd5b506104a46108b43660046132ee565b6116a6565b3480156108c557600080fd5b506104a46108d4366004613405565b61173e565b3480156108e557600080fd5b506104a4611803565b3480156108fa57600080fd5b506103d260145481565b6104a4610912366004613574565b61183c565b34801561092357600080fd5b506014546103d2565b34801561093857600080fd5b506104a4610947366004613385565b611a06565b34801561095857600080fd5b5061042a610967366004613574565b611a39565b34801561097857600080fd5b506103d26109873660046132ee565b6001600160a01b03166000908152600a602052604090205490565b3480156109ae57600080fd5b506103d2600f5481565b6104a46109c63660046135a6565b611bb7565b3480156109d757600080fd5b506103d26109e63660046132ee565b6001600160a01b03166000908152600d602052604090205490565b348015610a0d57600080fd5b506103d260135481565b348015610a2357600080fd5b506009546103d2565b348015610a3857600080fd5b50610405610a4736600461330b565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a8157600080fd5b506104a4610a9036600461352b565b611f34565b348015610aa157600080fd5b506104a4610ab03660046132ee565b611f71565b60006001600160e01b031982166380ac58cd60e01b1480610ae657506001600160e01b03198216635b5e139f60e01b145b80610b0157506001600160e01b0319821663780e9d6360e01b145b80610b1c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610b3190613970565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5d90613970565b8015610baa5780601f10610b7f57610100808354040283529160200191610baa565b820191906000526020600020905b815481529060010190602001808311610b8d57829003601f168201915b5050505050905090565b6000610bc1826000541190565b610c285760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60168054610c5190613970565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7d90613970565b8015610cca5780601f10610c9f57610100808354040283529160200191610cca565b820191906000526020600020905b815481529060010190602001808311610cad57829003601f168201915b505050505081565b6000610cdd826113dc565b9050806001600160a01b0316836001600160a01b03161415610d4c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c1f565b336001600160a01b0382161480610d685750610d688133610a47565b610dda5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c1f565b610de583838361200f565b505050565b6001600160a01b0381166000908152600a6020526040902054610e1f5760405162461bcd60e51b8152600401610c1f90613790565b6000610e2a60095490565b610e3490476138cb565b90506000610e618383610e5c866001600160a01b03166000908152600b602052604090205490565b61206b565b905080610e805760405162461bcd60e51b8152600401610c1f906137d6565b6001600160a01b0383166000908152600b602052604081208054839290610ea89084906138cb565b925050819055508060096000828254610ec191906138cb565b90915550610ed1905083826120b1565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610de58383836121ca565b6007546001600160a01b03163314610f4d5760405162461bcd60e51b8152600401610c1f90613821565b6017805461ff001981166101009182900460ff1615909102179055565b6000610f7583611496565b8210610fce5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c1f565b600080549080805b83811015611078576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561102957805192505b876001600160a01b0316836001600160a01b03161415611065578684141561105757509350610b1c92505050565b83611061816139ab565b9450505b5080611070816139ab565b915050610fd6565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610c1f565b6007546001600160a01b031633146111025760405162461bcd60e51b8152600401610c1f90613821565b601155565b610de583838360405180602001604052806000815250611a06565b6001600160a01b0381166000908152600a60205260409020546111575760405162461bcd60e51b8152600401610c1f90613790565b6001600160a01b0382166000908152600d60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156111af57600080fd5b505afa1580156111c3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e7919061358d565b6111f191906138cb565b9050600061122a8383610e5c87876001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b9050806112495760405162461bcd60e51b8152600401610c1f906137d6565b6001600160a01b038085166000908152600e60209081526040808320938716835292905290812080548392906112809084906138cb565b90915550506001600160a01b0384166000908152600d6020526040812080548392906112ad9084906138cb565b909155506112be9050848483612511565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000805482106113685760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c1f565b5090565b6007546001600160a01b031633146113965760405162461bcd60e51b8152600401610c1f90613821565b80516113a99060159060208401906131e8565b5050565b6007546001600160a01b031633146113d75760405162461bcd60e51b8152600401610c1f90613821565b601455565b60006113e782612563565b5192915050565b60158054610c5190613970565b6007546001600160a01b031633146114255760405162461bcd60e51b8152600401610c1f90613821565b600f548161143260005490565b61143c91906138cb565b111561145a5760405162461bcd60e51b8152600401610c1f90613733565b6114643382612643565b50565b6007546001600160a01b031633146114915760405162461bcd60e51b8152600401610c1f90613821565b600f55565b60006001600160a01b0382166115025760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c1f565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146115515760405162461bcd60e51b8152600401610c1f90613821565b61155b600061265d565b565b6007546001600160a01b031633146115875760405162461bcd60e51b8152600401610c1f90613821565b600054600f5461159783836138cb565b11156115b55760405162461bcd60e51b8152600401610c1f90613733565b60005b82811015611603576115f18484838181106115d5576115d5613a1c565b90506020020160208101906115ea91906132ee565b6001612643565b806115fb816139ab565b9150506115b8565b50505050565b6007546001600160a01b031633146116335760405162461bcd60e51b8152600401610c1f90613821565b601355565b6000600c828154811061164d5761164d613a1c565b6000918252602090912001546001600160a01b031692915050565b6007546001600160a01b031633146116925760405162461bcd60e51b8152600401610c1f90613821565b601055565b606060028054610b3190613970565b6007546001600160a01b031633146116d05760405162461bcd60e51b8152600401610c1f90613821565b6001600160a01b03811661171c5760405162461bcd60e51b815260206004820152601360248201527243414e2754205055542030204144445245535360681b6044820152606401610c1f565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0382163314156117975760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c1f565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461182d5760405162461bcd60e51b8152600401610c1f90613821565b6017805460ff19166001179055565b601754610100900460ff16156118895760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610c1f565b600054816118d95760405162461bcd60e51b815260206004820152601f60248201527f596f75206d757374206d696e74206174206c65617374206f6e65204e46542e006044820152606401610c1f565b600f546118e683836138cb565b11156119345760405162461bcd60e51b815260206004820152601e60248201527f4b616e6761726f6f2050756e636820436c75623a20536f6c64206f75742100006044820152606401610c1f565b600060145411801561194857506014544210155b6119aa5760405162461bcd60e51b815260206004820152602d60248201527f4b616e6761726f6f2050756e636820436c75623a207075626c69632073616c6560448201526c103737ba1039ba30b93a32b21760991b6064820152608401610c1f565b816010546119b891906138f7565b3410156119d75760405162461bcd60e51b8152600401610c1f906136ed565b33600090815260186020526040812080548492906119f69084906138cb565b909155506113a990503383612643565b611a118484846121ca565b611a1d848484846126af565b6116035760405162461bcd60e51b8152600401610c1f90613856565b60175460609060ff16611ad85760168054611a5390613970565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7f90613970565b8015611acc5780601f10611aa157610100808354040283529160200191611acc565b820191906000526020600020905b815481529060010190602001808311611aaf57829003601f168201915b50505050509050919050565b600060158054611ae790613970565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1390613970565b8015611b605780601f10611b3557610100808354040283529160200191611b60565b820191906000526020600020905b815481529060010190602001808311611b4357829003601f168201915b505050505090506000815111611b855760405180602001604052806000815250611bb0565b80611b8f846127bc565b604051602001611ba092919061366e565b6040516020818303038152906040525b9392505050565b601754610100900460ff1615611c045760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610c1f565b60005484611c545760405162461bcd60e51b815260206004820181905260248201527f596f75206d757374206d696e74206174206c65617374206f6e6520746f6b656e6044820152606401610c1f565b601254611caa906001600160a01b0316611c6e86336128ba565b85858080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506128ff92505050565b611cf65760405162461bcd60e51b815260206004820152601b60248201527f5349474e41545552455f56414c49444154494f4e5f4641494c454400000000006044820152606401610c1f565b6000601354118015611d0a57506013544210155b611d7c5760405162461bcd60e51b815260206004820152603760248201527f4b616e6761726f6f2050756e636820436c75623a2057686974656c697374206d60448201527f696e74206973206e6f74207374617274656420796574210000000000000000006064820152608401610c1f565b6000601454118015611d8f575060145442105b611df45760405162461bcd60e51b815260206004820152603060248201527f4b616e6761726f6f2050756e636820436c75623a2057686974656c697374206d60448201526f696e742069732066696e69736865642160801b6064820152608401610c1f565b336000908152601860205260409020548490611e119087906138cb565b1115611e765760405162461bcd60e51b815260206004820152602e60248201527f4b616e6761726f6f2050756e636820436c75623a20596f752063616e2774206d60448201526d696e74206d6f7265204e4654732160901b6064820152608401610c1f565b600f54611e8386836138cb565b1115611ed15760405162461bcd60e51b815260206004820152601f60248201527f4b616e6761726f6f2050756e636820436c75623a20534f4c44204f55542021006044820152606401610c1f565b84601154611edf91906138f7565b341015611efe5760405162461bcd60e51b8152600401610c1f906136ed565b3360009081526018602052604081208054879290611f1d9084906138cb565b90915550611f2d90503386612643565b5050505050565b6007546001600160a01b03163314611f5e5760405162461bcd60e51b8152600401610c1f90613821565b80516113a99060169060208401906131e8565b6007546001600160a01b03163314611f9b5760405162461bcd60e51b8152600401610c1f90613821565b6001600160a01b0381166120005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c1f565b6114648161265d565b3b151590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0384166000908152600a60205260408120549091839161209590866138f7565b61209f91906138e3565b6120a99190613916565b949350505050565b804710156121015760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c1f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461214e576040519150601f19603f3d011682016040523d82523d6000602084013e612153565b606091505b5050905080610de55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c1f565b60006121d582612563565b80519091506000906001600160a01b0316336001600160a01b0316148061220c57503361220184610bb4565b6001600160a01b0316145b8061221e5750815161221e9033610a47565b9050806122885760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610c1f565b846001600160a01b031682600001516001600160a01b0316146122fc5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c1f565b6001600160a01b0384166123605760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c1f565b612370600084846000015161200f565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906124359085906138cb565b6000818152600360205260409020549091506001600160a01b03166124c75761245f816000541190565b156124c75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610de590849061297f565b6040805180820190915260008082526020820152612582826000541190565b6125e15760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c1f565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612630579392505050565b508061263b81613959565b9150506125e3565b6113a9828260405180602001604052806000815250612a51565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156127b157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126f390339089908890889060040161369d565b602060405180830381600087803b15801561270d57600080fd5b505af192505050801561273d575060408051601f3d908101601f1916820190925261273a9181019061350e565b60015b612797573d80801561276b576040519150601f19603f3d011682016040523d82523d6000602084013e612770565b606091505b50805161278f5760405162461bcd60e51b8152600401610c1f90613856565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120a9565b506001949350505050565b6060816127e05750506040805180820190915260018152600360fc1b602082015290565b8160005b811561280a57806127f4816139ab565b91506128039050600a836138e3565b91506127e4565b60008167ffffffffffffffff81111561282557612825613a32565b6040519080825280601f01601f19166020018201604052801561284f576020820181803683370190505b5090505b84156120a957612864600183613916565b9150612871600a866139c6565b61287c9060306138cb565b60f81b81838151811061289157612891613a1c565b60200101906001600160f81b031916908160001a9053506128b3600a866138e3565b9450612853565b600082826040516020016128e19291909182526001600160a01b0316602082015260400190565b60405160208183030381529060405280519060200120905092915050565b60006129628261295c856040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90612d0d565b6001600160a01b0316846001600160a01b03161490509392505050565b60006129d4826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d319092919063ffffffff16565b805190915015610de557808060200190518101906129f291906134d4565b610de55760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c1f565b6000546001600160a01b038416612ab45760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c1f565b612abf816000541190565b15612b0c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610c1f565b60008311612b685760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610c1f565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612bc49087906138a9565b6001600160801b03168152602001858360200151612be291906138a9565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612d025760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612cc660008884886126af565b612ce25760405162461bcd60e51b8152600401610c1f90613856565b81612cec816139ab565b9250508080612cfa906139ab565b915050612c79565b506000819055612509565b6000806000612d1c8585612d40565b91509150612d2981612db0565b509392505050565b60606120a98484600085612f6b565b600080825160411415612d775760208301516040840151606085015160001a612d6b87828585613093565b94509450505050612da9565b825160401415612da15760208301516040840151612d96868383613180565b935093505050612da9565b506000905060025b9250929050565b6000816004811115612dc457612dc4613a06565b1415612dcd5750565b6001816004811115612de157612de1613a06565b1415612e2f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610c1f565b6002816004811115612e4357612e43613a06565b1415612e915760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610c1f565b6003816004811115612ea557612ea5613a06565b1415612efe5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610c1f565b6004816004811115612f1257612f12613a06565b14156114645760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610c1f565b606082471015612fcc5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610c1f565b843b61301a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c1f565b600080866001600160a01b031685876040516130369190613652565b60006040518083038185875af1925050503d8060008114613073576040519150601f19603f3d011682016040523d82523d6000602084013e613078565b606091505b50915091506130888282866131af565b979650505050505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156130ca5750600090506003613177565b8460ff16601b141580156130e257508460ff16601c14155b156130f35750600090506004613177565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613147573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661317057600060019250925050613177565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016131a187828885613093565b935093505050935093915050565b606083156131be575081611bb0565b8251156131ce5782518084602001fd5b8160405162461bcd60e51b8152600401610c1f91906136da565b8280546131f490613970565b90600052602060002090601f016020900481019282613216576000855561325c565b82601f1061322f57805160ff191683800117855561325c565b8280016001018555821561325c579182015b8281111561325c578251825591602001919060010190613241565b506113689291505b808211156113685760008155600101613264565b600067ffffffffffffffff8084111561329357613293613a32565b604051601f8501601f19908116603f011681019082821181831017156132bb576132bb613a32565b816040528093508581528686860111156132d457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561330057600080fd5b8135611bb081613a48565b6000806040838503121561331e57600080fd5b823561332981613a48565b9150602083013561333981613a48565b809150509250929050565b60008060006060848603121561335957600080fd5b833561336481613a48565b9250602084013561337481613a48565b929592945050506040919091013590565b6000806000806080858703121561339b57600080fd5b84356133a681613a48565b935060208501356133b681613a48565b925060408501359150606085013567ffffffffffffffff8111156133d957600080fd5b8501601f810187136133ea57600080fd5b6133f987823560208401613278565b91505092959194509250565b6000806040838503121561341857600080fd5b823561342381613a48565b9150602083013561333981613a5d565b6000806040838503121561344657600080fd5b823561345181613a48565b946020939093013593505050565b6000806020838503121561347257600080fd5b823567ffffffffffffffff8082111561348a57600080fd5b818501915085601f83011261349e57600080fd5b8135818111156134ad57600080fd5b8660208260051b85010111156134c257600080fd5b60209290920196919550909350505050565b6000602082840312156134e657600080fd5b8151611bb081613a5d565b60006020828403121561350357600080fd5b8135611bb081613a6b565b60006020828403121561352057600080fd5b8151611bb081613a6b565b60006020828403121561353d57600080fd5b813567ffffffffffffffff81111561355457600080fd5b8201601f8101841361356557600080fd5b6120a984823560208401613278565b60006020828403121561358657600080fd5b5035919050565b60006020828403121561359f57600080fd5b5051919050565b600080600080606085870312156135bc57600080fd5b8435935060208501359250604085013567ffffffffffffffff808211156135e257600080fd5b818701915087601f8301126135f657600080fd5b81358181111561360557600080fd5b88602082850101111561361757600080fd5b95989497505060200194505050565b6000815180845261363e81602086016020860161392d565b601f01601f19169290920160200192915050565b6000825161366481846020870161392d565b9190910192915050565b6000835161368081846020880161392d565b83519083019061369481836020880161392d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136d090830184613626565b9695505050505050565b602081526000611bb06020830184613626565b60208082526026908201527f4b616e6761726f6f2050756e636820436c75623a20496e737566696369656e746040820152652066756e647360d01b606082015260800190565b60208082526038908201527f4b616e6761726f6f2050756e636820436c75623a20596f752063616e2774206d60408201527f696e74206d6f7265207468616e206d617820737570706c790000000000000000606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115613694576136946139da565b600082198211156138de576138de6139da565b500190565b6000826138f2576138f26139f0565b500490565b6000816000190483118215151615613911576139116139da565b500290565b600082821015613928576139286139da565b500390565b60005b83811015613948578181015183820152602001613930565b838111156116035750506000910152565b600081613968576139686139da565b506000190190565b600181811c9082168061398457607f821691505b602082108114156139a557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139bf576139bf6139da565b5060010190565b6000826139d5576139d56139f0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461146457600080fd5b801515811461146457600080fd5b6001600160e01b03198116811461146457600080fdfea26469706673582212206422416963ee7c86778fce6bec1eec5d3835520a4f296bf1fd580175770dbb3d64736f6c63430008070033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.