ERC-721
Overview
Max Total Supply
7,983 CryptoHobos
Holders
2,754
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 CryptoHobosLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoHobos
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-17 */ // SPDX-License-Identifier: MIT // Sources flattened with hardhat v2.6.4 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/access/[email protected] 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/security/[email protected] 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 make 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/math/[email protected] pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File contracts/Crypto Hobos.sol pragma solidity ^0.8.7; contract CryptoHobos is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard { using SafeMath for uint256; using Strings for string; string private _baseUriString; bool public hasStarted = false; uint256 public maxTokens = 8000; uint256 public lastTokenId; uint256 public reservedTokensLeft = 100; uint256 public currentTokenPrice = 49000000000000000; //0.049E uint256 public constant MAX_MINTING_TOKENS_ON_TRANSACTION = 25; constructor(string memory baseUriString) ERC721("Crypto Hobos", "CryptoHobos") { setBaseUri(baseUriString); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function setBaseUri(string memory baseUriString) public onlyOwner { _baseUriString = baseUriString; } function _baseURI() internal view override returns (string memory) { return _baseUriString; } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { string memory _tokenURI = super.tokenURI(tokenId); return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : ""; } function _mintHobos(address to, uint256 count) private { uint256 _lastTokenId = lastTokenId; for (uint256 i = 0; i < count; i++) { _lastTokenId++; _safeMint(to, _lastTokenId); } lastTokenId = _lastTokenId; } function tokensOfOwner(address _owner) external view returns(uint256[] memory ) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } function mintReservedHoboTo(address to, uint256 count) public onlyOwner { if (to == address(0)) { to = msg.sender; } require(count > 0 && count <= reservedTokensLeft ); _mintHobos(to, count); reservedTokensLeft -= count; } function mintHobo(uint256 count) external payable nonReentrant { require(hasStarted == true && count > 0 && count <= MAX_MINTING_TOKENS_ON_TRANSACTION && totalSupply().add(count) <= maxTokens.sub(reservedTokensLeft) && msg.value >= currentTokenPrice.mul(count), "Mint is impossible now"); _mintHobos(msg.sender, count); } function pause() public onlyOwner { require(hasStarted == true); hasStarted = false; } function play() public onlyOwner { require(hasStarted == false); hasStarted = true; } function withdrawTo(address to, uint256 amount) public payable onlyOwner { if (to == address(0)) { to = msg.sender; } if (amount == 0) { amount = address(this).balance; } require(payable(to).send(amount)); } function withdraw(uint256 amount) public payable onlyOwner { if (amount == 0) { amount = address(this).balance; } require(payable(owner()).send(amount)); } function setPrice(uint256 price) public onlyOwner { currentTokenPrice = price; } function reduceSupply(uint256 supply) public onlyOwner { require(supply < maxTokens && supply > lastTokenId.add(reservedTokensLeft)); maxTokens = supply; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseUriString","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTING_TOKENS_ON_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenPrice","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":"hasStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintHobo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintReservedHoboTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"play","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTokensLeft","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUriString","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052600d805460ff19169055611f40600e55606460105566ae153d89fe80006011553480156200003157600080fd5b506040516200276a3803806200276a833981016040819052620000549162000269565b604080518082018252600c81526b43727970746f20486f626f7360a01b60208083019182528351808501909452600b84526a43727970746f486f626f7360a81b908401528151919291620000ab91600091620001c3565b508051620000c1906001906020840190620001c3565b505050620000de620000d8620000f560201b60201c565b620000f9565b6001600b55620000ee816200014b565b5062000398565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001aa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001bf90600c906020840190620001c3565b5050565b828054620001d19062000345565b90600052602060002090601f016020900481019282620001f5576000855562000240565b82601f106200021057805160ff191683800117855562000240565b8280016001018555821562000240579182015b828111156200024057825182559160200191906001019062000223565b506200024e92915062000252565b5090565b5b808211156200024e576000815560010162000253565b600060208083850312156200027d57600080fd5b82516001600160401b03808211156200029557600080fd5b818501915085601f830112620002aa57600080fd5b815181811115620002bf57620002bf62000382565b604051601f8201601f19908116603f01168101908382118183101715620002ea57620002ea62000382565b8160405282815288868487010111156200030357600080fd5b600093505b8284101562000327578484018601518185018701529285019262000308565b82841115620003395760008684830101525b98975050505050505050565b600181811c908216806200035a57607f821691505b602082108114156200037c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6123c280620003a86000396000f3fe6080604052600436106102045760003560e01c8063715018a61161011857806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd1461058c578063e8315742146105ac578063e985e9c5146105c2578063f2fde38b1461060b578063f84ddf0b1461062b57600080fd5b806395d89b4114610517578063a0bcfc7f1461052c578063a22cb4651461054c578063b88d4fde1461056c57600080fd5b80638456cb59116100e75780638456cb59146104825780638462151c146104975780638da5cb5b146104c457806391b7f5ed146104e257806393e84cd91461050257600080fd5b8063715018a61461042157806371b3659e14610436578063806234441461044c57806383033ac11461046c57600080fd5b80632e1a7d4d1161019b5780634f6ccce71161016a5780634f6ccce71461038c57806351b03054146103ac578063551358a7146103c15780636352211e146103e157806370a082311461040157600080fd5b80632e1a7d4d1461031f5780632f745c591461033257806342842e0e1461035257806344691f7e1461037257600080fd5b8063095ea7b3116101d7578063095ea7b3146102ad57806318160ddd146102cd578063205c2878146102ec57806323b872dd146102ff57600080fd5b806301ffc9a71461020957806306fdde031461023e57806307957fbe14610260578063081812fc14610275575b600080fd5b34801561021557600080fd5b50610229610224366004611f8a565b610641565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610652565b604051610235919061212b565b61027361026e36600461200d565b6106e4565b005b34801561028157600080fd5b5061029561029036600461200d565b610800565b6040516001600160a01b039091168152602001610235565b3480156102b957600080fd5b506102736102c8366004611f60565b610895565b3480156102d957600080fd5b506008545b604051908152602001610235565b6102736102fa366004611f60565b6109ab565b34801561030b57600080fd5b5061027361031a366004611e6c565b610a21565b61027361032d36600461200d565b610a52565b34801561033e57600080fd5b506102de61034d366004611f60565b610ab9565b34801561035e57600080fd5b5061027361036d366004611e6c565b610b4f565b34801561037e57600080fd5b50600d546102299060ff1681565b34801561039857600080fd5b506102de6103a736600461200d565b610b6a565b3480156103b857600080fd5b506102de601981565b3480156103cd57600080fd5b506102736103dc366004611f60565b610bfd565b3480156103ed57600080fd5b506102956103fc36600461200d565b610c79565b34801561040d57600080fd5b506102de61041c366004611e1e565b610cf0565b34801561042d57600080fd5b50610273610d77565b34801561044257600080fd5b506102de60115481565b34801561045857600080fd5b5061027361046736600461200d565b610dad565b34801561047857600080fd5b506102de60105481565b34801561048e57600080fd5b50610273610e03565b3480156104a357600080fd5b506104b76104b2366004611e1e565b610e4d565b60405161023591906120e7565b3480156104d057600080fd5b50600a546001600160a01b0316610295565b3480156104ee57600080fd5b506102736104fd36600461200d565b610f0c565b34801561050e57600080fd5b50610273610f3b565b34801561052357600080fd5b50610253610f84565b34801561053857600080fd5b50610273610547366004611fc4565b610f93565b34801561055857600080fd5b50610273610567366004611f24565b610fd0565b34801561057857600080fd5b50610273610587366004611ea8565b611095565b34801561059857600080fd5b506102536105a736600461200d565b6110cd565b3480156105b857600080fd5b506102de600e5481565b3480156105ce57600080fd5b506102296105dd366004611e39565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061757600080fd5b50610273610626366004611e1e565b611122565b34801561063757600080fd5b506102de600f5481565b600061064c826111ba565b92915050565b606060008054610661906122a4565b80601f016020809104026020016040519081016040528092919081815260200182805461068d906122a4565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b6002600b54141561073c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600b55600d5460ff16151560011480156107585750600081115b8015610765575060198111155b80156107915750601054600e5461077b916111df565b61078e8261078860085490565b906111eb565b11155b80156107a957506011546107a590826111f7565b3410155b6107ee5760405162461bcd60e51b81526020600482015260166024820152754d696e7420697320696d706f737369626c65206e6f7760501b6044820152606401610733565b6107f83382611203565b506001600b55565b6000818152600260205260408120546001600160a01b03166108795760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610733565b506000908152600460205260409020546001600160a01b031690565b60006108a082610c79565b9050806001600160a01b0316836001600160a01b0316141561090e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610733565b336001600160a01b038216148061092a575061092a81336105dd565b61099c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610733565b6109a68383611242565b505050565b600a546001600160a01b031633146109d55760405162461bcd60e51b815260040161073390612190565b6001600160a01b0382166109e7573391505b806109ef5750475b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050610a1d57600080fd5b5050565b610a2b33826112b0565b610a475760405162461bcd60e51b8152600401610733906121c5565b6109a68383836113a7565b600a546001600160a01b03163314610a7c5760405162461bcd60e51b815260040161073390612190565b80610a845750475b600a546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610ab657600080fd5b50565b6000610ac483610cf0565b8210610b265760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610733565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109a683838360405180602001604052806000815250611095565b6000610b7560085490565b8210610bd85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610733565b60088281548110610beb57610beb61234a565b90600052602060002001549050919050565b600a546001600160a01b03163314610c275760405162461bcd60e51b815260040161073390612190565b6001600160a01b038216610c39573391505b600081118015610c4b57506010548111155b610c5457600080fd5b610c5e8282611203565b8060106000828254610c709190612261565b90915550505050565b6000818152600260205260408120546001600160a01b03168061064c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610733565b60006001600160a01b038216610d5b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610733565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610da15760405162461bcd60e51b815260040161073390612190565b610dab6000611552565b565b600a546001600160a01b03163314610dd75760405162461bcd60e51b815260040161073390612190565b600e5481108015610df55750601054600f54610df2916111eb565b81115b610dfe57600080fd5b600e55565b600a546001600160a01b03163314610e2d5760405162461bcd60e51b815260040161073390612190565b600d5460ff161515600114610e4157600080fd5b600d805460ff19169055565b60606000610e5a83610cf0565b905080610e7b5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610e9657610e96612360565b604051908082528060200260200182016040528015610ebf578160200160208202803683370190505b50905060005b82811015610e7357610ed78582610ab9565b828281518110610ee957610ee961234a565b602090810291909101015280610efe816122d9565b915050610ec5565b50919050565b600a546001600160a01b03163314610f365760405162461bcd60e51b815260040161073390612190565b601155565b600a546001600160a01b03163314610f655760405162461bcd60e51b815260040161073390612190565b600d5460ff1615610f7557600080fd5b600d805460ff19166001179055565b606060018054610661906122a4565b600a546001600160a01b03163314610fbd5760405162461bcd60e51b815260040161073390612190565b8051610a1d90600c906020840190611cf3565b6001600160a01b0382163314156110295760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610733565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61109f33836112b0565b6110bb5760405162461bcd60e51b8152600401610733906121c5565b6110c7848484846115a4565b50505050565b606060006110da836115d7565b905060008151116110fa576040518060200160405280600081525061111b565b8060405160200161110b9190612081565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461114c5760405162461bcd60e51b815260040161073390612190565b6001600160a01b0381166111b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610733565b610ab681611552565b60006001600160e01b0319821663780e9d6360e01b148061064c575061064c8261169b565b600061111b8284612261565b600061111b8284612216565b600061111b8284612242565b600f5460005b8281101561123a578161121b816122d9565b92505061122884836116eb565b80611232816122d9565b915050611209565b50600f555050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061127782610c79565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610733565b600061133483610c79565b9050806001600160a01b0316846001600160a01b0316148061136f5750836001600160a01b031661136484610800565b6001600160a01b0316145b8061139f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113ba82610c79565b6001600160a01b0316146114225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610733565b6001600160a01b0382166114845760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610733565b61148f838383611705565b61149a600082611242565b6001600160a01b03831660009081526003602052604081208054600192906114c3908490612261565b90915550506001600160a01b03821660009081526003602052604081208054600192906114f1908490612216565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115af8484846113a7565b6115bb84848484611710565b6110c75760405162461bcd60e51b81526004016107339061213e565b6000818152600260205260409020546060906001600160a01b03166116565760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610733565b600061166061181d565b90506000815111611680576040518060200160405280600081525061111b565b8061168a8461182c565b60405160200161110b929190612052565b60006001600160e01b031982166380ac58cd60e01b14806116cc57506001600160e01b03198216635b5e139f60e01b145b8061064c57506301ffc9a760e01b6001600160e01b031983161461064c565b610a1d82826040518060200160405280600081525061192a565b6109a683838361195d565b60006001600160a01b0384163b1561181257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117549033908990889088906004016120aa565b602060405180830381600087803b15801561176e57600080fd5b505af192505050801561179e575060408051601f3d908101601f1916820190925261179b91810190611fa7565b60015b6117f8573d8080156117cc576040519150601f19603f3d011682016040523d82523d6000602084013e6117d1565b606091505b5080516117f05760405162461bcd60e51b81526004016107339061213e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061139f565b506001949350505050565b6060600c8054610661906122a4565b6060816118505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561187a5780611864816122d9565b91506118739050600a8361222e565b9150611854565b60008167ffffffffffffffff81111561189557611895612360565b6040519080825280601f01601f1916602001820160405280156118bf576020820181803683370190505b5090505b841561139f576118d4600183612261565b91506118e1600a866122f4565b6118ec906030612216565b60f81b8183815181106119015761190161234a565b60200101906001600160f81b031916908160001a905350611923600a8661222e565b94506118c3565b6119348383611a15565b6119416000848484611710565b6109a65760405162461bcd60e51b81526004016107339061213e565b6001600160a01b0383166119b8576119b381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119db565b816001600160a01b0316836001600160a01b0316146119db576119db8382611b63565b6001600160a01b0382166119f2576109a681611c00565b826001600160a01b0316826001600160a01b0316146109a6576109a68282611caf565b6001600160a01b038216611a6b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610733565b6000818152600260205260409020546001600160a01b031615611ad05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610733565b611adc60008383611705565b6001600160a01b0382166000908152600360205260408120805460019290611b05908490612216565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611b7084610cf0565b611b7a9190612261565b600083815260076020526040902054909150808214611bcd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c1290600190612261565b60008381526009602052604081205460088054939450909284908110611c3a57611c3a61234a565b906000526020600020015490508060088381548110611c5b57611c5b61234a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c9357611c93612334565b6001900381819060005260206000200160009055905550505050565b6000611cba83610cf0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611cff906122a4565b90600052602060002090601f016020900481019282611d215760008555611d67565b82601f10611d3a57805160ff1916838001178555611d67565b82800160010185558215611d67579182015b82811115611d67578251825591602001919060010190611d4c565b50611d73929150611d77565b5090565b5b80821115611d735760008155600101611d78565b600067ffffffffffffffff80841115611da757611da7612360565b604051601f8501601f19908116603f01168101908282118183101715611dcf57611dcf612360565b81604052809350858152868686011115611de857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e1957600080fd5b919050565b600060208284031215611e3057600080fd5b61111b82611e02565b60008060408385031215611e4c57600080fd5b611e5583611e02565b9150611e6360208401611e02565b90509250929050565b600080600060608486031215611e8157600080fd5b611e8a84611e02565b9250611e9860208501611e02565b9150604084013590509250925092565b60008060008060808587031215611ebe57600080fd5b611ec785611e02565b9350611ed560208601611e02565b925060408501359150606085013567ffffffffffffffff811115611ef857600080fd5b8501601f81018713611f0957600080fd5b611f1887823560208401611d8c565b91505092959194509250565b60008060408385031215611f3757600080fd5b611f4083611e02565b915060208301358015158114611f5557600080fd5b809150509250929050565b60008060408385031215611f7357600080fd5b611f7c83611e02565b946020939093013593505050565b600060208284031215611f9c57600080fd5b813561111b81612376565b600060208284031215611fb957600080fd5b815161111b81612376565b600060208284031215611fd657600080fd5b813567ffffffffffffffff811115611fed57600080fd5b8201601f81018413611ffe57600080fd5b61139f84823560208401611d8c565b60006020828403121561201f57600080fd5b5035919050565b6000815180845261203e816020860160208601612278565b601f01601f19169290920160200192915050565b60008351612064818460208801612278565b835190830190612078818360208801612278565b01949350505050565b60008251612093818460208701612278565b64173539b7b760d91b920191825250600501919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120dd90830184612026565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561211f57835183529284019291840191600101612103565b50909695505050505050565b60208152600061111b6020830184612026565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561222957612229612308565b500190565b60008261223d5761223d61231e565b500490565b600081600019048311821515161561225c5761225c612308565b500290565b60008282101561227357612273612308565b500390565b60005b8381101561229357818101518382015260200161227b565b838111156110c75750506000910152565b600181811c908216806122b857607f821691505b60208210811415610f0657634e487b7160e01b600052602260045260246000fd5b60006000198214156122ed576122ed612308565b5060010190565b6000826123035761230361231e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ab657600080fdfea2646970667358221220b39352aa8cabf526ff5c5fbdf339e112d336f2d89224364c5c8bf5f5796a44c564736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f63727970746f686f626f732e696f2f746f6b656e732f0000
Deployed Bytecode
0x6080604052600436106102045760003560e01c8063715018a61161011857806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd1461058c578063e8315742146105ac578063e985e9c5146105c2578063f2fde38b1461060b578063f84ddf0b1461062b57600080fd5b806395d89b4114610517578063a0bcfc7f1461052c578063a22cb4651461054c578063b88d4fde1461056c57600080fd5b80638456cb59116100e75780638456cb59146104825780638462151c146104975780638da5cb5b146104c457806391b7f5ed146104e257806393e84cd91461050257600080fd5b8063715018a61461042157806371b3659e14610436578063806234441461044c57806383033ac11461046c57600080fd5b80632e1a7d4d1161019b5780634f6ccce71161016a5780634f6ccce71461038c57806351b03054146103ac578063551358a7146103c15780636352211e146103e157806370a082311461040157600080fd5b80632e1a7d4d1461031f5780632f745c591461033257806342842e0e1461035257806344691f7e1461037257600080fd5b8063095ea7b3116101d7578063095ea7b3146102ad57806318160ddd146102cd578063205c2878146102ec57806323b872dd146102ff57600080fd5b806301ffc9a71461020957806306fdde031461023e57806307957fbe14610260578063081812fc14610275575b600080fd5b34801561021557600080fd5b50610229610224366004611f8a565b610641565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610652565b604051610235919061212b565b61027361026e36600461200d565b6106e4565b005b34801561028157600080fd5b5061029561029036600461200d565b610800565b6040516001600160a01b039091168152602001610235565b3480156102b957600080fd5b506102736102c8366004611f60565b610895565b3480156102d957600080fd5b506008545b604051908152602001610235565b6102736102fa366004611f60565b6109ab565b34801561030b57600080fd5b5061027361031a366004611e6c565b610a21565b61027361032d36600461200d565b610a52565b34801561033e57600080fd5b506102de61034d366004611f60565b610ab9565b34801561035e57600080fd5b5061027361036d366004611e6c565b610b4f565b34801561037e57600080fd5b50600d546102299060ff1681565b34801561039857600080fd5b506102de6103a736600461200d565b610b6a565b3480156103b857600080fd5b506102de601981565b3480156103cd57600080fd5b506102736103dc366004611f60565b610bfd565b3480156103ed57600080fd5b506102956103fc36600461200d565b610c79565b34801561040d57600080fd5b506102de61041c366004611e1e565b610cf0565b34801561042d57600080fd5b50610273610d77565b34801561044257600080fd5b506102de60115481565b34801561045857600080fd5b5061027361046736600461200d565b610dad565b34801561047857600080fd5b506102de60105481565b34801561048e57600080fd5b50610273610e03565b3480156104a357600080fd5b506104b76104b2366004611e1e565b610e4d565b60405161023591906120e7565b3480156104d057600080fd5b50600a546001600160a01b0316610295565b3480156104ee57600080fd5b506102736104fd36600461200d565b610f0c565b34801561050e57600080fd5b50610273610f3b565b34801561052357600080fd5b50610253610f84565b34801561053857600080fd5b50610273610547366004611fc4565b610f93565b34801561055857600080fd5b50610273610567366004611f24565b610fd0565b34801561057857600080fd5b50610273610587366004611ea8565b611095565b34801561059857600080fd5b506102536105a736600461200d565b6110cd565b3480156105b857600080fd5b506102de600e5481565b3480156105ce57600080fd5b506102296105dd366004611e39565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061757600080fd5b50610273610626366004611e1e565b611122565b34801561063757600080fd5b506102de600f5481565b600061064c826111ba565b92915050565b606060008054610661906122a4565b80601f016020809104026020016040519081016040528092919081815260200182805461068d906122a4565b80156106da5780601f106106af576101008083540402835291602001916106da565b820191906000526020600020905b8154815290600101906020018083116106bd57829003601f168201915b5050505050905090565b6002600b54141561073c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600b55600d5460ff16151560011480156107585750600081115b8015610765575060198111155b80156107915750601054600e5461077b916111df565b61078e8261078860085490565b906111eb565b11155b80156107a957506011546107a590826111f7565b3410155b6107ee5760405162461bcd60e51b81526020600482015260166024820152754d696e7420697320696d706f737369626c65206e6f7760501b6044820152606401610733565b6107f83382611203565b506001600b55565b6000818152600260205260408120546001600160a01b03166108795760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610733565b506000908152600460205260409020546001600160a01b031690565b60006108a082610c79565b9050806001600160a01b0316836001600160a01b0316141561090e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610733565b336001600160a01b038216148061092a575061092a81336105dd565b61099c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610733565b6109a68383611242565b505050565b600a546001600160a01b031633146109d55760405162461bcd60e51b815260040161073390612190565b6001600160a01b0382166109e7573391505b806109ef5750475b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050610a1d57600080fd5b5050565b610a2b33826112b0565b610a475760405162461bcd60e51b8152600401610733906121c5565b6109a68383836113a7565b600a546001600160a01b03163314610a7c5760405162461bcd60e51b815260040161073390612190565b80610a845750475b600a546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610ab657600080fd5b50565b6000610ac483610cf0565b8210610b265760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610733565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6109a683838360405180602001604052806000815250611095565b6000610b7560085490565b8210610bd85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610733565b60088281548110610beb57610beb61234a565b90600052602060002001549050919050565b600a546001600160a01b03163314610c275760405162461bcd60e51b815260040161073390612190565b6001600160a01b038216610c39573391505b600081118015610c4b57506010548111155b610c5457600080fd5b610c5e8282611203565b8060106000828254610c709190612261565b90915550505050565b6000818152600260205260408120546001600160a01b03168061064c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610733565b60006001600160a01b038216610d5b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610733565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610da15760405162461bcd60e51b815260040161073390612190565b610dab6000611552565b565b600a546001600160a01b03163314610dd75760405162461bcd60e51b815260040161073390612190565b600e5481108015610df55750601054600f54610df2916111eb565b81115b610dfe57600080fd5b600e55565b600a546001600160a01b03163314610e2d5760405162461bcd60e51b815260040161073390612190565b600d5460ff161515600114610e4157600080fd5b600d805460ff19169055565b60606000610e5a83610cf0565b905080610e7b5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610e9657610e96612360565b604051908082528060200260200182016040528015610ebf578160200160208202803683370190505b50905060005b82811015610e7357610ed78582610ab9565b828281518110610ee957610ee961234a565b602090810291909101015280610efe816122d9565b915050610ec5565b50919050565b600a546001600160a01b03163314610f365760405162461bcd60e51b815260040161073390612190565b601155565b600a546001600160a01b03163314610f655760405162461bcd60e51b815260040161073390612190565b600d5460ff1615610f7557600080fd5b600d805460ff19166001179055565b606060018054610661906122a4565b600a546001600160a01b03163314610fbd5760405162461bcd60e51b815260040161073390612190565b8051610a1d90600c906020840190611cf3565b6001600160a01b0382163314156110295760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610733565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61109f33836112b0565b6110bb5760405162461bcd60e51b8152600401610733906121c5565b6110c7848484846115a4565b50505050565b606060006110da836115d7565b905060008151116110fa576040518060200160405280600081525061111b565b8060405160200161110b9190612081565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461114c5760405162461bcd60e51b815260040161073390612190565b6001600160a01b0381166111b15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610733565b610ab681611552565b60006001600160e01b0319821663780e9d6360e01b148061064c575061064c8261169b565b600061111b8284612261565b600061111b8284612216565b600061111b8284612242565b600f5460005b8281101561123a578161121b816122d9565b92505061122884836116eb565b80611232816122d9565b915050611209565b50600f555050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061127782610c79565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610733565b600061133483610c79565b9050806001600160a01b0316846001600160a01b0316148061136f5750836001600160a01b031661136484610800565b6001600160a01b0316145b8061139f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113ba82610c79565b6001600160a01b0316146114225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610733565b6001600160a01b0382166114845760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610733565b61148f838383611705565b61149a600082611242565b6001600160a01b03831660009081526003602052604081208054600192906114c3908490612261565b90915550506001600160a01b03821660009081526003602052604081208054600192906114f1908490612216565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115af8484846113a7565b6115bb84848484611710565b6110c75760405162461bcd60e51b81526004016107339061213e565b6000818152600260205260409020546060906001600160a01b03166116565760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610733565b600061166061181d565b90506000815111611680576040518060200160405280600081525061111b565b8061168a8461182c565b60405160200161110b929190612052565b60006001600160e01b031982166380ac58cd60e01b14806116cc57506001600160e01b03198216635b5e139f60e01b145b8061064c57506301ffc9a760e01b6001600160e01b031983161461064c565b610a1d82826040518060200160405280600081525061192a565b6109a683838361195d565b60006001600160a01b0384163b1561181257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117549033908990889088906004016120aa565b602060405180830381600087803b15801561176e57600080fd5b505af192505050801561179e575060408051601f3d908101601f1916820190925261179b91810190611fa7565b60015b6117f8573d8080156117cc576040519150601f19603f3d011682016040523d82523d6000602084013e6117d1565b606091505b5080516117f05760405162461bcd60e51b81526004016107339061213e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061139f565b506001949350505050565b6060600c8054610661906122a4565b6060816118505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561187a5780611864816122d9565b91506118739050600a8361222e565b9150611854565b60008167ffffffffffffffff81111561189557611895612360565b6040519080825280601f01601f1916602001820160405280156118bf576020820181803683370190505b5090505b841561139f576118d4600183612261565b91506118e1600a866122f4565b6118ec906030612216565b60f81b8183815181106119015761190161234a565b60200101906001600160f81b031916908160001a905350611923600a8661222e565b94506118c3565b6119348383611a15565b6119416000848484611710565b6109a65760405162461bcd60e51b81526004016107339061213e565b6001600160a01b0383166119b8576119b381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119db565b816001600160a01b0316836001600160a01b0316146119db576119db8382611b63565b6001600160a01b0382166119f2576109a681611c00565b826001600160a01b0316826001600160a01b0316146109a6576109a68282611caf565b6001600160a01b038216611a6b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610733565b6000818152600260205260409020546001600160a01b031615611ad05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610733565b611adc60008383611705565b6001600160a01b0382166000908152600360205260408120805460019290611b05908490612216565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611b7084610cf0565b611b7a9190612261565b600083815260076020526040902054909150808214611bcd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c1290600190612261565b60008381526009602052604081205460088054939450909284908110611c3a57611c3a61234a565b906000526020600020015490508060088381548110611c5b57611c5b61234a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c9357611c93612334565b6001900381819060005260206000200160009055905550505050565b6000611cba83610cf0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611cff906122a4565b90600052602060002090601f016020900481019282611d215760008555611d67565b82601f10611d3a57805160ff1916838001178555611d67565b82800160010185558215611d67579182015b82811115611d67578251825591602001919060010190611d4c565b50611d73929150611d77565b5090565b5b80821115611d735760008155600101611d78565b600067ffffffffffffffff80841115611da757611da7612360565b604051601f8501601f19908116603f01168101908282118183101715611dcf57611dcf612360565b81604052809350858152868686011115611de857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e1957600080fd5b919050565b600060208284031215611e3057600080fd5b61111b82611e02565b60008060408385031215611e4c57600080fd5b611e5583611e02565b9150611e6360208401611e02565b90509250929050565b600080600060608486031215611e8157600080fd5b611e8a84611e02565b9250611e9860208501611e02565b9150604084013590509250925092565b60008060008060808587031215611ebe57600080fd5b611ec785611e02565b9350611ed560208601611e02565b925060408501359150606085013567ffffffffffffffff811115611ef857600080fd5b8501601f81018713611f0957600080fd5b611f1887823560208401611d8c565b91505092959194509250565b60008060408385031215611f3757600080fd5b611f4083611e02565b915060208301358015158114611f5557600080fd5b809150509250929050565b60008060408385031215611f7357600080fd5b611f7c83611e02565b946020939093013593505050565b600060208284031215611f9c57600080fd5b813561111b81612376565b600060208284031215611fb957600080fd5b815161111b81612376565b600060208284031215611fd657600080fd5b813567ffffffffffffffff811115611fed57600080fd5b8201601f81018413611ffe57600080fd5b61139f84823560208401611d8c565b60006020828403121561201f57600080fd5b5035919050565b6000815180845261203e816020860160208601612278565b601f01601f19169290920160200192915050565b60008351612064818460208801612278565b835190830190612078818360208801612278565b01949350505050565b60008251612093818460208701612278565b64173539b7b760d91b920191825250600501919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120dd90830184612026565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561211f57835183529284019291840191600101612103565b50909695505050505050565b60208152600061111b6020830184612026565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561222957612229612308565b500190565b60008261223d5761223d61231e565b500490565b600081600019048311821515161561225c5761225c612308565b500290565b60008282101561227357612273612308565b500390565b60005b8381101561229357818101518382015260200161227b565b838111156110c75750506000910152565b600181811c908216806122b857607f821691505b60208210811415610f0657634e487b7160e01b600052602260045260246000fd5b60006000198214156122ed576122ed612308565b5060010190565b6000826123035761230361231e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ab657600080fdfea2646970667358221220b39352aa8cabf526ff5c5fbdf339e112d336f2d89224364c5c8bf5f5796a44c564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f63727970746f686f626f732e696f2f746f6b656e732f0000
-----Decoded View---------------
Arg [0] : baseUriString (string): https://cryptohobos.io/tokens/
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [2] : 68747470733a2f2f63727970746f686f626f732e696f2f746f6b656e732f0000
Deployed Bytecode Sourcemap
53036:4059:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53644:171;;;;;;;;;;-1:-1:-1;53644:171:0;;;;;:::i;:::-;;:::i;:::-;;;6731:14:1;;6724:22;6706:41;;6694:2;6679:18;53644:171:0;;;;;;;;21749:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55675:397::-;;;;;;:::i;:::-;;:::i;:::-;;23308:221;;;;;;;;;;-1:-1:-1;23308:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5392:32:1;;;5374:51;;5362:2;5347:18;23308:221:0;5228:203:1;22831:411:0;;;;;;;;;;-1:-1:-1;22831:411:0;;;;;:::i;:::-;;:::i;35500:113::-;;;;;;;;;;-1:-1:-1;35588:10:0;:17;35500:113;;;15046:25:1;;;15034:2;15019:18;35500:113:0;14900:177:1;56311:283:0;;;;;;:::i;:::-;;:::i;24198:339::-;;;;;;;;;;-1:-1:-1;24198:339:0;;;;;:::i;:::-;;:::i;56602:200::-;;;;;;:::i;:::-;;:::i;35168:256::-;;;;;;;;;;-1:-1:-1;35168:256:0;;;;;:::i;:::-;;:::i;24608:185::-;;;;;;;;;;-1:-1:-1;24608:185:0;;;;;:::i;:::-;;:::i;53220:30::-;;;;;;;;;;-1:-1:-1;53220:30:0;;;;;;;;35690:233;;;;;;;;;;-1:-1:-1;35690:233:0;;;;;:::i;:::-;;:::i;53442:62::-;;;;;;;;;;;;53502:2;53442:62;;55356:307;;;;;;;;;;-1:-1:-1;55356:307:0;;;;;:::i;:::-;;:::i;21443:239::-;;;;;;;;;;-1:-1:-1;21443:239:0;;;;;:::i;:::-;;:::i;21173:208::-;;;;;;;;;;-1:-1:-1;21173:208:0;;;;;:::i;:::-;;:::i;42663:94::-;;;;;;;;;;;;;:::i;53374:52::-;;;;;;;;;;;;;;;;56914:178;;;;;;;;;;-1:-1:-1;56914:178:0;;;;;:::i;:::-;;:::i;53328:39::-;;;;;;;;;;;;;;;;56078:109;;;;;;;;;;;;;:::i;54808:540::-;;;;;;;;;;-1:-1:-1;54808:540:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42012:87::-;;;;;;;;;;-1:-1:-1;42085:6:0;;-1:-1:-1;;;;;42085:6:0;42012:87;;56812:94;;;;;;;;;;-1:-1:-1;56812:94:0;;;;;:::i;:::-;;:::i;56195:108::-;;;;;;;;;;;;;:::i;21918:104::-;;;;;;;;;;;;;:::i;54027:115::-;;;;;;;;;;-1:-1:-1;54027:115:0;;;;;:::i;:::-;;:::i;23601:295::-;;;;;;;;;;-1:-1:-1;23601:295:0;;;;;:::i;:::-;;:::i;24864:328::-;;;;;;;;;;-1:-1:-1;24864:328:0;;;;;:::i;:::-;;:::i;54265:253::-;;;;;;;;;;-1:-1:-1;54265:253:0;;;;;:::i;:::-;;:::i;53257:31::-;;;;;;;;;;;;;;;;23967:164;;;;;;;;;;-1:-1:-1;23967:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24088:25:0;;;24064:4;24088:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23967:164;42912:192;;;;;;;;;;-1:-1:-1;42912:192:0;;;;;:::i;:::-;;:::i;53295:26::-;;;;;;;;;;;;;;;;53644:171;53747:4;53771:36;53795:11;53771:23;:36::i;:::-;53764:43;53644:171;-1:-1:-1;;53644:171:0:o;21749:100::-;21803:13;21836:5;21829:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21749:100;:::o;55675:397::-;45047:1;45643:7;;:19;;45635:63;;;;-1:-1:-1;;;45635:63:0;;14742:2:1;45635:63:0;;;14724:21:1;14781:2;14761:18;;;14754:30;14820:33;14800:18;;;14793:61;14871:18;;45635:63:0;;;;;;;;;45047:1;45776:7;:18;55757:10:::1;::::0;::::1;;:18;;:10:::0;:18:::1;:40:::0;::::1;;;;55796:1;55788:5;:9;55757:40;:95;;;;;53502:2;55810:5;:42;;55757:95;:169;;;;-1:-1:-1::0;55907:18:0::1;::::0;55893:9:::1;::::0;:33:::1;::::0;:13:::1;:33::i;:::-;55865:24;55883:5;55865:13;35588:10:::0;:17;;35500:113;55865:13:::1;:17:::0;::::1;:24::i;:::-;:61;;55757:169;:227;;;;-1:-1:-1::0;55956:17:0::1;::::0;:28:::1;::::0;55978:5;55956:21:::1;:28::i;:::-;55943:9;:41;;55757:227;55749:275;;;::::0;-1:-1:-1;;;55749:275:0;;8779:2:1;55749:275:0::1;::::0;::::1;8761:21:1::0;8818:2;8798:18;;;8791:30;-1:-1:-1;;;8837:18:1;;;8830:52;8899:18;;55749:275:0::1;8577:346:1::0;55749:275:0::1;56035:29;56046:10;56058:5;56035:10;:29::i;:::-;-1:-1:-1::0;45003:1:0;45955:7;:22;55675:397::o;23308:221::-;23384:7;26791:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26791:16:0;23404:73;;;;-1:-1:-1;;;23404:73:0;;11909:2:1;23404:73:0;;;11891:21:1;11948:2;11928:18;;;11921:30;11987:34;11967:18;;;11960:62;-1:-1:-1;;;12038:18:1;;;12031:42;12090:19;;23404:73:0;11707:408:1;23404:73:0;-1:-1:-1;23497:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23497:24:0;;23308:221::o;22831:411::-;22912:13;22928:23;22943:7;22928:14;:23::i;:::-;22912:39;;22976:5;-1:-1:-1;;;;;22970:11:0;:2;-1:-1:-1;;;;;22970:11:0;;;22962:57;;;;-1:-1:-1;;;22962:57:0;;13509:2:1;22962:57:0;;;13491:21:1;13548:2;13528:18;;;13521:30;13587:34;13567:18;;;13560:62;-1:-1:-1;;;13638:18:1;;;13631:31;13679:19;;22962:57:0;13307:397:1;22962:57:0;16286:10;-1:-1:-1;;;;;23054:21:0;;;;:62;;-1:-1:-1;23079:37:0;23096:5;16286:10;23967:164;:::i;23079:37::-;23032:168;;;;-1:-1:-1;;;23032:168:0;;10302:2:1;23032:168:0;;;10284:21:1;10341:2;10321:18;;;10314:30;10380:34;10360:18;;;10353:62;10451:26;10431:18;;;10424:54;10495:19;;23032:168:0;10100:420:1;23032:168:0;23213:21;23222:2;23226:7;23213:8;:21::i;:::-;22901:341;22831:411;;:::o;56311:283::-;42085:6;;-1:-1:-1;;;;;42085:6:0;16286:10;42232:23;42224:68;;;;-1:-1:-1;;;42224:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56399:16:0;::::1;56395:64;;56437:10;56432:15;;56395:64;56473:11:::0;56469:74:::1;;-1:-1:-1::0;56510:21:0::1;56469:74;56561:24;::::0;-1:-1:-1;;;;;56561:16:0;::::1;::::0;:24;::::1;;;::::0;56578:6;;56561:24:::1;::::0;;;56578:6;56561:16;:24;::::1;;;;;;56553:33;;;::::0;::::1;;56311:283:::0;;:::o;24198:339::-;24393:41;16286:10;24426:7;24393:18;:41::i;:::-;24385:103;;;;-1:-1:-1;;;24385:103:0;;;;;;;:::i;:::-;24501:28;24511:4;24517:2;24521:7;24501:9;:28::i;56602:200::-;42085:6;;-1:-1:-1;;;;;42085:6:0;16286:10;42232:23;42224:68;;;;-1:-1:-1;;;42224:68:0;;;;;;;:::i;:::-;56676:11;56672:74:::1;;-1:-1:-1::0;56713:21:0::1;56672:74;42085:6:::0;;56764:29:::1;::::0;-1:-1:-1;;;;;42085:6:0;;;;56764:29;::::1;;;::::0;56786:6;;56764:29:::1;::::0;;;56786:6;42085;56764:29;::::1;;;;;;56756:38;;;::::0;::::1;;56602:200:::0;:::o;35168:256::-;35265:7;35301:23;35318:5;35301:16;:23::i;:::-;35293:5;:31;35285:87;;;;-1:-1:-1;;;35285:87:0;;7184:2:1;35285:87:0;;;7166:21:1;7223:2;7203:18;;;7196:30;7262:34;7242:18;;;7235:62;-1:-1:-1;;;7313:18:1;;;7306:41;7364:19;;35285:87:0;6982:407:1;35285:87:0;-1:-1:-1;;;;;;35390:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35168:256::o;24608:185::-;24746:39;24763:4;24769:2;24773:7;24746:39;;;;;;;;;;;;:16;:39::i;35690:233::-;35765:7;35801:30;35588:10;:17;;35500:113;35801:30;35793:5;:38;35785:95;;;;-1:-1:-1;;;35785:95:0;;14329:2:1;35785:95:0;;;14311:21:1;14368:2;14348:18;;;14341:30;14407:34;14387:18;;;14380:62;-1:-1:-1;;;14458:18:1;;;14451:42;14510:19;;35785:95:0;14127:408:1;35785:95:0;35898:10;35909:5;35898:17;;;;;;;;:::i;:::-;;;;;;;;;35891:24;;35690:233;;;:::o;55356:307::-;42085:6;;-1:-1:-1;;;;;42085:6:0;16286:10;42232:23;42224:68;;;;-1:-1:-1;;;42224:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55443:16:0;::::1;55439:64;;55481:10;55476:15;;55439:64;55529:1;55521:5;:9;:53;;;;;55556:18;;55547:5;:27;;55521:53;55513:72;;;::::0;::::1;;55596:21;55607:2;55611:5;55596:10;:21::i;:::-;55650:5;55628:18;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;55356:307:0:o;21443:239::-;21515:7;21551:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21551:16:0;21586:19;21578:73;;;;-1:-1:-1;;;21578:73:0;;11138:2:1;21578:73:0;;;11120:21:1;11177:2;11157:18;;;11150:30;11216:34;11196:18;;;11189:62;-1:-1:-1;;;11267:18:1;;;11260:39;11316:19;;21578:73:0;10936:405:1;21173:208:0;21245:7;-1:-1:-1;;;;;21273:19:0;;21265:74;;;;-1:-1:-1;;;21265:74:0;;10727:2:1;21265:74:0;;;10709:21:1;10766:2;10746:18;;;10739:30;10805:34;10785:18;;;10778:62;-1:-1:-1;;;10856:18:1;;;10849:40;10906:19;;21265:74:0;10525:406:1;21265:74:0;-1:-1:-1;;;;;;21357:16:0;;;;;:9;:16;;;;;;;21173:208::o;42663:94::-;42085:6;;-1:-1:-1;;;;;42085:6:0;16286:10;42232:23;42224:68;;;;-1:-1:-1;;;42224:68:0;;;;;;;:::i;:::-;42728:21:::1;42746:1;42728:9;:21::i;:::-;42663:94::o:0;56914:178::-;42085:6;;-1:-1:-1;;;;;42085:6:0;16286:10;42232:23;42224:68;;;;-1:-1:-1;;;42224:68:0;;;;;;;:::i;:::-;56997:9:::1;;56988:6;:18;:66;;;;-1:-1:-1::0;57035:18:0::1;::::0;57019:11:::1;::::0;:35:::1;::::0;:15:::1;:35::i;:::-;57010:6;:44;56988:66;56980:75;;;::::0;::::1;;57066:9;:18:::0;56914:178::o;56078:109::-;42085:6;;-1:-1:-1;;;;;42085:6:0;16286:10;42232:23;42224:68;;;;-1:-1:-1;;;42224:68:0;;;;;;;:::i;:::-;56131:10:::1;::::0;::::1;;:18;;:10:::0;:18:::1;56123:27;;;::::0;::::1;;56161:10;:18:::0;;-1:-1:-1;;56161:18:0::1;::::0;;56078:109::o;54808:540::-;54869:16;54899:18;54920:17;54930:6;54920:9;:17::i;:::-;54899:38;-1:-1:-1;54952:15:0;54948:393;;55029:16;;;55043:1;55029:16;;;;;;;;;;;-1:-1:-1;55022:23:0;54808:540;-1:-1:-1;;;54808:540:0:o;54948:393::-;55078:23;55118:10;55104:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55104:25:0;;55078:51;;55144:13;55172:130;55196:10;55188:5;:18;55172:130;;;55252:34;55272:6;55280:5;55252:19;:34::i;:::-;55236:6;55243:5;55236:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;55208:7;;;;:::i;:::-;;;;55172:130;;54948:393;54888:460;54808:540;;;:::o;56812:94::-;42085:6;;-1:-1:-1;;;;;42085:6:0;16286:10;42232:23;42224:68;;;;-1:-1:-1;;;42224:68:0;;;;;;;:::i;:::-;56873:17:::1;:25:::0;56812:94::o;56195:108::-;42085:6;;-1:-1:-1;;;;;42085:6:0;16286:10;42232:23;42224:68;;;;-1:-1:-1;;;42224:68:0;;;;;;;:::i;:::-;56247:10:::1;::::0;::::1;;:19;56239:28;;;::::0;::::1;;56278:10;:17:::0;;-1:-1:-1;;56278:17:0::1;56291:4;56278:17;::::0;;56195:108::o;21918:104::-;21974:13;22007:7;22000:14;;;;;:::i;54027:115::-;42085:6;;-1:-1:-1;;;;;42085:6:0;16286:10;42232:23;42224:68;;;;-1:-1:-1;;;42224:68:0;;;;;;;:::i;:::-;54104:30;;::::1;::::0;:14:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;23601:295::-:0;-1:-1:-1;;;;;23704:24:0;;16286:10;23704:24;;23696:62;;;;-1:-1:-1;;;23696:62:0;;9535:2:1;23696:62:0;;;9517:21:1;9574:2;9554:18;;;9547:30;9613:27;9593:18;;;9586:55;9658:18;;23696:62:0;9333:349:1;23696:62:0;16286:10;23771:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23771:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23771:53:0;;;;;;;;;;23840:48;;6706:41:1;;;23771:42:0;;16286:10;23840:48;;6679:18:1;23840:48:0;;;;;;;23601:295;;:::o;24864:328::-;25039:41;16286:10;25072:7;25039:18;:41::i;:::-;25031:103;;;;-1:-1:-1;;;25031:103:0;;;;;;;:::i;:::-;25145:39;25159:4;25165:2;25169:7;25178:5;25145:13;:39::i;:::-;24864:328;;;;:::o;54265:253::-;54338:13;54364:23;54390;54405:7;54390:14;:23::i;:::-;54364:49;;54457:1;54437:9;54431:23;:27;:79;;;;;;;;;;;;;;;;;54485:9;54468:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;54431:79;54424:86;54265:253;-1:-1:-1;;;54265:253:0:o;42912:192::-;42085:6;;-1:-1:-1;;;;;42085:6:0;16286:10;42232:23;42224:68;;;;-1:-1:-1;;;42224:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43001:22:0;::::1;42993:73;;;::::0;-1:-1:-1;;;42993:73:0;;8015:2:1;42993:73:0::1;::::0;::::1;7997:21:1::0;8054:2;8034:18;;;8027:30;8093:34;8073:18;;;8066:62;-1:-1:-1;;;8144:18:1;;;8137:36;8190:19;;42993:73:0::1;7813:402:1::0;42993:73:0::1;43077:19;43087:8;43077:9;:19::i;34860:224::-:0;34962:4;-1:-1:-1;;;;;;34986:50:0;;-1:-1:-1;;;34986:50:0;;:90;;;35040:36;35064:11;35040:23;:36::i;49173:98::-;49231:7;49258:5;49262:1;49258;:5;:::i;48792:98::-;48850:7;48877:5;48881:1;48877;:5;:::i;49530:98::-;49588:7;49615:5;49619:1;49615;:5;:::i;54526:274::-;54615:11;;54592:20;54637:119;54661:5;54657:1;:9;54637:119;;;54688:14;;;;:::i;:::-;;;;54717:27;54727:2;54731:12;54717:9;:27::i;:::-;54668:3;;;;:::i;:::-;;;;54637:119;;;-1:-1:-1;54766:11:0;:26;-1:-1:-1;;54526:274:0:o;30684:174::-;30759:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30759:29:0;-1:-1:-1;;;;;30759:29:0;;;;;;;;:24;;30813:23;30759:24;30813:14;:23::i;:::-;-1:-1:-1;;;;;30804:46:0;;;;;;;;;;;30684:174;;:::o;26996:348::-;27089:4;26791:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26791:16:0;27106:73;;;;-1:-1:-1;;;27106:73:0;;9889:2:1;27106:73:0;;;9871:21:1;9928:2;9908:18;;;9901:30;9967:34;9947:18;;;9940:62;-1:-1:-1;;;10018:18:1;;;10011:42;10070:19;;27106:73:0;9687:408:1;27106:73:0;27190:13;27206:23;27221:7;27206:14;:23::i;:::-;27190:39;;27259:5;-1:-1:-1;;;;;27248:16:0;:7;-1:-1:-1;;;;;27248:16:0;;:51;;;;27292:7;-1:-1:-1;;;;;27268:31:0;:20;27280:7;27268:11;:20::i;:::-;-1:-1:-1;;;;;27268:31:0;;27248:51;:87;;;-1:-1:-1;;;;;;24088:25:0;;;24064:4;24088:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27303:32;27240:96;26996:348;-1:-1:-1;;;;26996:348:0:o;29988:578::-;30147:4;-1:-1:-1;;;;;30120:31:0;:23;30135:7;30120:14;:23::i;:::-;-1:-1:-1;;;;;30120:31:0;;30112:85;;;;-1:-1:-1;;;30112:85:0;;12683:2:1;30112:85:0;;;12665:21:1;12722:2;12702:18;;;12695:30;12761:34;12741:18;;;12734:62;-1:-1:-1;;;12812:18:1;;;12805:39;12861:19;;30112:85:0;12481:405:1;30112:85:0;-1:-1:-1;;;;;30216:16:0;;30208:65;;;;-1:-1:-1;;;30208:65:0;;9130:2:1;30208:65:0;;;9112:21:1;9169:2;9149:18;;;9142:30;9208:34;9188:18;;;9181:62;-1:-1:-1;;;9259:18:1;;;9252:34;9303:19;;30208:65:0;8928:400:1;30208:65:0;30286:39;30307:4;30313:2;30317:7;30286:20;:39::i;:::-;30390:29;30407:1;30411:7;30390:8;:29::i;:::-;-1:-1:-1;;;;;30432:15:0;;;;;;:9;:15;;;;;:20;;30451:1;;30432:15;:20;;30451:1;;30432:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30463:13:0;;;;;;:9;:13;;;;;:18;;30480:1;;30463:13;:18;;30480:1;;30463:18;:::i;:::-;;;;-1:-1:-1;;30492:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30492:21:0;-1:-1:-1;;;;;30492:21:0;;;;;;;;;30531:27;;30492:16;;30531:27;;;;;;;29988:578;;;:::o;43112:173::-;43187:6;;;-1:-1:-1;;;;;43204:17:0;;;-1:-1:-1;;;;;;43204:17:0;;;;;;;43237:40;;43187:6;;;43204:17;43187:6;;43237:40;;43168:16;;43237:40;43157:128;43112:173;:::o;26074:315::-;26231:28;26241:4;26247:2;26251:7;26231:9;:28::i;:::-;26278:48;26301:4;26307:2;26311:7;26320:5;26278:22;:48::i;:::-;26270:111;;;;-1:-1:-1;;;26270:111:0;;;;;;;:::i;22093:334::-;26767:4;26791:16;;;:7;:16;;;;;;22166:13;;-1:-1:-1;;;;;26791:16:0;22192:76;;;;-1:-1:-1;;;22192:76:0;;13093:2:1;22192:76:0;;;13075:21:1;13132:2;13112:18;;;13105:30;13171:34;13151:18;;;13144:62;-1:-1:-1;;;13222:18:1;;;13215:45;13277:19;;22192:76:0;12891:411:1;22192:76:0;22281:21;22305:10;:8;:10::i;:::-;22281:34;;22357:1;22339:7;22333:21;:25;:86;;;;;;;;;;;;;;;;;22385:7;22394:18;:7;:16;:18::i;:::-;22368:45;;;;;;;;;:::i;20804:305::-;20906:4;-1:-1:-1;;;;;;20943:40:0;;-1:-1:-1;;;20943:40:0;;:105;;-1:-1:-1;;;;;;;21000:48:0;;-1:-1:-1;;;21000:48:0;20943:105;:158;;;-1:-1:-1;;;;;;;;;;19411:40:0;;;21065:36;19302:157;27686:110;27762:26;27772:2;27776:7;27762:26;;;;;;;;;;;;:9;:26::i;53823:196::-;53966:45;53993:4;53999:2;54003:7;53966:26;:45::i;31423:799::-;31578:4;-1:-1:-1;;;;;31599:13:0;;8565:20;8613:8;31595:620;;31635:72;;-1:-1:-1;;;31635:72:0;;-1:-1:-1;;;;;31635:36:0;;;;;:72;;16286:10;;31686:4;;31692:7;;31701:5;;31635:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31635:72:0;;;;;;;;-1:-1:-1;;31635:72:0;;;;;;;;;;;;:::i;:::-;;;31631:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31877:13:0;;31873:272;;31920:60;;-1:-1:-1;;;31920:60:0;;;;;;;:::i;31873:272::-;32095:6;32089:13;32080:6;32076:2;32072:15;32065:38;31631:529;-1:-1:-1;;;;;;31758:51:0;-1:-1:-1;;;31758:51:0;;-1:-1:-1;31751:58:0;;31595:620;-1:-1:-1;32199:4:0;31423:799;;;;;;:::o;54150:107::-;54202:13;54235:14;54228:21;;;;;:::i;16739:723::-;16795:13;17016:10;17012:53;;-1:-1:-1;;17043:10:0;;;;;;;;;;;;-1:-1:-1;;;17043:10:0;;;;;16739:723::o;17012:53::-;17090:5;17075:12;17131:78;17138:9;;17131:78;;17164:8;;;;:::i;:::-;;-1:-1:-1;17187:10:0;;-1:-1:-1;17195:2:0;17187:10;;:::i;:::-;;;17131:78;;;17219:19;17251:6;17241:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17241:17:0;;17219:39;;17269:154;17276:10;;17269:154;;17303:11;17313:1;17303:11;;:::i;:::-;;-1:-1:-1;17372:10:0;17380:2;17372:5;:10;:::i;:::-;17359:24;;:2;:24;:::i;:::-;17346:39;;17329:6;17336;17329:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17329:56:0;;;;;;;;-1:-1:-1;17400:11:0;17409:2;17400:11;;:::i;:::-;;;17269:154;;28023:321;28153:18;28159:2;28163:7;28153:5;:18::i;:::-;28204:54;28235:1;28239:2;28243:7;28252:5;28204:22;:54::i;:::-;28182:154;;;;-1:-1:-1;;;28182:154:0;;;;;;;:::i;36536:589::-;-1:-1:-1;;;;;36742:18:0;;36738:187;;36777:40;36809:7;37952:10;:17;;37925:24;;;;:15;:24;;;;;:44;;;37980:24;;;;;;;;;;;;37848:164;36777:40;36738:187;;;36847:2;-1:-1:-1;;;;;36839:10:0;:4;-1:-1:-1;;;;;36839:10:0;;36835:90;;36866:47;36899:4;36905:7;36866:32;:47::i;:::-;-1:-1:-1;;;;;36939:16:0;;36935:183;;36972:45;37009:7;36972:36;:45::i;36935:183::-;37045:4;-1:-1:-1;;;;;37039:10:0;:2;-1:-1:-1;;;;;37039:10:0;;37035:83;;37066:40;37094:2;37098:7;37066:27;:40::i;28680:382::-;-1:-1:-1;;;;;28760:16:0;;28752:61;;;;-1:-1:-1;;;28752:61:0;;11548:2:1;28752:61:0;;;11530:21:1;;;11567:18;;;11560:30;11626:34;11606:18;;;11599:62;11678:18;;28752:61:0;11346:356:1;28752:61:0;26767:4;26791:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26791:16:0;:30;28824:58;;;;-1:-1:-1;;;28824:58:0;;8422:2:1;28824:58:0;;;8404:21:1;8461:2;8441:18;;;8434:30;8500;8480:18;;;8473:58;8548:18;;28824:58:0;8220:352:1;28824:58:0;28895:45;28924:1;28928:2;28932:7;28895:20;:45::i;:::-;-1:-1:-1;;;;;28953:13:0;;;;;;:9;:13;;;;;:18;;28970:1;;28953:13;:18;;28970:1;;28953:18;:::i;:::-;;;;-1:-1:-1;;28982:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28982:21:0;-1:-1:-1;;;;;28982:21:0;;;;;;;;29021:33;;28982:16;;;29021:33;;28982:16;;29021:33;28680:382;;:::o;38639:988::-;38905:22;38955:1;38930:22;38947:4;38930:16;:22::i;:::-;:26;;;;:::i;:::-;38967:18;38988:26;;;:17;:26;;;;;;38905:51;;-1:-1:-1;39121:28:0;;;39117:328;;-1:-1:-1;;;;;39188:18:0;;39166:19;39188:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39239:30;;;;;;:44;;;39356:30;;:17;:30;;;;;:43;;;39117:328;-1:-1:-1;39541:26:0;;;;:17;:26;;;;;;;;39534:33;;;-1:-1:-1;;;;;39585:18:0;;;;;:12;:18;;;;;:34;;;;;;;39578:41;38639:988::o;39922:1079::-;40200:10;:17;40175:22;;40200:21;;40220:1;;40200:21;:::i;:::-;40232:18;40253:24;;;:15;:24;;;;;;40626:10;:26;;40175:46;;-1:-1:-1;40253:24:0;;40175:46;;40626:26;;;;;;:::i;:::-;;;;;;;;;40604:48;;40690:11;40665:10;40676;40665:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40770:28;;;:15;:28;;;;;;;:41;;;40942:24;;;;;40935:31;40977:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39993:1008;;;39922:1079;:::o;37426:221::-;37511:14;37528:20;37545:2;37528:16;:20::i;:::-;-1:-1:-1;;;;;37559:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37604:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37426:221:0:o;-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:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4780:443::-;5012:3;5050:6;5044:13;5066:53;5112:6;5107:3;5100:4;5092:6;5088:17;5066:53;:::i;:::-;-1:-1:-1;;;5141:16:1;;5166:22;;;-1:-1:-1;5215:1:1;5204:13;;4780:443;-1:-1:-1;4780:443:1:o;5436:488::-;-1:-1:-1;;;;;5705:15:1;;;5687:34;;5757:15;;5752:2;5737:18;;5730:43;5804:2;5789:18;;5782:34;;;5852:3;5847:2;5832:18;;5825:31;;;5630:4;;5873:45;;5898:19;;5890:6;5873:45;:::i;:::-;5865:53;5436:488;-1:-1:-1;;;;;;5436:488:1:o;5929:632::-;6100:2;6152:21;;;6222:13;;6125:18;;;6244:22;;;6071:4;;6100:2;6323:15;;;;6297:2;6282:18;;;6071:4;6366:169;6380:6;6377:1;6374:13;6366:169;;;6441:13;;6429:26;;6510:15;;;;6475:12;;;;6402:1;6395:9;6366:169;;;-1:-1:-1;6552:3:1;;5929:632;-1:-1:-1;;;;;;5929:632:1:o;6758:219::-;6907:2;6896:9;6889:21;6870:4;6927:44;6967:2;6956:9;6952:18;6944:6;6927:44;:::i;7394:414::-;7596:2;7578:21;;;7635:2;7615:18;;;7608:30;7674:34;7669:2;7654:18;;7647:62;-1:-1:-1;;;7740:2:1;7725:18;;7718:48;7798:3;7783:19;;7394:414::o;12120:356::-;12322:2;12304:21;;;12341:18;;;12334:30;12400:34;12395:2;12380:18;;12373:62;12467:2;12452:18;;12120:356::o;13709:413::-;13911:2;13893:21;;;13950:2;13930:18;;;13923:30;13989:34;13984:2;13969:18;;13962:62;-1:-1:-1;;;14055:2:1;14040:18;;14033:47;14112:3;14097:19;;13709:413::o;15082:128::-;15122:3;15153:1;15149:6;15146:1;15143:13;15140:39;;;15159:18;;:::i;:::-;-1:-1:-1;15195:9:1;;15082:128::o;15215:120::-;15255:1;15281;15271:35;;15286:18;;:::i;:::-;-1:-1:-1;15320:9:1;;15215:120::o;15340:168::-;15380:7;15446:1;15442;15438:6;15434:14;15431:1;15428:21;15423:1;15416:9;15409:17;15405:45;15402:71;;;15453:18;;:::i;:::-;-1:-1:-1;15493:9:1;;15340:168::o;15513:125::-;15553:4;15581:1;15578;15575:8;15572:34;;;15586:18;;:::i;:::-;-1:-1:-1;15623:9:1;;15513:125::o;15643:258::-;15715:1;15725:113;15739:6;15736:1;15733:13;15725:113;;;15815:11;;;15809:18;15796:11;;;15789:39;15761:2;15754:10;15725:113;;;15856:6;15853:1;15850:13;15847:48;;;-1:-1:-1;;15891:1:1;15873:16;;15866:27;15643:258::o;15906:380::-;15985:1;15981:12;;;;16028;;;16049:61;;16103:4;16095:6;16091:17;16081:27;;16049:61;16156:2;16148:6;16145:14;16125:18;16122:38;16119:161;;;16202:10;16197:3;16193:20;16190:1;16183:31;16237:4;16234:1;16227:15;16265:4;16262:1;16255:15;16291:135;16330:3;-1:-1:-1;;16351:17:1;;16348:43;;;16371:18;;:::i;:::-;-1:-1:-1;16418:1:1;16407:13;;16291:135::o;16431:112::-;16463:1;16489;16479:35;;16494:18;;:::i;:::-;-1:-1:-1;16528:9:1;;16431:112::o;16548:127::-;16609:10;16604:3;16600:20;16597:1;16590:31;16640:4;16637:1;16630:15;16664:4;16661:1;16654:15;16680:127;16741:10;16736:3;16732:20;16729:1;16722:31;16772:4;16769:1;16762:15;16796:4;16793:1;16786:15;16812:127;16873:10;16868:3;16864:20;16861:1;16854:31;16904:4;16901:1;16894:15;16928:4;16925:1;16918:15;16944:127;17005:10;17000:3;16996:20;16993:1;16986:31;17036:4;17033:1;17026:15;17060:4;17057:1;17050:15;17076:127;17137:10;17132:3;17128:20;17125:1;17118:31;17168:4;17165:1;17158:15;17192:4;17189:1;17182:15;17208:131;-1:-1:-1;;;;;;17282:32:1;;17272:43;;17262:71;;17329:1;17326;17319:12
Swarm Source
ipfs://b39352aa8cabf526ff5c5fbdf339e112d336f2d89224364c5c8bf5f5796a44c5
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.