ERC-721
Overview
Max Total Supply
108 DRIFT
Holders
49
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 DRIFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ShinsekaiDrifters
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-10 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/SSKD Test.sol pragma solidity ^0.8.4; contract ShinsekaiDrifters is ERC721A, Ownable { using Address for address; using Strings for uint256; // Format of files stores in ipfs string private uriPrefix = ""; string private uriSuffix = ".json"; // Init uri for when collection is not revealed string public hiddenMetadataUri; // Init values for cost, max supply, max mint amount, and allowlist mapping uint256 public whitelistPrice = 0.066 ether; uint256 public publicPrice = 0.08 ether; uint256 public maxSupply = 5555; uint256 public immutable amountForDevs = 100; uint256 public maxMintAmountWhitelist = 3; uint256 public maxMintAmountPublic = 5; mapping(address => uint256) public allowlistCount; // Contract will be initalized as paused and not revealed. bool public paused = true; bool public revealed = false; uint32 public publicSaleStartTime; bytes32 private whitelistMerkleRoot; constructor() ERC721A("Shinsekai Drifters", "DRIFT") { // must set hidden uri. setHiddenMetadataUri("ipfs://QmcEJ4XRXG2DD7qoyYMzVZRqXwrSwqczwKBq2sgRe7k4Nh/"); // placeholder for public launch time. will update to prevent botting setPublicSaleStartTime(1647586800); /* hold back total 100 txn mint for giveaway, collab, and team. hold back 5 on contract initialization to also test. rest of mints held back will occur spread out to ensure all community members can join */ _safeMint(msg.sender, 3); } modifier mintCompliance(uint256 _mintAmount) { require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); require(!paused, "NFT is not available for mint"); _; } // general mint function publicMint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(isPublicSaleOn() == true, "Public sale has not begun yet"); require(_mintAmount > 0 && _numberMinted(msg.sender) + _mintAmount - allowlistCount[msg.sender] <= maxMintAmountPublic, "Invalid mint amount!"); require(msg.value >= publicPrice * _mintAmount, "Insufficient funds!"); _safeMint(msg.sender, _mintAmount); refundIfOver(publicPrice * _mintAmount); } // allowlist Mint function allowlistMint(bytes32[] calldata merkleProof, uint256 _mintAmount) public payable mintCompliance(_mintAmount) isValidMerkleProof(merkleProof, whitelistMerkleRoot){ require(_mintAmount > 0 && _numberMinted(msg.sender) + _mintAmount <= maxMintAmountWhitelist, "Invalid mint amount!"); require(msg.value >= whitelistPrice * _mintAmount, "Insufficient funds!"); allowlistCount[msg.sender]+=_mintAmount; _safeMint(msg.sender, _mintAmount); refundIfOver(whitelistPrice * _mintAmount); } // for marketing etc. function devMint(uint256 _mintAmount) external onlyOwner { require(totalSupply() + _mintAmount <= amountForDevs, "Too many already minted before dev mint"); _safeMint(msg.sender, _mintAmount); } // refund if value sent if more than price function refundIfOver(uint256 price) private { require(msg.value >= price, "Need to send more ETH."); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } // check if reached public sale function isPublicSaleOn() public view returns (bool) { return block.timestamp >= publicSaleStartTime; } // set merkleroot node function setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner { whitelistMerkleRoot = merkleRoot; } // verify merkletree modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) { require(MerkleProof.verify( merkleProof, root, keccak256(abi.encodePacked(msg.sender))), "Address does not exist in list" ); _; } // set public sale start time function setPublicSaleStartTime(uint32 timestamp) public onlyOwner{ publicSaleStartTime = timestamp; } // set whitelist max mint if needed function setMaxMintAmountWhitelist(uint32 _maxMintAmountWhitelist) public onlyOwner{ maxMintAmountWhitelist = _maxMintAmountWhitelist; } // set public max mint if needed function setMaxMintAmountPublic(uint32 _maxMintAmountPublic) public onlyOwner{ maxMintAmountPublic = _maxMintAmountPublic; } // reveal function toggleReveal() public onlyOwner { revealed = !revealed; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setMaxSupply(uint32 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPause(bool _state) public onlyOwner { paused = _state; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if (revealed == false) { return bytes(hiddenMetadataUri).length != 0 ? string(abi.encodePacked(hiddenMetadataUri, tokenId.toString(), uriSuffix)) : ''; } string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), uriSuffix)) : ''; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function withdraw() public payable onlyOwner { // This will payout the owner the contract balance. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ============================================================================= } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlistCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"devMint","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":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_maxMintAmountPublic","type":"uint32"}],"name":"setMaxMintAmountPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_maxMintAmountWhitelist","type":"uint32"}],"name":"setMaxMintAmountWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_maxSupply","type":"uint32"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040819052600060a08190526200001b916009916200058a565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a916200058a565b5066ea7aa67b2d0000600c5567011c37937e080000600d556115b3600e5560646080526003600f5560056010556012805461ffff191660011790553480156200009257600080fd5b5060408051808201825260128152715368696e73656b616920447269667465727360701b602080830191825283518085019094526005845264111492519560da1b908401528151919291620000ea916002916200058a565b508051620001009060039060208401906200058a565b50506000805550620001123362000158565b6200013660405180606001604052806036815260200162002dbf60369139620001aa565b620001456362342df062000212565b6200015233600362000281565b6200071b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001f95760405162461bcd60e51b8152602060048201819052602482015260008051602062002d7f83398151915260448201526064015b60405180910390fd5b80516200020e90600b9060208401906200058a565b5050565b6008546001600160a01b031633146200025d5760405162461bcd60e51b8152602060048201819052602482015260008051602062002d7f8339815191526044820152606401620001f0565b6012805463ffffffff909216620100000265ffffffff000019909216919091179055565b6200020e828260405180602001604052806000815250620002a360201b60201c565b620002b28383836001620002b7565b505050565b6000546001600160a01b038516620002e157604051622e076360e81b815260040160405180910390fd5b83620003005760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015620003b95750620003b9876001600160a01b03166200047a60201b620015a01760201c565b1562000439575b60405182906001600160a01b0389169060009060008051602062002d9f833981519152908290a46001820191620003fd9060009089908862000489565b6200041b576040516368d2bf6b60e11b815260040160405180910390fd5b80821415620003c05782600054146200043357600080fd5b6200046f565b5b6040516001830192906001600160a01b0389169060009060008051602062002d9f833981519152908290a4808214156200043a575b506000555050505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620004c090339089908890889060040162000663565b602060405180830381600087803b158015620004db57600080fd5b505af19250505080156200050e575060408051601f3d908101601f191682019092526200050b9181019062000630565b60015b6200056d573d8080156200053f576040519150601f19603f3d011682016040523d82523d6000602084013e62000544565b606091505b50805162000565576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b8280546200059890620006de565b90600052602060002090601f016020900481019282620005bc576000855562000607565b82601f10620005d757805160ff191683800117855562000607565b8280016001018555821562000607579182015b8281111562000607578251825591602001919060010190620005ea565b506200061592915062000619565b5090565b5b808211156200061557600081556001016200061a565b6000602082840312156200064357600080fd5b81516001600160e01b0319811681146200065c57600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006b25785810182015185820160a00152810162000694565b82811115620006c557600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600181811c90821680620006f357607f821691505b602082108114156200071557634e487b7160e01b600052602260045260246000fd5b50919050565b6080516126416200073e6000396000818161078e0152610ef001526126416000f3fe60806040526004361061025c5760003560e01c80635fd84c2811610144578063a945bf80116100b6578063d5abeb011161007a578063d5abeb01146106dd578063e985e9c5146106f3578063f2fde38b1461073c578063f9da32241461075c578063fbe1aa511461077c578063fc1a1c36146107b057600080fd5b8063a945bf8014610647578063b88d4fde1461065d578063bd32fb661461067d578063bedb86fb1461069d578063c87b56dd146106bd57600080fd5b806374d9e7ac1161010857806374d9e7ac146105a95780637ec4a659146105bf5780638da5cb5b146105df57806395d89b41146105fd578063a22cb46514610612578063a45ba8e71461063257600080fd5b80635fd84c28146104fc5780636352211e1461051c5780636bb7b1d91461053c57806370a0823114610574578063715018a61461059457600080fd5b80631e16ffba116101dd5780633f5e4741116101a15780633f5e47411461044a57806342842e0e1461046e5780634fdd43cb1461048e57806351830227146104ae5780635b8ad429146104cd5780635c975abb146104e257600080fd5b80631e16ffba146103c257806323b872dd146103ef5780632db115441461040f578063375a069a146104225780633ccfd60b1461044257600080fd5b80631338a83f116102245780631338a83f1461033257806316ba10e01461034557806317c862a21461036557806317f7bece1461038557806318160ddd146103a957600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780630c888ffd14610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612258565b6107c6565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab610818565b60405161028d919061245d565b3480156102c457600080fd5b506102d86102d336600461223f565b6108aa565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b36600461217f565b6108ee565b005b34801561031e57600080fd5b5061031061032d3660046122db565b61097c565b6103106103403660046121a9565b6109ba565b34801561035157600080fd5b50610310610360366004612292565b610c3a565b34801561037157600080fd5b506103106103803660046122db565b610c7b565b34801561039157600080fd5b5061039b60105481565b60405190815260200161028d565b3480156103b557600080fd5b506001546000540361039b565b3480156103ce57600080fd5b5061039b6103dd36600461204f565b60116020526000908152604090205481565b3480156103fb57600080fd5b5061031061040a36600461209d565b610cb0565b61031061041d36600461223f565b610cbb565b34801561042e57600080fd5b5061031061043d36600461223f565b610ec4565b610310610f92565b34801561045657600080fd5b5060125462010000900463ffffffff16421015610281565b34801561047a57600080fd5b5061031061048936600461209d565b61102d565b34801561049a57600080fd5b506103106104a9366004612292565b611048565b3480156104ba57600080fd5b5060125461028190610100900460ff1681565b3480156104d957600080fd5b50610310611085565b3480156104ee57600080fd5b506012546102819060ff1681565b34801561050857600080fd5b506103106105173660046122db565b6110cc565b34801561052857600080fd5b506102d861053736600461223f565b61111a565b34801561054857600080fd5b5060125461055f9062010000900463ffffffff1681565b60405163ffffffff909116815260200161028d565b34801561058057600080fd5b5061039b61058f36600461204f565b61112c565b3480156105a057600080fd5b5061031061117b565b3480156105b557600080fd5b5061039b600f5481565b3480156105cb57600080fd5b506103106105da366004612292565b6111b1565b3480156105eb57600080fd5b506008546001600160a01b03166102d8565b34801561060957600080fd5b506102ab6111ee565b34801561061e57600080fd5b5061031061062d366004612155565b6111fd565b34801561063e57600080fd5b506102ab611293565b34801561065357600080fd5b5061039b600d5481565b34801561066957600080fd5b506103106106783660046120d9565b611321565b34801561068957600080fd5b5061031061069836600461223f565b611372565b3480156106a957600080fd5b506103106106b8366004612224565b6113a1565b3480156106c957600080fd5b506102ab6106d836600461223f565b6113de565b3480156106e957600080fd5b5061039b600e5481565b3480156106ff57600080fd5b5061028161070e36600461206a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561074857600080fd5b5061031061075736600461204f565b6114d3565b34801561076857600080fd5b506103106107773660046122db565b61156b565b34801561078857600080fd5b5061039b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156107bc57600080fd5b5061039b600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107f757506001600160e01b03198216635b5e139f60e01b145b8061081257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461082790612533565b80601f016020809104026020016040519081016040528092919081815260200182805461085390612533565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b60006108b5826115af565b6108d2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108f98261111a565b9050806001600160a01b0316836001600160a01b0316141561092e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061094e575061094c813361070e565b155b1561096c576040516367d9dca160e11b815260040160405180910390fd5b6109778383836115da565b505050565b6008546001600160a01b031633146109af5760405162461bcd60e51b81526004016109a690612470565b60405180910390fd5b63ffffffff16600f55565b80600e54816109cc6001546000540390565b6109d691906124a5565b1115610a1b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109a6565b60125460ff1615610a6e5760405162461bcd60e51b815260206004820152601d60248201527f4e4654206973206e6f7420617661696c61626c6520666f72206d696e7400000060448201526064016109a6565b8383601354610ae5838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120611636565b610b315760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c697374000060448201526064016109a6565b600085118015610b565750600f5485610b493361164c565b610b5391906124a5565b11155b610b995760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109a6565b84600c54610ba791906124d1565b341015610bec5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109a6565b3360009081526011602052604081208054879290610c0b9084906124a5565b90915550610c1b905033866116a2565b610c3185600c54610c2c91906124d1565b6116bc565b50505050505050565b6008546001600160a01b03163314610c645760405162461bcd60e51b81526004016109a690612470565b8051610c7790600a906020840190611f14565b5050565b6008546001600160a01b03163314610ca55760405162461bcd60e51b81526004016109a690612470565b63ffffffff16601055565b610977838383611743565b80600e5481610ccd6001546000540390565b610cd791906124a5565b1115610d1c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109a6565b60125460ff1615610d6f5760405162461bcd60e51b815260206004820152601d60248201527f4e4654206973206e6f7420617661696c61626c6520666f72206d696e7400000060448201526064016109a6565b60125462010000900463ffffffff164210151515600114610dd25760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016109a6565b600082118015610e13575060105433600081815260116020526040902054908490610dfc9061164c565b610e0691906124a5565b610e1091906124f0565b11155b610e565760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109a6565b81600d54610e6491906124d1565b341015610ea95760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109a6565b610eb333836116a2565b610c7782600d54610c2c91906124d1565b6008546001600160a01b03163314610eee5760405162461bcd60e51b81526004016109a690612470565b7f000000000000000000000000000000000000000000000000000000000000000081610f1d6001546000540390565b610f2791906124a5565b1115610f855760405162461bcd60e51b815260206004820152602760248201527f546f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b60648201526084016109a6565b610f8f33826116a2565b50565b6008546001600160a01b03163314610fbc5760405162461bcd60e51b81526004016109a690612470565b6000610fd06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461101a576040519150601f19603f3d011682016040523d82523d6000602084013e61101f565b606091505b5050905080610f8f57600080fd5b61097783838360405180602001604052806000815250611321565b6008546001600160a01b031633146110725760405162461bcd60e51b81526004016109a690612470565b8051610c7790600b906020840190611f14565b6008546001600160a01b031633146110af5760405162461bcd60e51b81526004016109a690612470565b6012805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146110f65760405162461bcd60e51b81526004016109a690612470565b6012805463ffffffff909216620100000265ffffffff000019909216919091179055565b600061112582611959565b5192915050565b60006001600160a01b038216611155576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146111a55760405162461bcd60e51b81526004016109a690612470565b6111af6000611a75565b565b6008546001600160a01b031633146111db5760405162461bcd60e51b81526004016109a690612470565b8051610c77906009906020840190611f14565b60606003805461082790612533565b6001600160a01b0382163314156112275760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b80546112a090612533565b80601f01602080910402602001604051908101604052809291908181526020018280546112cc90612533565b80156113195780601f106112ee57610100808354040283529160200191611319565b820191906000526020600020905b8154815290600101906020018083116112fc57829003601f168201915b505050505081565b61132c848484611743565b6001600160a01b0383163b1515801561134e575061134c84848484611ac7565b155b1561136c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461139c5760405162461bcd60e51b81526004016109a690612470565b601355565b6008546001600160a01b031633146113cb5760405162461bcd60e51b81526004016109a690612470565b6012805460ff1916911515919091179055565b60606113e9826115af565b61140657604051630a14c4b560e41b815260040160405180910390fd5b601254610100900460ff1661147357600b805461142290612533565b1515905061143f5760405180602001604052806000815250610812565b600b61144a83611bbf565b600a60405160200161145e93929190612404565b60405160208183030381529060405292915050565b600061147d611cbd565b905080516000141561149e57604051806020016040528060008152506114cc565b806114a884611bbf565b600a6040516020016114bc939291906123c7565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114fd5760405162461bcd60e51b81526004016109a690612470565b6001600160a01b0381166115625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a6565b610f8f81611a75565b6008546001600160a01b031633146115955760405162461bcd60e51b81526004016109a690612470565b63ffffffff16600e55565b6001600160a01b03163b151590565b6000805482108015610812575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000826116438584611ccc565b14949350505050565b60006001600160a01b038216611675576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b900467ffffffffffffffff1690565b610c77828260405180602001604052806000815250611d40565b803410156117055760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016109a6565b80341115610f8f57336108fc61171b83346124f0565b6040518115909202916000818181858888f19350505050158015610c77573d6000803e3d6000fd5b600061174e82611959565b80519091506000906001600160a01b0316336001600160a01b0316148061177c5750815161177c903361070e565b8061179757503361178c846108aa565b6001600160a01b0316145b9050806117b757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117ec5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661181357604051633a954ecd60e21b815260040160405180910390fd5b61182360008484600001516115da565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661190f5760005481101561190f578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611a5c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a5a5780516001600160a01b0316156119f0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a55579392505050565b6119f0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611afc903390899088908890600401612420565b602060405180830381600087803b158015611b1657600080fd5b505af1925050508015611b46575060408051601f3d908101601f19168201909252611b4391810190612275565b60015b611ba1573d808015611b74576040519150601f19603f3d011682016040523d82523d6000602084013e611b79565b606091505b508051611b99576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611be35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c0d5780611bf78161256e565b9150611c069050600a836124bd565b9150611be7565b60008167ffffffffffffffff811115611c2857611c286125df565b6040519080825280601f01601f191660200182016040528015611c52576020820181803683370190505b5090505b8415611bb757611c676001836124f0565b9150611c74600a86612589565b611c7f9060306124a5565b60f81b818381518110611c9457611c946125c9565b60200101906001600160f81b031916908160001a905350611cb6600a866124bd565b9450611c56565b60606009805461082790612533565b600081815b8451811015611d38576000858281518110611cee57611cee6125c9565b60200260200101519050808311611d145760008381526020829052604090209250611d25565b600081815260208490526040902092505b5080611d308161256e565b915050611cd1565b509392505050565b61097783838360016000546001600160a01b038516611d7157604051622e076360e81b815260040160405180910390fd5b83611d8f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e3c57506001600160a01b0387163b15155b15611ec5575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e8d6000888480600101955088611ac7565b611eaa576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611e42578260005414611ec057600080fd5b611f0b565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611ec6575b50600055611952565b828054611f2090612533565b90600052602060002090601f016020900481019282611f425760008555611f88565b82601f10611f5b57805160ff1916838001178555611f88565b82800160010185558215611f88579182015b82811115611f88578251825591602001919060010190611f6d565b50611f94929150611f98565b5090565b5b80821115611f945760008155600101611f99565b600067ffffffffffffffff80841115611fc857611fc86125df565b604051601f8501601f19908116603f01168101908282118183101715611ff057611ff06125df565b8160405280935085815286868601111561200957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461203a57600080fd5b919050565b8035801515811461203a57600080fd5b60006020828403121561206157600080fd5b6114cc82612023565b6000806040838503121561207d57600080fd5b61208683612023565b915061209460208401612023565b90509250929050565b6000806000606084860312156120b257600080fd5b6120bb84612023565b92506120c960208501612023565b9150604084013590509250925092565b600080600080608085870312156120ef57600080fd5b6120f885612023565b935061210660208601612023565b925060408501359150606085013567ffffffffffffffff81111561212957600080fd5b8501601f8101871361213a57600080fd5b61214987823560208401611fad565b91505092959194509250565b6000806040838503121561216857600080fd5b61217183612023565b91506120946020840161203f565b6000806040838503121561219257600080fd5b61219b83612023565b946020939093013593505050565b6000806000604084860312156121be57600080fd5b833567ffffffffffffffff808211156121d657600080fd5b818601915086601f8301126121ea57600080fd5b8135818111156121f957600080fd5b8760208260051b850101111561220e57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561223657600080fd5b6114cc8261203f565b60006020828403121561225157600080fd5b5035919050565b60006020828403121561226a57600080fd5b81356114cc816125f5565b60006020828403121561228757600080fd5b81516114cc816125f5565b6000602082840312156122a457600080fd5b813567ffffffffffffffff8111156122bb57600080fd5b8201601f810184136122cc57600080fd5b611bb784823560208401611fad565b6000602082840312156122ed57600080fd5b813563ffffffff811681146114cc57600080fd5b60008151808452612319816020860160208601612507565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061234757607f831692505b602080841082141561236957634e487b7160e01b600052602260045260246000fd5b81801561237d576001811461238e576123bb565b60ff198616895284890196506123bb565b60008881526020902060005b868110156123b35781548b82015290850190830161239a565b505084890196505b50505050505092915050565b600084516123d9818460208901612507565b8451908301906123ed818360208901612507565b6123f98183018661232d565b979650505050505050565b6000612410828661232d565b84516123ed818360208901612507565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061245390830184612301565b9695505050505050565b6020815260006114cc6020830184612301565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156124b8576124b861259d565b500190565b6000826124cc576124cc6125b3565b500490565b60008160001904831182151516156124eb576124eb61259d565b500290565b6000828210156125025761250261259d565b500390565b60005b8381101561252257818101518382015260200161250a565b8381111561136c5750506000910152565b600181811c9082168061254757607f821691505b6020821081141561256857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125825761258261259d565b5060010190565b600082612598576125986125b3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f8f57600080fdfea264697066735822122086d1ca97e18fb33a6df41d65b0f3f4fdb60c7f5e404dc9ad82422029c66cc64464736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef697066733a2f2f516d63454a345852584732444437716f79594d7a565a5271587772537771637a774b42713273675265376b344e682f
Deployed Bytecode
0x60806040526004361061025c5760003560e01c80635fd84c2811610144578063a945bf80116100b6578063d5abeb011161007a578063d5abeb01146106dd578063e985e9c5146106f3578063f2fde38b1461073c578063f9da32241461075c578063fbe1aa511461077c578063fc1a1c36146107b057600080fd5b8063a945bf8014610647578063b88d4fde1461065d578063bd32fb661461067d578063bedb86fb1461069d578063c87b56dd146106bd57600080fd5b806374d9e7ac1161010857806374d9e7ac146105a95780637ec4a659146105bf5780638da5cb5b146105df57806395d89b41146105fd578063a22cb46514610612578063a45ba8e71461063257600080fd5b80635fd84c28146104fc5780636352211e1461051c5780636bb7b1d91461053c57806370a0823114610574578063715018a61461059457600080fd5b80631e16ffba116101dd5780633f5e4741116101a15780633f5e47411461044a57806342842e0e1461046e5780634fdd43cb1461048e57806351830227146104ae5780635b8ad429146104cd5780635c975abb146104e257600080fd5b80631e16ffba146103c257806323b872dd146103ef5780632db115441461040f578063375a069a146104225780633ccfd60b1461044257600080fd5b80631338a83f116102245780631338a83f1461033257806316ba10e01461034557806317c862a21461036557806317f7bece1461038557806318160ddd146103a957600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780630c888ffd14610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612258565b6107c6565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab610818565b60405161028d919061245d565b3480156102c457600080fd5b506102d86102d336600461223f565b6108aa565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b36600461217f565b6108ee565b005b34801561031e57600080fd5b5061031061032d3660046122db565b61097c565b6103106103403660046121a9565b6109ba565b34801561035157600080fd5b50610310610360366004612292565b610c3a565b34801561037157600080fd5b506103106103803660046122db565b610c7b565b34801561039157600080fd5b5061039b60105481565b60405190815260200161028d565b3480156103b557600080fd5b506001546000540361039b565b3480156103ce57600080fd5b5061039b6103dd36600461204f565b60116020526000908152604090205481565b3480156103fb57600080fd5b5061031061040a36600461209d565b610cb0565b61031061041d36600461223f565b610cbb565b34801561042e57600080fd5b5061031061043d36600461223f565b610ec4565b610310610f92565b34801561045657600080fd5b5060125462010000900463ffffffff16421015610281565b34801561047a57600080fd5b5061031061048936600461209d565b61102d565b34801561049a57600080fd5b506103106104a9366004612292565b611048565b3480156104ba57600080fd5b5060125461028190610100900460ff1681565b3480156104d957600080fd5b50610310611085565b3480156104ee57600080fd5b506012546102819060ff1681565b34801561050857600080fd5b506103106105173660046122db565b6110cc565b34801561052857600080fd5b506102d861053736600461223f565b61111a565b34801561054857600080fd5b5060125461055f9062010000900463ffffffff1681565b60405163ffffffff909116815260200161028d565b34801561058057600080fd5b5061039b61058f36600461204f565b61112c565b3480156105a057600080fd5b5061031061117b565b3480156105b557600080fd5b5061039b600f5481565b3480156105cb57600080fd5b506103106105da366004612292565b6111b1565b3480156105eb57600080fd5b506008546001600160a01b03166102d8565b34801561060957600080fd5b506102ab6111ee565b34801561061e57600080fd5b5061031061062d366004612155565b6111fd565b34801561063e57600080fd5b506102ab611293565b34801561065357600080fd5b5061039b600d5481565b34801561066957600080fd5b506103106106783660046120d9565b611321565b34801561068957600080fd5b5061031061069836600461223f565b611372565b3480156106a957600080fd5b506103106106b8366004612224565b6113a1565b3480156106c957600080fd5b506102ab6106d836600461223f565b6113de565b3480156106e957600080fd5b5061039b600e5481565b3480156106ff57600080fd5b5061028161070e36600461206a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561074857600080fd5b5061031061075736600461204f565b6114d3565b34801561076857600080fd5b506103106107773660046122db565b61156b565b34801561078857600080fd5b5061039b7f000000000000000000000000000000000000000000000000000000000000006481565b3480156107bc57600080fd5b5061039b600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107f757506001600160e01b03198216635b5e139f60e01b145b8061081257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461082790612533565b80601f016020809104026020016040519081016040528092919081815260200182805461085390612533565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b60006108b5826115af565b6108d2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108f98261111a565b9050806001600160a01b0316836001600160a01b0316141561092e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061094e575061094c813361070e565b155b1561096c576040516367d9dca160e11b815260040160405180910390fd5b6109778383836115da565b505050565b6008546001600160a01b031633146109af5760405162461bcd60e51b81526004016109a690612470565b60405180910390fd5b63ffffffff16600f55565b80600e54816109cc6001546000540390565b6109d691906124a5565b1115610a1b5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109a6565b60125460ff1615610a6e5760405162461bcd60e51b815260206004820152601d60248201527f4e4654206973206e6f7420617661696c61626c6520666f72206d696e7400000060448201526064016109a6565b8383601354610ae5838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040516bffffffffffffffffffffffff193360601b166020820152859250603401905060405160208183030381529060405280519060200120611636565b610b315760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320646f6573206e6f7420657869737420696e206c697374000060448201526064016109a6565b600085118015610b565750600f5485610b493361164c565b610b5391906124a5565b11155b610b995760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109a6565b84600c54610ba791906124d1565b341015610bec5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109a6565b3360009081526011602052604081208054879290610c0b9084906124a5565b90915550610c1b905033866116a2565b610c3185600c54610c2c91906124d1565b6116bc565b50505050505050565b6008546001600160a01b03163314610c645760405162461bcd60e51b81526004016109a690612470565b8051610c7790600a906020840190611f14565b5050565b6008546001600160a01b03163314610ca55760405162461bcd60e51b81526004016109a690612470565b63ffffffff16601055565b610977838383611743565b80600e5481610ccd6001546000540390565b610cd791906124a5565b1115610d1c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109a6565b60125460ff1615610d6f5760405162461bcd60e51b815260206004820152601d60248201527f4e4654206973206e6f7420617661696c61626c6520666f72206d696e7400000060448201526064016109a6565b60125462010000900463ffffffff164210151515600114610dd25760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016109a6565b600082118015610e13575060105433600081815260116020526040902054908490610dfc9061164c565b610e0691906124a5565b610e1091906124f0565b11155b610e565760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109a6565b81600d54610e6491906124d1565b341015610ea95760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109a6565b610eb333836116a2565b610c7782600d54610c2c91906124d1565b6008546001600160a01b03163314610eee5760405162461bcd60e51b81526004016109a690612470565b7f000000000000000000000000000000000000000000000000000000000000006481610f1d6001546000540390565b610f2791906124a5565b1115610f855760405162461bcd60e51b815260206004820152602760248201527f546f6f206d616e7920616c7265616479206d696e746564206265666f72652064604482015266195d881b5a5b9d60ca1b60648201526084016109a6565b610f8f33826116a2565b50565b6008546001600160a01b03163314610fbc5760405162461bcd60e51b81526004016109a690612470565b6000610fd06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461101a576040519150601f19603f3d011682016040523d82523d6000602084013e61101f565b606091505b5050905080610f8f57600080fd5b61097783838360405180602001604052806000815250611321565b6008546001600160a01b031633146110725760405162461bcd60e51b81526004016109a690612470565b8051610c7790600b906020840190611f14565b6008546001600160a01b031633146110af5760405162461bcd60e51b81526004016109a690612470565b6012805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146110f65760405162461bcd60e51b81526004016109a690612470565b6012805463ffffffff909216620100000265ffffffff000019909216919091179055565b600061112582611959565b5192915050565b60006001600160a01b038216611155576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146111a55760405162461bcd60e51b81526004016109a690612470565b6111af6000611a75565b565b6008546001600160a01b031633146111db5760405162461bcd60e51b81526004016109a690612470565b8051610c77906009906020840190611f14565b60606003805461082790612533565b6001600160a01b0382163314156112275760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b80546112a090612533565b80601f01602080910402602001604051908101604052809291908181526020018280546112cc90612533565b80156113195780601f106112ee57610100808354040283529160200191611319565b820191906000526020600020905b8154815290600101906020018083116112fc57829003601f168201915b505050505081565b61132c848484611743565b6001600160a01b0383163b1515801561134e575061134c84848484611ac7565b155b1561136c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461139c5760405162461bcd60e51b81526004016109a690612470565b601355565b6008546001600160a01b031633146113cb5760405162461bcd60e51b81526004016109a690612470565b6012805460ff1916911515919091179055565b60606113e9826115af565b61140657604051630a14c4b560e41b815260040160405180910390fd5b601254610100900460ff1661147357600b805461142290612533565b1515905061143f5760405180602001604052806000815250610812565b600b61144a83611bbf565b600a60405160200161145e93929190612404565b60405160208183030381529060405292915050565b600061147d611cbd565b905080516000141561149e57604051806020016040528060008152506114cc565b806114a884611bbf565b600a6040516020016114bc939291906123c7565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114fd5760405162461bcd60e51b81526004016109a690612470565b6001600160a01b0381166115625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a6565b610f8f81611a75565b6008546001600160a01b031633146115955760405162461bcd60e51b81526004016109a690612470565b63ffffffff16600e55565b6001600160a01b03163b151590565b6000805482108015610812575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000826116438584611ccc565b14949350505050565b60006001600160a01b038216611675576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b900467ffffffffffffffff1690565b610c77828260405180602001604052806000815250611d40565b803410156117055760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b60448201526064016109a6565b80341115610f8f57336108fc61171b83346124f0565b6040518115909202916000818181858888f19350505050158015610c77573d6000803e3d6000fd5b600061174e82611959565b80519091506000906001600160a01b0316336001600160a01b0316148061177c5750815161177c903361070e565b8061179757503361178c846108aa565b6001600160a01b0316145b9050806117b757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146117ec5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661181357604051633a954ecd60e21b815260040160405180910390fd5b61182360008484600001516115da565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661190f5760005481101561190f578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611a5c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611a5a5780516001600160a01b0316156119f0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611a55579392505050565b6119f0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611afc903390899088908890600401612420565b602060405180830381600087803b158015611b1657600080fd5b505af1925050508015611b46575060408051601f3d908101601f19168201909252611b4391810190612275565b60015b611ba1573d808015611b74576040519150601f19603f3d011682016040523d82523d6000602084013e611b79565b606091505b508051611b99576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611be35750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c0d5780611bf78161256e565b9150611c069050600a836124bd565b9150611be7565b60008167ffffffffffffffff811115611c2857611c286125df565b6040519080825280601f01601f191660200182016040528015611c52576020820181803683370190505b5090505b8415611bb757611c676001836124f0565b9150611c74600a86612589565b611c7f9060306124a5565b60f81b818381518110611c9457611c946125c9565b60200101906001600160f81b031916908160001a905350611cb6600a866124bd565b9450611c56565b60606009805461082790612533565b600081815b8451811015611d38576000858281518110611cee57611cee6125c9565b60200260200101519050808311611d145760008381526020829052604090209250611d25565b600081815260208490526040902092505b5080611d308161256e565b915050611cd1565b509392505050565b61097783838360016000546001600160a01b038516611d7157604051622e076360e81b815260040160405180910390fd5b83611d8f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e3c57506001600160a01b0387163b15155b15611ec5575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e8d6000888480600101955088611ac7565b611eaa576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611e42578260005414611ec057600080fd5b611f0b565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611ec6575b50600055611952565b828054611f2090612533565b90600052602060002090601f016020900481019282611f425760008555611f88565b82601f10611f5b57805160ff1916838001178555611f88565b82800160010185558215611f88579182015b82811115611f88578251825591602001919060010190611f6d565b50611f94929150611f98565b5090565b5b80821115611f945760008155600101611f99565b600067ffffffffffffffff80841115611fc857611fc86125df565b604051601f8501601f19908116603f01168101908282118183101715611ff057611ff06125df565b8160405280935085815286868601111561200957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461203a57600080fd5b919050565b8035801515811461203a57600080fd5b60006020828403121561206157600080fd5b6114cc82612023565b6000806040838503121561207d57600080fd5b61208683612023565b915061209460208401612023565b90509250929050565b6000806000606084860312156120b257600080fd5b6120bb84612023565b92506120c960208501612023565b9150604084013590509250925092565b600080600080608085870312156120ef57600080fd5b6120f885612023565b935061210660208601612023565b925060408501359150606085013567ffffffffffffffff81111561212957600080fd5b8501601f8101871361213a57600080fd5b61214987823560208401611fad565b91505092959194509250565b6000806040838503121561216857600080fd5b61217183612023565b91506120946020840161203f565b6000806040838503121561219257600080fd5b61219b83612023565b946020939093013593505050565b6000806000604084860312156121be57600080fd5b833567ffffffffffffffff808211156121d657600080fd5b818601915086601f8301126121ea57600080fd5b8135818111156121f957600080fd5b8760208260051b850101111561220e57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561223657600080fd5b6114cc8261203f565b60006020828403121561225157600080fd5b5035919050565b60006020828403121561226a57600080fd5b81356114cc816125f5565b60006020828403121561228757600080fd5b81516114cc816125f5565b6000602082840312156122a457600080fd5b813567ffffffffffffffff8111156122bb57600080fd5b8201601f810184136122cc57600080fd5b611bb784823560208401611fad565b6000602082840312156122ed57600080fd5b813563ffffffff811681146114cc57600080fd5b60008151808452612319816020860160208601612507565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061234757607f831692505b602080841082141561236957634e487b7160e01b600052602260045260246000fd5b81801561237d576001811461238e576123bb565b60ff198616895284890196506123bb565b60008881526020902060005b868110156123b35781548b82015290850190830161239a565b505084890196505b50505050505092915050565b600084516123d9818460208901612507565b8451908301906123ed818360208901612507565b6123f98183018661232d565b979650505050505050565b6000612410828661232d565b84516123ed818360208901612507565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061245390830184612301565b9695505050505050565b6020815260006114cc6020830184612301565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156124b8576124b861259d565b500190565b6000826124cc576124cc6125b3565b500490565b60008160001904831182151516156124eb576124eb61259d565b500290565b6000828210156125025761250261259d565b500390565b60005b8381101561252257818101518382015260200161250a565b8381111561136c5750506000910152565b600181811c9082168061254757607f821691505b6020821081141561256857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125825761258261259d565b5060010190565b600082612598576125986125b3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f8f57600080fdfea264697066735822122086d1ca97e18fb33a6df41d65b0f3f4fdb60c7f5e404dc9ad82422029c66cc64464736f6c63430008070033
Deployed Bytecode Sourcemap
48197:6442:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28131:305;;;;;;;;;;-1:-1:-1;28131:305:0;;;;;:::i;:::-;;:::i;:::-;;;9026:14:1;;9019:22;9001:41;;8989:2;8974:18;28131:305:0;;;;;;;;31516:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33019:204::-;;;;;;;;;;-1:-1:-1;33019:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8324:32:1;;;8306:51;;8294:2;8279:18;33019:204:0;8160:203:1;32582:371:0;;;;;;;;;;-1:-1:-1;32582:371:0;;;;;:::i;:::-;;:::i;:::-;;52495:150;;;;;;;;;;-1:-1:-1;52495:150:0;;;;;:::i;:::-;;:::i;50550:539::-;;;;;;:::i;:::-;;:::i;53313:106::-;;;;;;;;;;-1:-1:-1;53313:106:0;;;;;:::i;:::-;;:::i;52691:138::-;;;;;;;;;;-1:-1:-1;52691:138:0;;;;;:::i;:::-;;:::i;48851:38::-;;;;;;;;;;;;;;;;;;;13071:25:1;;;13059:2;13044:18;48851:38:0;12925:177:1;27380:303:0;;;;;;;;;;-1:-1:-1;27634:12:0;;27424:7;27618:13;:28;27380:303;;48896:49;;;;;;;;;;-1:-1:-1;48896:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;33876:170;;;;;;;;;;-1:-1:-1;33876:170:0;;;;;:::i;:::-;;:::i;50020:499::-;;;;;;:::i;:::-;;:::i;51124:227::-;;;;;;;;;;-1:-1:-1;51124:227:0;;;;;:::i;:::-;;:::i;54155:481::-;;;:::i;51674:117::-;;;;;;;;;;-1:-1:-1;51764:19:0;;;;;;;51745:15;:38;;51674:117;;34117:185;;;;;;;;;;-1:-1:-1;34117:185:0;;;;;:::i;:::-;;:::i;52946:138::-;;;;;;;;;;-1:-1:-1;52946:138:0;;;;;:::i;:::-;;:::i;49052:28::-;;;;;;;;;;-1:-1:-1;49052:28:0;;;;;;;;;;;52854:80;;;;;;;;;;;;;:::i;49020:25::-;;;;;;;;;;-1:-1:-1;49020:25:0;;;;;;;;52330:116;;;;;;;;;;-1:-1:-1;52330:116:0;;;;;:::i;:::-;;:::i;31325:124::-;;;;;;;;;;-1:-1:-1;31325:124:0;;;;;:::i;:::-;;:::i;49087:33::-;;;;;;;;;;-1:-1:-1;49087:33:0;;;;;;;;;;;;;;13281:10:1;13269:23;;;13251:42;;13239:2;13224:18;49087:33:0;13107:192:1;28500:206:0;;;;;;;;;;-1:-1:-1;28500:206:0;;;;;:::i;:::-;;:::i;47307:103::-;;;;;;;;;;;;;:::i;48803:41::-;;;;;;;;;;;;;;;;53199:106;;;;;;;;;;-1:-1:-1;53199:106:0;;;;;:::i;:::-;;:::i;46656:87::-;;;;;;;;;;-1:-1:-1;46729:6:0;;-1:-1:-1;;;;;46729:6:0;46656:87;;31685:104;;;;;;;;;;;;;:::i;33295:279::-;;;;;;;;;;-1:-1:-1;33295:279:0;;;;;:::i;:::-;;:::i;48494:31::-;;;;;;;;;;;;;:::i;48667:39::-;;;;;;;;;;;;;;;;34373:369;;;;;;;;;;-1:-1:-1;34373:369:0;;;;;:::i;:::-;;:::i;51828:122::-;;;;;;;;;;-1:-1:-1;51828:122:0;;;;;:::i;:::-;;:::i;53427:82::-;;;;;;;;;;-1:-1:-1;53427:82:0;;;;;:::i;:::-;;:::i;53517:512::-;;;;;;;;;;-1:-1:-1;53517:512:0;;;;;:::i;:::-;;:::i;48714:31::-;;;;;;;;;;;;;;;;33645:164;;;;;;;;;;-1:-1:-1;33645:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33766:25:0;;;33742:4;33766:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33645:164;47565:201;;;;;;;;;;-1:-1:-1;47565:201:0;;;;;:::i;:::-;;:::i;53092:99::-;;;;;;;;;;-1:-1:-1;53092:99:0;;;;;:::i;:::-;;:::i;48752:44::-;;;;;;;;;;;;;;;48616:43;;;;;;;;;;;;;;;;28131:305;28233:4;-1:-1:-1;;;;;;28270:40:0;;-1:-1:-1;;;28270:40:0;;:105;;-1:-1:-1;;;;;;;28327:48:0;;-1:-1:-1;;;28327:48:0;28270:105;:158;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;28392:36;28250:178;28131:305;-1:-1:-1;;28131:305:0:o;31516:100::-;31570:13;31603:5;31596:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31516:100;:::o;33019:204::-;33087:7;33112:16;33120:7;33112;:16::i;:::-;33107:64;;33137:34;;-1:-1:-1;;;33137:34:0;;;;;;;;;;;33107:64;-1:-1:-1;33191:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33191:24:0;;33019:204::o;32582:371::-;32655:13;32671:24;32687:7;32671:15;:24::i;:::-;32655:40;;32716:5;-1:-1:-1;;;;;32710:11:0;:2;-1:-1:-1;;;;;32710:11:0;;32706:48;;;32730:24;;-1:-1:-1;;;32730:24:0;;;;;;;;;;;32706:48;23507:10;-1:-1:-1;;;;;32771:21:0;;;;;;:63;;-1:-1:-1;32797:37:0;32814:5;23507:10;33645:164;:::i;32797:37::-;32796:38;32771:63;32767:138;;;32858:35;;-1:-1:-1;;;32858:35:0;;;;;;;;;;;32767:138;32917:28;32926:2;32930:7;32939:5;32917:8;:28::i;:::-;32644:309;32582:371;;:::o;52495:150::-;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;;;;;;;;;52589:48:::1;;:22;:48:::0;52495:150::o;50550:539::-;50656:11;49876:9;;49861:11;49845:13;27634:12;;27424:7;27618:13;:28;;27380:303;49845:13;:27;;;;:::i;:::-;:40;;49837:73;;;;-1:-1:-1;;;49837:73:0;;11721:2:1;49837:73:0;;;11703:21:1;11760:2;11740:18;;;11733:30;-1:-1:-1;;;11779:18:1;;;11772:50;11839:18;;49837:73:0;11519:344:1;49837:73:0;49930:6;;;;49929:7;49921:49;;;;-1:-1:-1;;;49921:49:0;;12070:2:1;49921:49:0;;;12052:21:1;12109:2;12089:18;;;12082:30;12148:31;12128:18;;;12121:59;12197:18;;49921:49:0;11868:353:1;49921:49:0;50688:11:::1;;50701:19;;52079:130;52116:11;;52079:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;52179:28:0::1;::::0;-1:-1:-1;;52196:10:0::1;6849:2:1::0;6845:15;6841:53;52179:28:0::1;::::0;::::1;6829:66:1::0;52146:4:0;;-1:-1:-1;6911:12:1;;;-1:-1:-1;52179:28:0::1;;;;;;;;;;;;52169:39;;;;;;52079:18;:130::i;:::-;52071:196;;;::::0;-1:-1:-1;;;52071:196:0;;10593:2:1;52071:196:0::1;::::0;::::1;10575:21:1::0;10632:2;10612:18;;;10605:30;10671:32;10651:18;;;10644:60;10721:18;;52071:196:0::1;10391:354:1::0;52071:196:0::1;50754:1:::2;50740:11;:15;:84;;;;;50802:22;;50787:11;50759:25;50773:10;50759:13;:25::i;:::-;:39;;;;:::i;:::-;:65;;50740:84;50732:117;;;::::0;-1:-1:-1;;;50732:117:0;;10244:2:1;50732:117:0::2;::::0;::::2;10226:21:1::0;10283:2;10263:18;;;10256:30;-1:-1:-1;;;10302:18:1;;;10295:50;10362:18;;50732:117:0::2;10042:344:1::0;50732:117:0::2;50898:11;50881:14;;:28;;;;:::i;:::-;50868:9;:41;;50860:73;;;::::0;-1:-1:-1;;;50860:73:0;;12779:2:1;50860:73:0::2;::::0;::::2;12761:21:1::0;12818:2;12798:18;;;12791:30;-1:-1:-1;;;12837:18:1;;;12830:49;12896:18;;50860:73:0::2;12577:343:1::0;50860:73:0::2;50959:10;50944:26;::::0;;;:14:::2;:26;::::0;;;;:39;;50972:11;;50944:26;:39:::2;::::0;50972:11;;50944:39:::2;:::i;:::-;::::0;;;-1:-1:-1;50994:34:0::2;::::0;-1:-1:-1;51004:10:0::2;51016:11:::0;50994:9:::2;:34::i;:::-;51039:42;51069:11;51052:14;;:28;;;;:::i;:::-;51039:12;:42::i;:::-;49981:1:::1;;;50550:539:::0;;;;:::o;53313:106::-;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;53389:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53313:106:::0;:::o;52691:138::-;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;52779:42:::1;;:19;:42:::0;52691:138::o;33876:170::-;34010:28;34020:4;34026:2;34030:7;34010:9;:28::i;50020:499::-;50091:11;49876:9;;49861:11;49845:13;27634:12;;27424:7;27618:13;:28;;27380:303;49845:13;:27;;;;:::i;:::-;:40;;49837:73;;;;-1:-1:-1;;;49837:73:0;;11721:2:1;49837:73:0;;;11703:21:1;11760:2;11740:18;;;11733:30;-1:-1:-1;;;11779:18:1;;;11772:50;11839:18;;49837:73:0;11519:344:1;49837:73:0;49930:6;;;;49929:7;49921:49;;;;-1:-1:-1;;;49921:49:0;;12070:2:1;49921:49:0;;;12052:21:1;12109:2;12089:18;;;12082:30;12148:31;12128:18;;;12121:59;12197:18;;49921:49:0;11868:353:1;49921:49:0;51764:19;;;;;;;51745:15;:38;;50123:24:::1;;50143:4;50123:24;50115:66;;;::::0;-1:-1:-1;;;50115:66:0;;9479:2:1;50115:66:0::1;::::0;::::1;9461:21:1::0;9518:2;9498:18;;;9491:30;9557:31;9537:18;;;9530:59;9606:18;;50115:66:0::1;9277:353:1::0;50115:66:0::1;50214:1;50200:11;:15;:110;;;;-1:-1:-1::0;50291:19:0::1;::::0;50276:10:::1;50261:26;::::0;;;:14:::1;:26;::::0;;;;;;50247:11;;50219:25:::1;::::0;:13:::1;:25::i;:::-;:39;;;;:::i;:::-;:68;;;;:::i;:::-;:91;;50200:110;50192:143;;;::::0;-1:-1:-1;;;50192:143:0;;10244:2:1;50192:143:0::1;::::0;::::1;10226:21:1::0;10283:2;10263:18;;;10256:30;-1:-1:-1;;;10302:18:1;;;10295:50;10362:18;;50192:143:0::1;10042:344:1::0;50192:143:0::1;50381:11;50367;;:25;;;;:::i;:::-;50354:9;:38;;50346:70;;;::::0;-1:-1:-1;;;50346:70:0;;12779:2:1;50346:70:0::1;::::0;::::1;12761:21:1::0;12818:2;12798:18;;;12791:30;-1:-1:-1;;;12837:18:1;;;12830:49;12896:18;;50346:70:0::1;12577:343:1::0;50346:70:0::1;50427:34;50437:10;50449:11;50427:9;:34::i;:::-;50472:39;50499:11;50485;;:25;;;;:::i;51124:227::-:0;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;51231:13:::1;51216:11;51200:13;27634:12:::0;;27424:7;27618:13;:28;;27380:303;51200:13:::1;:27;;;;:::i;:::-;:44;;51192:96;;;::::0;-1:-1:-1;;;51192:96:0;;11313:2:1;51192:96:0::1;::::0;::::1;11295:21:1::0;11352:2;11332:18;;;11325:30;11391:34;11371:18;;;11364:62;-1:-1:-1;;;11442:18:1;;;11435:37;11489:19;;51192:96:0::1;11111:403:1::0;51192:96:0::1;51299:34;51309:10;51321:11;51299:9;:34::i;:::-;51124:227:::0;:::o;54155:481::-;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;54448:7:::1;54469;46729:6:::0;;-1:-1:-1;;;;;46729:6:0;;46656:87;54469:7:::1;-1:-1:-1::0;;;;;54461:21:0::1;54490;54461:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54447:69;;;54535:2;54527:11;;;::::0;::::1;34117:185:::0;34255:39;34272:4;34278:2;34282:7;34255:39;;;;;;;;;;;;:16;:39::i;52946:138::-;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;53038:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;52854:80::-:0;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;52918:8:::1;::::0;;-1:-1:-1;;52906:20:0;::::1;52918:8;::::0;;;::::1;;;52917:9;52906:20:::0;;::::1;;::::0;;52854:80::o;52330:116::-;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;52407:19:::1;:31:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;52407:31:0;;::::1;::::0;;;::::1;::::0;;52330:116::o;31325:124::-;31389:7;31416:20;31428:7;31416:11;:20::i;:::-;:25;;31325:124;-1:-1:-1;;31325:124:0:o;28500:206::-;28564:7;-1:-1:-1;;;;;28588:19:0;;28584:60;;28616:28;;-1:-1:-1;;;28616:28:0;;;;;;;;;;;28584:60;-1:-1:-1;;;;;;28670:19:0;;;;;:12;:19;;;;;:27;;;;28500:206::o;47307:103::-;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;47372:30:::1;47399:1;47372:18;:30::i;:::-;47307:103::o:0;53199:106::-;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;53275:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;31685:104::-:0;31741:13;31774:7;31767:14;;;;;:::i;33295:279::-;-1:-1:-1;;;;;33386:24:0;;23507:10;33386:24;33382:54;;;33419:17;;-1:-1:-1;;;33419:17:0;;;;;;;;;;;33382:54;23507:10;33449:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33449:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33449:53:0;;;;;;;;;;33518:48;;9001:41:1;;;33449:42:0;;23507:10;33518:48;;8974:18:1;33518:48:0;;;;;;;33295:279;;:::o;48494:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34373:369::-;34540:28;34550:4;34556:2;34560:7;34540:9;:28::i;:::-;-1:-1:-1;;;;;34583:13:0;;3652:19;:23;;34583:76;;;;;34603:56;34634:4;34640:2;34644:7;34653:5;34603:30;:56::i;:::-;34602:57;34583:76;34579:156;;;34683:40;;-1:-1:-1;;;34683:40:0;;;;;;;;;;;34579:156;34373:369;;;;:::o;51828:122::-;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;51910:19:::1;:32:::0;51828:122::o;53427:82::-;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;53486:6:::1;:15:::0;;-1:-1:-1;;53486:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53427:82::o;53517:512::-;53590:13;53621:16;53629:7;53621;:16::i;:::-;53616:59;;53646:29;;-1:-1:-1;;;53646:29:0;;;;;;;;;;;53616:59;53690:8;;;;;;;53686:175;;53737:17;53731:31;;;;;:::i;:::-;:36;;;-1:-1:-1;53731:118:0;;;;;;;;;;;;;;;;;53794:17;53813:18;:7;:16;:18::i;:::-;53833:9;53777:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53724:125;53517:512;-1:-1:-1;;53517:512:0:o;53686:175::-;53871:21;53895:10;:8;:10::i;:::-;53871:34;;53929:7;53923:21;53948:1;53923:26;;:98;;;;;;;;;;;;;;;;;53976:7;53985:18;:7;:16;:18::i;:::-;54005:9;53959:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53923:98;53916:105;53517:512;-1:-1:-1;;;53517:512:0:o;47565:201::-;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47654:22:0;::::1;47646:73;;;::::0;-1:-1:-1;;;47646:73:0;;9837:2:1;47646:73:0::1;::::0;::::1;9819:21:1::0;9876:2;9856:18;;;9849:30;9915:34;9895:18;;;9888:62;-1:-1:-1;;;9966:18:1;;;9959:36;10012:19;;47646:73:0::1;9635:402:1::0;47646:73:0::1;47730:28;47749:8;47730:18;:28::i;53092:99::-:0;46729:6;;-1:-1:-1;;;;;46729:6:0;23507:10;46876:23;46868:68;;;;-1:-1:-1;;;46868:68:0;;;;;;;:::i;:::-;53161:22:::1;;:9;:22:::0;53092:99::o;3357:326::-;-1:-1:-1;;;;;3652:19:0;;:23;;;3357:326::o;34997:187::-;35054:4;35118:13;;35108:7;:23;35078:98;;;;-1:-1:-1;;35149:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35149:27:0;;;;35148:28;;34997:187::o;42608:196::-;42723:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42723:29:0;-1:-1:-1;;;;;42723:29:0;;;;;;;;;42768:28;;42723:24;;42768:28;;;;;;;42608:196;;;:::o;21282:190::-;21407:4;21460;21431:25;21444:5;21451:4;21431:12;:25::i;:::-;:33;;21282:190;-1:-1:-1;;;;21282:190:0:o;28788:207::-;28849:7;-1:-1:-1;;;;;28873:19:0;;28869:59;;28901:27;;-1:-1:-1;;;28901:27:0;;;;;;;;;;;28869:59;-1:-1:-1;;;;;;28954:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;28954:32:0;;;;;28788:207::o;35192:104::-;35261:27;35271:2;35275:8;35261:27;;;;;;;;;;;;:9;:27::i;51408:220::-;51485:5;51472:9;:18;;51464:53;;;;-1:-1:-1;;;51464:53:0;;12428:2:1;51464:53:0;;;12410:21:1;12467:2;12447:18;;;12440:30;-1:-1:-1;;;12486:18:1;;;12479:52;12548:18;;51464:53:0;12226:346:1;51464:53:0;51544:5;51532:9;:17;51528:93;;;51570:10;51562:47;51591:17;51603:5;51591:9;:17;:::i;:::-;51562:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38110:2112;38225:35;38263:20;38275:7;38263:11;:20::i;:::-;38338:18;;38225:58;;-1:-1:-1;38296:22:0;;-1:-1:-1;;;;;38322:34:0;23507:10;-1:-1:-1;;;;;38322:34:0;;:101;;;-1:-1:-1;38390:18:0;;38373:50;;23507:10;33645:164;:::i;38373:50::-;38322:154;;;-1:-1:-1;23507:10:0;38440:20;38452:7;38440:11;:20::i;:::-;-1:-1:-1;;;;;38440:36:0;;38322:154;38296:181;;38495:17;38490:66;;38521:35;;-1:-1:-1;;;38521:35:0;;;;;;;;;;;38490:66;38593:4;-1:-1:-1;;;;;38571:26:0;:13;:18;;;-1:-1:-1;;;;;38571:26:0;;38567:67;;38606:28;;-1:-1:-1;;;38606:28:0;;;;;;;;;;;38567:67;-1:-1:-1;;;;;38649:16:0;;38645:52;;38674:23;;-1:-1:-1;;;38674:23:0;;;;;;;;;;;38645:52;38818:49;38835:1;38839:7;38848:13;:18;;;38818:8;:49::i;:::-;-1:-1:-1;;;;;39163:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39163:31:0;;;;;;;-1:-1:-1;;39163:31:0;;;;;;;39209:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39209:29:0;;;;;;;;;;;39255:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39300:61:0;;;;-1:-1:-1;;;39345:15:0;39300:61;;;;;;;;;;;39635:11;;;39665:24;;;;;:29;39635:11;;39665:29;39661:445;;39890:13;;39876:11;:27;39872:219;;;39960:18;;;39928:24;;;:11;:24;;;;;;;;:50;;40043:28;;;;40001:70;;-1:-1:-1;;;40001:70:0;-1:-1:-1;;;;;;40001:70:0;;;-1:-1:-1;;;;;39928:50:0;;;40001:70;;;;;;;39872:219;39138:979;40153:7;40149:2;-1:-1:-1;;;;;40134:27:0;40143:4;-1:-1:-1;;;;;40134:27:0;;;;;;;;;;;40172:42;38214:2008;;38110:2112;;;:::o;30155:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30265:7:0;30348:13;;30341:4;:20;30310:886;;;30382:31;30416:17;;;:11;:17;;;;;;;;;30382:51;;;;;;;;;-1:-1:-1;;;;;30382:51:0;;;;-1:-1:-1;;;30382:51:0;;;;;;;;;;;-1:-1:-1;;;30382:51:0;;;;;;;;;;;;;;30452:729;;30502:14;;-1:-1:-1;;;;;30502:28:0;;30498:101;;30566:9;30155:1108;-1:-1:-1;;;30155:1108:0:o;30498:101::-;-1:-1:-1;;;30941:6:0;30986:17;;;;:11;:17;;;;;;;;;30974:29;;;;;;;;;-1:-1:-1;;;;;30974:29:0;;;;;-1:-1:-1;;;30974:29:0;;;;;;;;;;;-1:-1:-1;;;30974:29:0;;;;;;;;;;;;;31034:28;31030:109;;31102:9;30155:1108;-1:-1:-1;;;30155:1108:0:o;31030:109::-;30901:261;;;30363:833;30310:886;31224:31;;-1:-1:-1;;;31224:31:0;;;;;;;;;;;47926:191;48019:6;;;-1:-1:-1;;;;;48036:17:0;;;-1:-1:-1;;;;;;48036:17:0;;;;;;;48069:40;;48019:6;;;48036:17;48019:6;;48069:40;;48000:16;;48069:40;47989:128;47926:191;:::o;43296:667::-;43480:72;;-1:-1:-1;;;43480:72:0;;43459:4;;-1:-1:-1;;;;;43480:36:0;;;;;:72;;23507:10;;43531:4;;43537:7;;43546:5;;43480:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43480:72:0;;;;;;;;-1:-1:-1;;43480:72:0;;;;;;;;;;;;:::i;:::-;;;43476:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43714:13:0;;43710:235;;43760:40;;-1:-1:-1;;;43760:40:0;;;;;;;;;;;43710:235;43903:6;43897:13;43888:6;43884:2;43880:15;43873:38;43476:480;-1:-1:-1;;;;;;43599:55:0;-1:-1:-1;;;43599:55:0;;-1:-1:-1;43476:480:0;43296:667;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;54037:110;54097:13;54130:9;54123:16;;;;;:::i;21834:675::-;21917:7;21960:4;21917:7;21975:497;21999:5;:12;21995:1;:16;21975:497;;;22033:20;22056:5;22062:1;22056:8;;;;;;;;:::i;:::-;;;;;;;22033:31;;22099:12;22083;:28;22079:382;;22585:13;22635:15;;;22671:4;22664:15;;;22718:4;22702:21;;22211:57;;22079:382;;;22585:13;22635:15;;;22671:4;22664:15;;;22718:4;22702:21;;22388:57;;22079:382;-1:-1:-1;22013:3:0;;;;:::i;:::-;;;;21975:497;;;-1:-1:-1;22489:12:0;21834:675;-1:-1:-1;;;21834:675:0:o;35659:163::-;35782:32;35788:2;35792:8;35802:5;35809:4;36220:20;36243:13;-1:-1:-1;;;;;36271:16:0;;36267:48;;36296:19;;-1:-1:-1;;;36296:19:0;;;;;;;;;;;36267:48;36330:13;36326:44;;36352:18;;-1:-1:-1;;;36352:18:0;;;;;;;;;;;36326:44;-1:-1:-1;;;;;36721:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36780:49:0;;36721:44;;;;;;;;36780:49;;;-1:-1:-1;;;;;36721:44:0;;;;;;36780:49;;;;;;;;;;;;;;;;36846:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36896:66:0;;;;-1:-1:-1;;;36946:15:0;36896:66;;;;;;;;;;36846:25;37043:23;;;37087:4;:23;;;;-1:-1:-1;;;;;;37095:13:0;;3652:19;:23;;37095:15;37083:641;;;37131:314;37162:38;;37187:12;;-1:-1:-1;;;;;37162:38:0;;;37179:1;;37162:38;;37179:1;;37162:38;37228:69;37267:1;37271:2;37275:14;;;;;;37291:5;37228:30;:69::i;:::-;37223:174;;37333:40;;-1:-1:-1;;;37333:40:0;;;;;;;;;;;37223:174;37440:3;37424:12;:19;;37131:314;;37526:12;37509:13;;:29;37505:43;;37540:8;;;37505:43;37083:641;;;37589:120;37620:40;;37645:14;;;;;-1:-1:-1;;;;;37620:40:0;;;37637:1;;37620:40;;37637:1;;37620:40;37704:3;37688:12;:19;;37589:120;;37083:641;-1:-1:-1;37738:13:0;:28;37788:60;34373:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:180::-;3909:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:52;;;3978:1;3975;3968:12;3930:52;-1:-1:-1;4001:23:1;;3850:180;-1:-1:-1;3850:180:1:o;4035:245::-;4093:6;4146:2;4134:9;4125:7;4121:23;4117:32;4114:52;;;4162:1;4159;4152:12;4114:52;4201:9;4188:23;4220:30;4244:5;4220:30;:::i;4285:249::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4455:9;4449:16;4474:30;4498:5;4474:30;:::i;4539:450::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4717:9;4704:23;4750:18;4742:6;4739:30;4736:50;;;4782:1;4779;4772:12;4736:50;4805:22;;4858:4;4850:13;;4846:27;-1:-1:-1;4836:55:1;;4887:1;4884;4877:12;4836:55;4910:73;4975:7;4970:2;4957:16;4952:2;4948;4944:11;4910:73;:::i;5179:276::-;5237:6;5290:2;5278:9;5269:7;5265:23;5261:32;5258:52;;;5306:1;5303;5296:12;5258:52;5345:9;5332:23;5395:10;5388:5;5384:22;5377:5;5374:33;5364:61;;5421:1;5418;5411:12;5460:257;5501:3;5539:5;5533:12;5566:6;5561:3;5554:19;5582:63;5638:6;5631:4;5626:3;5622:14;5615:4;5608:5;5604:16;5582:63;:::i;:::-;5699:2;5678:15;-1:-1:-1;;5674:29:1;5665:39;;;;5706:4;5661:50;;5460:257;-1:-1:-1;;5460:257:1:o;5722:973::-;5807:12;;5772:3;;5862:1;5882:18;;;;5935;;;;5962:61;;6016:4;6008:6;6004:17;5994:27;;5962:61;6042:2;6090;6082:6;6079:14;6059:18;6056:38;6053:161;;;6136:10;6131:3;6127:20;6124:1;6117:31;6171:4;6168:1;6161:15;6199:4;6196:1;6189:15;6053:161;6230:18;6257:104;;;;6375:1;6370:319;;;;6223:466;;6257:104;-1:-1:-1;;6290:24:1;;6278:37;;6335:16;;;;-1:-1:-1;6257:104:1;;6370:319;13377:1;13370:14;;;13414:4;13401:18;;6464:1;6478:165;6492:6;6489:1;6486:13;6478:165;;;6570:14;;6557:11;;;6550:35;6613:16;;;;6507:10;;6478:165;;;6482:3;;6672:6;6667:3;6663:16;6656:23;;6223:466;;;;;;;5722:973;;;;:::o;6934:550::-;7158:3;7196:6;7190:13;7212:53;7258:6;7253:3;7246:4;7238:6;7234:17;7212:53;:::i;:::-;7328:13;;7287:16;;;;7350:57;7328:13;7287:16;7384:4;7372:17;;7350:57;:::i;:::-;7423:55;7468:8;7461:5;7457:20;7449:6;7423:55;:::i;:::-;7416:62;6934:550;-1:-1:-1;;;;;;;6934:550:1:o;7489:456::-;7710:3;7738:38;7772:3;7764:6;7738:38;:::i;:::-;7805:6;7799:13;7821:52;7866:6;7862:2;7855:4;7847:6;7843:17;7821:52;:::i;8368:488::-;-1:-1:-1;;;;;8637:15:1;;;8619:34;;8689:15;;8684:2;8669:18;;8662:43;8736:2;8721:18;;8714:34;;;8784:3;8779:2;8764:18;;8757:31;;;8562:4;;8805:45;;8830:19;;8822:6;8805:45;:::i;:::-;8797:53;8368:488;-1:-1:-1;;;;;;8368:488:1:o;9053:219::-;9202:2;9191:9;9184:21;9165:4;9222:44;9262:2;9251:9;9247:18;9239:6;9222:44;:::i;10750:356::-;10952:2;10934:21;;;10971:18;;;10964:30;11030:34;11025:2;11010:18;;11003:62;11097:2;11082:18;;10750:356::o;13430:128::-;13470:3;13501:1;13497:6;13494:1;13491:13;13488:39;;;13507:18;;:::i;:::-;-1:-1:-1;13543:9:1;;13430:128::o;13563:120::-;13603:1;13629;13619:35;;13634:18;;:::i;:::-;-1:-1:-1;13668:9:1;;13563:120::o;13688:168::-;13728:7;13794:1;13790;13786:6;13782:14;13779:1;13776:21;13771:1;13764:9;13757:17;13753:45;13750:71;;;13801:18;;:::i;:::-;-1:-1:-1;13841:9:1;;13688:168::o;13861:125::-;13901:4;13929:1;13926;13923:8;13920:34;;;13934:18;;:::i;:::-;-1:-1:-1;13971:9:1;;13861:125::o;13991:258::-;14063:1;14073:113;14087:6;14084:1;14081:13;14073:113;;;14163:11;;;14157:18;14144:11;;;14137:39;14109:2;14102:10;14073:113;;;14204:6;14201:1;14198:13;14195:48;;;-1:-1:-1;;14239:1:1;14221:16;;14214:27;13991:258::o;14254:380::-;14333:1;14329:12;;;;14376;;;14397:61;;14451:4;14443:6;14439:17;14429:27;;14397:61;14504:2;14496:6;14493:14;14473:18;14470:38;14467:161;;;14550:10;14545:3;14541:20;14538:1;14531:31;14585:4;14582:1;14575:15;14613:4;14610:1;14603:15;14467:161;;14254:380;;;:::o;14639:135::-;14678:3;-1:-1:-1;;14699:17:1;;14696:43;;;14719:18;;:::i;:::-;-1:-1:-1;14766:1:1;14755:13;;14639:135::o;14779:112::-;14811:1;14837;14827:35;;14842:18;;:::i;:::-;-1:-1:-1;14876:9:1;;14779:112::o;14896:127::-;14957:10;14952:3;14948:20;14945:1;14938:31;14988:4;14985:1;14978:15;15012:4;15009:1;15002:15;15028:127;15089:10;15084:3;15080:20;15077:1;15070:31;15120:4;15117:1;15110:15;15144:4;15141:1;15134:15;15160:127;15221:10;15216:3;15212:20;15209:1;15202:31;15252:4;15249:1;15242:15;15276:4;15273:1;15266:15;15292:127;15353:10;15348:3;15344:20;15341:1;15334:31;15384:4;15381:1;15374:15;15408:4;15405:1;15398:15;15424:131;-1:-1:-1;;;;;;15498:32:1;;15488:43;;15478:71;;15545:1;15542;15535:12
Swarm Source
ipfs://86d1ca97e18fb33a6df41d65b0f3f4fdb60c7f5e404dc9ad82422029c66cc644
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.