ERC-721
Overview
Max Total Supply
167 0xCL
Holders
54
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 0xCLLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Stozzy
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-06 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } //Code developed by: James Onion. pragma solidity >=0.7.0 <0.9.0; contract Stozzy is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.01 ether; uint256 public maxSupply = 3333; uint256 public maxMintAmountPerTx = 100; uint256 public nftMintPerAddressLimit = 100; mapping (address => uint256) public ownerTokenMapping; bool public paused = false; bool public revealed = false; constructor() ERC721A("0xClones", "0xCL") { setHiddenMetadataUri("ipfs://QmZXjDhKsn3YTXviwDEBDPhjonyveLaHdppCkCatANgQRS/Reveal.json"); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(_currentIndex + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(ownerTokenMapping[msg.sender] + _mintAmount <= nftMintPerAddressLimit, "Max tokens exceeded"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _safeMint(msg.sender, _mintAmount); ownerTokenMapping[msg.sender] += _mintAmount; } function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_to, _mintAmount); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory){ require( _exists(_tokenId), "ERC721AMetadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setNftMintPerAddressLimit(uint256 _newNftMintPerAddressLimit) public onlyOwner { nftMintPerAddressLimit = _newNftMintPerAddressLimit; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } // Withdraw function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftMintPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ownerTokenMapping","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newNftMintPerAddressLimit","type":"uint256"}],"name":"setNftMintPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600a91620001ef565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b91620001ef565b50662386f26fc10000600d55610d05600e556064600f8190556010556012805461ffff191690553480156200007e57600080fd5b5060408051808201825260088152673078436c6f6e657360c01b6020808301918252835180850190945260048452630c1e10d360e21b908401528151919291620000cb91600291620001ef565b508051620000e1906003906020840190620001ef565b50506000805550620000f33362000125565b60016009819055506200011f604051806080016040528060418152602001620023696041913962000177565b620002d2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001d65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001eb90600c906020840190620001ef565b5050565b828054620001fd9062000295565b90600052602060002090601f0160209004810192826200022157600085556200026c565b82601f106200023c57805160ff19168380011785556200026c565b828001600101855582156200026c579182015b828111156200026c5782518255916020019190600101906200024f565b506200027a9291506200027e565b5090565b5b808211156200027a57600081556001016200027f565b600181811c90821680620002aa57607f821691505b60208210811415620002cc57634e487b7160e01b600052602260045260246000fd5b50919050565b61208780620002e26000396000f3fe6080604052600436106102255760003560e01c806362b99ad411610123578063a22cb465116100ab578063c99f774f1161006f578063c99f774f1461060c578063d5abeb0114610639578063e0a808531461064f578063e985e9c51461066f578063f2fde38b146106b857600080fd5b8063a22cb46514610577578063a45ba8e714610597578063b071401b146105ac578063b88d4fde146105cc578063c87b56dd146105ec57600080fd5b80637ec4a659116100f25780637ec4a659146104fb5780638da5cb5b1461051b57806394354fd01461053957806395d89b411461054f578063a0712d681461056457600080fd5b806362b99ad4146104915780636352211e146104a657806370a08231146104c6578063715018a6146104e657600080fd5b806323b872dd116101b15780634fdd43cb116101755780634fdd43cb1461040d578063518302271461042d5780635503a0e81461044c5780635a1c1e98146104615780635c975abb1461047757600080fd5b806323b872dd146103785780633ccfd60b14610398578063408cbf94146103ad57806342842e0e146103cd57806344a0d68a146103ed57600080fd5b806313faede6116101f857806313faede6146102db57806316ba10e0146102ff57806316c38b3c1461031f5780631710872f1461033f57806318160ddd1461035f57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611cda565b6106d8565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461072a565b6040516102569190611ea3565b34801561028d57600080fd5b506102a161029c366004611d5d565b6107bc565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611c95565b610800565b005b3480156102e757600080fd5b506102f1600d5481565b604051908152602001610256565b34801561030b57600080fd5b506102d961031a366004611d14565b61088e565b34801561032b57600080fd5b506102d961033a366004611cbf565b6108d8565b34801561034b57600080fd5b506102d961035a366004611d5d565b610915565b34801561036b57600080fd5b50600154600054036102f1565b34801561038457600080fd5b506102d9610393366004611bb3565b610944565b3480156103a457600080fd5b506102d961094f565b3480156103b957600080fd5b506102d96103c8366004611c95565b6109ed565b3480156103d957600080fd5b506102d96103e8366004611bb3565b610acd565b3480156103f957600080fd5b506102d9610408366004611d5d565b610ae8565b34801561041957600080fd5b506102d9610428366004611d14565b610b17565b34801561043957600080fd5b5060125461024a90610100900460ff1681565b34801561045857600080fd5b50610274610b54565b34801561046d57600080fd5b506102f160105481565b34801561048357600080fd5b5060125461024a9060ff1681565b34801561049d57600080fd5b50610274610be2565b3480156104b257600080fd5b506102a16104c1366004611d5d565b610bef565b3480156104d257600080fd5b506102f16104e1366004611b65565b610c01565b3480156104f257600080fd5b506102d9610c50565b34801561050757600080fd5b506102d9610516366004611d14565b610c86565b34801561052757600080fd5b506008546001600160a01b03166102a1565b34801561054557600080fd5b506102f1600f5481565b34801561055b57600080fd5b50610274610cc3565b6102d9610572366004611d5d565b610cd2565b34801561058357600080fd5b506102d9610592366004611c6b565b610eb8565b3480156105a357600080fd5b50610274610f4e565b3480156105b857600080fd5b506102d96105c7366004611d5d565b610f5b565b3480156105d857600080fd5b506102d96105e7366004611bef565b610f8a565b3480156105f857600080fd5b50610274610607366004611d5d565b610fdb565b34801561061857600080fd5b506102f1610627366004611b65565b60116020526000908152604090205481565b34801561064557600080fd5b506102f1600e5481565b34801561065b57600080fd5b506102d961066a366004611cbf565b61114b565b34801561067b57600080fd5b5061024a61068a366004611b80565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106c457600080fd5b506102d96106d3366004611b65565b61118f565b60006001600160e01b031982166380ac58cd60e01b148061070957506001600160e01b03198216635b5e139f60e01b145b8061072457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461073990611f79565b80601f016020809104026020016040519081016040528092919081815260200182805461076590611f79565b80156107b25780601f10610787576101008083540402835291602001916107b2565b820191906000526020600020905b81548152906001019060200180831161079557829003601f168201915b5050505050905090565b60006107c782611227565b6107e4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061080b82610bef565b9050806001600160a01b0316836001600160a01b031614156108405760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610860575061085e813361068a565b155b1561087e576040516367d9dca160e11b815260040160405180910390fd5b610889838383611252565b505050565b6008546001600160a01b031633146108c15760405162461bcd60e51b81526004016108b890611eb6565b60405180910390fd5b80516108d490600b906020840190611a2a565b5050565b6008546001600160a01b031633146109025760405162461bcd60e51b81526004016108b890611eb6565b6012805460ff1916911515919091179055565b6008546001600160a01b0316331461093f5760405162461bcd60e51b81526004016108b890611eb6565b601055565b6108898383836112ae565b6008546001600160a01b031633146109795760405162461bcd60e51b81526004016108b890611eb6565b600061098d6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109d7576040519150601f19603f3d011682016040523d82523d6000602084013e6109dc565b606091505b50509050806109ea57600080fd5b50565b80600081118015610a005750600f548111155b610a435760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b8565b600e5481600054610a549190611eeb565b1115610a995760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b8565b6008546001600160a01b03163314610ac35760405162461bcd60e51b81526004016108b890611eb6565b61088983836114c4565b61088983838360405180602001604052806000815250610f8a565b6008546001600160a01b03163314610b125760405162461bcd60e51b81526004016108b890611eb6565b600d55565b6008546001600160a01b03163314610b415760405162461bcd60e51b81526004016108b890611eb6565b80516108d490600c906020840190611a2a565b600b8054610b6190611f79565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8d90611f79565b8015610bda5780601f10610baf57610100808354040283529160200191610bda565b820191906000526020600020905b815481529060010190602001808311610bbd57829003601f168201915b505050505081565b600a8054610b6190611f79565b6000610bfa826114de565b5192915050565b60006001600160a01b038216610c2a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c7a5760405162461bcd60e51b81526004016108b890611eb6565b610c8460006115fa565b565b6008546001600160a01b03163314610cb05760405162461bcd60e51b81526004016108b890611eb6565b80516108d490600a906020840190611a2a565b60606003805461073990611f79565b80600081118015610ce55750600f548111155b610d285760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b8565b600e5481600054610d399190611eeb565b1115610d7e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b8565b60125460ff1615610dd15760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108b8565b60105433600090815260116020526040902054610def908490611eeb565b1115610e335760405162461bcd60e51b815260206004820152601360248201527213585e081d1bdad95b9cc8195e18d959591959606a1b60448201526064016108b8565b81600d54610e419190611f17565b341015610e865760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108b8565b610e9033836114c4565b3360009081526011602052604081208054849290610eaf908490611eeb565b90915550505050565b6001600160a01b038216331415610ee25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610b6190611f79565b6008546001600160a01b03163314610f855760405162461bcd60e51b81526004016108b890611eb6565b600f55565b610f958484846112ae565b6001600160a01b0383163b15158015610fb75750610fb58484848461164c565b155b15610fd5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fe682611227565b61104b5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b60648201526084016108b8565b601254610100900460ff166110ec57600c805461106790611f79565b80601f016020809104026020016040519081016040528092919081815260200182805461109390611f79565b80156110e05780601f106110b5576101008083540402835291602001916110e0565b820191906000526020600020905b8154815290600101906020018083116110c357829003601f168201915b50505050509050919050565b60006110f6611744565b905060008151116111165760405180602001604052806000815250611144565b8061112084611753565b600b60405160200161113493929190611da2565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111755760405162461bcd60e51b81526004016108b890611eb6565b601280549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146111b95760405162461bcd60e51b81526004016108b890611eb6565b6001600160a01b03811661121e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b8565b6109ea816115fa565b6000805482108015610724575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112b9826114de565b80519091506000906001600160a01b0316336001600160a01b031614806112e7575081516112e7903361068a565b806113025750336112f7846107bc565b6001600160a01b0316145b90508061132257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146113575760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661137e57604051633a954ecd60e21b815260040160405180910390fd5b61138e6000848460000151611252565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661147a5760005481101561147a578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6108d4828260405180602001604052806000815250611851565b6040805160608101825260008082526020820181905291810191909152816000548110156115e157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115df5780516001600160a01b031615611575579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115da579392505050565b611575565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611681903390899088908890600401611e66565b602060405180830381600087803b15801561169b57600080fd5b505af19250505080156116cb575060408051601f3d908101601f191682019092526116c891810190611cf7565b60015b611726573d8080156116f9576040519150601f19603f3d011682016040523d82523d6000602084013e6116fe565b606091505b50805161171e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461073990611f79565b6060816117775750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117a1578061178b81611fb4565b915061179a9050600a83611f03565b915061177b565b60008167ffffffffffffffff8111156117bc576117bc612025565b6040519080825280601f01601f1916602001820160405280156117e6576020820181803683370190505b5090505b841561173c576117fb600183611f36565b9150611808600a86611fcf565b611813906030611eeb565b60f81b8183815181106118285761182861200f565b60200101906001600160f81b031916908160001a90535061184a600a86611f03565b94506117ea565b61088983838360016000546001600160a01b03851661188257604051622e076360e81b815260040160405180910390fd5b836118a05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561195257506001600160a01b0387163b15155b156119db575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119a3600088848060010195508861164c565b6119c0576040516368d2bf6b60e11b815260040160405180910390fd5b808214156119585782600054146119d657600080fd5b611a21565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156119dc575b506000556114bd565b828054611a3690611f79565b90600052602060002090601f016020900481019282611a585760008555611a9e565b82601f10611a7157805160ff1916838001178555611a9e565b82800160010185558215611a9e579182015b82811115611a9e578251825591602001919060010190611a83565b50611aaa929150611aae565b5090565b5b80821115611aaa5760008155600101611aaf565b600067ffffffffffffffff80841115611ade57611ade612025565b604051601f8501601f19908116603f01168101908282118183101715611b0657611b06612025565b81604052809350858152868686011115611b1f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b5057600080fd5b919050565b80358015158114611b5057600080fd5b600060208284031215611b7757600080fd5b61114482611b39565b60008060408385031215611b9357600080fd5b611b9c83611b39565b9150611baa60208401611b39565b90509250929050565b600080600060608486031215611bc857600080fd5b611bd184611b39565b9250611bdf60208501611b39565b9150604084013590509250925092565b60008060008060808587031215611c0557600080fd5b611c0e85611b39565b9350611c1c60208601611b39565b925060408501359150606085013567ffffffffffffffff811115611c3f57600080fd5b8501601f81018713611c5057600080fd5b611c5f87823560208401611ac3565b91505092959194509250565b60008060408385031215611c7e57600080fd5b611c8783611b39565b9150611baa60208401611b55565b60008060408385031215611ca857600080fd5b611cb183611b39565b946020939093013593505050565b600060208284031215611cd157600080fd5b61114482611b55565b600060208284031215611cec57600080fd5b81356111448161203b565b600060208284031215611d0957600080fd5b81516111448161203b565b600060208284031215611d2657600080fd5b813567ffffffffffffffff811115611d3d57600080fd5b8201601f81018413611d4e57600080fd5b61173c84823560208401611ac3565b600060208284031215611d6f57600080fd5b5035919050565b60008151808452611d8e816020860160208601611f4d565b601f01601f19169290920160200192915050565b600084516020611db58285838a01611f4d565b855191840191611dc88184848a01611f4d565b8554920191600090600181811c9080831680611de557607f831692505b858310811415611e0357634e487b7160e01b85526022600452602485fd5b808015611e175760018114611e2857611e55565b60ff19851688528388019550611e55565b60008b81526020902060005b85811015611e4d5781548a820152908401908801611e34565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e9990830184611d76565b9695505050505050565b6020815260006111446020830184611d76565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611efe57611efe611fe3565b500190565b600082611f1257611f12611ff9565b500490565b6000816000190483118215151615611f3157611f31611fe3565b500290565b600082821015611f4857611f48611fe3565b500390565b60005b83811015611f68578181015183820152602001611f50565b83811115610fd55750506000910152565b600181811c90821680611f8d57607f821691505b60208210811415611fae57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fc857611fc8611fe3565b5060010190565b600082611fde57611fde611ff9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ea57600080fdfea2646970667358221220cf3d26723793764205b7e90147d4bfe8c40739e8416484af584bbc4a0f96290664736f6c63430008070033697066733a2f2f516d5a586a44684b736e335954587669774445424450686a6f6e7976654c6148647070436b436174414e675152532f52657665616c2e6a736f6e
Deployed Bytecode
0x6080604052600436106102255760003560e01c806362b99ad411610123578063a22cb465116100ab578063c99f774f1161006f578063c99f774f1461060c578063d5abeb0114610639578063e0a808531461064f578063e985e9c51461066f578063f2fde38b146106b857600080fd5b8063a22cb46514610577578063a45ba8e714610597578063b071401b146105ac578063b88d4fde146105cc578063c87b56dd146105ec57600080fd5b80637ec4a659116100f25780637ec4a659146104fb5780638da5cb5b1461051b57806394354fd01461053957806395d89b411461054f578063a0712d681461056457600080fd5b806362b99ad4146104915780636352211e146104a657806370a08231146104c6578063715018a6146104e657600080fd5b806323b872dd116101b15780634fdd43cb116101755780634fdd43cb1461040d578063518302271461042d5780635503a0e81461044c5780635a1c1e98146104615780635c975abb1461047757600080fd5b806323b872dd146103785780633ccfd60b14610398578063408cbf94146103ad57806342842e0e146103cd57806344a0d68a146103ed57600080fd5b806313faede6116101f857806313faede6146102db57806316ba10e0146102ff57806316c38b3c1461031f5780631710872f1461033f57806318160ddd1461035f57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004611cda565b6106d8565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461072a565b6040516102569190611ea3565b34801561028d57600080fd5b506102a161029c366004611d5d565b6107bc565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004611c95565b610800565b005b3480156102e757600080fd5b506102f1600d5481565b604051908152602001610256565b34801561030b57600080fd5b506102d961031a366004611d14565b61088e565b34801561032b57600080fd5b506102d961033a366004611cbf565b6108d8565b34801561034b57600080fd5b506102d961035a366004611d5d565b610915565b34801561036b57600080fd5b50600154600054036102f1565b34801561038457600080fd5b506102d9610393366004611bb3565b610944565b3480156103a457600080fd5b506102d961094f565b3480156103b957600080fd5b506102d96103c8366004611c95565b6109ed565b3480156103d957600080fd5b506102d96103e8366004611bb3565b610acd565b3480156103f957600080fd5b506102d9610408366004611d5d565b610ae8565b34801561041957600080fd5b506102d9610428366004611d14565b610b17565b34801561043957600080fd5b5060125461024a90610100900460ff1681565b34801561045857600080fd5b50610274610b54565b34801561046d57600080fd5b506102f160105481565b34801561048357600080fd5b5060125461024a9060ff1681565b34801561049d57600080fd5b50610274610be2565b3480156104b257600080fd5b506102a16104c1366004611d5d565b610bef565b3480156104d257600080fd5b506102f16104e1366004611b65565b610c01565b3480156104f257600080fd5b506102d9610c50565b34801561050757600080fd5b506102d9610516366004611d14565b610c86565b34801561052757600080fd5b506008546001600160a01b03166102a1565b34801561054557600080fd5b506102f1600f5481565b34801561055b57600080fd5b50610274610cc3565b6102d9610572366004611d5d565b610cd2565b34801561058357600080fd5b506102d9610592366004611c6b565b610eb8565b3480156105a357600080fd5b50610274610f4e565b3480156105b857600080fd5b506102d96105c7366004611d5d565b610f5b565b3480156105d857600080fd5b506102d96105e7366004611bef565b610f8a565b3480156105f857600080fd5b50610274610607366004611d5d565b610fdb565b34801561061857600080fd5b506102f1610627366004611b65565b60116020526000908152604090205481565b34801561064557600080fd5b506102f1600e5481565b34801561065b57600080fd5b506102d961066a366004611cbf565b61114b565b34801561067b57600080fd5b5061024a61068a366004611b80565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106c457600080fd5b506102d96106d3366004611b65565b61118f565b60006001600160e01b031982166380ac58cd60e01b148061070957506001600160e01b03198216635b5e139f60e01b145b8061072457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461073990611f79565b80601f016020809104026020016040519081016040528092919081815260200182805461076590611f79565b80156107b25780601f10610787576101008083540402835291602001916107b2565b820191906000526020600020905b81548152906001019060200180831161079557829003601f168201915b5050505050905090565b60006107c782611227565b6107e4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061080b82610bef565b9050806001600160a01b0316836001600160a01b031614156108405760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610860575061085e813361068a565b155b1561087e576040516367d9dca160e11b815260040160405180910390fd5b610889838383611252565b505050565b6008546001600160a01b031633146108c15760405162461bcd60e51b81526004016108b890611eb6565b60405180910390fd5b80516108d490600b906020840190611a2a565b5050565b6008546001600160a01b031633146109025760405162461bcd60e51b81526004016108b890611eb6565b6012805460ff1916911515919091179055565b6008546001600160a01b0316331461093f5760405162461bcd60e51b81526004016108b890611eb6565b601055565b6108898383836112ae565b6008546001600160a01b031633146109795760405162461bcd60e51b81526004016108b890611eb6565b600061098d6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109d7576040519150601f19603f3d011682016040523d82523d6000602084013e6109dc565b606091505b50509050806109ea57600080fd5b50565b80600081118015610a005750600f548111155b610a435760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b8565b600e5481600054610a549190611eeb565b1115610a995760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b8565b6008546001600160a01b03163314610ac35760405162461bcd60e51b81526004016108b890611eb6565b61088983836114c4565b61088983838360405180602001604052806000815250610f8a565b6008546001600160a01b03163314610b125760405162461bcd60e51b81526004016108b890611eb6565b600d55565b6008546001600160a01b03163314610b415760405162461bcd60e51b81526004016108b890611eb6565b80516108d490600c906020840190611a2a565b600b8054610b6190611f79565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8d90611f79565b8015610bda5780601f10610baf57610100808354040283529160200191610bda565b820191906000526020600020905b815481529060010190602001808311610bbd57829003601f168201915b505050505081565b600a8054610b6190611f79565b6000610bfa826114de565b5192915050565b60006001600160a01b038216610c2a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c7a5760405162461bcd60e51b81526004016108b890611eb6565b610c8460006115fa565b565b6008546001600160a01b03163314610cb05760405162461bcd60e51b81526004016108b890611eb6565b80516108d490600a906020840190611a2a565b60606003805461073990611f79565b80600081118015610ce55750600f548111155b610d285760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108b8565b600e5481600054610d399190611eeb565b1115610d7e5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108b8565b60125460ff1615610dd15760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108b8565b60105433600090815260116020526040902054610def908490611eeb565b1115610e335760405162461bcd60e51b815260206004820152601360248201527213585e081d1bdad95b9cc8195e18d959591959606a1b60448201526064016108b8565b81600d54610e419190611f17565b341015610e865760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108b8565b610e9033836114c4565b3360009081526011602052604081208054849290610eaf908490611eeb565b90915550505050565b6001600160a01b038216331415610ee25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c8054610b6190611f79565b6008546001600160a01b03163314610f855760405162461bcd60e51b81526004016108b890611eb6565b600f55565b610f958484846112ae565b6001600160a01b0383163b15158015610fb75750610fb58484848461164c565b155b15610fd5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610fe682611227565b61104b5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b60648201526084016108b8565b601254610100900460ff166110ec57600c805461106790611f79565b80601f016020809104026020016040519081016040528092919081815260200182805461109390611f79565b80156110e05780601f106110b5576101008083540402835291602001916110e0565b820191906000526020600020905b8154815290600101906020018083116110c357829003601f168201915b50505050509050919050565b60006110f6611744565b905060008151116111165760405180602001604052806000815250611144565b8061112084611753565b600b60405160200161113493929190611da2565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111755760405162461bcd60e51b81526004016108b890611eb6565b601280549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146111b95760405162461bcd60e51b81526004016108b890611eb6565b6001600160a01b03811661121e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b8565b6109ea816115fa565b6000805482108015610724575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112b9826114de565b80519091506000906001600160a01b0316336001600160a01b031614806112e7575081516112e7903361068a565b806113025750336112f7846107bc565b6001600160a01b0316145b90508061132257604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146113575760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661137e57604051633a954ecd60e21b815260040160405180910390fd5b61138e6000848460000151611252565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661147a5760005481101561147a578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6108d4828260405180602001604052806000815250611851565b6040805160608101825260008082526020820181905291810191909152816000548110156115e157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115df5780516001600160a01b031615611575579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115da579392505050565b611575565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611681903390899088908890600401611e66565b602060405180830381600087803b15801561169b57600080fd5b505af19250505080156116cb575060408051601f3d908101601f191682019092526116c891810190611cf7565b60015b611726573d8080156116f9576040519150601f19603f3d011682016040523d82523d6000602084013e6116fe565b606091505b50805161171e576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461073990611f79565b6060816117775750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117a1578061178b81611fb4565b915061179a9050600a83611f03565b915061177b565b60008167ffffffffffffffff8111156117bc576117bc612025565b6040519080825280601f01601f1916602001820160405280156117e6576020820181803683370190505b5090505b841561173c576117fb600183611f36565b9150611808600a86611fcf565b611813906030611eeb565b60f81b8183815181106118285761182861200f565b60200101906001600160f81b031916908160001a90535061184a600a86611f03565b94506117ea565b61088983838360016000546001600160a01b03851661188257604051622e076360e81b815260040160405180910390fd5b836118a05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561195257506001600160a01b0387163b15155b156119db575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119a3600088848060010195508861164c565b6119c0576040516368d2bf6b60e11b815260040160405180910390fd5b808214156119585782600054146119d657600080fd5b611a21565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156119dc575b506000556114bd565b828054611a3690611f79565b90600052602060002090601f016020900481019282611a585760008555611a9e565b82601f10611a7157805160ff1916838001178555611a9e565b82800160010185558215611a9e579182015b82811115611a9e578251825591602001919060010190611a83565b50611aaa929150611aae565b5090565b5b80821115611aaa5760008155600101611aaf565b600067ffffffffffffffff80841115611ade57611ade612025565b604051601f8501601f19908116603f01168101908282118183101715611b0657611b06612025565b81604052809350858152868686011115611b1f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b5057600080fd5b919050565b80358015158114611b5057600080fd5b600060208284031215611b7757600080fd5b61114482611b39565b60008060408385031215611b9357600080fd5b611b9c83611b39565b9150611baa60208401611b39565b90509250929050565b600080600060608486031215611bc857600080fd5b611bd184611b39565b9250611bdf60208501611b39565b9150604084013590509250925092565b60008060008060808587031215611c0557600080fd5b611c0e85611b39565b9350611c1c60208601611b39565b925060408501359150606085013567ffffffffffffffff811115611c3f57600080fd5b8501601f81018713611c5057600080fd5b611c5f87823560208401611ac3565b91505092959194509250565b60008060408385031215611c7e57600080fd5b611c8783611b39565b9150611baa60208401611b55565b60008060408385031215611ca857600080fd5b611cb183611b39565b946020939093013593505050565b600060208284031215611cd157600080fd5b61114482611b55565b600060208284031215611cec57600080fd5b81356111448161203b565b600060208284031215611d0957600080fd5b81516111448161203b565b600060208284031215611d2657600080fd5b813567ffffffffffffffff811115611d3d57600080fd5b8201601f81018413611d4e57600080fd5b61173c84823560208401611ac3565b600060208284031215611d6f57600080fd5b5035919050565b60008151808452611d8e816020860160208601611f4d565b601f01601f19169290920160200192915050565b600084516020611db58285838a01611f4d565b855191840191611dc88184848a01611f4d565b8554920191600090600181811c9080831680611de557607f831692505b858310811415611e0357634e487b7160e01b85526022600452602485fd5b808015611e175760018114611e2857611e55565b60ff19851688528388019550611e55565b60008b81526020902060005b85811015611e4d5781548a820152908401908801611e34565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e9990830184611d76565b9695505050505050565b6020815260006111446020830184611d76565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611efe57611efe611fe3565b500190565b600082611f1257611f12611ff9565b500490565b6000816000190483118215151615611f3157611f31611fe3565b500290565b600082821015611f4857611f48611fe3565b500390565b60005b83811015611f68578181015183820152602001611f50565b83811115610fd55750506000910152565b600181811c90821680611f8d57607f821691505b60208210811415611fae57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fc857611fc8611fe3565b5060010190565b600082611fde57611fde611ff9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109ea57600080fdfea2646970667358221220cf3d26723793764205b7e90147d4bfe8c40739e8416484af584bbc4a0f96290664736f6c63430008070033
Deployed Bytecode Sourcemap
48561:3088:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31026:305;;;;;;;;;;-1:-1:-1;31026:305:0;;;;;:::i;:::-;;:::i;:::-;;;7170:14:1;;7163:22;7145:41;;7133:2;7118:18;31026:305:0;;;;;;;;34411:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35914:204::-;;;;;;;;;;-1:-1:-1;35914:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;35914:204:0;6304:203:1;35477:371:0;;;;;;;;;;-1:-1:-1;35477:371:0;;;;;:::i;:::-;;:::i;:::-;;48762:32;;;;;;;;;;;;;;;;;;;10498:25:1;;;10486:2;10471:18;48762:32:0;10352:177:1;51181:100:0;;;;;;;;;;-1:-1:-1;51181:100:0;;;;;:::i;:::-;;:::i;51287:77::-;;;;;;;;;;-1:-1:-1;51287:77:0;;;;;:::i;:::-;;:::i;50779:152::-;;;;;;;;;;-1:-1:-1;50779:152:0;;;;;:::i;:::-;;:::i;30275:303::-;;;;;;;;;;-1:-1:-1;30529:12:0;;30319:7;30513:13;:28;30275:303;;36771:170;;;;;;;;;;-1:-1:-1;36771:170:0;;;;;:::i;:::-;;:::i;51394:137::-;;;;;;;;;;;;;:::i;49852:144::-;;;;;;;;;;-1:-1:-1;49852:144:0;;;;;:::i;:::-;;:::i;37012:185::-;;;;;;;;;;-1:-1:-1;37012:185:0;;;;;:::i;:::-;;:::i;50563:74::-;;;;;;;;;;-1:-1:-1;50563:74:0;;;;;:::i;:::-;;:::i;50937:132::-;;;;;;;;;;-1:-1:-1;50937:132:0;;;;;:::i;:::-;;:::i;49020:28::-;;;;;;;;;;-1:-1:-1;49020:28:0;;;;;;;;;;;48684:33;;;;;;;;;;;;;:::i;48879:43::-;;;;;;;;;;;;;;;;48989:26;;;;;;;;;;-1:-1:-1;48989:26:0;;;;;;;;48651:28;;;;;;;;;;;;;:::i;34220:124::-;;;;;;;;;;-1:-1:-1;34220:124:0;;;;;:::i;:::-;;:::i;31395:206::-;;;;;;;;;;-1:-1:-1;31395:206:0;;;;;:::i;:::-;;:::i;7524:103::-;;;;;;;;;;;;;:::i;51075:100::-;;;;;;;;;;-1:-1:-1;51075:100:0;;;;;:::i;:::-;;:::i;6873:87::-;;;;;;;;;;-1:-1:-1;6946:6:0;;-1:-1:-1;;;;;6946:6:0;6873:87;;48835:39;;;;;;;;;;;;;;;;34580:104;;;;;;;;;;;;;:::i;49442:404::-;;;;;;:::i;:::-;;:::i;36190:279::-;;;;;;;;;;-1:-1:-1;36190:279:0;;;;;:::i;:::-;;:::i;48722:31::-;;;;;;;;;;;;;:::i;50643:130::-;;;;;;;;;;-1:-1:-1;50643:130:0;;;;;:::i;:::-;;:::i;37268:369::-;;;;;;;;;;-1:-1:-1;37268:369:0;;;;;:::i;:::-;;:::i;50004:466::-;;;;;;;;;;-1:-1:-1;50004:466:0;;;;;:::i;:::-;;:::i;48927:53::-;;;;;;;;;;-1:-1:-1;48927:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;48799:31;;;;;;;;;;;;;;;;50476:81;;;;;;;;;;-1:-1:-1;50476:81:0;;;;;:::i;:::-;;:::i;36540:164::-;;;;;;;;;;-1:-1:-1;36540:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;36661:25:0;;;36637:4;36661:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36540:164;7782:201;;;;;;;;;;-1:-1:-1;7782:201:0;;;;;:::i;:::-;;:::i;31026:305::-;31128:4;-1:-1:-1;;;;;;31165:40:0;;-1:-1:-1;;;31165:40:0;;:105;;-1:-1:-1;;;;;;;31222:48:0;;-1:-1:-1;;;31222:48:0;31165:105;:158;;;-1:-1:-1;;;;;;;;;;19766:40:0;;;31287:36;31145:178;31026:305;-1:-1:-1;;31026:305:0:o;34411:100::-;34465:13;34498:5;34491:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34411:100;:::o;35914:204::-;35982:7;36007:16;36015:7;36007;:16::i;:::-;36002:64;;36032:34;;-1:-1:-1;;;36032:34:0;;;;;;;;;;;36002:64;-1:-1:-1;36086:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36086:24:0;;35914:204::o;35477:371::-;35550:13;35566:24;35582:7;35566:15;:24::i;:::-;35550:40;;35611:5;-1:-1:-1;;;;;35605:11:0;:2;-1:-1:-1;;;;;35605:11:0;;35601:48;;;35625:24;;-1:-1:-1;;;35625:24:0;;;;;;;;;;;35601:48;5677:10;-1:-1:-1;;;;;35666:21:0;;;;;;:63;;-1:-1:-1;35692:37:0;35709:5;5677:10;36540:164;:::i;35692:37::-;35691:38;35666:63;35662:138;;;35753:35;;-1:-1:-1;;;35753:35:0;;;;;;;;;;;35662:138;35812:28;35821:2;35825:7;35834:5;35812:8;:28::i;:::-;35539:309;35477:371;;:::o;51181:100::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;;;;;;;;;51253:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51181:100:::0;:::o;51287:77::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;51343:6:::1;:15:::0;;-1:-1:-1;;51343:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51287:77::o;50779:152::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;50874:22:::1;:51:::0;50779:152::o;36771:170::-;36905:28;36915:4;36921:2;36925:7;36905:9;:28::i;51394:137::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;51439:7:::1;51460;6946:6:::0;;-1:-1:-1;;;;;6946:6:0;;6873:87;51460:7:::1;-1:-1:-1::0;;;;;51452:21:0::1;51481;51452:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51438:69;;;51522:2;51514:11;;;::::0;::::1;;51431:100;51394:137::o:0;49852:144::-;49927:11;49279:1;49265:11;:15;:52;;;;;49299:18;;49284:11;:33;;49265:52;49257:85;;;;-1:-1:-1;;;49257:85:0;;8447:2:1;49257:85:0;;;8429:21:1;8486:2;8466:18;;;8459:30;-1:-1:-1;;;8505:18:1;;;8498:50;8565:18;;49257:85:0;8245:344:1;49257:85:0;49388:9;;49373:11;49357:13;;:27;;;;:::i;:::-;:40;;49349:73;;;;-1:-1:-1;;;49349:73:0;;9857:2:1;49349:73:0;;;9839:21:1;9896:2;9876:18;;;9869:30;-1:-1:-1;;;9915:18:1;;;9908:50;9975:18;;49349:73:0;9655:344:1;49349:73:0;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23:::1;7085:68;;;;-1:-1:-1::0;;;7085:68:0::1;;;;;;;:::i;:::-;49961:27:::2;49971:3;49976:11;49961:9;:27::i;37012:185::-:0;37150:39;37167:4;37173:2;37177:7;37150:39;;;;;;;;;;;;:16;:39::i;50563:74::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;50619:4:::1;:12:::0;50563:74::o;50937:132::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;51025:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;48684:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48651:28::-;;;;;;;:::i;34220:124::-;34284:7;34311:20;34323:7;34311:11;:20::i;:::-;:25;;34220:124;-1:-1:-1;;34220:124:0:o;31395:206::-;31459:7;-1:-1:-1;;;;;31483:19:0;;31479:60;;31511:28;;-1:-1:-1;;;31511:28:0;;;;;;;;;;;31479:60;-1:-1:-1;;;;;;31565:19:0;;;;;:12;:19;;;;;:27;;;;31395:206::o;7524:103::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;7589:30:::1;7616:1;7589:18;:30::i;:::-;7524:103::o:0;51075:100::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;51147:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;34580:104::-:0;34636:13;34669:7;34662:14;;;;;:::i;49442:404::-;49507:11;49279:1;49265:11;:15;:52;;;;;49299:18;;49284:11;:33;;49265:52;49257:85;;;;-1:-1:-1;;;49257:85:0;;8447:2:1;49257:85:0;;;8429:21:1;8486:2;8466:18;;;8459:30;-1:-1:-1;;;8505:18:1;;;8498:50;8565:18;;49257:85:0;8245:344:1;49257:85:0;49388:9;;49373:11;49357:13;;:27;;;;:::i;:::-;:40;;49349:73;;;;-1:-1:-1;;;49349:73:0;;9857:2:1;49349:73:0;;;9839:21:1;9896:2;9876:18;;;9869:30;-1:-1:-1;;;9915:18:1;;;9908:50;9975:18;;49349:73:0;9655:344:1;49349:73:0;49536:6:::1;::::0;::::1;;49535:7;49527:43;;;::::0;-1:-1:-1;;;49527:43:0;;9505:2:1;49527:43:0::1;::::0;::::1;9487:21:1::0;9544:2;9524:18;;;9517:30;9583:25;9563:18;;;9556:53;9626:18;;49527:43:0::1;9303:347:1::0;49527:43:0::1;49632:22;::::0;49603:10:::1;49585:29;::::0;;;:17:::1;:29;::::0;;;;;:43:::1;::::0;49617:11;;49585:43:::1;:::i;:::-;:69;;49577:101;;;::::0;-1:-1:-1;;;49577:101:0;;8796:2:1;49577:101:0::1;::::0;::::1;8778:21:1::0;8835:2;8815:18;;;8808:30;-1:-1:-1;;;8854:18:1;;;8847:49;8913:18;;49577:101:0::1;8594:343:1::0;49577:101:0::1;49713:11;49706:4;;:18;;;;:::i;:::-;49693:9;:31;;49685:63;;;::::0;-1:-1:-1;;;49685:63:0;;10206:2:1;49685:63:0::1;::::0;::::1;10188:21:1::0;10245:2;10225:18;;;10218:30;-1:-1:-1;;;10264:18:1;;;10257:49;10323:18;;49685:63:0::1;10004:343:1::0;49685:63:0::1;49755:34;49765:10;49777:11;49755:9;:34::i;:::-;49814:10;49796:29;::::0;;;:17:::1;:29;::::0;;;;:44;;49829:11;;49796:29;:44:::1;::::0;49829:11;;49796:44:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;49442:404:0:o;36190:279::-;-1:-1:-1;;;;;36281:24:0;;5677:10;36281:24;36277:54;;;36314:17;;-1:-1:-1;;;36314:17:0;;;;;;;;;;;36277:54;5677:10;36344:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36344:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36344:53:0;;;;;;;;;;36413:48;;7145:41:1;;;36344:42:0;;5677:10;36413:48;;7118:18:1;36413:48:0;;;;;;;36190:279;;:::o;48722:31::-;;;;;;;:::i;50643:130::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;50727:18:::1;:40:::0;50643:130::o;37268:369::-;37435:28;37445:4;37451:2;37455:7;37435:9;:28::i;:::-;-1:-1:-1;;;;;37478:13:0;;9869:19;:23;;37478:76;;;;;37498:56;37529:4;37535:2;37539:7;37548:5;37498:30;:56::i;:::-;37497:57;37478:76;37474:156;;;37578:40;;-1:-1:-1;;;37578:40:0;;;;;;;;;;;37474:156;37268:369;;;;:::o;50004:466::-;50078:13;50115:17;50123:8;50115:7;:17::i;:::-;50099:99;;;;-1:-1:-1;;;50099:99:0;;7623:2:1;50099:99:0;;;7605:21:1;7662:2;7642:18;;;7635:30;7701:34;7681:18;;;7674:62;-1:-1:-1;;;7752:18:1;;;7745:46;7808:19;;50099:99:0;7421:412:1;50099:99:0;50211:8;;;;;;;50207:64;;50246:17;50239:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50004:466;;;:::o;50207:64::-;50279:28;50310:10;:8;:10::i;:::-;50279:41;;50365:1;50340:14;50334:28;:32;:130;;;;;;;;;;;;;;;;;50402:14;50418:19;:8;:17;:19::i;:::-;50439:9;50385:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50334:130;50327:137;50004:466;-1:-1:-1;;;50004:466:0:o;50476:81::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;50534:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;50534:17:0;;::::1;::::0;;;::::1;::::0;;50476:81::o;7782:201::-;6946:6;;-1:-1:-1;;;;;6946:6:0;5677:10;7093:23;7085:68;;;;-1:-1:-1;;;7085:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7871:22:0;::::1;7863:73;;;::::0;-1:-1:-1;;;7863:73:0;;8040:2:1;7863:73:0::1;::::0;::::1;8022:21:1::0;8079:2;8059:18;;;8052:30;8118:34;8098:18;;;8091:62;-1:-1:-1;;;8169:18:1;;;8162:36;8215:19;;7863:73:0::1;7838:402:1::0;7863:73:0::1;7947:28;7966:8;7947:18;:28::i;37892:187::-:0;37949:4;38013:13;;38003:7;:23;37973:98;;;;-1:-1:-1;;38044:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;38044:27:0;;;;38043:28;;37892:187::o;45503:196::-;45618:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45618:29:0;-1:-1:-1;;;;;45618:29:0;;;;;;;;;45663:28;;45618:24;;45663:28;;;;;;;45503:196;;;:::o;41005:2112::-;41120:35;41158:20;41170:7;41158:11;:20::i;:::-;41233:18;;41120:58;;-1:-1:-1;41191:22:0;;-1:-1:-1;;;;;41217:34:0;5677:10;-1:-1:-1;;;;;41217:34:0;;:101;;;-1:-1:-1;41285:18:0;;41268:50;;5677:10;36540:164;:::i;41268:50::-;41217:154;;;-1:-1:-1;5677:10:0;41335:20;41347:7;41335:11;:20::i;:::-;-1:-1:-1;;;;;41335:36:0;;41217:154;41191:181;;41390:17;41385:66;;41416:35;;-1:-1:-1;;;41416:35:0;;;;;;;;;;;41385:66;41488:4;-1:-1:-1;;;;;41466:26:0;:13;:18;;;-1:-1:-1;;;;;41466:26:0;;41462:67;;41501:28;;-1:-1:-1;;;41501:28:0;;;;;;;;;;;41462:67;-1:-1:-1;;;;;41544:16:0;;41540:52;;41569:23;;-1:-1:-1;;;41569:23:0;;;;;;;;;;;41540:52;41713:49;41730:1;41734:7;41743:13;:18;;;41713:8;:49::i;:::-;-1:-1:-1;;;;;42058:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42058:31:0;;;;;;;-1:-1:-1;;42058:31:0;;;;;;;42104:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42104:29:0;;;;;;;;;;;42150:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;42195:61:0;;;;-1:-1:-1;;;42240:15:0;42195:61;;;;;;;;;;;42530:11;;;42560:24;;;;;:29;42530:11;;42560:29;42556:445;;42785:13;;42771:11;:27;42767:219;;;42855:18;;;42823:24;;;:11;:24;;;;;;;;:50;;42938:28;;;;42896:70;;-1:-1:-1;;;42896:70:0;-1:-1:-1;;;;;;42896:70:0;;;-1:-1:-1;;;;;42823:50:0;;;42896:70;;;;;;;42767:219;42033:979;43048:7;43044:2;-1:-1:-1;;;;;43029:27:0;43038:4;-1:-1:-1;;;;;43029:27:0;;;;;;;;;;;43067:42;41109:2008;;41005:2112;;;:::o;38087:104::-;38156:27;38166:2;38170:8;38156:27;;;;;;;;;;;;:9;:27::i;33050:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;33160:7:0;33243:13;;33236:4;:20;33205:886;;;33277:31;33311:17;;;:11;:17;;;;;;;;;33277:51;;;;;;;;;-1:-1:-1;;;;;33277:51:0;;;;-1:-1:-1;;;33277:51:0;;;;;;;;;;;-1:-1:-1;;;33277:51:0;;;;;;;;;;;;;;33347:729;;33397:14;;-1:-1:-1;;;;;33397:28:0;;33393:101;;33461:9;33050:1108;-1:-1:-1;;;33050:1108:0:o;33393:101::-;-1:-1:-1;;;33836:6:0;33881:17;;;;:11;:17;;;;;;;;;33869:29;;;;;;;;;-1:-1:-1;;;;;33869:29:0;;;;;-1:-1:-1;;;33869:29:0;;;;;;;;;;;-1:-1:-1;;;33869:29:0;;;;;;;;;;;;;33929:28;33925:109;;33997:9;33050:1108;-1:-1:-1;;;33050:1108:0:o;33925:109::-;33796:261;;;33258:833;33205:886;34119:31;;-1:-1:-1;;;34119:31:0;;;;;;;;;;;8143:191;8236:6;;;-1:-1:-1;;;;;8253:17:0;;;-1:-1:-1;;;;;;8253:17:0;;;;;;;8286:40;;8236:6;;;8253:17;8236:6;;8286:40;;8217:16;;8286:40;8206:128;8143:191;:::o;46191:667::-;46375:72;;-1:-1:-1;;;46375:72:0;;46354:4;;-1:-1:-1;;;;;46375:36:0;;;;;:72;;5677:10;;46426:4;;46432:7;;46441:5;;46375:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46375:72:0;;;;;;;;-1:-1:-1;;46375:72:0;;;;;;;;;;;;:::i;:::-;;;46371:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46609:13:0;;46605:235;;46655:40;;-1:-1:-1;;;46655:40:0;;;;;;;;;;;46605:235;46798:6;46792:13;46783:6;46779:2;46775:15;46768:38;46371:480;-1:-1:-1;;;;;;46494:55:0;-1:-1:-1;;;46494:55:0;;-1:-1:-1;46371:480:0;46191:667;;;;;;:::o;51542:104::-;51602:13;51631:9;51624:16;;;;;:::i;3159:723::-;3215:13;3436:10;3432:53;;-1:-1:-1;;3463:10:0;;;;;;;;;;;;-1:-1:-1;;;3463:10:0;;;;;3159:723::o;3432:53::-;3510:5;3495:12;3551:78;3558:9;;3551:78;;3584:8;;;;:::i;:::-;;-1:-1:-1;3607:10:0;;-1:-1:-1;3615:2:0;3607:10;;:::i;:::-;;;3551:78;;;3639:19;3671:6;3661:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3661:17:0;;3639:39;;3689:154;3696:10;;3689:154;;3723:11;3733:1;3723:11;;:::i;:::-;;-1:-1:-1;3792:10:0;3800:2;3792:5;:10;:::i;:::-;3779:24;;:2;:24;:::i;:::-;3766:39;;3749:6;3756;3749:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3749:56:0;;;;;;;;-1:-1:-1;3820:11:0;3829:2;3820:11;;:::i;:::-;;;3689:154;;38554:163;38677:32;38683:2;38687:8;38697:5;38704:4;39115:20;39138:13;-1:-1:-1;;;;;39166:16:0;;39162:48;;39191:19;;-1:-1:-1;;;39191:19:0;;;;;;;;;;;39162:48;39225:13;39221:44;;39247:18;;-1:-1:-1;;;39247:18:0;;;;;;;;;;;39221:44;-1:-1:-1;;;;;39616:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;39675:49:0;;39616:44;;;;;;;;39675:49;;;;-1:-1:-1;;39616:44:0;;;;;;39675:49;;;;;;;;;;;;;;;;39741:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;39791:66:0;;;;-1:-1:-1;;;39841:15:0;39791:66;;;;;;;;;;39741:25;39938:23;;;39982:4;:23;;;;-1:-1:-1;;;;;;39990:13:0;;9869:19;:23;;39990:15;39978:641;;;40026:314;40057:38;;40082:12;;-1:-1:-1;;;;;40057:38:0;;;40074:1;;40057:38;;40074:1;;40057:38;40123:69;40162:1;40166:2;40170:14;;;;;;40186:5;40123:30;:69::i;:::-;40118:174;;40228:40;;-1:-1:-1;;;40228:40:0;;;;;;;;;;;40118:174;40335:3;40319:12;:19;;40026:314;;40421:12;40404:13;;:29;40400:43;;40435:8;;;40400:43;39978:641;;;40484:120;40515:40;;40540:14;;;;;-1:-1:-1;;;;;40515:40:0;;;40532:1;;40515:40;;40532:1;;40515:40;40599:3;40583:12;:19;;40484:120;;39978:641;-1:-1:-1;40633:13:0;:28;40683:60;37268:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;10607:1;10600:14;;;10644:4;10631:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7197:219::-;7346:2;7335:9;7328:21;7309:4;7366:44;7406:2;7395:9;7391:18;7383:6;7366:44;:::i;8942:356::-;9144:2;9126:21;;;9163:18;;;9156:30;9222:34;9217:2;9202:18;;9195:62;9289:2;9274:18;;8942:356::o;10660:128::-;10700:3;10731:1;10727:6;10724:1;10721:13;10718:39;;;10737:18;;:::i;:::-;-1:-1:-1;10773:9:1;;10660:128::o;10793:120::-;10833:1;10859;10849:35;;10864:18;;:::i;:::-;-1:-1:-1;10898:9:1;;10793:120::o;10918:168::-;10958:7;11024:1;11020;11016:6;11012:14;11009:1;11006:21;11001:1;10994:9;10987:17;10983:45;10980:71;;;11031:18;;:::i;:::-;-1:-1:-1;11071:9:1;;10918:168::o;11091:125::-;11131:4;11159:1;11156;11153:8;11150:34;;;11164:18;;:::i;:::-;-1:-1:-1;11201:9:1;;11091:125::o;11221:258::-;11293:1;11303:113;11317:6;11314:1;11311:13;11303:113;;;11393:11;;;11387:18;11374:11;;;11367:39;11339:2;11332:10;11303:113;;;11434:6;11431:1;11428:13;11425:48;;;-1:-1:-1;;11469:1:1;11451:16;;11444:27;11221:258::o;11484:380::-;11563:1;11559:12;;;;11606;;;11627:61;;11681:4;11673:6;11669:17;11659:27;;11627:61;11734:2;11726:6;11723:14;11703:18;11700:38;11697:161;;;11780:10;11775:3;11771:20;11768:1;11761:31;11815:4;11812:1;11805:15;11843:4;11840:1;11833:15;11697:161;;11484:380;;;:::o;11869:135::-;11908:3;-1:-1:-1;;11929:17:1;;11926:43;;;11949:18;;:::i;:::-;-1:-1:-1;11996:1:1;11985:13;;11869:135::o;12009:112::-;12041:1;12067;12057:35;;12072:18;;:::i;:::-;-1:-1:-1;12106:9:1;;12009:112::o;12126:127::-;12187:10;12182:3;12178:20;12175:1;12168:31;12218:4;12215:1;12208:15;12242:4;12239:1;12232:15;12258:127;12319:10;12314:3;12310:20;12307:1;12300:31;12350:4;12347:1;12340:15;12374:4;12371:1;12364:15;12390:127;12451:10;12446:3;12442:20;12439:1;12432:31;12482:4;12479:1;12472:15;12506:4;12503:1;12496:15;12522:127;12583:10;12578:3;12574:20;12571:1;12564:31;12614:4;12611:1;12604:15;12638:4;12635:1;12628:15;12654:131;-1:-1:-1;;;;;;12728:32:1;;12718:43;;12708:71;;12775:1;12772;12765:12
Swarm Source
ipfs://cf3d26723793764205b7e90147d4bfe8c40739e8416484af584bbc4a0f962906
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.