Overview
TokenID
75
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FloppyDisk
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-06 */ // SPDX-License-Identifier: MIT // Website: floppydisknft.com // // .: // ..^7?Y5?^ // .~!?55G5YJYY?^ // .~~JYYYJ?7YPPYYYYY?^ // :^!JJJJ??5PGG5?7YPPYYYYY?^ // :^?JGGJ777YBBGGGGGBP5PG5YYYYYY?^. // ..^7JBGGGGGPJ!!7YGGGBBBBB55YYYY5YYYYY?^. // ..~YP555PBBGGGGGPJ7JYGBG55YYYYY5PPPPPYYYYY?^ // .!Y5P5YYYYYYPBBGGBB#PPP5YYYYYPPPPYJ7~!JPPYYYYYJ^ // ^PG55YYYYYYYYYYPGGPPYYYYY55PP5J?!!!7JJ!~!JPP5YYYYJ^. // ~BGPP55YYYYYYYYYYYYYY55PP5Y?~~!!JY5555P~^~!JPP5YYYYJ~. // .^YGGPP55YYYYYYYYY5PP5Y7!!~7JY5PY55YYJ!~!J!~!JPGBPYYYJ~. // ^YGGPP5YYYYYYYPPJ!~^~?YP5YPY55?7!7?J55YG7^~!JGG5YYYYJ~. // ^JGGPP5YYYYYY5P57~~5555Y?7~7?Y555PY55?~^^^~!JPP555PBY. // ^JGGPP55YYYYY5P57~77~~?55YP555Y??~~^^^^^^~!?GGGBBB5. // ^JGGGP55YYYYY5P57~^7GYP5YJ7~~^^^^^^~!7Y5GBBBB5?!. // ^JGGGP55YYYYY5P5?~7J!!~^^^^^~~~?J5GBBBGYJ~:. // ^JGGGP55YYYYPBB5?~^^^^~~!?JPGBBBG5J^: // ^JPGGP55YYY555P5?~77YPPBBBPP7~: // ^?GGGP55YYYY5PBPGBBBG5!!. // :?PGGP5PPGBBBBGJ7~.. // :?PGBBBBGJ?^:. // :?YY?^: // // // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // 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/[email protected] // 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/token/ERC721/extensions/[email protected] // 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/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] // 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/introspection/[email protected] // 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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (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 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File contracts/interfaces/IStorageToken.sol pragma solidity ^0.8.4; interface IStorageToken { function mint(address to, uint256 amount) external; function consume(address spender, uint256 amount) external; } // File contracts/interfaces/IERC721URI.sol pragma solidity ^0.8.4; interface IERC721URI is IERC721 { function tokenURI(uint256 tokenId) external view returns (string memory); } // File contracts/FloppyDisk.sol pragma solidity ^0.8.4; contract FloppyDisk is Ownable, ERC721Enumerable, ERC721Burnable { using Strings for uint256; using Counters for Counters.Counter; event Saved( uint256 indexed id, address indexed owner, address tokenAddress, uint256 tokenId, uint256 timestamp ); struct SavedData { address tokenAddress; uint256 tokenId; address owner; uint256 timestamp; } Counters.Counter private _tokenIdTracker; uint256 public immutable shifts; uint256 public immutable baseMintCost; IStorageToken public storageToken; uint256 public saveCost; uint256 public recoveryCost; string public baseTokenURI; bool public hasUniqueURI; address public developer; mapping(uint256 => SavedData[]) public savedData; mapping(uint256 => uint256) public pointer; mapping(uint256 => bool) public persistData; mapping(uint256 => bool) public hideSaves; constructor( string memory name, string memory symbol, string memory _baseTokenURI, address _storageToken, uint256 _shifts, uint256 _baseMintCost, uint256 _saveCost, uint256 _recoveryCost ) ERC721(name, symbol) { baseTokenURI = _baseTokenURI; storageToken = IStorageToken(_storageToken); developer = msg.sender; baseMintCost = _baseMintCost; saveCost = _saveCost; recoveryCost = _recoveryCost; shifts = _shifts; } // Modifiers modifier onlyTokenOwner(uint256 tokenId) { require(ownerOf(tokenId) == msg.sender, "Not owner of token"); _; } modifier tokenExist(uint256 tokenId) { require(_exists(tokenId), "Nonexistent token"); _; } // Internal Functions function _eraseData(uint256 id) internal { uint256 length = savedData[id].length; if (length > 0) { for (uint256 i = 0; i < length; i++) { delete savedData[id][length - 1 - i]; savedData[id].pop(); } } pointer[id] = 0; } function _baseURI() internal view override returns (string memory) { return baseTokenURI; } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); if (!persistData[tokenId]) { _eraseData(tokenId); } } // Public write functions function mint(address to, uint256 count) public payable { require(msg.value >= getMintPrice(count), "Insufficient funds"); for (uint256 i = 0; i < count; i++) { _mint(to, _tokenIdTracker.current()); _tokenIdTracker.increment(); } (bool success, ) = developer.call{value: msg.value}(""); require(success); } function save( address tokenAddress, uint256 tokenId, uint256 id ) public tokenExist(id) onlyTokenOwner(id) { require( IERC721URI(tokenAddress).ownerOf(tokenId) == msg.sender, "Not owner of saved token" ); require(tokenAddress != address(this), "Can't save floppy disk"); storageToken.consume(msg.sender, saveCost); pointer[id] = savedData[id].length; savedData[id].push( SavedData({ tokenAddress: tokenAddress, tokenId: tokenId, owner: msg.sender, timestamp: block.timestamp }) ); emit Saved(id, msg.sender, tokenAddress, tokenId, block.timestamp); } function recover(uint256 id, uint256 saveId) public tokenExist(id) onlyTokenOwner(id) { require(saveId < savedData[id].length, "Invalid pointer"); storageToken.consume(msg.sender, recoveryCost); pointer[id] = saveId; } function erase(uint256 id) public tokenExist(id) onlyTokenOwner(id) { _eraseData(id); } function setPersistData(uint256 id, bool persist) public tokenExist(id) onlyTokenOwner(id) { persistData[id] = persist; } function setHideSaves(uint256 id, bool _hideSaves) public tokenExist(id) onlyTokenOwner(id) { hideSaves[id] = _hideSaves; } // Public read functions function tokenURI(uint256 tokenId) public view override tokenExist(tokenId) returns (string memory) { if (savedData[tokenId].length > 0 && !hideSaves[tokenId]) { SavedData memory data = savedData[tokenId][pointer[tokenId]]; // External contract can fail to return token URI, so we will fallback to default try IERC721URI(data.tokenAddress).tokenURI(data.tokenId) returns ( string memory uri ) { return uri; } catch {} } string memory baseURI = _baseURI(); return hasUniqueURI ? string(abi.encodePacked(baseURI, tokenId.toString())) : baseURI; } function mintPrice(uint256 id) public view returns (uint256) { return baseMintCost << (id >> shifts); } function getSavedData(uint256 id) public view tokenExist(id) returns (SavedData[] memory) { return savedData[id]; } function getMintPrice(uint256 count) public view returns (uint256 price) { for ( uint256 i = _tokenIdTracker.current(); i < _tokenIdTracker.current() + count; i++ ) { price += mintPrice(i); } } function listTokenIds(address owner) public view returns (uint256[] memory) { uint256 tokens = balanceOf(owner); uint256[] memory ids = new uint256[](tokens); for (uint256 i = 0; i < tokens; i++) { ids[i] = tokenOfOwnerByIndex(owner, i); } return ids; } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } // Admin functions function setBaseUri(string memory _baseTokenURI) public onlyOwner { baseTokenURI = _baseTokenURI; } function setUniqueUri(bool _hasUniqueURI) public onlyOwner { hasUniqueURI = _hasUniqueURI; } function setDeveloper(address _developer) public onlyOwner { developer = _developer; } function setRecoveryCost(uint256 _recoveryCost) public onlyOwner { recoveryCost = _recoveryCost; } function setSaveCost(uint256 _saveCost) public onlyOwner { saveCost = _saveCost; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"address","name":"_storageToken","type":"address"},{"internalType":"uint256","name":"_shifts","type":"uint256"},{"internalType":"uint256","name":"_baseMintCost","type":"uint256"},{"internalType":"uint256","name":"_saveCost","type":"uint256"},{"internalType":"uint256","name":"_recoveryCost","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Saved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseMintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"erase","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":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getSavedData","outputs":[{"components":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"internalType":"struct FloppyDisk.SavedData[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasUniqueURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hideSaves","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"listTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"mintPrice","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"persistData","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pointer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"saveId","type":"uint256"}],"name":"recover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"recoveryCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"save","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saveCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"savedData","outputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","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":"_baseTokenURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developer","type":"address"}],"name":"setDeveloper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bool","name":"_hideSaves","type":"bool"}],"name":"setHideSaves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bool","name":"persist","type":"bool"}],"name":"setPersistData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_recoveryCost","type":"uint256"}],"name":"setRecoveryCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saveCost","type":"uint256"}],"name":"setSaveCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasUniqueURI","type":"bool"}],"name":"setUniqueUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shifts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"storageToken","outputs":[{"internalType":"contract IStorageToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]
Contract Creation Code
60c06040523480156200001157600080fd5b5060405162003e9038038062003e9083398101604081905262000034916200029f565b87876200004133620000d9565b81516200005690600190602085019062000129565b5080516200006c90600290602084019062000129565b50508651620000849150600f90602089019062000129565b50600c80546001600160a01b0319166001600160a01b03969096169590951790945560108054610100600160a81b031916610100330217905560a091909152600d55600e9190915560805250620003b9915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001379062000366565b90600052602060002090601f0160209004810192826200015b5760008555620001a6565b82601f106200017657805160ff1916838001178555620001a6565b82800160010185558215620001a6579182015b82811115620001a657825182559160200191906001019062000189565b50620001b4929150620001b8565b5090565b5b80821115620001b45760008155600101620001b9565b80516001600160a01b0381168114620001e757600080fd5b919050565b600082601f830112620001fd578081fd5b81516001600160401b03808211156200021a576200021a620003a3565b604051601f8301601f19908116603f01168101908282118183101715620002455762000245620003a3565b8160405283815260209250868385880101111562000261578485fd5b8491505b8382101562000284578582018301518183018401529082019062000265565b838211156200029557848385830101525b9695505050505050565b600080600080600080600080610100898b031215620002bc578384fd5b88516001600160401b0380821115620002d3578586fd5b620002e18c838d01620001ec565b995060208b0151915080821115620002f7578586fd5b620003058c838d01620001ec565b985060408b01519150808211156200031b578586fd5b506200032a8b828c01620001ec565b9650506200033b60608a01620001cf565b94506080890151935060a0890151925060c0890151915060e089015190509295985092959890939650565b600181811c908216806200037b57607f821691505b602082108114156200039d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a051613a95620003fb6000396000818161057c0152818161089c01526116d9015260008181610665015281816108bd01526116fa0152613a956000f3fe6080604052600436106103085760003560e01c8063715018a61161019a578063ca4b208b116100e1578063e985e9c51161008a578063f9d6a52e11610064578063f9d6a52e1461096d578063fe06a9781461099a578063ff70fa49146109ca57600080fd5b8063e985e9c5146108e4578063eecd80f41461092d578063f2fde38b1461094d57600080fd5b8063e0614e06116100bb578063e0614e0614610822578063e2a4fad314610852578063e6a72acf1461087f57600080fd5b8063ca4b208b146107d2578063d547cfb7146107f7578063dd59e8ea1461080c57600080fd5b8063a0bcfc7f11610143578063b88d4fde1161011d578063b88d4fde1461077c578063bf35431d1461079c578063c87b56dd146107b257600080fd5b8063a0bcfc7f1461070f578063a22cb4651461072f578063b5bcefb61461074f57600080fd5b806389809f231161017457806389809f23146106875780638da5cb5b146106dc57806395d89b41146106fa57600080fd5b8063715018a61461061e57806379ce168d146106335780637fd4994a1461065357600080fd5b80633e1c1b881161025e5780634f6ccce7116102075780636352211e116101e15780636352211e146105be5780636e1ed775146105de57806370a08231146105fe57600080fd5b80634f6ccce71461054a5780635488e4b61461056a578063559e775b1461059e57600080fd5b806342842e0e1161023857806342842e0e146104ea57806342966c681461050a578063430ed6041461052a57600080fd5b80633e1c1b88146104975780633f4c9d1c146104b757806340c10f19146104d757600080fd5b806318160ddd116102c05780632f745c591161029a5780632f745c59146104375780633145f8e41461045757806337c5c31b1461047757600080fd5b806318160ddd146103de5780631cafe0dc146103fd57806323b872dd1461041757600080fd5b8063081812fc116102f1578063081812fc14610364578063095ea7b31461039c5780631007f753146103be57600080fd5b806301ffc9a71461030d57806306fdde0314610342575b600080fd5b34801561031957600080fd5b5061032d61032836600461358c565b6109ea565b60405190151581526020015b60405180910390f35b34801561034e57600080fd5b506103576109fb565b6040516103399190613841565b34801561037057600080fd5b5061038461037f36600461367d565b610a8d565b6040516001600160a01b039091168152602001610339565b3480156103a857600080fd5b506103bc6103b7366004613513565b610b38565b005b3480156103ca57600080fd5b506103bc6103d936600461367d565b610c6a565b3480156103ea57600080fd5b506009545b604051908152602001610339565b34801561040957600080fd5b5060105461032d9060ff1681565b34801561042357600080fd5b506103bc610432366004613422565b610d3a565b34801561044357600080fd5b506103ef610452366004613513565b610dc2565b34801561046357600080fd5b506103bc61047236600461367d565b610e6a565b34801561048357600080fd5b50600c54610384906001600160a01b031681565b3480156104a357600080fd5b506103bc6104b2366004613695565b610ec9565b3480156104c357600080fd5b506103bc6104d2366004613695565b610fd0565b6103bc6104e5366004613513565b6110d7565b3480156104f657600080fd5b506103bc610505366004613422565b6111d2565b34801561051657600080fd5b506103bc61052536600461367d565b6111ed565b34801561053657600080fd5b506103bc61054536600461353e565b611274565b34801561055657600080fd5b506103ef61056536600461367d565b6115f8565b34801561057657600080fd5b506103ef7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105aa57600080fd5b506103ef6105b936600461367d565b6116aa565b3480156105ca57600080fd5b506103846105d936600461367d565b61173d565b3480156105ea57600080fd5b506103bc6105f93660046136b7565b6117c8565b34801561060a57600080fd5b506103ef6106193660046133ab565b611981565b34801561062a57600080fd5b506103bc611a1b565b34801561063f57600080fd5b506103bc61064e366004613572565b611a81565b34801561065f57600080fd5b506103ef7f000000000000000000000000000000000000000000000000000000000000000081565b34801561069357600080fd5b506106a76106a23660046136b7565b611b0c565b60405161033994939291906001600160a01b039485168152602081019390935292166040820152606081019190915260800190565b3480156106e857600080fd5b506000546001600160a01b0316610384565b34801561070657600080fd5b50610357611b60565b34801561071b57600080fd5b506103bc61072a3660046135c4565b611b6f565b34801561073b57600080fd5b506103bc61074a3660046134df565b611be0565b34801561075b57600080fd5b5061076f61076a36600461367d565b611beb565b604051610339919061378d565b34801561078857600080fd5b506103bc610797366004613462565b611cf2565b3480156107a857600080fd5b506103ef600e5481565b3480156107be57600080fd5b506103576107cd36600461367d565b611d80565b3480156107de57600080fd5b506010546103849061010090046001600160a01b031681565b34801561080357600080fd5b50610357611fad565b34801561081857600080fd5b506103ef600d5481565b34801561082e57600080fd5b5061032d61083d36600461367d565b60146020526000908152604090205460ff1681565b34801561085e57600080fd5b5061087261086d3660046133ab565b61203b565b60405161033991906137fd565b34801561088b57600080fd5b506103ef61089a36600461367d565b7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000009190911c1b90565b3480156108f057600080fd5b5061032d6108ff3660046133ea565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561093957600080fd5b506103bc61094836600461367d565b6120f9565b34801561095957600080fd5b506103bc6109683660046133ab565b612158565b34801561097957600080fd5b506103ef61098836600461367d565b60126020526000908152604090205481565b3480156109a657600080fd5b5061032d6109b536600461367d565b60136020526000908152604090205460ff1681565b3480156109d657600080fd5b506103bc6109e53660046133ab565b612237565b60006109f5826122d0565b92915050565b606060018054610a0a90613958565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3690613958565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610b1c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610b438261173d565b9050806001600160a01b0316836001600160a01b03161415610bcd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b13565b336001600160a01b0382161480610be95750610be981336108ff565b610c5b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b13565b610c658383612326565b505050565b60008181526003602052604090205481906001600160a01b0316610cd05760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b8133610cdb8261173d565b6001600160a01b031614610d315760405162461bcd60e51b815260206004820152601260248201527f4e6f74206f776e6572206f6620746f6b656e00000000000000000000000000006044820152606401610b13565b610c65836123ac565b610d45335b82612521565b610db75760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b13565b610c65838383612625565b6000610dcd83611981565b8210610e415760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b13565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610ec45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b600e55565b60008281526003602052604090205482906001600160a01b0316610f2f5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b8233610f3a8261173d565b6001600160a01b031614610f905760405162461bcd60e51b815260206004820152601260248201527f4e6f74206f776e6572206f6620746f6b656e00000000000000000000000000006044820152606401610b13565b505060009182526014602052604090912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60008281526003602052604090205482906001600160a01b03166110365760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b82336110418261173d565b6001600160a01b0316146110975760405162461bcd60e51b815260206004820152601260248201527f4e6f74206f776e6572206f6620746f6b656e00000000000000000000000000006044820152606401610b13565b505060009182526013602052604090912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6110e0816116aa565b34101561112f5760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e647300000000000000000000000000006044820152606401610b13565b60005b8181101561116c5761114c83611147600b5490565b612815565b61115a600b80546001019055565b806111648161398d565b915050611132565b5060105460405160009161010090046001600160a01b03169034908381818185875af1925050503d80600081146111bf576040519150601f19603f3d011682016040523d82523d6000602084013e6111c4565b606091505b5050905080610c6557600080fd5b610c6583838360405180602001604052806000815250611cf2565b6111f633610d3f565b6112685760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f766564000000000000000000000000000000006064820152608401610b13565b6112718161297b565b50565b60008181526003602052604090205481906001600160a01b03166112da5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b81336112e58261173d565b6001600160a01b03161461133b5760405162461bcd60e51b815260206004820152601260248201527f4e6f74206f776e6572206f6620746f6b656e00000000000000000000000000006044820152606401610b13565b6040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810185905233906001600160a01b03871690636352211e9060240160206040518083038186803b15801561139657600080fd5b505afa1580156113aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ce91906133ce565b6001600160a01b0316146114245760405162461bcd60e51b815260206004820152601860248201527f4e6f74206f776e6572206f6620736176656420746f6b656e00000000000000006044820152606401610b13565b6001600160a01b03851630141561147d5760405162461bcd60e51b815260206004820152601660248201527f43616e2774207361766520666c6f707079206469736b000000000000000000006044820152606401610b13565b600c54600d546040517f224b5c7200000000000000000000000000000000000000000000000000000000815233600482015260248101919091526001600160a01b039091169063224b5c7290604401600060405180830381600087803b1580156114e657600080fd5b505af11580156114fa573d6000803e3d6000fd5b505050600084815260116020818152604080842080546012845282862081905593835281516080810183526001600160a01b038c81168083528286018d8152338487018181524260608088018281526001808e018b55998e529c8b902097516004909c0290970180549b87167fffffffffffffffffffffffff00000000000000000000000000000000000000009c8d161781559351978401979097555160028301805491909516991698909817909255965160039091015582519586529285018a90529084015290925085917ff66eaf515387ce4e3bffdafa6e62cf28012aedd4e79d222f68ba65593413b0de910160405180910390a35050505050565b600061160360095490565b82106116775760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b13565b6009828154811061169857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000806116b6600b5490565b90505b826116c3600b5490565b6116cd91906138e9565b811015611737576117237f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000083901c1b836138e9565b91508061172f8161398d565b9150506116b9565b50919050565b6000818152600360205260408120546001600160a01b0316806109f55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610b13565b60008281526003602052604090205482906001600160a01b031661182e5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b82336118398261173d565b6001600160a01b03161461188f5760405162461bcd60e51b815260206004820152601260248201527f4e6f74206f776e6572206f6620746f6b656e00000000000000000000000000006044820152606401610b13565b60008481526011602052604090205483106118ec5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420706f696e74657200000000000000000000000000000000006044820152606401610b13565b600c54600e546040517f224b5c7200000000000000000000000000000000000000000000000000000000815233600482015260248101919091526001600160a01b039091169063224b5c7290604401600060405180830381600087803b15801561195557600080fd5b505af1158015611969573d6000803e3d6000fd5b50505060009485525050601260205250604090912055565b60006001600160a01b0382166119ff5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b13565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314611a755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b611a7f6000612a3a565b565b6000546001600160a01b03163314611adb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60116020528160005260406000208181548110611b2857600080fd5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b03928316955090935091169084565b606060028054610a0a90613958565b6000546001600160a01b03163314611bc95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b8051611bdc90600f9060208401906132bf565b5050565b611bdc338383612aa2565b606081611c0f816000908152600360205260409020546001600160a01b0316151590565b611c5b5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b600083815260116020908152604080832080548251818502810185019093528083529193909284015b82821015611ce6576000848152602090819020604080516080810182526004860290920180546001600160a01b039081168452600180830154858701526002830154909116928401929092526003015460608301529083529092019101611c84565b50505050915050919050565b611cfc3383612521565b611d6e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b13565b611d7a84848484612b8f565b50505050565b606081611da4816000908152600360205260409020546001600160a01b0316151590565b611df05760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b60008381526011602052604090205415801590611e1c575060008381526014602052604090205460ff16155b15611f5d576000838152601160209081526040808320601290925282205481548110611e5857634e487b7160e01b600052603260045260246000fd5b600091825260209182902060408051608081018252600493840290920180546001600160a01b039081168085526001830154968501879052600283015490911684840152600390910154606084015290517fc87b56dd00000000000000000000000000000000000000000000000000000000815292830193909352925063c87b56dd9060240160006040518083038186803b158015611ef657600080fd5b505afa925050508015611f4957506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052611f46919081019061360a565b60015b611f5257611f5b565b92506117379050565b505b6000611f67612c18565b60105490915060ff16611f7a5780611fa5565b80611f8485612c27565b604051602001611f95929190613722565b6040516020818303038152906040525b949350505050565b600f8054611fba90613958565b80601f0160208091040260200160405190810160405280929190818152602001828054611fe690613958565b80156120335780601f1061200857610100808354040283529160200191612033565b820191906000526020600020905b81548152906001019060200180831161201657829003601f168201915b505050505081565b6060600061204883611981565b905060008167ffffffffffffffff81111561207357634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561209c578160200160208202803683370190505b50905060005b828110156120f1576120b48582610dc2565b8282815181106120d457634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806120e98161398d565b9150506120a2565b509392505050565b6000546001600160a01b031633146121535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b600d55565b6000546001600160a01b031633146121b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b6001600160a01b03811661222e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b13565b61127181612a3a565b6000546001600160a01b031633146122915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b601080546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806109f557506109f582612d75565b600081815260056020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906123738261173d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260116020526040902054801561250f5760005b8181101561250d576000838152601160205260409020816123e6600185613915565b6123f09190613915565b8154811061240e57634e487b7160e01b600052603260045260246000fd5b60009182526020808320600490920290910180547fffffffffffffffffffffffff00000000000000000000000000000000000000009081168255600182018490556002820180549091169055600301829055848252601190526040902080548061248857634e487b7160e01b600052603160045260246000fd5b60008281526020812060047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9093019283020180547fffffffffffffffffffffffff00000000000000000000000000000000000000009081168255600182018390556002820180549091169055600301559055806125058161398d565b9150506123c4565b505b50600090815260126020526040812055565b6000818152600360205260408120546001600160a01b03166125ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b13565b60006125b68361173d565b9050806001600160a01b0316846001600160a01b031614806125f15750836001600160a01b03166125e684610a8d565b6001600160a01b0316145b80611fa557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16611fa5565b826001600160a01b03166126388261173d565b6001600160a01b0316146126b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610b13565b6001600160a01b03821661272f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b13565b61273a838383612e58565b612745600082612326565b6001600160a01b038316600090815260046020526040812080546001929061276e908490613915565b90915550506001600160a01b038216600090815260046020526040812080546001929061279c9084906138e9565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821661286b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b13565b6000818152600360205260409020546001600160a01b0316156128d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b13565b6128dc60008383612e58565b6001600160a01b03821660009081526004602052604081208054600192906129059084906138e9565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006129868261173d565b905061299481600084612e58565b61299f600083612326565b6001600160a01b03811660009081526004602052604081208054600192906129c8908490613915565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415612b045760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b13565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612b9a848484612625565b612ba684848484612e82565b611d7a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b13565b6060600f8054610a0a90613958565b606081612c6757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612c915780612c7b8161398d565b9150612c8a9050600a83613901565b9150612c6b565b60008167ffffffffffffffff811115612cba57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ce4576020820181803683370190505b5090505b8415611fa557612cf9600183613915565b9150612d06600a866139c6565b612d119060306138e9565b60f81b818381518110612d3457634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612d6e600a86613901565b9450612ce8565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612e0857507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109f557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146109f5565b612e6383838361304d565b60008181526013602052604090205460ff16610c6557610c65816123ac565b60006001600160a01b0384163b15613042576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612edf903390899088908890600401613751565b602060405180830381600087803b158015612ef957600080fd5b505af1925050508015612f47575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612f44918101906135a8565b60015b612ff7573d808015612f75576040519150601f19603f3d011682016040523d82523d6000602084013e612f7a565b606091505b508051612fef5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b13565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611fa5565b506001949350505050565b6001600160a01b0383166130a8576130a381600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6130cb565b816001600160a01b0316836001600160a01b0316146130cb576130cb8382613105565b6001600160a01b0382166130e257610c65816131a2565b826001600160a01b0316826001600160a01b031614610c6557610c65828261327b565b6000600161311284611981565b61311c9190613915565b60008381526008602052604090205490915080821461316f576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906131b490600190613915565b6000838152600a6020526040812054600980549394509092849081106131ea57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061321957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061325f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061328683611981565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546132cb90613958565b90600052602060002090601f0160209004810192826132ed5760008555613333565b82601f1061330657805160ff1916838001178555613333565b82800160010185558215613333579182015b82811115613333578251825591602001919060010190613318565b5061333f929150613343565b5090565b5b8082111561333f5760008155600101613344565b600061336b613366846138a3565b613854565b905082815283838301111561337f57600080fd5b828260208301376000602084830101529392505050565b803580151581146133a657600080fd5b919050565b6000602082840312156133bc578081fd5b81356133c781613a1c565b9392505050565b6000602082840312156133df578081fd5b81516133c781613a1c565b600080604083850312156133fc578081fd5b823561340781613a1c565b9150602083013561341781613a1c565b809150509250929050565b600080600060608486031215613436578081fd5b833561344181613a1c565b9250602084013561345181613a1c565b929592945050506040919091013590565b60008060008060808587031215613477578081fd5b843561348281613a1c565b9350602085013561349281613a1c565b925060408501359150606085013567ffffffffffffffff8111156134b4578182fd5b8501601f810187136134c4578182fd5b6134d387823560208401613358565b91505092959194509250565b600080604083850312156134f1578182fd5b82356134fc81613a1c565b915061350a60208401613396565b90509250929050565b60008060408385031215613525578182fd5b823561353081613a1c565b946020939093013593505050565b600080600060608486031215613552578283fd5b833561355d81613a1c565b95602085013595506040909401359392505050565b600060208284031215613583578081fd5b6133c782613396565b60006020828403121561359d578081fd5b81356133c781613a31565b6000602082840312156135b9578081fd5b81516133c781613a31565b6000602082840312156135d5578081fd5b813567ffffffffffffffff8111156135eb578182fd5b8201601f810184136135fb578182fd5b611fa584823560208401613358565b60006020828403121561361b578081fd5b815167ffffffffffffffff811115613631578182fd5b8201601f81018413613641578182fd5b805161364f613366826138a3565b818152856020838501011115613663578384fd5b61367482602083016020860161392c565b95945050505050565b60006020828403121561368e578081fd5b5035919050565b600080604083850312156136a7578182fd5b8235915061350a60208401613396565b600080604083850312156136c9578182fd5b50508035926020909101359150565b600081518084526136f081602086016020860161392c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000835161373481846020880161392c565b83519083019061374881836020880161392c565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261378360808301846136d8565b9695505050505050565b602080825282518282018190526000919060409081850190868401855b828110156137f057815180516001600160a01b039081168652878201518887015286820151168686015260609081015190850152608090930192908501906001016137aa565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561383557835183529284019291840191600101613819565b50909695505050505050565b6020815260006133c760208301846136d8565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561389b5761389b613a06565b604052919050565b600067ffffffffffffffff8211156138bd576138bd613a06565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b600082198211156138fc576138fc6139da565b500190565b600082613910576139106139f0565b500490565b600082821015613927576139276139da565b500390565b60005b8381101561394757818101518382015260200161392f565b83811115611d7a5750506000910152565b600181811c9082168061396c57607f821691505b6020821081141561173757634e487b7160e01b600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139bf576139bf6139da565b5060010190565b6000826139d5576139d56139f0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461127157600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461127157600080fdfea2646970667358221220d2d9ca5d8360eb8da142170156667a084b5d7625108b39b1063601991c7e26f564736f6c6343000804003300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000088888d4b1d3e61c33857674de364432364578800000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000004e1003b28d9280000000000000000000000000000000000000000000000000004e1003b28d92800000000000000000000000000000000000000000000000000000000000000000000b466c6f707079204469736b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044449534b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d50676d456d57447a5544667372546751426877467a3356566f4e614d35784b785373647852446474717666380000000000000000000000
Deployed Bytecode
0x6080604052600436106103085760003560e01c8063715018a61161019a578063ca4b208b116100e1578063e985e9c51161008a578063f9d6a52e11610064578063f9d6a52e1461096d578063fe06a9781461099a578063ff70fa49146109ca57600080fd5b8063e985e9c5146108e4578063eecd80f41461092d578063f2fde38b1461094d57600080fd5b8063e0614e06116100bb578063e0614e0614610822578063e2a4fad314610852578063e6a72acf1461087f57600080fd5b8063ca4b208b146107d2578063d547cfb7146107f7578063dd59e8ea1461080c57600080fd5b8063a0bcfc7f11610143578063b88d4fde1161011d578063b88d4fde1461077c578063bf35431d1461079c578063c87b56dd146107b257600080fd5b8063a0bcfc7f1461070f578063a22cb4651461072f578063b5bcefb61461074f57600080fd5b806389809f231161017457806389809f23146106875780638da5cb5b146106dc57806395d89b41146106fa57600080fd5b8063715018a61461061e57806379ce168d146106335780637fd4994a1461065357600080fd5b80633e1c1b881161025e5780634f6ccce7116102075780636352211e116101e15780636352211e146105be5780636e1ed775146105de57806370a08231146105fe57600080fd5b80634f6ccce71461054a5780635488e4b61461056a578063559e775b1461059e57600080fd5b806342842e0e1161023857806342842e0e146104ea57806342966c681461050a578063430ed6041461052a57600080fd5b80633e1c1b88146104975780633f4c9d1c146104b757806340c10f19146104d757600080fd5b806318160ddd116102c05780632f745c591161029a5780632f745c59146104375780633145f8e41461045757806337c5c31b1461047757600080fd5b806318160ddd146103de5780631cafe0dc146103fd57806323b872dd1461041757600080fd5b8063081812fc116102f1578063081812fc14610364578063095ea7b31461039c5780631007f753146103be57600080fd5b806301ffc9a71461030d57806306fdde0314610342575b600080fd5b34801561031957600080fd5b5061032d61032836600461358c565b6109ea565b60405190151581526020015b60405180910390f35b34801561034e57600080fd5b506103576109fb565b6040516103399190613841565b34801561037057600080fd5b5061038461037f36600461367d565b610a8d565b6040516001600160a01b039091168152602001610339565b3480156103a857600080fd5b506103bc6103b7366004613513565b610b38565b005b3480156103ca57600080fd5b506103bc6103d936600461367d565b610c6a565b3480156103ea57600080fd5b506009545b604051908152602001610339565b34801561040957600080fd5b5060105461032d9060ff1681565b34801561042357600080fd5b506103bc610432366004613422565b610d3a565b34801561044357600080fd5b506103ef610452366004613513565b610dc2565b34801561046357600080fd5b506103bc61047236600461367d565b610e6a565b34801561048357600080fd5b50600c54610384906001600160a01b031681565b3480156104a357600080fd5b506103bc6104b2366004613695565b610ec9565b3480156104c357600080fd5b506103bc6104d2366004613695565b610fd0565b6103bc6104e5366004613513565b6110d7565b3480156104f657600080fd5b506103bc610505366004613422565b6111d2565b34801561051657600080fd5b506103bc61052536600461367d565b6111ed565b34801561053657600080fd5b506103bc61054536600461353e565b611274565b34801561055657600080fd5b506103ef61056536600461367d565b6115f8565b34801561057657600080fd5b506103ef7f000000000000000000000000000000000000000000000000002386f26fc1000081565b3480156105aa57600080fd5b506103ef6105b936600461367d565b6116aa565b3480156105ca57600080fd5b506103846105d936600461367d565b61173d565b3480156105ea57600080fd5b506103bc6105f93660046136b7565b6117c8565b34801561060a57600080fd5b506103ef6106193660046133ab565b611981565b34801561062a57600080fd5b506103bc611a1b565b34801561063f57600080fd5b506103bc61064e366004613572565b611a81565b34801561065f57600080fd5b506103ef7f000000000000000000000000000000000000000000000000000000000000000a81565b34801561069357600080fd5b506106a76106a23660046136b7565b611b0c565b60405161033994939291906001600160a01b039485168152602081019390935292166040820152606081019190915260800190565b3480156106e857600080fd5b506000546001600160a01b0316610384565b34801561070657600080fd5b50610357611b60565b34801561071b57600080fd5b506103bc61072a3660046135c4565b611b6f565b34801561073b57600080fd5b506103bc61074a3660046134df565b611be0565b34801561075b57600080fd5b5061076f61076a36600461367d565b611beb565b604051610339919061378d565b34801561078857600080fd5b506103bc610797366004613462565b611cf2565b3480156107a857600080fd5b506103ef600e5481565b3480156107be57600080fd5b506103576107cd36600461367d565b611d80565b3480156107de57600080fd5b506010546103849061010090046001600160a01b031681565b34801561080357600080fd5b50610357611fad565b34801561081857600080fd5b506103ef600d5481565b34801561082e57600080fd5b5061032d61083d36600461367d565b60146020526000908152604090205460ff1681565b34801561085e57600080fd5b5061087261086d3660046133ab565b61203b565b60405161033991906137fd565b34801561088b57600080fd5b506103ef61089a36600461367d565b7f000000000000000000000000000000000000000000000000002386f26fc100007f000000000000000000000000000000000000000000000000000000000000000a9190911c1b90565b3480156108f057600080fd5b5061032d6108ff3660046133ea565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561093957600080fd5b506103bc61094836600461367d565b6120f9565b34801561095957600080fd5b506103bc6109683660046133ab565b612158565b34801561097957600080fd5b506103ef61098836600461367d565b60126020526000908152604090205481565b3480156109a657600080fd5b5061032d6109b536600461367d565b60136020526000908152604090205460ff1681565b3480156109d657600080fd5b506103bc6109e53660046133ab565b612237565b60006109f5826122d0565b92915050565b606060018054610a0a90613958565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3690613958565b8015610a835780601f10610a5857610100808354040283529160200191610a83565b820191906000526020600020905b815481529060010190602001808311610a6657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610b1c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610b438261173d565b9050806001600160a01b0316836001600160a01b03161415610bcd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b13565b336001600160a01b0382161480610be95750610be981336108ff565b610c5b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b13565b610c658383612326565b505050565b60008181526003602052604090205481906001600160a01b0316610cd05760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b8133610cdb8261173d565b6001600160a01b031614610d315760405162461bcd60e51b815260206004820152601260248201527f4e6f74206f776e6572206f6620746f6b656e00000000000000000000000000006044820152606401610b13565b610c65836123ac565b610d45335b82612521565b610db75760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b13565b610c65838383612625565b6000610dcd83611981565b8210610e415760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610b13565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610ec45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b600e55565b60008281526003602052604090205482906001600160a01b0316610f2f5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b8233610f3a8261173d565b6001600160a01b031614610f905760405162461bcd60e51b815260206004820152601260248201527f4e6f74206f776e6572206f6620746f6b656e00000000000000000000000000006044820152606401610b13565b505060009182526014602052604090912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60008281526003602052604090205482906001600160a01b03166110365760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b82336110418261173d565b6001600160a01b0316146110975760405162461bcd60e51b815260206004820152601260248201527f4e6f74206f776e6572206f6620746f6b656e00000000000000000000000000006044820152606401610b13565b505060009182526013602052604090912080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6110e0816116aa565b34101561112f5760405162461bcd60e51b815260206004820152601260248201527f496e73756666696369656e742066756e647300000000000000000000000000006044820152606401610b13565b60005b8181101561116c5761114c83611147600b5490565b612815565b61115a600b80546001019055565b806111648161398d565b915050611132565b5060105460405160009161010090046001600160a01b03169034908381818185875af1925050503d80600081146111bf576040519150601f19603f3d011682016040523d82523d6000602084013e6111c4565b606091505b5050905080610c6557600080fd5b610c6583838360405180602001604052806000815250611cf2565b6111f633610d3f565b6112685760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f766564000000000000000000000000000000006064820152608401610b13565b6112718161297b565b50565b60008181526003602052604090205481906001600160a01b03166112da5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b81336112e58261173d565b6001600160a01b03161461133b5760405162461bcd60e51b815260206004820152601260248201527f4e6f74206f776e6572206f6620746f6b656e00000000000000000000000000006044820152606401610b13565b6040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810185905233906001600160a01b03871690636352211e9060240160206040518083038186803b15801561139657600080fd5b505afa1580156113aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ce91906133ce565b6001600160a01b0316146114245760405162461bcd60e51b815260206004820152601860248201527f4e6f74206f776e6572206f6620736176656420746f6b656e00000000000000006044820152606401610b13565b6001600160a01b03851630141561147d5760405162461bcd60e51b815260206004820152601660248201527f43616e2774207361766520666c6f707079206469736b000000000000000000006044820152606401610b13565b600c54600d546040517f224b5c7200000000000000000000000000000000000000000000000000000000815233600482015260248101919091526001600160a01b039091169063224b5c7290604401600060405180830381600087803b1580156114e657600080fd5b505af11580156114fa573d6000803e3d6000fd5b505050600084815260116020818152604080842080546012845282862081905593835281516080810183526001600160a01b038c81168083528286018d8152338487018181524260608088018281526001808e018b55998e529c8b902097516004909c0290970180549b87167fffffffffffffffffffffffff00000000000000000000000000000000000000009c8d161781559351978401979097555160028301805491909516991698909817909255965160039091015582519586529285018a90529084015290925085917ff66eaf515387ce4e3bffdafa6e62cf28012aedd4e79d222f68ba65593413b0de910160405180910390a35050505050565b600061160360095490565b82106116775760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610b13565b6009828154811061169857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000806116b6600b5490565b90505b826116c3600b5490565b6116cd91906138e9565b811015611737576117237f000000000000000000000000000000000000000000000000002386f26fc100007f000000000000000000000000000000000000000000000000000000000000000a83901c1b836138e9565b91508061172f8161398d565b9150506116b9565b50919050565b6000818152600360205260408120546001600160a01b0316806109f55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610b13565b60008281526003602052604090205482906001600160a01b031661182e5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b82336118398261173d565b6001600160a01b03161461188f5760405162461bcd60e51b815260206004820152601260248201527f4e6f74206f776e6572206f6620746f6b656e00000000000000000000000000006044820152606401610b13565b60008481526011602052604090205483106118ec5760405162461bcd60e51b815260206004820152600f60248201527f496e76616c696420706f696e74657200000000000000000000000000000000006044820152606401610b13565b600c54600e546040517f224b5c7200000000000000000000000000000000000000000000000000000000815233600482015260248101919091526001600160a01b039091169063224b5c7290604401600060405180830381600087803b15801561195557600080fd5b505af1158015611969573d6000803e3d6000fd5b50505060009485525050601260205250604090912055565b60006001600160a01b0382166119ff5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b13565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314611a755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b611a7f6000612a3a565b565b6000546001600160a01b03163314611adb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b601080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60116020528160005260406000208181548110611b2857600080fd5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b03928316955090935091169084565b606060028054610a0a90613958565b6000546001600160a01b03163314611bc95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b8051611bdc90600f9060208401906132bf565b5050565b611bdc338383612aa2565b606081611c0f816000908152600360205260409020546001600160a01b0316151590565b611c5b5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b600083815260116020908152604080832080548251818502810185019093528083529193909284015b82821015611ce6576000848152602090819020604080516080810182526004860290920180546001600160a01b039081168452600180830154858701526002830154909116928401929092526003015460608301529083529092019101611c84565b50505050915050919050565b611cfc3383612521565b611d6e5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b13565b611d7a84848484612b8f565b50505050565b606081611da4816000908152600360205260409020546001600160a01b0316151590565b611df05760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610b13565b60008381526011602052604090205415801590611e1c575060008381526014602052604090205460ff16155b15611f5d576000838152601160209081526040808320601290925282205481548110611e5857634e487b7160e01b600052603260045260246000fd5b600091825260209182902060408051608081018252600493840290920180546001600160a01b039081168085526001830154968501879052600283015490911684840152600390910154606084015290517fc87b56dd00000000000000000000000000000000000000000000000000000000815292830193909352925063c87b56dd9060240160006040518083038186803b158015611ef657600080fd5b505afa925050508015611f4957506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052611f46919081019061360a565b60015b611f5257611f5b565b92506117379050565b505b6000611f67612c18565b60105490915060ff16611f7a5780611fa5565b80611f8485612c27565b604051602001611f95929190613722565b6040516020818303038152906040525b949350505050565b600f8054611fba90613958565b80601f0160208091040260200160405190810160405280929190818152602001828054611fe690613958565b80156120335780601f1061200857610100808354040283529160200191612033565b820191906000526020600020905b81548152906001019060200180831161201657829003601f168201915b505050505081565b6060600061204883611981565b905060008167ffffffffffffffff81111561207357634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561209c578160200160208202803683370190505b50905060005b828110156120f1576120b48582610dc2565b8282815181106120d457634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806120e98161398d565b9150506120a2565b509392505050565b6000546001600160a01b031633146121535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b600d55565b6000546001600160a01b031633146121b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b6001600160a01b03811661222e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b13565b61127181612a3a565b6000546001600160a01b031633146122915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b13565b601080546001600160a01b03909216610100027fffffffffffffffffffffff0000000000000000000000000000000000000000ff909216919091179055565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806109f557506109f582612d75565b600081815260056020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915581906123738261173d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260116020526040902054801561250f5760005b8181101561250d576000838152601160205260409020816123e6600185613915565b6123f09190613915565b8154811061240e57634e487b7160e01b600052603260045260246000fd5b60009182526020808320600490920290910180547fffffffffffffffffffffffff00000000000000000000000000000000000000009081168255600182018490556002820180549091169055600301829055848252601190526040902080548061248857634e487b7160e01b600052603160045260246000fd5b60008281526020812060047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9093019283020180547fffffffffffffffffffffffff00000000000000000000000000000000000000009081168255600182018390556002820180549091169055600301559055806125058161398d565b9150506123c4565b505b50600090815260126020526040812055565b6000818152600360205260408120546001600160a01b03166125ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b13565b60006125b68361173d565b9050806001600160a01b0316846001600160a01b031614806125f15750836001600160a01b03166125e684610a8d565b6001600160a01b0316145b80611fa557506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff16611fa5565b826001600160a01b03166126388261173d565b6001600160a01b0316146126b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610b13565b6001600160a01b03821661272f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b13565b61273a838383612e58565b612745600082612326565b6001600160a01b038316600090815260046020526040812080546001929061276e908490613915565b90915550506001600160a01b038216600090815260046020526040812080546001929061279c9084906138e9565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821661286b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b13565b6000818152600360205260409020546001600160a01b0316156128d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b13565b6128dc60008383612e58565b6001600160a01b03821660009081526004602052604081208054600192906129059084906138e9565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006129868261173d565b905061299481600084612e58565b61299f600083612326565b6001600160a01b03811660009081526004602052604081208054600192906129c8908490613915565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415612b045760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b13565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612b9a848484612625565b612ba684848484612e82565b611d7a5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b13565b6060600f8054610a0a90613958565b606081612c6757505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612c915780612c7b8161398d565b9150612c8a9050600a83613901565b9150612c6b565b60008167ffffffffffffffff811115612cba57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ce4576020820181803683370190505b5090505b8415611fa557612cf9600183613915565b9150612d06600a866139c6565b612d119060306138e9565b60f81b818381518110612d3457634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612d6e600a86613901565b9450612ce8565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612e0857507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109f557507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146109f5565b612e6383838361304d565b60008181526013602052604090205460ff16610c6557610c65816123ac565b60006001600160a01b0384163b15613042576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612edf903390899088908890600401613751565b602060405180830381600087803b158015612ef957600080fd5b505af1925050508015612f47575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612f44918101906135a8565b60015b612ff7573d808015612f75576040519150601f19603f3d011682016040523d82523d6000602084013e612f7a565b606091505b508051612fef5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b13565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611fa5565b506001949350505050565b6001600160a01b0383166130a8576130a381600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6130cb565b816001600160a01b0316836001600160a01b0316146130cb576130cb8382613105565b6001600160a01b0382166130e257610c65816131a2565b826001600160a01b0316826001600160a01b031614610c6557610c65828261327b565b6000600161311284611981565b61311c9190613915565b60008381526008602052604090205490915080821461316f576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906131b490600190613915565b6000838152600a6020526040812054600980549394509092849081106131ea57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806009838154811061321957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061325f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061328683611981565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546132cb90613958565b90600052602060002090601f0160209004810192826132ed5760008555613333565b82601f1061330657805160ff1916838001178555613333565b82800160010185558215613333579182015b82811115613333578251825591602001919060010190613318565b5061333f929150613343565b5090565b5b8082111561333f5760008155600101613344565b600061336b613366846138a3565b613854565b905082815283838301111561337f57600080fd5b828260208301376000602084830101529392505050565b803580151581146133a657600080fd5b919050565b6000602082840312156133bc578081fd5b81356133c781613a1c565b9392505050565b6000602082840312156133df578081fd5b81516133c781613a1c565b600080604083850312156133fc578081fd5b823561340781613a1c565b9150602083013561341781613a1c565b809150509250929050565b600080600060608486031215613436578081fd5b833561344181613a1c565b9250602084013561345181613a1c565b929592945050506040919091013590565b60008060008060808587031215613477578081fd5b843561348281613a1c565b9350602085013561349281613a1c565b925060408501359150606085013567ffffffffffffffff8111156134b4578182fd5b8501601f810187136134c4578182fd5b6134d387823560208401613358565b91505092959194509250565b600080604083850312156134f1578182fd5b82356134fc81613a1c565b915061350a60208401613396565b90509250929050565b60008060408385031215613525578182fd5b823561353081613a1c565b946020939093013593505050565b600080600060608486031215613552578283fd5b833561355d81613a1c565b95602085013595506040909401359392505050565b600060208284031215613583578081fd5b6133c782613396565b60006020828403121561359d578081fd5b81356133c781613a31565b6000602082840312156135b9578081fd5b81516133c781613a31565b6000602082840312156135d5578081fd5b813567ffffffffffffffff8111156135eb578182fd5b8201601f810184136135fb578182fd5b611fa584823560208401613358565b60006020828403121561361b578081fd5b815167ffffffffffffffff811115613631578182fd5b8201601f81018413613641578182fd5b805161364f613366826138a3565b818152856020838501011115613663578384fd5b61367482602083016020860161392c565b95945050505050565b60006020828403121561368e578081fd5b5035919050565b600080604083850312156136a7578182fd5b8235915061350a60208401613396565b600080604083850312156136c9578182fd5b50508035926020909101359150565b600081518084526136f081602086016020860161392c565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000835161373481846020880161392c565b83519083019061374881836020880161392c565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261378360808301846136d8565b9695505050505050565b602080825282518282018190526000919060409081850190868401855b828110156137f057815180516001600160a01b039081168652878201518887015286820151168686015260609081015190850152608090930192908501906001016137aa565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561383557835183529284019291840191600101613819565b50909695505050505050565b6020815260006133c760208301846136d8565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561389b5761389b613a06565b604052919050565b600067ffffffffffffffff8211156138bd576138bd613a06565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b600082198211156138fc576138fc6139da565b500190565b600082613910576139106139f0565b500490565b600082821015613927576139276139da565b500390565b60005b8381101561394757818101518382015260200161392f565b83811115611d7a5750506000910152565b600181811c9082168061396c57607f821691505b6020821081141561173757634e487b7160e01b600052602260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139bf576139bf6139da565b5060010190565b6000826139d5576139d56139f0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461127157600080fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461127157600080fdfea2646970667358221220d2d9ca5d8360eb8da142170156667a084b5d7625108b39b1063601991c7e26f564736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000088888d4b1d3e61c33857674de364432364578800000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000004e1003b28d9280000000000000000000000000000000000000000000000000004e1003b28d92800000000000000000000000000000000000000000000000000000000000000000000b466c6f707079204469736b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044449534b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d50676d456d57447a5544667372546751426877467a3356566f4e614d35784b785373647852446474717666380000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Floppy Disk
Arg [1] : symbol (string): DISK
Arg [2] : _baseTokenURI (string): ipfs://QmPgmEmWDzUDfsrTgQBhwFz3VVoNaM5xKxSsdxRDdtqvf8
Arg [3] : _storageToken (address): 0x88888d4b1D3e61C33857674De364432364578800
Arg [4] : _shifts (uint256): 10
Arg [5] : _baseMintCost (uint256): 10000000000000000
Arg [6] : _saveCost (uint256): 1440000000000000000000
Arg [7] : _recoveryCost (uint256): 1440000000000000000000
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 00000000000000000000000088888d4b1d3e61c33857674de364432364578800
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [6] : 00000000000000000000000000000000000000000000004e1003b28d92800000
Arg [7] : 00000000000000000000000000000000000000000000004e1003b28d92800000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [9] : 466c6f707079204469736b000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [11] : 4449534b00000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [13] : 697066733a2f2f516d50676d456d57447a5544667372546751426877467a3356
Arg [14] : 566f4e614d35784b785373647852446474717666380000000000000000000000
Deployed Bytecode Sourcemap
49283:6362:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54905:188;;;;;;;;;;-1:-1:-1;54905:188:0;;;;;:::i;:::-;;:::i;:::-;;;11140:14:1;;11133:22;11115:41;;11103:2;11088:18;54905:188:0;;;;;;;;24248:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25807:221::-;;;;;;;;;;-1:-1:-1;25807:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7584:55:1;;;7566:74;;7554:2;7539:18;25807:221:0;7521:125:1;25330:411:0;;;;;;;;;;-1:-1:-1;25330:411:0;;;;;:::i;:::-;;:::i;:::-;;52979:95;;;;;;;;;;-1:-1:-1;52979:95:0;;;;;:::i;:::-;;:::i;38475:113::-;;;;;;;;;;-1:-1:-1;38563:10:0;:17;38475:113;;;21086:25:1;;;21074:2;21059:18;38475:113:0;21041:76:1;49952:24:0;;;;;;;;;;-1:-1:-1;49952:24:0;;;;;;;;26557:339;;;;;;;;;;-1:-1:-1;26557:339:0;;;;;:::i;:::-;;:::i;38143:256::-;;;;;;;;;;-1:-1:-1;38143:256:0;;;;;:::i;:::-;;:::i;55440:106::-;;;;;;;;;;-1:-1:-1;55440:106:0;;;;;:::i;:::-;;:::i;49823:33::-;;;;;;;;;;-1:-1:-1;49823:33:0;;;;-1:-1:-1;;;;;49823:33:0;;;53233:149;;;;;;;;;;-1:-1:-1;53233:149:0;;;;;:::i;:::-;;:::i;53080:147::-;;;;;;;;;;-1:-1:-1;53080:147:0;;;;;:::i;:::-;;:::i;51673:348::-;;;;;;:::i;:::-;;:::i;26967:185::-;;;;;;;;;;-1:-1:-1;26967:185:0;;;;;:::i;:::-;;:::i;44523:245::-;;;;;;;;;;-1:-1:-1;44523:245:0;;;;;:::i;:::-;;:::i;52027:682::-;;;;;;;;;;-1:-1:-1;52027:682:0;;;;;:::i;:::-;;:::i;38665:233::-;;;;;;;;;;-1:-1:-1;38665:233:0;;;;;:::i;:::-;;:::i;49779:37::-;;;;;;;;;;;;;;;54366:239;;;;;;;;;;-1:-1:-1;54366:239:0;;;;;:::i;:::-;;:::i;23942:::-;;;;;;;;;;-1:-1:-1;23942:239:0;;;;;:::i;:::-;;:::i;52715:258::-;;;;;;;;;;-1:-1:-1;52715:258:0;;;;;:::i;:::-;;:::i;23672:208::-;;;;;;;;;;-1:-1:-1;23672:208:0;;;;;:::i;:::-;;:::i;46492:103::-;;;;;;;;;;;;;:::i;55234:100::-;;;;;;;;;;-1:-1:-1;55234:100:0;;;;;:::i;:::-;;:::i;49743:31::-;;;;;;;;;;;;;;;50012:48;;;;;;;;;;-1:-1:-1;50012:48:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;8779:15:1;;;8761:34;;8826:2;8811:18;;8804:34;;;;8874:15;;8869:2;8854:18;;8847:43;8921:2;8906:18;;8899:34;;;;8687:3;8672:19;;8654:285;45841:87:0;;;;;;;;;;-1:-1:-1;45887:7:0;45914:6;-1:-1:-1;;;;;45914:6:0;45841:87;;24417:104;;;;;;;;;;;;;:::i;55121:107::-;;;;;;;;;;-1:-1:-1;55121:107:0;;;;;:::i;:::-;;:::i;26100:155::-;;;;;;;;;;-1:-1:-1;26100:155:0;;;;;:::i;:::-;;:::i;54214:146::-;;;;;;;;;;-1:-1:-1;54214:146:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27223:328::-;;;;;;;;;;-1:-1:-1;27223:328:0;;;;;:::i;:::-;;:::i;49889:27::-;;;;;;;;;;;;;;;;53416:675;;;;;;;;;;-1:-1:-1;53416:675:0;;;;;:::i;:::-;;:::i;49981:24::-;;;;;;;;;;-1:-1:-1;49981:24:0;;;;;;;-1:-1:-1;;;;;49981:24:0;;;49921:26;;;;;;;;;;;;;:::i;49861:23::-;;;;;;;;;;;;;;;;50160:41;;;;;;;;;;-1:-1:-1;50160:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54611:288;;;;;;;;;;-1:-1:-1;54611:288:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54097:111::-;;;;;;;;;;-1:-1:-1;54097:111:0;;;;;:::i;:::-;54172:12;54195:6;54189:12;;;;54172:30;;54097:111;26326:164;;;;;;;;;;-1:-1:-1;26326:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26447:25:0;;;26423:4;26447:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26326:164;55552:90;;;;;;;;;;-1:-1:-1;55552:90:0;;;;;:::i;:::-;;:::i;46750:201::-;;;;;;;;;;-1:-1:-1;46750:201:0;;;;;:::i;:::-;;:::i;50065:42::-;;;;;;;;;;-1:-1:-1;50065:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;50112:43;;;;;;;;;;-1:-1:-1;50112:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;55340:94;;;;;;;;;;-1:-1:-1;55340:94:0;;;;;:::i;:::-;;:::i;54905:188::-;55028:4;55051:36;55075:11;55051:23;:36::i;:::-;55044:43;54905:188;-1:-1:-1;;54905:188:0:o;24248:100::-;24302:13;24335:5;24328:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24248:100;:::o;25807:221::-;25883:7;29150:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29150:16:0;25903:73;;;;-1:-1:-1;;;25903:73:0;;17955:2:1;25903:73:0;;;17937:21:1;17994:2;17974:18;;;17967:30;18033:34;18013:18;;;18006:62;18104:14;18084:18;;;18077:42;18136:19;;25903:73:0;;;;;;;;;-1:-1:-1;25996:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25996:24:0;;25807:221::o;25330:411::-;25411:13;25427:23;25442:7;25427:14;:23::i;:::-;25411:39;;25475:5;-1:-1:-1;;;;;25469:11:0;:2;-1:-1:-1;;;;;25469:11:0;;;25461:57;;;;-1:-1:-1;;;25461:57:0;;19492:2:1;25461:57:0;;;19474:21:1;19531:2;19511:18;;;19504:30;19570:34;19550:18;;;19543:62;19641:3;19621:18;;;19614:31;19662:19;;25461:57:0;19464:223:1;25461:57:0;18610:10;-1:-1:-1;;;;;25553:21:0;;;;:62;;-1:-1:-1;25578:37:0;25595:5;18610:10;26326:164;:::i;25578:37::-;25531:168;;;;-1:-1:-1;;;25531:168:0;;16002:2:1;25531:168:0;;;15984:21:1;16041:2;16021:18;;;16014:30;16080:34;16060:18;;;16053:62;16151:26;16131:18;;;16124:54;16195:19;;25531:168:0;15974:246:1;25531:168:0;25712:21;25721:2;25725:7;25712:8;:21::i;:::-;25330:411;;;:::o;52979:95::-;29126:4;29150:16;;;:7;:16;;;;;;53024:2;;-1:-1:-1;;;;;29150:16:0;50897:46;;;;-1:-1:-1;;;50897:46:0;;16427:2:1;50897:46:0;;;16409:21:1;16466:2;16446:18;;;16439:30;16505:19;16485:18;;;16478:47;16542:18;;50897:46:0;16399:167:1;50897:46:0;53043:2;50800:10:::1;50780:16;53043:2:::0;50780:7:::1;:16::i;:::-;-1:-1:-1::0;;;;;50780:30:0::1;;50772:61;;;::::0;-1:-1:-1;;;50772:61:0;;11846:2:1;50772:61:0::1;::::0;::::1;11828:21:1::0;11885:2;11865:18;;;11858:30;11924:20;11904:18;;;11897:48;11962:18;;50772:61:0::1;11818:168:1::0;50772:61:0::1;53054:14:::2;53065:2;53054:10;:14::i;26557:339::-:0;26752:41;18610:10;26771:12;26785:7;26752:18;:41::i;:::-;26744:103;;;;-1:-1:-1;;;26744:103:0;;19894:2:1;26744:103:0;;;19876:21:1;19933:2;19913:18;;;19906:30;19972:34;19952:18;;;19945:62;20043:19;20023:18;;;20016:47;20080:19;;26744:103:0;19866:239:1;26744:103:0;26860:28;26870:4;26876:2;26880:7;26860:9;:28::i;38143:256::-;38240:7;38276:23;38293:5;38276:16;:23::i;:::-;38268:5;:31;38260:87;;;;-1:-1:-1;;;38260:87:0;;12537:2:1;38260:87:0;;;12519:21:1;12576:2;12556:18;;;12549:30;12615:34;12595:18;;;12588:62;12686:13;12666:18;;;12659:41;12717:19;;38260:87:0;12509:233:1;38260:87:0;-1:-1:-1;;;;;;38365:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38143:256::o;55440:106::-;45887:7;45914:6;-1:-1:-1;;;;;45914:6:0;18610:10;46061:23;46053:68;;;;-1:-1:-1;;;46053:68:0;;18721:2:1;46053:68:0;;;18703:21:1;;;18740:18;;;18733:30;18799:34;18779:18;;;18772:62;18851:18;;46053:68:0;18693:182:1;46053:68:0;55512:12:::1;:28:::0;55440:106::o;53233:149::-;29126:4;29150:16;;;:7;:16;;;;;;53312:2;;-1:-1:-1;;;;;29150:16:0;50897:46;;;;-1:-1:-1;;;50897:46:0;;16427:2:1;50897:46:0;;;16409:21:1;16466:2;16446:18;;;16439:30;16505:19;16485:18;;;16478:47;16542:18;;50897:46:0;16399:167:1;50897:46:0;53336:2;50800:10:::1;50780:16;53336:2:::0;50780:7:::1;:16::i;:::-;-1:-1:-1::0;;;;;50780:30:0::1;;50772:61;;;::::0;-1:-1:-1;;;50772:61:0;;11846:2:1;50772:61:0::1;::::0;::::1;11828:21:1::0;11885:2;11865:18;;;11858:30;11924:20;11904:18;;;11897:48;11962:18;;50772:61:0::1;11818:168:1::0;50772:61:0::1;-1:-1:-1::0;;53350:13:0::2;::::0;;;:9:::2;:13;::::0;;;;;:26;;;::::2;::::0;::::2;;::::0;;;::::2;::::0;;53233:149::o;53080:147::-;29126:4;29150:16;;;:7;:16;;;;;;53158:2;;-1:-1:-1;;;;;29150:16:0;50897:46;;;;-1:-1:-1;;;50897:46:0;;16427:2:1;50897:46:0;;;16409:21:1;16466:2;16446:18;;;16439:30;16505:19;16485:18;;;16478:47;16542:18;;50897:46:0;16399:167:1;50897:46:0;53182:2;50800:10:::1;50780:16;53182:2:::0;50780:7:::1;:16::i;:::-;-1:-1:-1::0;;;;;50780:30:0::1;;50772:61;;;::::0;-1:-1:-1;;;50772:61:0;;11846:2:1;50772:61:0::1;::::0;::::1;11828:21:1::0;11885:2;11865:18;;;11858:30;11924:20;11904:18;;;11897:48;11962:18;;50772:61:0::1;11818:168:1::0;50772:61:0::1;-1:-1:-1::0;;53196:15:0::2;::::0;;;:11:::2;:15;::::0;;;;;:25;;;::::2;::::0;::::2;;::::0;;;::::2;::::0;;53080:147::o;51673:348::-;51757:19;51770:5;51757:12;:19::i;:::-;51744:9;:32;;51736:63;;;;-1:-1:-1;;;51736:63:0;;15655:2:1;51736:63:0;;;15637:21:1;15694:2;15674:18;;;15667:30;15733:20;15713:18;;;15706:48;15771:18;;51736:63:0;15627:168:1;51736:63:0;51811:9;51806:125;51830:5;51826:1;:9;51806:125;;;51851:36;51857:2;51861:25;:15;48279:14;;48187:114;51861:25;51851:5;:36::i;:::-;51896:27;:15;48398:19;;48416:1;48398:19;;;48309:127;51896:27;51837:3;;;;:::i;:::-;;;;51806:125;;;-1:-1:-1;51956:9:0;;:36;;51938:12;;51956:9;;;-1:-1:-1;;;;;51956:9:0;;51978;;51938:12;51956:36;51938:12;51956:36;51978:9;51956;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51937:55;;;52007:7;51999:16;;;;;26967:185;27105:39;27122:4;27128:2;27132:7;27105:39;;;;;;;;;;;;:16;:39::i;44523:245::-;44641:41;18610:10;44660:12;18530:98;44641:41;44633:102;;;;-1:-1:-1;;;44633:102:0;;20725:2:1;44633:102:0;;;20707:21:1;20764:2;20744:18;;;20737:30;20803:34;20783:18;;;20776:62;20874:18;20854;;;20847:46;20910:19;;44633:102:0;20697:238:1;44633:102:0;44746:14;44752:7;44746:5;:14::i;:::-;44523:245;:::o;52027:682::-;29126:4;29150:16;;;:7;:16;;;;;;52130:2;;-1:-1:-1;;;;;29150:16:0;50897:46;;;;-1:-1:-1;;;50897:46:0;;16427:2:1;50897:46:0;;;16409:21:1;16466:2;16446:18;;;16439:30;16505:19;16485:18;;;16478:47;16542:18;;50897:46:0;16399:167:1;50897:46:0;52149:2;50800:10:::1;50780:16;52149:2:::0;50780:7:::1;:16::i;:::-;-1:-1:-1::0;;;;;50780:30:0::1;;50772:61;;;::::0;-1:-1:-1;;;50772:61:0;;11846:2:1;50772:61:0::1;::::0;::::1;11828:21:1::0;11885:2;11865:18;;;11858:30;11924:20;11904:18;;;11897:48;11962:18;;50772:61:0::1;11818:168:1::0;50772:61:0::1;52176:41:::2;::::0;;;;::::2;::::0;::::2;21086:25:1::0;;;52221:10:0::2;::::0;-1:-1:-1;;;;;52176:32:0;::::2;::::0;::::2;::::0;21059:18:1;;52176:41:0::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52176:55:0::2;;52160:113;;;::::0;-1:-1:-1;;;52160:113:0;;18368:2:1;52160:113:0::2;::::0;::::2;18350:21:1::0;18407:2;18387:18;;;18380:30;18446:26;18426:18;;;18419:54;18490:18;;52160:113:0::2;18340:174:1::0;52160:113:0::2;-1:-1:-1::0;;;;;52288:29:0;::::2;52312:4;52288:29;;52280:64;;;::::0;-1:-1:-1;;;52280:64:0;;15304:2:1;52280:64:0::2;::::0;::::2;15286:21:1::0;15343:2;15323:18;;;15316:30;15382:24;15362:18;;;15355:52;15424:18;;52280:64:0::2;15276:172:1::0;52280:64:0::2;52353:12;::::0;52386:8:::2;::::0;52353:42:::2;::::0;;;;52374:10:::2;52353:42;::::0;::::2;8341:74:1::0;8431:18;;;8424:34;;;;-1:-1:-1;;;;;52353:12:0;;::::2;::::0;:20:::2;::::0;8314:18:1;;52353:42:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;;52418:13:0::2;::::0;;;:9:::2;:13;::::0;;;;;;;:20;;52404:7:::2;:11:::0;;;;;:34;;;52445:13;;;52472:149;;::::2;::::0;::::2;::::0;;-1:-1:-1;;;;;52472:149:0;;::::2;::::0;;;;;::::2;::::0;;;52564:10:::2;52472:149:::0;;;;;;52596:15:::2;52472:149:::0;;;;;;;52445:183:::2;::::0;;::::2;::::0;;;;;;;;;;;::::2;::::0;;::::2;::::0;;::::2;::::0;;;;::::2;::::0;;;::::2;;::::0;;;;;;::::2;::::0;;;;;::::2;::::0;::::2;::::0;;;;;::::2;::::0;::::2;::::0;;;::::2;::::0;;;;;::::2;::::0;;::::2;::::0;52642:61;;9146:74:1;;;9236:18;;;9229:34;;;9279:18;;;9272:34;52564:10:0;;-1:-1:-1;52418:13:0;;52642:61:::2;::::0;9119:18:1;52642:61:0::2;;;;;;;50950:1:::1;52027:682:::0;;;;:::o;38665:233::-;38740:7;38776:30;38563:10;:17;;38475:113;38776:30;38768:5;:38;38760:95;;;;-1:-1:-1;;;38760:95:0;;20312:2:1;38760:95:0;;;20294:21:1;20351:2;20331:18;;;20324:30;20390:34;20370:18;;;20363:62;20461:14;20441:18;;;20434:42;20493:19;;38760:95:0;20284:234:1;38760:95:0;38873:10;38884:5;38873:17;;;;;;-1:-1:-1;;;38873:17:0;;;;;;;;;;;;;;;;;38866:24;;38665:233;;;:::o;54366:239::-;54424:13;54459:9;54471:25;:15;48279:14;;48187:114;54471:25;54459:37;;54446:154;54537:5;54509:25;:15;48279:14;;48187:114;54509:25;:33;;;;:::i;:::-;54505:1;:37;54446:154;;;54571:21;54172:12;54195:6;54189:12;;;54172:30;54571:21;;:::i;:::-;;-1:-1:-1;54551:3:0;;;;:::i;:::-;;;;54446:154;;;;54366:239;;;:::o;23942:::-;24014:7;24050:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24050:16:0;24085:19;24077:73;;;;-1:-1:-1;;;24077:73:0;;17184:2:1;24077:73:0;;;17166:21:1;17223:2;17203:18;;;17196:30;17262:34;17242:18;;;17235:62;17333:11;17313:18;;;17306:39;17362:19;;24077:73:0;17156:231:1;52715:258:0;29126:4;29150:16;;;:7;:16;;;;;;52788:2;;-1:-1:-1;;;;;29150:16:0;50897:46;;;;-1:-1:-1;;;50897:46:0;;16427:2:1;50897:46:0;;;16409:21:1;16466:2;16446:18;;;16439:30;16505:19;16485:18;;;16478:47;16542:18;;50897:46:0;16399:167:1;50897:46:0;52812:2;50800:10:::1;50780:16;52812:2:::0;50780:7:::1;:16::i;:::-;-1:-1:-1::0;;;;;50780:30:0::1;;50772:61;;;::::0;-1:-1:-1;;;50772:61:0;;11846:2:1;50772:61:0::1;::::0;::::1;11828:21:1::0;11885:2;11865:18;;;11858:30;11924:20;11904:18;;;11897:48;11962:18;;50772:61:0::1;11818:168:1::0;50772:61:0::1;52843:13:::2;::::0;;;:9:::2;:13;::::0;;;;:20;52834:29;::::2;52826:57;;;::::0;-1:-1:-1;;;52826:57:0;;12193:2:1;52826:57:0::2;::::0;::::2;12175:21:1::0;12232:2;12212:18;;;12205:30;12271:17;12251:18;;;12244:45;12306:18;;52826:57:0::2;12165:165:1::0;52826:57:0::2;52892:12;::::0;52925::::2;::::0;52892:46:::2;::::0;;;;52913:10:::2;52892:46;::::0;::::2;8341:74:1::0;8431:18;;;8424:34;;;;-1:-1:-1;;;;;52892:12:0;;::::2;::::0;:20:::2;::::0;8314:18:1;;52892:46:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;;52947:11:0::2;::::0;;;-1:-1:-1;;52947:7:0::2;:11;::::0;-1:-1:-1;52947:11:0;;;;:20;52715:258::o;23672:208::-;23744:7;-1:-1:-1;;;;;23772:19:0;;23764:74;;;;-1:-1:-1;;;23764:74:0;;16773:2:1;23764:74:0;;;16755:21:1;16812:2;16792:18;;;16785:30;16851:34;16831:18;;;16824:62;16922:12;16902:18;;;16895:40;16952:19;;23764:74:0;16745:232:1;23764:74:0;-1:-1:-1;;;;;;23856:16:0;;;;;:9;:16;;;;;;;23672:208::o;46492:103::-;45887:7;45914:6;-1:-1:-1;;;;;45914:6:0;18610:10;46061:23;46053:68;;;;-1:-1:-1;;;46053:68:0;;18721:2:1;46053:68:0;;;18703:21:1;;;18740:18;;;18733:30;18799:34;18779:18;;;18772:62;18851:18;;46053:68:0;18693:182:1;46053:68:0;46557:30:::1;46584:1;46557:18;:30::i;:::-;46492:103::o:0;55234:100::-;45887:7;45914:6;-1:-1:-1;;;;;45914:6:0;18610:10;46061:23;46053:68;;;;-1:-1:-1;;;46053:68:0;;18721:2:1;46053:68:0;;;18703:21:1;;;18740:18;;;18733:30;18799:34;18779:18;;;18772:62;18851:18;;46053:68:0;18693:182:1;46053:68:0;55300:12:::1;:28:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;55234:100::o;50012:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50012:48:0;;;;-1:-1:-1;50012:48:0;;-1:-1:-1;50012:48:0;;;;:::o;24417:104::-;24473:13;24506:7;24499:14;;;;;:::i;55121:107::-;45887:7;45914:6;-1:-1:-1;;;;;45914:6:0;18610:10;46061:23;46053:68;;;;-1:-1:-1;;;46053:68:0;;18721:2:1;46053:68:0;;;18703:21:1;;;18740:18;;;18733:30;18799:34;18779:18;;;18772:62;18851:18;;46053:68:0;18693:182:1;46053:68:0;55194:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55121:107:::0;:::o;26100:155::-;26195:52;18610:10;26228:8;26238;26195:18;:52::i;54214:146::-;54304:18;54286:2;50905:16;50913:7;29126:4;29150:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29150:16:0;:30;;;29061:127;50905:16;50897:46;;;;-1:-1:-1;;;50897:46:0;;16427:2:1;50897:46:0;;;16409:21:1;16466:2;16446:18;;;16439:30;16505:19;16485:18;;;16478:47;16542:18;;50897:46:0;16399:167:1;50897:46:0;54341:13:::1;::::0;;;:9:::1;:13;::::0;;;;;;;54334:20;;;;;;::::1;::::0;;;;;;;;;;;;54341:13;;54334:20;::::1;;;;;;;;;::::0;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;54334:20:0;;::::1;::::0;;;;;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;;;;::::1;;::::0;;;;;;;;;;::::1;::::0;::::1;;;;;;;;;;54214:146:::0;;;;:::o;27223:328::-;27398:41;18610:10;27431:7;27398:18;:41::i;:::-;27390:103;;;;-1:-1:-1;;;27390:103:0;;19894:2:1;27390:103:0;;;19876:21:1;19933:2;19913:18;;;19906:30;19972:34;19952:18;;;19945:62;20043:19;20023:18;;;20016:47;20080:19;;27390:103:0;19866:239:1;27390:103:0;27504:39;27518:4;27524:2;27528:7;27537:5;27504:13;:39::i;:::-;27223:328;;;;:::o;53416:675::-;53526:13;53503:7;50905:16;50913:7;29126:4;29150:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29150:16:0;:30;;;29061:127;50905:16;50897:46;;;;-1:-1:-1;;;50897:46:0;;16427:2:1;50897:46:0;;;16409:21:1;16466:2;16446:18;;;16439:30;16505:19;16485:18;;;16478:47;16542:18;;50897:46:0;16399:167:1;50897:46:0;53583:1:::1;53555:18:::0;;;:9:::1;:18;::::0;;;;:25;:29;;;;:52:::1;;-1:-1:-1::0;53589:18:0::1;::::0;;;:9:::1;:18;::::0;;;;;::::1;;53588:19;53555:52;53551:375;;;53618:21;53642:18:::0;;;:9:::1;:18;::::0;;;;;;;53661:7:::1;:16:::0;;;;;;53642:36;;;::::1;;;-1:-1:-1::0;;;53642:36:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;;53618:60:::1;::::0;;::::1;::::0;::::1;::::0;;53642:36:::1;::::0;;::::1;::::0;;::::1;53618:60:::0;;-1:-1:-1;;;;;53618:60:0;;::::1;::::0;;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;;;;53780:52;;;;;;;::::1;21086:25:1::0;;;;53618:60:0;-1:-1:-1;53780:38:0::1;::::0;21059:18:1;;53780:52:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;;;53776:143;;;;;53897:3:::0;-1:-1:-1;53890:10:0::1;::::0;-1:-1:-1;53890:10:0::1;53776:143;53551:375;;53934:21;53958:10;:8;:10::i;:::-;53989:12;::::0;53934:34;;-1:-1:-1;53989:12:0::1;;:96;;54078:7;53989:96;;;54037:7;54046:18;:7;:16;:18::i;:::-;54020:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53989:96;53975:110:::0;53416:675;-1:-1:-1;;;;53416:675:0:o;49921:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54611:288::-;54669:16;54694:14;54711:16;54721:5;54711:9;:16::i;:::-;54694:33;;54734:20;54771:6;54757:21;;;;;;-1:-1:-1;;;54757:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54757:21:0;;54734:44;;54790:9;54785:92;54809:6;54805:1;:10;54785:92;;;54840:29;54860:5;54867:1;54840:19;:29::i;:::-;54831:3;54835:1;54831:6;;;;;;-1:-1:-1;;;54831:6:0;;;;;;;;;;;;;;;;;;:38;54817:3;;;;:::i;:::-;;;;54785:92;;;-1:-1:-1;54890:3:0;54611:288;-1:-1:-1;;;54611:288:0:o;55552:90::-;45887:7;45914:6;-1:-1:-1;;;;;45914:6:0;18610:10;46061:23;46053:68;;;;-1:-1:-1;;;46053:68:0;;18721:2:1;46053:68:0;;;18703:21:1;;;18740:18;;;18733:30;18799:34;18779:18;;;18772:62;18851:18;;46053:68:0;18693:182:1;46053:68:0;55616:8:::1;:20:::0;55552:90::o;46750:201::-;45887:7;45914:6;-1:-1:-1;;;;;45914:6:0;18610:10;46061:23;46053:68;;;;-1:-1:-1;;;46053:68:0;;18721:2:1;46053:68:0;;;18703:21:1;;;18740:18;;;18733:30;18799:34;18779:18;;;18772:62;18851:18;;46053:68:0;18693:182:1;46053:68:0;-1:-1:-1;;;;;46839:22:0;::::1;46831:73;;;::::0;-1:-1:-1;;;46831:73:0;;13368:2:1;46831:73:0::1;::::0;::::1;13350:21:1::0;13407:2;13387:18;;;13380:30;13446:34;13426:18;;;13419:62;13517:8;13497:18;;;13490:36;13543:19;;46831:73:0::1;13340:228:1::0;46831:73:0::1;46915:28;46934:8;46915:18;:28::i;55340:94::-:0;45887:7;45914:6;-1:-1:-1;;;;;45914:6:0;18610:10;46061:23;46053:68;;;;-1:-1:-1;;;46053:68:0;;18721:2:1;46053:68:0;;;18703:21:1;;;18740:18;;;18733:30;18799:34;18779:18;;;18772:62;18851:18;;46053:68:0;18693:182:1;46053:68:0;55406:9:::1;:22:::0;;-1:-1:-1;;;;;55406:22:0;;::::1;;;::::0;;;::::1;::::0;;;::::1;::::0;;55340:94::o;37835:224::-;37937:4;37961:50;;;37976:35;37961:50;;:90;;;38015:36;38039:11;38015:23;:36::i;33043:174::-;33118:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;33118:29:0;;;;;;;;:24;;33172:23;33118:24;33172:14;:23::i;:::-;-1:-1:-1;;;;;33163:46:0;;;;;;;;;;;33043:174;;:::o;50988:275::-;51036:14;51053:13;;;:9;:13;;;;;:20;51084:10;;51080:156;;51110:9;51105:124;51129:6;51125:1;:10;51105:124;;;51160:13;;;;:9;:13;;;;;51187:1;51174:10;51183:1;51174:6;:10;:::i;:::-;:14;;;;:::i;:::-;51160:29;;;;;;-1:-1:-1;;;51160:29:0;;;;;;;;;;;;;;;;;;;;;;;;51153:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51200:13;;;:9;:13;;;;;:19;;;;;-1:-1:-1;;;51200:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51137:3;;;;:::i;:::-;;;;51105:124;;;;51080:156;-1:-1:-1;51256:1:0;51242:11;;;:7;:11;;;;;:15;50988:275::o;29355:348::-;29448:4;29150:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29150:16:0;29465:73;;;;-1:-1:-1;;;29465:73:0;;14891:2:1;29465:73:0;;;14873:21:1;14930:2;14910:18;;;14903:30;14969:34;14949:18;;;14942:62;15040:14;15020:18;;;15013:42;15072:19;;29465:73:0;14863:234:1;29465:73:0;29549:13;29565:23;29580:7;29565:14;:23::i;:::-;29549:39;;29618:5;-1:-1:-1;;;;;29607:16:0;:7;-1:-1:-1;;;;;29607:16:0;;:51;;;;29651:7;-1:-1:-1;;;;;29627:31:0;:20;29639:7;29627:11;:20::i;:::-;-1:-1:-1;;;;;29627:31:0;;29607:51;:87;;;-1:-1:-1;;;;;;26447:25:0;;;26423:4;26447:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29662:32;26326:164;32347:578;32506:4;-1:-1:-1;;;;;32479:31:0;:23;32494:7;32479:14;:23::i;:::-;-1:-1:-1;;;;;32479:31:0;;32471:85;;;;-1:-1:-1;;;32471:85:0;;19082:2:1;32471:85:0;;;19064:21:1;19121:2;19101:18;;;19094:30;19160:34;19140:18;;;19133:62;19231:11;19211:18;;;19204:39;19260:19;;32471:85:0;19054:231:1;32471:85:0;-1:-1:-1;;;;;32575:16:0;;32567:65;;;;-1:-1:-1;;;32567:65:0;;14132:2:1;32567:65:0;;;14114:21:1;14171:2;14151:18;;;14144:30;14210:34;14190:18;;;14183:62;14281:6;14261:18;;;14254:34;14305:19;;32567:65:0;14104:226:1;32567:65:0;32645:39;32666:4;32672:2;32676:7;32645:20;:39::i;:::-;32749:29;32766:1;32770:7;32749:8;:29::i;:::-;-1:-1:-1;;;;;32791:15:0;;;;;;:9;:15;;;;;:20;;32810:1;;32791:15;:20;;32810:1;;32791:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32822:13:0;;;;;;:9;:13;;;;;:18;;32839:1;;32822:13;:18;;32839:1;;32822:18;:::i;:::-;;;;-1:-1:-1;;32851:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;32851:21:0;;;;;;;;;32890:27;;32851:16;;32890:27;;;;;;;32347:578;;;:::o;31039:382::-;-1:-1:-1;;;;;31119:16:0;;31111:61;;;;-1:-1:-1;;;31111:61:0;;17594:2:1;31111:61:0;;;17576:21:1;;;17613:18;;;17606:30;17672:34;17652:18;;;17645:62;17724:18;;31111:61:0;17566:182:1;31111:61:0;29126:4;29150:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29150:16:0;:30;31183:58;;;;-1:-1:-1;;;31183:58:0;;13775:2:1;31183:58:0;;;13757:21:1;13814:2;13794:18;;;13787:30;13853;13833:18;;;13826:58;13901:18;;31183:58:0;13747:178:1;31183:58:0;31254:45;31283:1;31287:2;31291:7;31254:20;:45::i;:::-;-1:-1:-1;;;;;31312:13:0;;;;;;:9;:13;;;;;:18;;31329:1;;31312:13;:18;;31329:1;;31312:18;:::i;:::-;;;;-1:-1:-1;;31341:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;31341:21:0;;;;;;;;31380:33;;31341:16;;;31380:33;;31341:16;;31380:33;31039:382;;:::o;31650:360::-;31710:13;31726:23;31741:7;31726:14;:23::i;:::-;31710:39;;31762:48;31783:5;31798:1;31802:7;31762:20;:48::i;:::-;31851:29;31868:1;31872:7;31851:8;:29::i;:::-;-1:-1:-1;;;;;31893:16:0;;;;;;:9;:16;;;;;:21;;31913:1;;31893:16;:21;;31913:1;;31893:21;:::i;:::-;;;;-1:-1:-1;;31932:16:0;;;;:7;:16;;;;;;31925:23;;;;;;31966:36;31940:7;;31932:16;-1:-1:-1;;;;;31966:36:0;;;;;31932:16;;31966:36;31650:360;;:::o;47111:191::-;47185:16;47204:6;;-1:-1:-1;;;;;47221:17:0;;;;;;;;;;47254:40;;47204:6;;;;;;;47254:40;;47185:16;47254:40;47111:191;;:::o;33359:315::-;33514:8;-1:-1:-1;;;;;33505:17:0;:5;-1:-1:-1;;;;;33505:17:0;;;33497:55;;;;-1:-1:-1;;;33497:55:0;;14537:2:1;33497:55:0;;;14519:21:1;14576:2;14556:18;;;14549:30;14615:27;14595:18;;;14588:55;14660:18;;33497:55:0;14509:175:1;33497:55:0;-1:-1:-1;;;;;33563:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;33625:41;;11115::1;;;33625::0;;11088:18:1;33625:41:0;;;;;;;33359:315;;;:::o;28433:::-;28590:28;28600:4;28606:2;28610:7;28590:9;:28::i;:::-;28637:48;28660:4;28666:2;28670:7;28679:5;28637:22;:48::i;:::-;28629:111;;;;-1:-1:-1;;;28629:111:0;;12949:2:1;28629:111:0;;;12931:21:1;12988:2;12968:18;;;12961:30;13027:34;13007:18;;;13000:62;13098:20;13078:18;;;13071:48;13136:19;;28629:111:0;12921:240:1;51269:99:0;51321:13;51350:12;51343:19;;;;;:::i;19115:723::-;19171:13;19392:10;19388:53;;-1:-1:-1;;19419:10:0;;;;;;;;;;;;;;;;;;19115:723::o;19388:53::-;19466:5;19451:12;19507:78;19514:9;;19507:78;;19540:8;;;;:::i;:::-;;-1:-1:-1;19563:10:0;;-1:-1:-1;19571:2:0;19563:10;;:::i;:::-;;;19507:78;;;19595:19;19627:6;19617:17;;;;;;-1:-1:-1;;;19617:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19617:17:0;;19595:39;;19645:154;19652:10;;19645:154;;19679:11;19689:1;19679:11;;:::i;:::-;;-1:-1:-1;19748:10:0;19756:2;19748:5;:10;:::i;:::-;19735:24;;:2;:24;:::i;:::-;19722:39;;19705:6;19712;19705:14;;;;;;-1:-1:-1;;;19705:14:0;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;19776:11:0;19785:2;19776:11;;:::i;:::-;;;19645:154;;23303:305;23405:4;23442:40;;;23457:25;23442:40;;:105;;-1:-1:-1;23499:48:0;;;23514:33;23499:48;23442:105;:158;;;-1:-1:-1;21867:25:0;21852:40;;;;23564:36;21743:157;51374:264;51518:45;51545:4;51551:2;51555:7;51518:26;:45::i;:::-;51575:20;;;;:11;:20;;;;;;;;51570:63;;51606:19;51617:7;51606:10;:19::i;34239:799::-;34394:4;-1:-1:-1;;;;;34415:13:0;;10837:20;10885:8;34411:620;;34451:72;;;;;-1:-1:-1;;;;;34451:36:0;;;;;:72;;18610:10;;34502:4;;34508:7;;34517:5;;34451:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34451:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34447:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34693:13:0;;34689:272;;34736:60;;-1:-1:-1;;;34736:60:0;;12949:2:1;34736:60:0;;;12931:21:1;12988:2;12968:18;;;12961:30;13027:34;13007:18;;;13000:62;13098:20;13078:18;;;13071:48;13136:19;;34736:60:0;12921:240:1;34689:272:0;34911:6;34905:13;34896:6;34892:2;34888:15;34881:38;34447:529;34574:51;;34584:41;34574:51;;-1:-1:-1;34567:58:0;;34411:620;-1:-1:-1;35015:4:0;34239:799;;;;;;:::o;39511:589::-;-1:-1:-1;;;;;39717:18:0;;39713:187;;39752:40;39784:7;40927:10;:17;;40900:24;;;;:15;:24;;;;;:44;;;40955:24;;;;;;;;;;;;40823:164;39752:40;39713:187;;;39822:2;-1:-1:-1;;;;;39814:10:0;:4;-1:-1:-1;;;;;39814:10:0;;39810:90;;39841:47;39874:4;39880:7;39841:32;:47::i;:::-;-1:-1:-1;;;;;39914:16:0;;39910:183;;39947:45;39984:7;39947:36;:45::i;39910:183::-;40020:4;-1:-1:-1;;;;;40014:10:0;:2;-1:-1:-1;;;;;40014:10:0;;40010:83;;40041:40;40069:2;40073:7;40041:27;:40::i;41614:988::-;41880:22;41930:1;41905:22;41922:4;41905:16;:22::i;:::-;:26;;;;:::i;:::-;41942:18;41963:26;;;:17;:26;;;;;;41880:51;;-1:-1:-1;42096:28:0;;;42092:328;;-1:-1:-1;;;;;42163:18:0;;42141:19;42163:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42214:30;;;;;;:44;;;42331:30;;:17;:30;;;;;:43;;;42092:328;-1:-1:-1;42516:26:0;;;;:17;:26;;;;;;;;42509:33;;;-1:-1:-1;;;;;42560:18:0;;;;;:12;:18;;;;;:34;;;;;;;42553:41;41614:988::o;42897:1079::-;43175:10;:17;43150:22;;43175:21;;43195:1;;43175:21;:::i;:::-;43207:18;43228:24;;;:15;:24;;;;;;43601:10;:26;;43150:46;;-1:-1:-1;43228:24:0;;43150:46;;43601:26;;;;-1:-1:-1;;;43601:26:0;;;;;;;;;;;;;;;;;43579:48;;43665:11;43640:10;43651;43640:22;;;;;;-1:-1:-1;;;43640:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;43745:28;;;:15;:28;;;;;;;:41;;;43917:24;;;;;43910:31;43952:10;:16;;;;;-1:-1:-1;;;43952:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;42897:1079;;;;:::o;40401:221::-;40486:14;40503:20;40520:2;40503:16;:20::i;:::-;-1:-1:-1;;;;;40534:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40579:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40401:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:336:1;78:5;107:52;123:35;151:6;123:35;:::i;:::-;107:52;:::i;:::-;98:61;;182:6;175:5;168:21;222:3;213:6;208:3;204:16;201:25;198:2;;;239:1;236;229:12;198:2;288:6;283:3;276:4;269:5;265:16;252:43;342:1;335:4;326:6;319:5;315:18;311:29;304:40;88:262;;;;;:::o;355:160::-;420:20;;476:13;;469:21;459:32;;449:2;;505:1;502;495:12;449:2;401:114;;;:::o;520:257::-;579:6;632:2;620:9;611:7;607:23;603:32;600:2;;;653:6;645;638:22;600:2;697:9;684:23;716:31;741:5;716:31;:::i;:::-;766:5;590:187;-1:-1:-1;;;590:187:1:o;782:261::-;852:6;905:2;893:9;884:7;880:23;876:32;873:2;;;926:6;918;911:22;873:2;963:9;957:16;982:31;1007:5;982:31;:::i;1048:398::-;1116:6;1124;1177:2;1165:9;1156:7;1152:23;1148:32;1145:2;;;1198:6;1190;1183:22;1145:2;1242:9;1229:23;1261:31;1286:5;1261:31;:::i;:::-;1311:5;-1:-1:-1;1368:2:1;1353:18;;1340:32;1381:33;1340:32;1381:33;:::i;:::-;1433:7;1423:17;;;1135:311;;;;;:::o;1451:466::-;1528:6;1536;1544;1597:2;1585:9;1576:7;1572:23;1568:32;1565:2;;;1618:6;1610;1603:22;1565:2;1662:9;1649:23;1681:31;1706:5;1681:31;:::i;:::-;1731:5;-1:-1:-1;1788:2:1;1773:18;;1760:32;1801:33;1760:32;1801:33;:::i;:::-;1555:362;;1853:7;;-1:-1:-1;;;1907:2:1;1892:18;;;;1879:32;;1555:362::o;1922:824::-;2017:6;2025;2033;2041;2094:3;2082:9;2073:7;2069:23;2065:33;2062:2;;;2116:6;2108;2101:22;2062:2;2160:9;2147:23;2179:31;2204:5;2179:31;:::i;:::-;2229:5;-1:-1:-1;2286:2:1;2271:18;;2258:32;2299:33;2258:32;2299:33;:::i;:::-;2351:7;-1:-1:-1;2405:2:1;2390:18;;2377:32;;-1:-1:-1;2460:2:1;2445:18;;2432:32;2487:18;2476:30;;2473:2;;;2524:6;2516;2509:22;2473:2;2552:22;;2605:4;2597:13;;2593:27;-1:-1:-1;2583:2:1;;2639:6;2631;2624:22;2583:2;2667:73;2732:7;2727:2;2714:16;2709:2;2705;2701:11;2667:73;:::i;:::-;2657:83;;;2052:694;;;;;;;:::o;2751:325::-;2816:6;2824;2877:2;2865:9;2856:7;2852:23;2848:32;2845:2;;;2898:6;2890;2883:22;2845:2;2942:9;2929:23;2961:31;2986:5;2961:31;:::i;:::-;3011:5;-1:-1:-1;3035:35:1;3066:2;3051:18;;3035:35;:::i;:::-;3025:45;;2835:241;;;;;:::o;3081:325::-;3149:6;3157;3210:2;3198:9;3189:7;3185:23;3181:32;3178:2;;;3231:6;3223;3216:22;3178:2;3275:9;3262:23;3294:31;3319:5;3294:31;:::i;:::-;3344:5;3396:2;3381:18;;;;3368:32;;-1:-1:-1;;;3168:238:1:o;3411:393::-;3488:6;3496;3504;3557:2;3545:9;3536:7;3532:23;3528:32;3525:2;;;3578:6;3570;3563:22;3525:2;3622:9;3609:23;3641:31;3666:5;3641:31;:::i;:::-;3691:5;3743:2;3728:18;;3715:32;;-1:-1:-1;3794:2:1;3779:18;;;3766:32;;3515:289;-1:-1:-1;;;3515:289:1:o;3809:190::-;3865:6;3918:2;3906:9;3897:7;3893:23;3889:32;3886:2;;;3939:6;3931;3924:22;3886:2;3967:26;3983:9;3967:26;:::i;4004:255::-;4062:6;4115:2;4103:9;4094:7;4090:23;4086:32;4083:2;;;4136:6;4128;4121:22;4083:2;4180:9;4167:23;4199:30;4223:5;4199:30;:::i;4264:259::-;4333:6;4386:2;4374:9;4365:7;4361:23;4357:32;4354:2;;;4407:6;4399;4392:22;4354:2;4444:9;4438:16;4463:30;4487:5;4463:30;:::i;4528:480::-;4597:6;4650:2;4638:9;4629:7;4625:23;4621:32;4618:2;;;4671:6;4663;4656:22;4618:2;4716:9;4703:23;4749:18;4741:6;4738:30;4735:2;;;4786:6;4778;4771:22;4735:2;4814:22;;4867:4;4859:13;;4855:27;-1:-1:-1;4845:2:1;;4901:6;4893;4886:22;4845:2;4929:73;4994:7;4989:2;4976:16;4971:2;4967;4963:11;4929:73;:::i;5013:675::-;5093:6;5146:2;5134:9;5125:7;5121:23;5117:32;5114:2;;;5167:6;5159;5152:22;5114:2;5205:9;5199:16;5238:18;5230:6;5227:30;5224:2;;;5275:6;5267;5260:22;5224:2;5303:22;;5356:4;5348:13;;5344:27;-1:-1:-1;5334:2:1;;5390:6;5382;5375:22;5334:2;5424;5418:9;5449:48;5465:31;5493:2;5465:31;:::i;5449:48::-;5520:2;5513:5;5506:17;5560:7;5555:2;5550;5546;5542:11;5538:20;5535:33;5532:2;;;5586:6;5578;5571:22;5532:2;5604:54;5655:2;5650;5643:5;5639:14;5634:2;5630;5626:11;5604:54;:::i;:::-;5677:5;5104:584;-1:-1:-1;;;;;5104:584:1:o;5693:190::-;5752:6;5805:2;5793:9;5784:7;5780:23;5776:32;5773:2;;;5826:6;5818;5811:22;5773:2;-1:-1:-1;5854:23:1;;5763:120;-1:-1:-1;5763:120:1:o;5888:258::-;5953:6;5961;6014:2;6002:9;5993:7;5989:23;5985:32;5982:2;;;6035:6;6027;6020:22;5982:2;6076:9;6063:23;6053:33;;6105:35;6136:2;6125:9;6121:18;6105:35;:::i;6151:258::-;6219:6;6227;6280:2;6268:9;6259:7;6255:23;6251:32;6248:2;;;6301:6;6293;6286:22;6248:2;-1:-1:-1;;6329:23:1;;;6399:2;6384:18;;;6371:32;;-1:-1:-1;6238:171:1:o;6414:316::-;6455:3;6493:5;6487:12;6520:6;6515:3;6508:19;6536:63;6592:6;6585:4;6580:3;6576:14;6569:4;6562:5;6558:16;6536:63;:::i;:::-;6644:2;6632:15;6649:66;6628:88;6619:98;;;;6719:4;6615:109;;6463:267;-1:-1:-1;;6463:267:1:o;6735:470::-;6914:3;6952:6;6946:13;6968:53;7014:6;7009:3;7002:4;6994:6;6990:17;6968:53;:::i;:::-;7084:13;;7043:16;;;;7106:57;7084:13;7043:16;7140:4;7128:17;;7106:57;:::i;:::-;7179:20;;6922:283;-1:-1:-1;;;;6922:283:1:o;7651:511::-;7845:4;-1:-1:-1;;;;;7955:2:1;7947:6;7943:15;7932:9;7925:34;8007:2;7999:6;7995:15;7990:2;7979:9;7975:18;7968:43;;8047:6;8042:2;8031:9;8027:18;8020:34;8090:3;8085:2;8074:9;8070:18;8063:31;8111:45;8151:3;8140:9;8136:19;8128:6;8111:45;:::i;:::-;8103:53;7854:308;-1:-1:-1;;;;;;7854:308:1:o;9317:1013::-;9542:2;9594:21;;;9664:13;;9567:18;;;9686:22;;;9513:4;;9542:2;9727;;9745:18;;;;9786:15;;;9513:4;9832:472;9846:6;9843:1;9840:13;9832:472;;;9905:13;;10012:9;;-1:-1:-1;;;;;10008:18:1;;;9996:31;;10067:11;;;10061:18;10047:12;;;10040:40;10124:11;;;10118:18;10114:27;10100:12;;;10093:49;10165:4;10209:11;;;10203:18;10189:12;;;10182:40;10251:4;10242:14;;;;10279:15;;;;9868:1;9861:9;9832:472;;;-1:-1:-1;10321:3:1;;9522:808;-1:-1:-1;;;;;;;9522:808:1:o;10335:635::-;10506:2;10558:21;;;10628:13;;10531:18;;;10650:22;;;10477:4;;10506:2;10729:15;;;;10703:2;10688:18;;;10477:4;10775:169;10789:6;10786:1;10783:13;10775:169;;;10850:13;;10838:26;;10919:15;;;;10884:12;;;;10811:1;10804:9;10775:169;;;-1:-1:-1;10961:3:1;;10486:484;-1:-1:-1;;;;;;10486:484:1:o;11420:219::-;11569:2;11558:9;11551:21;11532:4;11589:44;11629:2;11618:9;11614:18;11606:6;11589:44;:::i;21122:334::-;21193:2;21187:9;21249:2;21239:13;;21254:66;21235:86;21223:99;;21352:18;21337:34;;21373:22;;;21334:62;21331:2;;;21399:18;;:::i;:::-;21435:2;21428:22;21167:289;;-1:-1:-1;21167:289:1:o;21461:245::-;21509:4;21542:18;21534:6;21531:30;21528:2;;;21564:18;;:::i;:::-;-1:-1:-1;21621:2:1;21609:15;21626:66;21605:88;21695:4;21601:99;;21518:188::o;21711:128::-;21751:3;21782:1;21778:6;21775:1;21772:13;21769:2;;;21788:18;;:::i;:::-;-1:-1:-1;21824:9:1;;21759:80::o;21844:120::-;21884:1;21910;21900:2;;21915:18;;:::i;:::-;-1:-1:-1;21949:9:1;;21890:74::o;21969:125::-;22009:4;22037:1;22034;22031:8;22028:2;;;22042:18;;:::i;:::-;-1:-1:-1;22079:9:1;;22018:76::o;22099:258::-;22171:1;22181:113;22195:6;22192:1;22189:13;22181:113;;;22271:11;;;22265:18;22252:11;;;22245:39;22217:2;22210:10;22181:113;;;22312:6;22309:1;22306:13;22303:2;;;-1:-1:-1;;22347:1:1;22329:16;;22322:27;22152:205::o;22362:437::-;22441:1;22437:12;;;;22484;;;22505:2;;22559:4;22551:6;22547:17;22537:27;;22505:2;22612;22604:6;22601:14;22581:18;22578:38;22575:2;;;-1:-1:-1;;;22646:1:1;22639:88;22750:4;22747:1;22740:15;22778:4;22775:1;22768:15;22804:195;22843:3;22874:66;22867:5;22864:77;22861:2;;;22944:18;;:::i;:::-;-1:-1:-1;22991:1:1;22980:13;;22851:148::o;23004:112::-;23036:1;23062;23052:2;;23067:18;;:::i;:::-;-1:-1:-1;23101:9:1;;23042:74::o;23121:184::-;-1:-1:-1;;;23170:1:1;23163:88;23270:4;23267:1;23260:15;23294:4;23291:1;23284:15;23310:184;-1:-1:-1;;;23359:1:1;23352:88;23459:4;23456:1;23449:15;23483:4;23480:1;23473:15;23499:184;-1:-1:-1;;;23548:1:1;23541:88;23648:4;23645:1;23638:15;23672:4;23669:1;23662:15;23688:154;-1:-1:-1;;;;;23767:5:1;23763:54;23756:5;23753:65;23743:2;;23832:1;23829;23822:12;23847:177;23932:66;23925:5;23921:78;23914:5;23911:89;23901:2;;24014:1;24011;24004:12
Swarm Source
ipfs://d2d9ca5d8360eb8da142170156667a084b5d7625108b39b1063601991c7e26f5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.