ERC-721
Overview
Max Total Supply
3,319 HAMSTERLORE
Holders
1,017
Market
Fully Diluted Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
0 HAMSTERLORELoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
HamsterLore
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2021-11-05 */ // SPDX-License-Identifier: MIT // 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; // solhint-disable-next-line no-inline-assembly 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" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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 // solhint-disable-next-line no-inline-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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[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}. 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { // solhint-disable-next-line no-inline-assembly 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` 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 {} } // 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/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721URIStorage: URI query for nonexistent token" ); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require( _exists(tokenId), "ERC721URIStorage: URI set of nonexistent token" ); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File @openzeppelin/contracts/security/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // 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() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved" ); _burn(tokenId); } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } } pragma solidity ^0.8.7; pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } interface IERC20 { function transfer(address _to, uint256 _amount) external returns (bool); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); } pragma solidity ^0.8.0; contract HamsterLore is ERC721, ERC721Enumerable, ERC721URIStorage, IERC2981, Pausable, Ownable, ERC721Burnable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; uint256 public constant maxSupply = 3333; string public baseURI; string private _ipfsHash; address private royaltyAddress=0xFCbAb1Bf6c5334EFf4A638489E4fD32adF2b3Df2; uint256 public royalty = 500; constructor() ERC721("HamsterLore", "HAMSTERLORE") { } function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { require(tokenId < totalSupply(), "Token doesn't exist"); return string(abi.encodePacked(baseURI,_ipfsHash)); } function royaltyInfo(uint256, uint256 _salePrice) external view override returns (address receiver, uint256 royaltyAmount) { return (royaltyAddress, (_salePrice * royalty) / 10000); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } function setIPFSHash(string memory _hash) public onlyOwner { _ipfsHash = _hash; } function setRoyalty(uint16 _royalty) external onlyOwner { require(_royalty >= 0, "Royalty must be greater than or equal to 0%"); require( _royalty <= 750, "Royalty must be greater than or equal to 7.5%" ); royalty = _royalty; } function setRoyaltyAddress(address _royaltyAddress) external onlyOwner { royaltyAddress = _royaltyAddress; } function distBanners(uint256 amount, address _addr) public onlyOwner { for (uint256 i = 0; i < amount; i++) { internalMint(_addr); } } function distBannersMulti(address[] memory _addr, uint256 amount) public onlyOwner { for (uint256 i = 0; i < _addr.length; i++) { distBannersInternal(amount,_addr[i]); } } function distBannersInternal(uint256 amount, address _addr) internal { for (uint256 i = 0; i < amount; i++) { internalMint(_addr); } } function internalMint(address to) internal { require(totalSupply() < maxSupply, "All Banners Minted"); _safeMint(to, _tokenIdCounter.current()); _tokenIdCounter.increment(); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) whenNotPaused { super._beforeTokenTransfer(from, to, tokenId); } function bannersOwned(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { 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 _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function withdraw() public onlyOwner{ uint256 amount=(address(this).balance); payable(msg.sender).transfer(amount); } receive() external payable { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"bannersOwned","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_addr","type":"address"}],"name":"distBanners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"distBannersMulti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setIPFSHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyAddress","type":"address"}],"name":"setRoyaltyAddress","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600f80546001600160a01b03191673fcbab1bf6c5334eff4a638489e4fd32adf2b3df21790556101f46010553480156200003d57600080fd5b506040518060400160405280600b81526020016a48616d737465724c6f726560a81b8152506040518060400160405280600b81526020016a48414d535445524c4f524560a81b81525081600090805190602001906200009e92919062000108565b508051620000b490600190602084019062000108565b5050600b80546001600160a81b0319163361010081029190911790915560405190915081906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001eb565b8280546200011690620001ae565b90600052602060002090601f0160209004810192826200013a576000855562000185565b82601f106200015557805160ff191683800117855562000185565b8280016001018555821562000185579182015b828111156200018557825182559160200191906001019062000168565b506200019392915062000197565b5090565b5b8082111562000193576000815560010162000198565b600181811c90821680620001c357607f821691505b60208210811415620001e557634e487b7160e01b600052602260045260246000fd5b50919050565b61279c80620001fb6000396000f3fe6080604052600436106102085760003560e01c806355f804b311610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105df578063d5abeb01146105ff578063d6e3f68814610615578063e985e9c514610635578063f2fde38b1461067e57600080fd5b8063a22cb46514610552578063b34fd42c14610572578063b88d4fde1461059f578063b8a76f54146105bf57600080fd5b806370a08231116100e757806370a08231146104d0578063715018a6146104f05780638456cb59146105055780638da5cb5b1461051a57806395d89b411461053d57600080fd5b806355f804b3146104635780635c975abb146104835780636352211e1461049b5780636c0360eb146104bb57600080fd5b80632a55205a1161019b5780633ccfd60b1161016a5780633ccfd60b146103d95780633f4ba83a146103ee57806342842e0e1461040357806342966c68146104235780634f6ccce71461044357600080fd5b80632a55205a1461033a5780632f745c591461037957806336e79a5a14610399578063381073e3146103b957600080fd5b8063095ea7b3116101d7578063095ea7b3146102c557806318160ddd146102e557806323b872dd1461030457806329ee566c1461032457600080fd5b806301ffc9a71461021457806306d254da1461024957806306fdde031461026b578063081812fc1461028d57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f36600461229a565b61069e565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061026961026436600461206d565b6106c9565b005b34801561027757600080fd5b50610280610724565b604051610240919061251c565b34801561029957600080fd5b506102ad6102a8366004612341565b6107b6565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e03660046121b6565b61084b565b3480156102f157600080fd5b506008545b604051908152602001610240565b34801561031057600080fd5b5061026961031f3660046120c2565b610961565b34801561033057600080fd5b506102f660105481565b34801561034657600080fd5b5061035a61035536600461237d565b610993565b604080516001600160a01b039093168352602083019190915201610240565b34801561038557600080fd5b506102f66103943660046121b6565b6109cd565b3480156103a557600080fd5b506102696103b436600461231d565b610a63565b3480156103c557600080fd5b506102696103d436600461235a565b610b08565b3480156103e557600080fd5b50610269610b5e565b3480156103fa57600080fd5b50610269610bc1565b34801561040f57600080fd5b5061026961041e3660046120c2565b610bfb565b34801561042f57600080fd5b5061026961043e366004612341565b610c16565b34801561044f57600080fd5b506102f661045e366004612341565b610c90565b34801561046f57600080fd5b5061026961047e3660046122d4565b610d23565b34801561048f57600080fd5b50600b5460ff16610234565b3480156104a757600080fd5b506102ad6104b6366004612341565b610d66565b3480156104c757600080fd5b50610280610ddd565b3480156104dc57600080fd5b506102f66104eb36600461206d565b610e6b565b3480156104fc57600080fd5b50610269610ef2565b34801561051157600080fd5b50610269610f72565b34801561052657600080fd5b50600b5461010090046001600160a01b03166102ad565b34801561054957600080fd5b50610280610faa565b34801561055e57600080fd5b5061026961056d36600461217a565b610fb9565b34801561057e57600080fd5b5061059261058d36600461206d565b61107e565b60405161024091906124d8565b3480156105ab57600080fd5b506102696105ba3660046120fe565b61113d565b3480156105cb57600080fd5b506102696105da3660046122d4565b611175565b3480156105eb57600080fd5b506102806105fa366004612341565b6111b8565b34801561060b57600080fd5b506102f6610d0581565b34801561062157600080fd5b506102696106303660046121e0565b611232565b34801561064157600080fd5b5061023461065036600461208f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068a57600080fd5b5061026961069936600461206d565b6112a3565b60006001600160e01b0319821663152a902d60e11b14806106c357506106c38261139f565b92915050565b600b546001600160a01b036101009091041633146107025760405162461bcd60e51b81526004016106f990612581565b60405180910390fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610733906126a8565b80601f016020809104026020016040519081016040528092919081815260200182805461075f906126a8565b80156107ac5780601f10610781576101008083540402835291602001916107ac565b820191906000526020600020905b81548152906001019060200180831161078f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661082f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f9565b506000908152600460205260409020546001600160a01b031690565b600061085682610d66565b9050806001600160a01b0316836001600160a01b031614156108c45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f9565b336001600160a01b03821614806108e057506108e08133610650565b6109525760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f9565b61095c83836113c4565b505050565b61096c335b82611432565b6109885760405162461bcd60e51b81526004016106f9906125b6565b61095c838383611529565b600f5460105460009182916001600160a01b0390911690612710906109b89086612672565b6109c29190612650565b915091509250929050565b60006109d883610e6b565b8210610a3a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106f9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610a935760405162461bcd60e51b81526004016106f990612581565b6102ee8161ffff161115610aff5760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479206d7573742062652067726561746572207468616e206f722060448201526c657175616c20746f20372e352560981b60648201526084016106f9565b61ffff16601055565b600b546001600160a01b03610100909104163314610b385760405162461bcd60e51b81526004016106f990612581565b60005b8281101561095c57610b4c826116d4565b80610b56816126dd565b915050610b3b565b600b546001600160a01b03610100909104163314610b8e5760405162461bcd60e51b81526004016106f990612581565b6040514790339082156108fc029083906000818181858888f19350505050158015610bbd573d6000803e3d6000fd5b5050565b600b546001600160a01b03610100909104163314610bf15760405162461bcd60e51b81526004016106f990612581565b610bf9611742565b565b61095c8383836040518060200160405280600081525061113d565b610c1f33610966565b610c845760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016106f9565b610c8d816117d5565b50565b6000610c9b60085490565b8210610cfe5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106f9565b60088281548110610d1157610d11612724565b90600052602060002001549050919050565b600b546001600160a01b03610100909104163314610d535760405162461bcd60e51b81526004016106f990612581565b8051610bbd90600d906020840190611f2a565b6000818152600260205260408120546001600160a01b0316806106c35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f9565b600d8054610dea906126a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e16906126a8565b8015610e635780601f10610e3857610100808354040283529160200191610e63565b820191906000526020600020905b815481529060010190602001808311610e4657829003601f168201915b505050505081565b60006001600160a01b038216610ed65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f9565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03610100909104163314610f225760405162461bcd60e51b81526004016106f990612581565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b600b546001600160a01b03610100909104163314610fa25760405162461bcd60e51b81526004016106f990612581565b610bf96117de565b606060018054610733906126a8565b6001600160a01b0382163314156110125760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6060600061108b83610e6b565b9050806110ac5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156110c7576110c761273a565b6040519080825280602002602001820160405280156110f0578160200160208202803683370190505b50905060005b828110156110a45761110885826109cd565b82828151811061111a5761111a612724565b60209081029190910101528061112f816126dd565b9150506110f6565b50919050565b6111473383611432565b6111635760405162461bcd60e51b81526004016106f9906125b6565b61116f84848484611859565b50505050565b600b546001600160a01b036101009091041633146111a55760405162461bcd60e51b81526004016106f990612581565b8051610bbd90600e906020840190611f2a565b60606111c360085490565b82106112075760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88191bd95cdb89dd08195e1a5cdd606a1b60448201526064016106f9565b600d600e60405160200161121c929190612486565b6040516020818303038152906040529050919050565b600b546001600160a01b036101009091041633146112625760405162461bcd60e51b81526004016106f990612581565b60005b825181101561095c576112918284838151811061128457611284612724565b602002602001015161188c565b8061129b816126dd565b915050611265565b600b546001600160a01b036101009091041633146112d35760405162461bcd60e51b81526004016106f990612581565b6001600160a01b0381166113385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f9565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006001600160e01b0319821663780e9d6360e01b14806106c357506106c3826118b2565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113f982610d66565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f9565b60006114b683610d66565b9050806001600160a01b0316846001600160a01b031614806114f15750836001600160a01b03166114e6846107b6565b6001600160a01b0316145b8061152157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661153c82610d66565b6001600160a01b0316146115a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f9565b6001600160a01b0382166116065760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f9565b611611838383611902565b61161c6000826113c4565b6001600160a01b0383166000908152600360205260408120805460019290611645908490612691565b90915550506001600160a01b0382166000908152600360205260408120805460019290611673908490612638565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d056116e060085490565b106117225760405162461bcd60e51b8152602060048201526012602482015271105b1b0810985b9b995c9cc8135a5b9d195960721b60448201526064016106f9565b6117348161172f600c5490565b611953565b610c8d600c80546001019055565b600b5460ff1661178b5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106f9565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610c8d8161196d565b600b5460ff16156118245760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106f9565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117b83390565b611864848484611529565b611870848484846119ad565b61116f5760405162461bcd60e51b81526004016106f99061252f565b60005b8281101561095c576118a0826116d4565b806118aa816126dd565b91505061188f565b60006001600160e01b031982166380ac58cd60e01b14806118e357506001600160e01b03198216635b5e139f60e01b145b806106c357506301ffc9a760e01b6001600160e01b03198316146106c3565b600b5460ff16156119485760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106f9565b61095c838383611aba565b610bbd828260405180602001604052806000815250611b72565b61197681611ba5565b6000818152600a60205260409020805461198f906126a8565b159050610c8d576000818152600a60205260408120610c8d91611fae565b60006001600160a01b0384163b15611aaf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119f190339089908890889060040161249b565b602060405180830381600087803b158015611a0b57600080fd5b505af1925050508015611a3b575060408051601f3d908101601f19168201909252611a38918101906122b7565b60015b611a95573d808015611a69576040519150601f19603f3d011682016040523d82523d6000602084013e611a6e565b606091505b508051611a8d5760405162461bcd60e51b81526004016106f99061252f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611521565b506001949350505050565b6001600160a01b038316611b1557611b1081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b38565b816001600160a01b0316836001600160a01b031614611b3857611b388382611c4c565b6001600160a01b038216611b4f5761095c81611ce9565b826001600160a01b0316826001600160a01b03161461095c5761095c8282611d98565b611b7c8383611ddc565b611b8960008484846119ad565b61095c5760405162461bcd60e51b81526004016106f99061252f565b6000611bb082610d66565b9050611bbe81600084611902565b611bc96000836113c4565b6001600160a01b0381166000908152600360205260408120805460019290611bf2908490612691565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001611c5984610e6b565b611c639190612691565b600083815260076020526040902054909150808214611cb6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cfb90600190612691565b60008381526009602052604081205460088054939450909284908110611d2357611d23612724565b906000526020600020015490508060088381548110611d4457611d44612724565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d7c57611d7c61270e565b6001900381819060005260206000200160009055905550505050565b6000611da383610e6b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e325760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f9565b6000818152600260205260409020546001600160a01b031615611e975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f9565b611ea360008383611902565b6001600160a01b0382166000908152600360205260408120805460019290611ecc908490612638565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f36906126a8565b90600052602060002090601f016020900481019282611f585760008555611f9e565b82601f10611f7157805160ff1916838001178555611f9e565b82800160010185558215611f9e579182015b82811115611f9e578251825591602001919060010190611f83565b50611faa929150611fe4565b5090565b508054611fba906126a8565b6000825580601f10611fca575050565b601f016020900490600052602060002090810190610c8d91905b5b80821115611faa5760008155600101611fe5565b600067ffffffffffffffff8311156120135761201361273a565b612026601f8401601f1916602001612607565b905082815283838301111561203a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461206857600080fd5b919050565b60006020828403121561207f57600080fd5b61208882612051565b9392505050565b600080604083850312156120a257600080fd5b6120ab83612051565b91506120b960208401612051565b90509250929050565b6000806000606084860312156120d757600080fd5b6120e084612051565b92506120ee60208501612051565b9150604084013590509250925092565b6000806000806080858703121561211457600080fd5b61211d85612051565b935061212b60208601612051565b925060408501359150606085013567ffffffffffffffff81111561214e57600080fd5b8501601f8101871361215f57600080fd5b61216e87823560208401611ff9565b91505092959194509250565b6000806040838503121561218d57600080fd5b61219683612051565b9150602083013580151581146121ab57600080fd5b809150509250929050565b600080604083850312156121c957600080fd5b6121d283612051565b946020939093013593505050565b600080604083850312156121f357600080fd5b823567ffffffffffffffff8082111561220b57600080fd5b818501915085601f83011261221f57600080fd5b81356020828211156122335761223361273a565b8160051b9250612244818401612607565b8281528181019085830185870184018b101561225f57600080fd5b600096505b848710156122895761227581612051565b835260019690960195918301918301612264565b509997909101359750505050505050565b6000602082840312156122ac57600080fd5b813561208881612750565b6000602082840312156122c957600080fd5b815161208881612750565b6000602082840312156122e657600080fd5b813567ffffffffffffffff8111156122fd57600080fd5b8201601f8101841361230e57600080fd5b61152184823560208401611ff9565b60006020828403121561232f57600080fd5b813561ffff8116811461208857600080fd5b60006020828403121561235357600080fd5b5035919050565b6000806040838503121561236d57600080fd5b823591506120b960208401612051565b6000806040838503121561239057600080fd5b50508035926020909101359150565b6000815180845260005b818110156123c5576020818501810151868301820152016123a9565b818111156123d7576000602083870101525b50601f01601f19169290920160200192915050565b8054600090600181811c908083168061240657607f831692505b602080841082141561242857634e487b7160e01b600052602260045260246000fd5b81801561243c576001811461244d5761247a565b60ff1986168952848901965061247a565b60008881526020902060005b868110156124725781548b820152908501908301612459565b505084890196505b50505050505092915050565b600061152161249583866123ec565b846123ec565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124ce9083018461239f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612510578351835292840192918401916001016124f4565b50909695505050505050565b602081526000612088602083018461239f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126305761263061273a565b604052919050565b6000821982111561264b5761264b6126f8565b500190565b60008261266d57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561268c5761268c6126f8565b500290565b6000828210156126a3576126a36126f8565b500390565b600181811c908216806126bc57607f821691505b6020821081141561113757634e487b7160e01b600052602260045260246000fd5b60006000198214156126f1576126f16126f8565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8d57600080fdfea2646970667358221220066284ce21cbac8985968544a7c096dd2af74f64a61e69c56b85e5fce927b95564736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102085760003560e01c806355f804b311610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146105df578063d5abeb01146105ff578063d6e3f68814610615578063e985e9c514610635578063f2fde38b1461067e57600080fd5b8063a22cb46514610552578063b34fd42c14610572578063b88d4fde1461059f578063b8a76f54146105bf57600080fd5b806370a08231116100e757806370a08231146104d0578063715018a6146104f05780638456cb59146105055780638da5cb5b1461051a57806395d89b411461053d57600080fd5b806355f804b3146104635780635c975abb146104835780636352211e1461049b5780636c0360eb146104bb57600080fd5b80632a55205a1161019b5780633ccfd60b1161016a5780633ccfd60b146103d95780633f4ba83a146103ee57806342842e0e1461040357806342966c68146104235780634f6ccce71461044357600080fd5b80632a55205a1461033a5780632f745c591461037957806336e79a5a14610399578063381073e3146103b957600080fd5b8063095ea7b3116101d7578063095ea7b3146102c557806318160ddd146102e557806323b872dd1461030457806329ee566c1461032457600080fd5b806301ffc9a71461021457806306d254da1461024957806306fdde031461026b578063081812fc1461028d57600080fd5b3661020f57005b600080fd5b34801561022057600080fd5b5061023461022f36600461229a565b61069e565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061026961026436600461206d565b6106c9565b005b34801561027757600080fd5b50610280610724565b604051610240919061251c565b34801561029957600080fd5b506102ad6102a8366004612341565b6107b6565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e03660046121b6565b61084b565b3480156102f157600080fd5b506008545b604051908152602001610240565b34801561031057600080fd5b5061026961031f3660046120c2565b610961565b34801561033057600080fd5b506102f660105481565b34801561034657600080fd5b5061035a61035536600461237d565b610993565b604080516001600160a01b039093168352602083019190915201610240565b34801561038557600080fd5b506102f66103943660046121b6565b6109cd565b3480156103a557600080fd5b506102696103b436600461231d565b610a63565b3480156103c557600080fd5b506102696103d436600461235a565b610b08565b3480156103e557600080fd5b50610269610b5e565b3480156103fa57600080fd5b50610269610bc1565b34801561040f57600080fd5b5061026961041e3660046120c2565b610bfb565b34801561042f57600080fd5b5061026961043e366004612341565b610c16565b34801561044f57600080fd5b506102f661045e366004612341565b610c90565b34801561046f57600080fd5b5061026961047e3660046122d4565b610d23565b34801561048f57600080fd5b50600b5460ff16610234565b3480156104a757600080fd5b506102ad6104b6366004612341565b610d66565b3480156104c757600080fd5b50610280610ddd565b3480156104dc57600080fd5b506102f66104eb36600461206d565b610e6b565b3480156104fc57600080fd5b50610269610ef2565b34801561051157600080fd5b50610269610f72565b34801561052657600080fd5b50600b5461010090046001600160a01b03166102ad565b34801561054957600080fd5b50610280610faa565b34801561055e57600080fd5b5061026961056d36600461217a565b610fb9565b34801561057e57600080fd5b5061059261058d36600461206d565b61107e565b60405161024091906124d8565b3480156105ab57600080fd5b506102696105ba3660046120fe565b61113d565b3480156105cb57600080fd5b506102696105da3660046122d4565b611175565b3480156105eb57600080fd5b506102806105fa366004612341565b6111b8565b34801561060b57600080fd5b506102f6610d0581565b34801561062157600080fd5b506102696106303660046121e0565b611232565b34801561064157600080fd5b5061023461065036600461208f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561068a57600080fd5b5061026961069936600461206d565b6112a3565b60006001600160e01b0319821663152a902d60e11b14806106c357506106c38261139f565b92915050565b600b546001600160a01b036101009091041633146107025760405162461bcd60e51b81526004016106f990612581565b60405180910390fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610733906126a8565b80601f016020809104026020016040519081016040528092919081815260200182805461075f906126a8565b80156107ac5780601f10610781576101008083540402835291602001916107ac565b820191906000526020600020905b81548152906001019060200180831161078f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661082f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f9565b506000908152600460205260409020546001600160a01b031690565b600061085682610d66565b9050806001600160a01b0316836001600160a01b031614156108c45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106f9565b336001600160a01b03821614806108e057506108e08133610650565b6109525760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f9565b61095c83836113c4565b505050565b61096c335b82611432565b6109885760405162461bcd60e51b81526004016106f9906125b6565b61095c838383611529565b600f5460105460009182916001600160a01b0390911690612710906109b89086612672565b6109c29190612650565b915091509250929050565b60006109d883610e6b565b8210610a3a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106f9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610a935760405162461bcd60e51b81526004016106f990612581565b6102ee8161ffff161115610aff5760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479206d7573742062652067726561746572207468616e206f722060448201526c657175616c20746f20372e352560981b60648201526084016106f9565b61ffff16601055565b600b546001600160a01b03610100909104163314610b385760405162461bcd60e51b81526004016106f990612581565b60005b8281101561095c57610b4c826116d4565b80610b56816126dd565b915050610b3b565b600b546001600160a01b03610100909104163314610b8e5760405162461bcd60e51b81526004016106f990612581565b6040514790339082156108fc029083906000818181858888f19350505050158015610bbd573d6000803e3d6000fd5b5050565b600b546001600160a01b03610100909104163314610bf15760405162461bcd60e51b81526004016106f990612581565b610bf9611742565b565b61095c8383836040518060200160405280600081525061113d565b610c1f33610966565b610c845760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016106f9565b610c8d816117d5565b50565b6000610c9b60085490565b8210610cfe5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106f9565b60088281548110610d1157610d11612724565b90600052602060002001549050919050565b600b546001600160a01b03610100909104163314610d535760405162461bcd60e51b81526004016106f990612581565b8051610bbd90600d906020840190611f2a565b6000818152600260205260408120546001600160a01b0316806106c35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106f9565b600d8054610dea906126a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610e16906126a8565b8015610e635780601f10610e3857610100808354040283529160200191610e63565b820191906000526020600020905b815481529060010190602001808311610e4657829003601f168201915b505050505081565b60006001600160a01b038216610ed65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106f9565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03610100909104163314610f225760405162461bcd60e51b81526004016106f990612581565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b600b546001600160a01b03610100909104163314610fa25760405162461bcd60e51b81526004016106f990612581565b610bf96117de565b606060018054610733906126a8565b6001600160a01b0382163314156110125760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6060600061108b83610e6b565b9050806110ac5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156110c7576110c761273a565b6040519080825280602002602001820160405280156110f0578160200160208202803683370190505b50905060005b828110156110a45761110885826109cd565b82828151811061111a5761111a612724565b60209081029190910101528061112f816126dd565b9150506110f6565b50919050565b6111473383611432565b6111635760405162461bcd60e51b81526004016106f9906125b6565b61116f84848484611859565b50505050565b600b546001600160a01b036101009091041633146111a55760405162461bcd60e51b81526004016106f990612581565b8051610bbd90600e906020840190611f2a565b60606111c360085490565b82106112075760405162461bcd60e51b8152602060048201526013602482015272151bdad95b88191bd95cdb89dd08195e1a5cdd606a1b60448201526064016106f9565b600d600e60405160200161121c929190612486565b6040516020818303038152906040529050919050565b600b546001600160a01b036101009091041633146112625760405162461bcd60e51b81526004016106f990612581565b60005b825181101561095c576112918284838151811061128457611284612724565b602002602001015161188c565b8061129b816126dd565b915050611265565b600b546001600160a01b036101009091041633146112d35760405162461bcd60e51b81526004016106f990612581565b6001600160a01b0381166113385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f9565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006001600160e01b0319821663780e9d6360e01b14806106c357506106c3826118b2565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113f982610d66565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114ab5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106f9565b60006114b683610d66565b9050806001600160a01b0316846001600160a01b031614806114f15750836001600160a01b03166114e6846107b6565b6001600160a01b0316145b8061152157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661153c82610d66565b6001600160a01b0316146115a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106f9565b6001600160a01b0382166116065760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106f9565b611611838383611902565b61161c6000826113c4565b6001600160a01b0383166000908152600360205260408120805460019290611645908490612691565b90915550506001600160a01b0382166000908152600360205260408120805460019290611673908490612638565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d056116e060085490565b106117225760405162461bcd60e51b8152602060048201526012602482015271105b1b0810985b9b995c9cc8135a5b9d195960721b60448201526064016106f9565b6117348161172f600c5490565b611953565b610c8d600c80546001019055565b600b5460ff1661178b5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016106f9565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610c8d8161196d565b600b5460ff16156118245760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106f9565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117b83390565b611864848484611529565b611870848484846119ad565b61116f5760405162461bcd60e51b81526004016106f99061252f565b60005b8281101561095c576118a0826116d4565b806118aa816126dd565b91505061188f565b60006001600160e01b031982166380ac58cd60e01b14806118e357506001600160e01b03198216635b5e139f60e01b145b806106c357506301ffc9a760e01b6001600160e01b03198316146106c3565b600b5460ff16156119485760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016106f9565b61095c838383611aba565b610bbd828260405180602001604052806000815250611b72565b61197681611ba5565b6000818152600a60205260409020805461198f906126a8565b159050610c8d576000818152600a60205260408120610c8d91611fae565b60006001600160a01b0384163b15611aaf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119f190339089908890889060040161249b565b602060405180830381600087803b158015611a0b57600080fd5b505af1925050508015611a3b575060408051601f3d908101601f19168201909252611a38918101906122b7565b60015b611a95573d808015611a69576040519150601f19603f3d011682016040523d82523d6000602084013e611a6e565b606091505b508051611a8d5760405162461bcd60e51b81526004016106f99061252f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611521565b506001949350505050565b6001600160a01b038316611b1557611b1081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b38565b816001600160a01b0316836001600160a01b031614611b3857611b388382611c4c565b6001600160a01b038216611b4f5761095c81611ce9565b826001600160a01b0316826001600160a01b03161461095c5761095c8282611d98565b611b7c8383611ddc565b611b8960008484846119ad565b61095c5760405162461bcd60e51b81526004016106f99061252f565b6000611bb082610d66565b9050611bbe81600084611902565b611bc96000836113c4565b6001600160a01b0381166000908152600360205260408120805460019290611bf2908490612691565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006001611c5984610e6b565b611c639190612691565b600083815260076020526040902054909150808214611cb6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cfb90600190612691565b60008381526009602052604081205460088054939450909284908110611d2357611d23612724565b906000526020600020015490508060088381548110611d4457611d44612724565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d7c57611d7c61270e565b6001900381819060005260206000200160009055905550505050565b6000611da383610e6b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e325760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f9565b6000818152600260205260409020546001600160a01b031615611e975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106f9565b611ea360008383611902565b6001600160a01b0382166000908152600360205260408120805460019290611ecc908490612638565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f36906126a8565b90600052602060002090601f016020900481019282611f585760008555611f9e565b82601f10611f7157805160ff1916838001178555611f9e565b82800160010185558215611f9e579182015b82811115611f9e578251825591602001919060010190611f83565b50611faa929150611fe4565b5090565b508054611fba906126a8565b6000825580601f10611fca575050565b601f016020900490600052602060002090810190610c8d91905b5b80821115611faa5760008155600101611fe5565b600067ffffffffffffffff8311156120135761201361273a565b612026601f8401601f1916602001612607565b905082815283838301111561203a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461206857600080fd5b919050565b60006020828403121561207f57600080fd5b61208882612051565b9392505050565b600080604083850312156120a257600080fd5b6120ab83612051565b91506120b960208401612051565b90509250929050565b6000806000606084860312156120d757600080fd5b6120e084612051565b92506120ee60208501612051565b9150604084013590509250925092565b6000806000806080858703121561211457600080fd5b61211d85612051565b935061212b60208601612051565b925060408501359150606085013567ffffffffffffffff81111561214e57600080fd5b8501601f8101871361215f57600080fd5b61216e87823560208401611ff9565b91505092959194509250565b6000806040838503121561218d57600080fd5b61219683612051565b9150602083013580151581146121ab57600080fd5b809150509250929050565b600080604083850312156121c957600080fd5b6121d283612051565b946020939093013593505050565b600080604083850312156121f357600080fd5b823567ffffffffffffffff8082111561220b57600080fd5b818501915085601f83011261221f57600080fd5b81356020828211156122335761223361273a565b8160051b9250612244818401612607565b8281528181019085830185870184018b101561225f57600080fd5b600096505b848710156122895761227581612051565b835260019690960195918301918301612264565b509997909101359750505050505050565b6000602082840312156122ac57600080fd5b813561208881612750565b6000602082840312156122c957600080fd5b815161208881612750565b6000602082840312156122e657600080fd5b813567ffffffffffffffff8111156122fd57600080fd5b8201601f8101841361230e57600080fd5b61152184823560208401611ff9565b60006020828403121561232f57600080fd5b813561ffff8116811461208857600080fd5b60006020828403121561235357600080fd5b5035919050565b6000806040838503121561236d57600080fd5b823591506120b960208401612051565b6000806040838503121561239057600080fd5b50508035926020909101359150565b6000815180845260005b818110156123c5576020818501810151868301820152016123a9565b818111156123d7576000602083870101525b50601f01601f19169290920160200192915050565b8054600090600181811c908083168061240657607f831692505b602080841082141561242857634e487b7160e01b600052602260045260246000fd5b81801561243c576001811461244d5761247a565b60ff1986168952848901965061247a565b60008881526020902060005b868110156124725781548b820152908501908301612459565b505084890196505b50505050505092915050565b600061152161249583866123ec565b846123ec565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124ce9083018461239f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612510578351835292840192918401916001016124f4565b50909695505050505050565b602081526000612088602083018461239f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126305761263061273a565b604052919050565b6000821982111561264b5761264b6126f8565b500190565b60008261266d57634e487b7160e01b600052601260045260246000fd5b500490565b600081600019048311821515161561268c5761268c6126f8565b500290565b6000828210156126a3576126a36126f8565b500390565b600181811c908216806126bc57607f821691505b6020821081141561113757634e487b7160e01b600052602260045260246000fd5b60006000198214156126f1576126f16126f8565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8d57600080fdfea2646970667358221220066284ce21cbac8985968544a7c096dd2af74f64a61e69c56b85e5fce927b95564736f6c63430008070033
Deployed Bytecode Sourcemap
52873:4255:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55694:292;;;;;;;;;;-1:-1:-1;55694:292:0;;;;;:::i;:::-;;:::i;:::-;;;9163:14:1;;9156:22;9138:41;;9126:2;9111:18;55694:292:0;;;;;;;;54742:122;;;;;;;;;;-1:-1:-1;54742:122:0;;;;;:::i;:::-;;:::i;:::-;;22839:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24421:308::-;;;;;;;;;;-1:-1:-1;24421:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7545:32:1;;;7527:51;;7515:2;7500:18;24421:308:0;7381:203:1;23944:411:0;;;;;;;;;;-1:-1:-1;23944:411:0;;;;;:::i;:::-;;:::i;37505:113::-;;;;;;;;;;-1:-1:-1;37593:10:0;:17;37505:113;;;18983:25:1;;;18971:2;18956:18;37505:113:0;18837:177:1;25480:376:0;;;;;;;;;;-1:-1:-1;25480:376:0;;;;;:::i;:::-;;:::i;53311:28::-;;;;;;;;;;;;;;;;53817:238;;;;;;;;;;-1:-1:-1;53817:238:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;8274:32:1;;;8256:51;;8338:2;8323:18;;8316:34;;;;8229:18;53817:238:0;8082:274:1;37086:343:0;;;;;;;;;;-1:-1:-1;37086:343:0;;;;;:::i;:::-;;:::i;54434:296::-;;;;;;;;;;-1:-1:-1;54434:296:0;;;;;:::i;:::-;;:::i;54876:170::-;;;;;;;;;;-1:-1:-1;54876:170:0;;;;;:::i;:::-;;:::i;56932:140::-;;;;;;;;;;;;;:::i;54138:65::-;;;;;;;;;;;;;:::i;25927:185::-;;;;;;;;;;-1:-1:-1;25927:185:0;;;;;:::i;:::-;;:::i;50262:282::-;;;;;;;;;;-1:-1:-1;50262:282:0;;;;;:::i;:::-;;:::i;37695:320::-;;;;;;;;;;-1:-1:-1;37695:320:0;;;;;:::i;:::-;;:::i;54211:102::-;;;;;;;;;;-1:-1:-1;54211:102:0;;;;;:::i;:::-;;:::i;46259:86::-;;;;;;;;;;-1:-1:-1;46330:7:0;;;;46259:86;;22446:326;;;;;;;;;;-1:-1:-1;22446:326:0;;;;;:::i;:::-;;:::i;53172:21::-;;;;;;;;;;;;;:::i;22089:295::-;;;;;;;;;;-1:-1:-1;22089:295:0;;;;;:::i;:::-;;:::i;49216:148::-;;;;;;;;;;;;;:::i;54069:61::-;;;;;;;;;;;;;:::i;48565:87::-;;;;;;;;;;-1:-1:-1;48638:6:0;;;;;-1:-1:-1;;;;;48638:6:0;48565:87;;23008:104;;;;;;;;;;;;;:::i;24801:327::-;;;;;;;;;;-1:-1:-1;24801:327:0;;;;;:::i;:::-;;:::i;56239:533::-;;;;;;;;;;-1:-1:-1;56239:533:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26183:365::-;;;;;;;;;;-1:-1:-1;26183:365:0;;;;;:::i;:::-;;:::i;54325:95::-;;;;;;;;;;-1:-1:-1;54325:95:0;;;;;:::i;:::-;;:::i;53527:282::-;;;;;;;;;;-1:-1:-1;53527:282:0;;;;;:::i;:::-;;:::i;53121:40::-;;;;;;;;;;;;53157:4;53121:40;;55058:211;;;;;;;;;;-1:-1:-1;55058:211:0;;;;;:::i;:::-;;:::i;25199:214::-;;;;;;;;;;-1:-1:-1;25199:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25370:25:0;;;25341:4;25370:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25199:214;49519:281;;;;;;;;;;-1:-1:-1;49519:281:0;;;;;:::i;:::-;;:::i;55694:292::-;55842:4;-1:-1:-1;;;;;;55884:41:0;;-1:-1:-1;;;55884:41:0;;:94;;;55942:36;55966:11;55942:23;:36::i;:::-;55864:114;55694:292;-1:-1:-1;;55694:292:0:o;54742:122::-;48638:6;;-1:-1:-1;;;;;48638:6:0;;;;;16974:10;48785:23;48777:68;;;;-1:-1:-1;;;48777:68:0;;;;;;;:::i;:::-;;;;;;;;;54824:14:::1;:32:::0;;-1:-1:-1;;;;;;54824:32:0::1;-1:-1:-1::0;;;;;54824:32:0;;;::::1;::::0;;;::::1;::::0;;54742:122::o;22839:100::-;22893:13;22926:5;22919:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22839:100;:::o;24421:308::-;24542:7;28184:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28184:16:0;24567:110;;;;-1:-1:-1;;;24567:110:0;;15791:2:1;24567:110:0;;;15773:21:1;15830:2;15810:18;;;15803:30;15869:34;15849:18;;;15842:62;-1:-1:-1;;;15920:18:1;;;15913:42;15972:19;;24567:110:0;15589:408:1;24567:110:0;-1:-1:-1;24697:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24697:24:0;;24421:308::o;23944:411::-;24025:13;24041:23;24056:7;24041:14;:23::i;:::-;24025:39;;24089:5;-1:-1:-1;;;;;24083:11:0;:2;-1:-1:-1;;;;;24083:11:0;;;24075:57;;;;-1:-1:-1;;;24075:57:0;;16975:2:1;24075:57:0;;;16957:21:1;17014:2;16994:18;;;16987:30;17053:34;17033:18;;;17026:62;-1:-1:-1;;;17104:18:1;;;17097:31;17145:19;;24075:57:0;16773:397:1;24075:57:0;16974:10;-1:-1:-1;;;;;24167:21:0;;;;:62;;-1:-1:-1;24192:37:0;24209:5;16974:10;25199:214;:::i;24192:37::-;24145:168;;;;-1:-1:-1;;;24145:168:0;;13425:2:1;24145:168:0;;;13407:21:1;13464:2;13444:18;;;13437:30;13503:34;13483:18;;;13476:62;13574:26;13554:18;;;13547:54;13618:19;;24145:168:0;13223:420:1;24145:168:0;24326:21;24335:2;24339:7;24326:8;:21::i;:::-;24014:341;23944:411;;:::o;25480:376::-;25689:41;16974:10;25708:12;25722:7;25689:18;:41::i;:::-;25667:140;;;;-1:-1:-1;;;25667:140:0;;;;;;;:::i;:::-;25820:28;25830:4;25836:2;25840:7;25820:9;:28::i;53817:238::-;54000:14;;54030:7;;53935:16;;;;-1:-1:-1;;;;;54000:14:0;;;;54041:5;;54017:20;;:10;:20;:::i;:::-;54016:30;;;;:::i;:::-;53992:55;;;;53817:238;;;;;:::o;37086:343::-;37228:7;37283:23;37300:5;37283:16;:23::i;:::-;37275:5;:31;37253:124;;;;-1:-1:-1;;;37253:124:0;;10313:2:1;37253:124:0;;;10295:21:1;10352:2;10332:18;;;10325:30;10391:34;10371:18;;;10364:62;-1:-1:-1;;;10442:18:1;;;10435:41;10493:19;;37253:124:0;10111:407:1;37253:124:0;-1:-1:-1;;;;;;37395:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37086:343::o;54434:296::-;48638:6;;-1:-1:-1;;;;;48638:6:0;;;;;16974:10;48785:23;48777:68;;;;-1:-1:-1;;;48777:68:0;;;;;;;:::i;:::-;54615:3:::1;54603:8;:15;;;;54581:110;;;::::0;-1:-1:-1;;;54581:110:0;;17377:2:1;54581:110:0::1;::::0;::::1;17359:21:1::0;17416:2;17396:18;;;17389:30;17455:34;17435:18;;;17428:62;-1:-1:-1;;;17506:18:1;;;17499:43;17559:19;;54581:110:0::1;17175:409:1::0;54581:110:0::1;54704:18;;:7;:18:::0;54434:296::o;54876:170::-;48638:6;;-1:-1:-1;;;;;48638:6:0;;;;;16974:10;48785:23;48777:68;;;;-1:-1:-1;;;48777:68:0;;;;;;;:::i;:::-;54961:9:::1;54956:83;54980:6;54976:1;:10;54956:83;;;55008:19;55021:5;55008:12;:19::i;:::-;54988:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54956:83;;56932:140:::0;48638:6;;-1:-1:-1;;;;;48638:6:0;;;;;16974:10;48785:23;48777:68;;;;-1:-1:-1;;;48777:68:0;;;;;;;:::i;:::-;57028:36:::1;::::0;56995:21:::1;::::0;57036:10:::1;::::0;57028:36;::::1;;;::::0;56995:21;;56979:14:::1;57028:36:::0;56979:14;57028:36;56995:21;57036:10;57028:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;56968:104;56932:140::o:0;54138:65::-;48638:6;;-1:-1:-1;;;;;48638:6:0;;;;;16974:10;48785:23;48777:68;;;;-1:-1:-1;;;48777:68:0;;;;;;;:::i;:::-;54185:10:::1;:8;:10::i;:::-;54138:65::o:0;25927:185::-;26065:39;26082:4;26088:2;26092:7;26065:39;;;;;;;;;;;;:16;:39::i;50262:282::-;50394:41;16974:10;50413:12;16894:98;50394:41;50372:139;;;;-1:-1:-1;;;50372:139:0;;18622:2:1;50372:139:0;;;18604:21:1;18661:2;18641:18;;;18634:30;18700:34;18680:18;;;18673:62;-1:-1:-1;;;18751:18:1;;;18744:46;18807:19;;50372:139:0;18420:412:1;50372:139:0;50522:14;50528:7;50522:5;:14::i;:::-;50262:282;:::o;37695:320::-;37815:7;37870:30;37593:10;:17;;37505:113;37870:30;37862:5;:38;37840:132;;;;-1:-1:-1;;;37840:132:0;;18209:2:1;37840:132:0;;;18191:21:1;18248:2;18228:18;;;18221:30;18287:34;18267:18;;;18260:62;-1:-1:-1;;;18338:18:1;;;18331:42;18390:19;;37840:132:0;18007:408:1;37840:132:0;37990:10;38001:5;37990:17;;;;;;;;:::i;:::-;;;;;;;;;37983:24;;37695:320;;;:::o;54211:102::-;48638:6;;-1:-1:-1;;;;;48638:6:0;;;;;16974:10;48785:23;48777:68;;;;-1:-1:-1;;;48777:68:0;;;;;;;:::i;:::-;54285:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;22446:326::-:0;22563:7;22604:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22604:16:0;22653:19;22631:110;;;;-1:-1:-1;;;22631:110:0;;14673:2:1;22631:110:0;;;14655:21:1;14712:2;14692:18;;;14685:30;14751:34;14731:18;;;14724:62;-1:-1:-1;;;14802:18:1;;;14795:39;14851:19;;22631:110:0;14471:405:1;53172:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22089:295::-;22206:7;-1:-1:-1;;;;;22253:19:0;;22231:111;;;;-1:-1:-1;;;22231:111:0;;14262:2:1;22231:111:0;;;14244:21:1;14301:2;14281:18;;;14274:30;14340:34;14320:18;;;14313:62;-1:-1:-1;;;14391:18:1;;;14384:40;14441:19;;22231:111:0;14060:406:1;22231:111:0;-1:-1:-1;;;;;;22360:16:0;;;;;:9;:16;;;;;;;22089:295::o;49216:148::-;48638:6;;-1:-1:-1;;;;;48638:6:0;;;;;16974:10;48785:23;48777:68;;;;-1:-1:-1;;;48777:68:0;;;;;;;:::i;:::-;49307:6:::1;::::0;49286:40:::1;::::0;49323:1:::1;::::0;49307:6:::1;::::0;::::1;-1:-1:-1::0;;;;;49307:6:0::1;::::0;49286:40:::1;::::0;49323:1;;49286:40:::1;49337:6;:19:::0;;-1:-1:-1;;;;;;49337:19:0::1;::::0;;49216:148::o;54069:61::-;48638:6;;-1:-1:-1;;;;;48638:6:0;;;;;16974:10;48785:23;48777:68;;;;-1:-1:-1;;;48777:68:0;;;;;;;:::i;:::-;54114:8:::1;:6;:8::i;23008:104::-:0;23064:13;23097:7;23090:14;;;;;:::i;24801:327::-;-1:-1:-1;;;;;24936:24:0;;16974:10;24936:24;;24928:62;;;;-1:-1:-1;;;24928:62:0;;12313:2:1;24928:62:0;;;12295:21:1;12352:2;12332:18;;;12325:30;12391:27;12371:18;;;12364:55;12436:18;;24928:62:0;12111:349:1;24928:62:0;16974:10;25003:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25003:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25003:53:0;;;;;;;;;;25072:48;;9138:41:1;;;25003:42:0;;16974:10;25072:48;;9111:18:1;25072:48:0;;;;;;;24801:327;;:::o;56239:533::-;56327:16;56361:18;56382:17;56392:6;56382:9;:17::i;:::-;56361:38;-1:-1:-1;56414:15:0;56410:355;;56453:16;;;56467:1;56453:16;;;;;;;;;;;-1:-1:-1;56446:23:0;56239:533;-1:-1:-1;;;56239:533:0:o;56410:355::-;56502:23;56542:10;56528:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56528:25:0;;56502:51;;56568:13;56596:130;56620:10;56612:5;:18;56596:130;;;56676:34;56696:6;56704:5;56676:19;:34::i;:::-;56660:6;56667:5;56660:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;56632:7;;;;:::i;:::-;;;;56596:130;;56410:355;56350:422;56239:533;;;:::o;26183:365::-;26372:41;16974:10;26405:7;26372:18;:41::i;:::-;26350:140;;;;-1:-1:-1;;;26350:140:0;;;;;;;:::i;:::-;26501:39;26515:4;26521:2;26525:7;26534:5;26501:13;:39::i;:::-;26183:365;;;;:::o;54325:95::-;48638:6;;-1:-1:-1;;;;;48638:6:0;;;;;16974:10;48785:23;48777:68;;;;-1:-1:-1;;;48777:68:0;;;;;;;:::i;:::-;54395:17;;::::1;::::0;:9:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;53527:282::-:0;53654:13;53703;37593:10;:17;;37505:113;53703:13;53693:7;:23;53685:55;;;;-1:-1:-1;;;53685:55:0;;9616:2:1;53685:55:0;;;9598:21:1;9655:2;9635:18;;;9628:30;-1:-1:-1;;;9674:18:1;;;9667:49;9733:18;;53685:55:0;9414:343:1;53685:55:0;53782:7;53790:9;53765:35;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53751:50;;53527:282;;;:::o;55058:211::-;48638:6;;-1:-1:-1;;;;;48638:6:0;;;;;16974:10;48785:23;48777:68;;;;-1:-1:-1;;;48777:68:0;;;;;;;:::i;:::-;55157:9:::1;55152:110;55176:5;:12;55172:1;:16;55152:110;;;55214:36;55234:6;55241:5;55247:1;55241:8;;;;;;;;:::i;:::-;;;;;;;55214:19;:36::i;:::-;55190:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55152:110;;49519:281:::0;48638:6;;-1:-1:-1;;;;;48638:6:0;;;;;16974:10;48785:23;48777:68;;;;-1:-1:-1;;;48777:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49622:22:0;::::1;49600:110;;;::::0;-1:-1:-1;;;49600:110:0;;11144:2:1;49600:110:0::1;::::0;::::1;11126:21:1::0;11183:2;11163:18;;;11156:30;11222:34;11202:18;;;11195:62;-1:-1:-1;;;11273:18:1;;;11266:36;11319:19;;49600:110:0::1;10942:402:1::0;49600:110:0::1;49747:6;::::0;49726:38:::1;::::0;-1:-1:-1;;;;;49726:38:0;;::::1;::::0;49747:6:::1;::::0;::::1;;::::0;49726:38:::1;::::0;;;::::1;49775:6;:17:::0;;-1:-1:-1;;;;;49775:17:0;;::::1;;;-1:-1:-1::0;;;;;;49775:17:0;;::::1;::::0;;;::::1;::::0;;49519:281::o;36702:300::-;36849:4;-1:-1:-1;;;;;;36891:50:0;;-1:-1:-1;;;36891:50:0;;:103;;;36958:36;36982:11;36958:23;:36::i;32218:174::-;32293:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32293:29:0;-1:-1:-1;;;;;32293:29:0;;;;;;;;:24;;32347:23;32293:24;32347:14;:23::i;:::-;-1:-1:-1;;;;;32338:46:0;;;;;;;;;;;32218:174;;:::o;28389:452::-;28518:4;28184:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28184:16:0;28540:110;;;;-1:-1:-1;;;28540:110:0;;12667:2:1;28540:110:0;;;12649:21:1;12706:2;12686:18;;;12679:30;12745:34;12725:18;;;12718:62;-1:-1:-1;;;12796:18:1;;;12789:42;12848:19;;28540:110:0;12465:408:1;28540:110:0;28661:13;28677:23;28692:7;28677:14;:23::i;:::-;28661:39;;28730:5;-1:-1:-1;;;;;28719:16:0;:7;-1:-1:-1;;;;;28719:16:0;;:64;;;;28776:7;-1:-1:-1;;;;;28752:31:0;:20;28764:7;28752:11;:20::i;:::-;-1:-1:-1;;;;;28752:31:0;;28719:64;:113;;;-1:-1:-1;;;;;;25370:25:0;;;25341:4;25370:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28800:32;28711:122;28389:452;-1:-1:-1;;;;28389:452:0:o;31485:615::-;31658:4;-1:-1:-1;;;;;31631:31:0;:23;31646:7;31631:14;:23::i;:::-;-1:-1:-1;;;;;31631:31:0;;31609:122;;;;-1:-1:-1;;;31609:122:0;;16565:2:1;31609:122:0;;;16547:21:1;16604:2;16584:18;;;16577:30;16643:34;16623:18;;;16616:62;-1:-1:-1;;;16694:18:1;;;16687:39;16743:19;;31609:122:0;16363:405:1;31609:122:0;-1:-1:-1;;;;;31750:16:0;;31742:65;;;;-1:-1:-1;;;31742:65:0;;11908:2:1;31742:65:0;;;11890:21:1;11947:2;11927:18;;;11920:30;11986:34;11966:18;;;11959:62;-1:-1:-1;;;12037:18:1;;;12030:34;12081:19;;31742:65:0;11706:400:1;31742:65:0;31820:39;31841:4;31847:2;31851:7;31820:20;:39::i;:::-;31924:29;31941:1;31945:7;31924:8;:29::i;:::-;-1:-1:-1;;;;;31966:15:0;;;;;;:9;:15;;;;;:20;;31985:1;;31966:15;:20;;31985:1;;31966:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31997:13:0;;;;;;:9;:13;;;;;:18;;32014:1;;31997:13;:18;;32014:1;;31997:18;:::i;:::-;;;;-1:-1:-1;;32026:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32026:21:0;-1:-1:-1;;;;;32026:21:0;;;;;;;;;32065:27;;32026:16;;32065:27;;;;;;;31485:615;;;:::o;55464:207::-;53157:4;55526:13;37593:10;:17;;37505:113;55526:13;:25;55518:56;;;;-1:-1:-1;;;55518:56:0;;15444:2:1;55518:56:0;;;15426:21:1;15483:2;15463:18;;;15456:30;-1:-1:-1;;;15502:18:1;;;15495:48;15560:18;;55518:56:0;15242:342:1;55518:56:0;55585:40;55595:2;55599:25;:15;51462:14;;51370:114;55599:25;55585:9;:40::i;:::-;55636:27;:15;51581:19;;51599:1;51581:19;;;51492:127;47318:120;46330:7;;;;46854:41;;;;-1:-1:-1;;;46854:41:0;;9964:2:1;46854:41:0;;;9946:21:1;10003:2;9983:18;;;9976:30;-1:-1:-1;;;10022:18:1;;;10015:50;10082:18;;46854:41:0;9762:344:1;46854:41:0;47377:7:::1;:15:::0;;-1:-1:-1;;47377:15:0::1;::::0;;47408:22:::1;16974:10:::0;47417:12:::1;47408:22;::::0;-1:-1:-1;;;;;7545:32:1;;;7527:51;;7515:2;7500:18;47408:22:0::1;;;;;;;47318:120::o:0;56786:138::-;56896:20;56908:7;56896:11;:20::i;47059:118::-;46330:7;;;;46584:9;46576:38;;;;-1:-1:-1;;;46576:38:0;;13080:2:1;46576:38:0;;;13062:21:1;13119:2;13099:18;;;13092:30;-1:-1:-1;;;13138:18:1;;;13131:46;13194:18;;46576:38:0;12878:340:1;46576:38:0;47119:7:::1;:14:::0;;-1:-1:-1;;47119:14:0::1;47129:4;47119:14;::::0;;47149:20:::1;47156:12;16974:10:::0;;16894:98;27430:352;27587:28;27597:4;27603:2;27607:7;27587:9;:28::i;:::-;27648:48;27671:4;27677:2;27681:7;27690:5;27648:22;:48::i;:::-;27626:148;;;;-1:-1:-1;;;27626:148:0;;;;;;;:::i;55281:170::-;55366:9;55361:83;55385:6;55381:1;:10;55361:83;;;55413:19;55426:5;55413:12;:19::i;:::-;55393:3;;;;:::i;:::-;;;;55361:83;;21670:355;21817:4;-1:-1:-1;;;;;;21859:40:0;;-1:-1:-1;;;21859:40:0;;:105;;-1:-1:-1;;;;;;;21916:48:0;;-1:-1:-1;;;21916:48:0;21859:105;:158;;;-1:-1:-1;;;;;;;;;;20295:40:0;;;21981:36;20136:207;55998:229;46330:7;;;;46584:9;46576:38;;;;-1:-1:-1;;;46576:38:0;;13080:2:1;46576:38:0;;;13062:21:1;13119:2;13099:18;;;13092:30;-1:-1:-1;;;13138:18:1;;;13131:46;13194:18;;46576:38:0;12878:340:1;46576:38:0;56174:45:::1;56201:4;56207:2;56211:7;56174:26;:45::i;29183:110::-:0;29259:26;29269:2;29273:7;29259:26;;;;;;;;;;;;:9;:26::i;44972:206::-;45041:20;45053:7;45041:11;:20::i;:::-;45084:19;;;;:10;:19;;;;;45078:33;;;;;:::i;:::-;:38;;-1:-1:-1;45074:97:0;;45140:19;;;;:10;:19;;;;;45133:26;;;:::i;32957:1053::-;33112:4;-1:-1:-1;;;;;33133:13:0;;8688:20;8736:8;33129:874;;33186:175;;-1:-1:-1;;;33186:175:0;;-1:-1:-1;;;;;33186:36:0;;;;;:175;;16974:10;;33280:4;;33307:7;;33337:5;;33186:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33186:175:0;;;;;;;;-1:-1:-1;;33186:175:0;;;;;;;;;;;;:::i;:::-;;;33165:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33548:13:0;;33544:389;;33591:108;;-1:-1:-1;;;33591:108:0;;;;;;;:::i;33544:389::-;33883:6;33877:13;33868:6;33864:2;33860:15;33853:38;33165:783;-1:-1:-1;;;;;;33425:55:0;-1:-1:-1;;;33425:55:0;;-1:-1:-1;33418:62:0;;33129:874;-1:-1:-1;33987:4:0;32957:1053;;;;;;:::o;38628:589::-;-1:-1:-1;;;;;38834:18:0;;38830:187;;38869:40;38901:7;40044:10;:17;;40017:24;;;;:15;:24;;;;;:44;;;40072:24;;;;;;;;;;;;39940:164;38869:40;38830:187;;;38939:2;-1:-1:-1;;;;;38931:10:0;:4;-1:-1:-1;;;;;38931:10:0;;38927:90;;38958:47;38991:4;38997:7;38958:32;:47::i;:::-;-1:-1:-1;;;;;39031:16:0;;39027:183;;39064:45;39101:7;39064:36;:45::i;39027:183::-;39137:4;-1:-1:-1;;;;;39131:10:0;:2;-1:-1:-1;;;;;39131:10:0;;39127:83;;39158:40;39186:2;39190:7;39158:27;:40::i;29520:321::-;29650:18;29656:2;29660:7;29650:5;:18::i;:::-;29701:54;29732:1;29736:2;29740:7;29749:5;29701:22;:54::i;:::-;29679:154;;;;-1:-1:-1;;;29679:154:0;;;;;;;:::i;30788:360::-;30848:13;30864:23;30879:7;30864:14;:23::i;:::-;30848:39;;30900:48;30921:5;30936:1;30940:7;30900:20;:48::i;:::-;30989:29;31006:1;31010:7;30989:8;:29::i;:::-;-1:-1:-1;;;;;31031:16:0;;;;;;:9;:16;;;;;:21;;31051:1;;31031:16;:21;;31051:1;;31031:21;:::i;:::-;;;;-1:-1:-1;;31070:16:0;;;;:7;:16;;;;;;31063:23;;-1:-1:-1;;;;;;31063:23:0;;;31104:36;31078:7;;31070:16;-1:-1:-1;;;;;31104:36:0;;;;;31070:16;;31104:36;30837:311;30788:360;:::o;40731:1002::-;41011:22;41061:1;41036:22;41053:4;41036:16;:22::i;:::-;:26;;;;:::i;:::-;41073:18;41094:26;;;:17;:26;;;;;;41011:51;;-1:-1:-1;41227:28:0;;;41223:328;;-1:-1:-1;;;;;41294:18:0;;41272:19;41294:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41345:30;;;;;;:44;;;41462:30;;:17;:30;;;;;:43;;;41223:328;-1:-1:-1;41647:26:0;;;;:17;:26;;;;;;;;41640:33;;;-1:-1:-1;;;;;41691:18:0;;;;;:12;:18;;;;;:34;;;;;;;41684:41;40731:1002::o;42028:1079::-;42306:10;:17;42281:22;;42306:21;;42326:1;;42306:21;:::i;:::-;42338:18;42359:24;;;:15;:24;;;;;;42732:10;:26;;42281:46;;-1:-1:-1;42359:24:0;;42281:46;;42732:26;;;;;;:::i;:::-;;;;;;;;;42710:48;;42796:11;42771:10;42782;42771:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42876:28;;;:15;:28;;;;;;;:41;;;43048:24;;;;;43041:31;43083:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42099:1008;;;42028:1079;:::o;39518:221::-;39603:14;39620:20;39637:2;39620:16;:20::i;:::-;-1:-1:-1;;;;;39651:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39696:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39518:221:0:o;30177:382::-;-1:-1:-1;;;;;30257:16:0;;30249:61;;;;-1:-1:-1;;;30249:61:0;;15083:2:1;30249:61:0;;;15065:21:1;;;15102:18;;;15095:30;15161:34;15141:18;;;15134:62;15213:18;;30249:61:0;14881:356:1;30249:61:0;28160:4;28184:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28184:16:0;:30;30321:58;;;;-1:-1:-1;;;30321:58:0;;11551:2:1;30321:58:0;;;11533:21:1;11590:2;11570:18;;;11563:30;11629;11609:18;;;11602:58;11677:18;;30321:58:0;11349:352:1;30321:58:0;30392:45;30421:1;30425:2;30429:7;30392:20;:45::i;:::-;-1:-1:-1;;;;;30450:13:0;;;;;;:9;:13;;;;;:18;;30467:1;;30450:13;:18;;30467:1;;30450:18;:::i;:::-;;;;-1:-1:-1;;30479:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30479:21:0;-1:-1:-1;;;;;30479:21:0;;;;;;;;30518:33;;30479:16;;;30518:33;;30479:16;;30518:33;30177:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;:::-;744:39;603:186;-1:-1:-1;;;603:186:1:o;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:1033::-;2767:6;2775;2828:2;2816:9;2807:7;2803:23;2799:32;2796:52;;;2844:1;2841;2834:12;2796:52;2884:9;2871:23;2913:18;2954:2;2946:6;2943:14;2940:34;;;2970:1;2967;2960:12;2940:34;3008:6;2997:9;2993:22;2983:32;;3053:7;3046:4;3042:2;3038:13;3034:27;3024:55;;3075:1;3072;3065:12;3024:55;3111:2;3098:16;3133:4;3156:2;3152;3149:10;3146:36;;;3162:18;;:::i;:::-;3208:2;3205:1;3201:10;3191:20;;3231:28;3255:2;3251;3247:11;3231:28;:::i;:::-;3293:15;;;3324:12;;;;3356:11;;;3386;;;3382:20;;3379:33;-1:-1:-1;3376:53:1;;;3425:1;3422;3415:12;3376:53;3447:1;3438:10;;3457:169;3471:2;3468:1;3465:9;3457:169;;;3528:23;3547:3;3528:23;:::i;:::-;3516:36;;3489:1;3482:9;;;;;3572:12;;;;3604;;3457:169;;;-1:-1:-1;3645:5:1;3682:18;;;;3669:32;;-1:-1:-1;;;;;;;2674:1033:1:o;3712:245::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3878:9;3865:23;3897:30;3921:5;3897:30;:::i;3962:249::-;4031:6;4084:2;4072:9;4063:7;4059:23;4055:32;4052:52;;;4100:1;4097;4090:12;4052:52;4132:9;4126:16;4151:30;4175:5;4151:30;:::i;4216:450::-;4285:6;4338:2;4326:9;4317:7;4313:23;4309:32;4306:52;;;4354:1;4351;4344:12;4306:52;4394:9;4381:23;4427:18;4419:6;4416:30;4413:50;;;4459:1;4456;4449:12;4413:50;4482:22;;4535:4;4527:13;;4523:27;-1:-1:-1;4513:55:1;;4564:1;4561;4554:12;4513:55;4587:73;4652:7;4647:2;4634:16;4629:2;4625;4621:11;4587:73;:::i;4671:272::-;4729:6;4782:2;4770:9;4761:7;4757:23;4753:32;4750:52;;;4798:1;4795;4788:12;4750:52;4837:9;4824:23;4887:6;4880:5;4876:18;4869:5;4866:29;4856:57;;4909:1;4906;4899:12;4948:180;5007:6;5060:2;5048:9;5039:7;5035:23;5031:32;5028:52;;;5076:1;5073;5066:12;5028:52;-1:-1:-1;5099:23:1;;4948:180;-1:-1:-1;4948:180:1:o;5133:254::-;5201:6;5209;5262:2;5250:9;5241:7;5237:23;5233:32;5230:52;;;5278:1;5275;5268:12;5230:52;5314:9;5301:23;5291:33;;5343:38;5377:2;5366:9;5362:18;5343:38;:::i;5392:248::-;5460:6;5468;5521:2;5509:9;5500:7;5496:23;5492:32;5489:52;;;5537:1;5534;5527:12;5489:52;-1:-1:-1;;5560:23:1;;;5630:2;5615:18;;;5602:32;;-1:-1:-1;5392:248:1:o;5645:471::-;5686:3;5724:5;5718:12;5751:6;5746:3;5739:19;5776:1;5786:162;5800:6;5797:1;5794:13;5786:162;;;5862:4;5918:13;;;5914:22;;5908:29;5890:11;;;5886:20;;5879:59;5815:12;5786:162;;;5966:6;5963:1;5960:13;5957:87;;;6032:1;6025:4;6016:6;6011:3;6007:16;6003:27;5996:38;5957:87;-1:-1:-1;6098:2:1;6077:15;-1:-1:-1;;6073:29:1;6064:39;;;;6105:4;6060:50;;5645:471;-1:-1:-1;;5645:471:1:o;6121:973::-;6206:12;;6171:3;;6261:1;6281:18;;;;6334;;;;6361:61;;6415:4;6407:6;6403:17;6393:27;;6361:61;6441:2;6489;6481:6;6478:14;6458:18;6455:38;6452:161;;;6535:10;6530:3;6526:20;6523:1;6516:31;6570:4;6567:1;6560:15;6598:4;6595:1;6588:15;6452:161;6629:18;6656:104;;;;6774:1;6769:319;;;;6622:466;;6656:104;-1:-1:-1;;6689:24:1;;6677:37;;6734:16;;;;-1:-1:-1;6656:104:1;;6769:319;19372:1;19365:14;;;19409:4;19396:18;;6863:1;6877:165;6891:6;6888:1;6885:13;6877:165;;;6969:14;;6956:11;;;6949:35;7012:16;;;;6906:10;;6877:165;;;6881:3;;7071:6;7066:3;7062:16;7055:23;;6622:466;;;;;;;6121:973;;;;:::o;7099:277::-;7272:3;7297:73;7331:38;7365:3;7357:6;7331:38;:::i;:::-;7323:6;7297:73;:::i;7589:488::-;-1:-1:-1;;;;;7858:15:1;;;7840:34;;7910:15;;7905:2;7890:18;;7883:43;7957:2;7942:18;;7935:34;;;8005:3;8000:2;7985:18;;7978:31;;;7783:4;;8026:45;;8051:19;;8043:6;8026:45;:::i;:::-;8018:53;7589:488;-1:-1:-1;;;;;;7589:488:1:o;8361:632::-;8532:2;8584:21;;;8654:13;;8557:18;;;8676:22;;;8503:4;;8532:2;8755:15;;;;8729:2;8714:18;;;8503:4;8798:169;8812:6;8809:1;8806:13;8798:169;;;8873:13;;8861:26;;8942:15;;;;8907:12;;;;8834:1;8827:9;8798:169;;;-1:-1:-1;8984:3:1;;8361:632;-1:-1:-1;;;;;;8361:632:1:o;9190:219::-;9339:2;9328:9;9321:21;9302:4;9359:44;9399:2;9388:9;9384:18;9376:6;9359:44;:::i;10523:414::-;10725:2;10707:21;;;10764:2;10744:18;;;10737:30;10803:34;10798:2;10783:18;;10776:62;-1:-1:-1;;;10869:2:1;10854:18;;10847:48;10927:3;10912:19;;10523:414::o;16002:356::-;16204:2;16186:21;;;16223:18;;;16216:30;16282:34;16277:2;16262:18;;16255:62;16349:2;16334:18;;16002:356::o;17589:413::-;17791:2;17773:21;;;17830:2;17810:18;;;17803:30;17869:34;17864:2;17849:18;;17842:62;-1:-1:-1;;;17935:2:1;17920:18;;17913:47;17992:3;17977:19;;17589:413::o;19019:275::-;19090:2;19084:9;19155:2;19136:13;;-1:-1:-1;;19132:27:1;19120:40;;19190:18;19175:34;;19211:22;;;19172:62;19169:88;;;19237:18;;:::i;:::-;19273:2;19266:22;19019:275;;-1:-1:-1;19019:275:1:o;19425:128::-;19465:3;19496:1;19492:6;19489:1;19486:13;19483:39;;;19502:18;;:::i;:::-;-1:-1:-1;19538:9:1;;19425:128::o;19558:217::-;19598:1;19624;19614:132;;19668:10;19663:3;19659:20;19656:1;19649:31;19703:4;19700:1;19693:15;19731:4;19728:1;19721:15;19614:132;-1:-1:-1;19760:9:1;;19558:217::o;19780:168::-;19820:7;19886:1;19882;19878:6;19874:14;19871:1;19868:21;19863:1;19856:9;19849:17;19845:45;19842:71;;;19893:18;;:::i;:::-;-1:-1:-1;19933:9:1;;19780:168::o;19953:125::-;19993:4;20021:1;20018;20015:8;20012:34;;;20026:18;;:::i;:::-;-1:-1:-1;20063:9:1;;19953:125::o;20083:380::-;20162:1;20158:12;;;;20205;;;20226:61;;20280:4;20272:6;20268:17;20258:27;;20226:61;20333:2;20325:6;20322:14;20302:18;20299:38;20296:161;;;20379:10;20374:3;20370:20;20367:1;20360:31;20414:4;20411:1;20404:15;20442:4;20439:1;20432:15;20468:135;20507:3;-1:-1:-1;;20528:17:1;;20525:43;;;20548:18;;:::i;:::-;-1:-1:-1;20595:1:1;20584:13;;20468:135::o;20608:127::-;20669:10;20664:3;20660:20;20657:1;20650:31;20700:4;20697:1;20690:15;20724:4;20721:1;20714:15;20740:127;20801:10;20796:3;20792:20;20789:1;20782:31;20832:4;20829:1;20822:15;20856:4;20853:1;20846:15;20872:127;20933:10;20928:3;20924:20;20921:1;20914:31;20964:4;20961:1;20954:15;20988:4;20985:1;20978:15;21004:127;21065:10;21060:3;21056:20;21053:1;21046:31;21096:4;21093:1;21086:15;21120:4;21117:1;21110:15;21136:131;-1:-1:-1;;;;;;21210:32:1;;21200:43;;21190:71;;21257:1;21254;21247:12
Swarm Source
ipfs://066284ce21cbac8985968544a7c096dd2af74f64a61e69c56b85e5fce927b955
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.