Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
560 TDIGGS
Holders
225
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 TDIGGSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PersonalCornerTemplate
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-03 */ // Sources flattened with hardhat v2.8.2 https://hardhat.org // SPDX-License-Identifier: BSD-3-Clause // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File contracts/utils/Delegated.sol pragma solidity ^0.8.0; /*********************** * @author: squeebo_nft * ************************/ contract Delegated is Ownable { mapping(address => bool) internal _delegates; constructor() { _delegates[owner()] = true; } modifier onlyDelegates() { require(_delegates[msg.sender], "Invalid delegate"); _; } //onlyOwner function isDelegate(address addr) external view onlyOwner returns (bool) { return _delegates[addr]; } function setDelegate(address addr, bool isDelegate_) external onlyOwner { _delegates[addr] = isDelegate_; } function transferOwnership(address newOwner) public virtual override onlyOwner { _delegates[newOwner] = true; super.transferOwnership(newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol) pragma solidity ^0.8.0; // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Metadata.sol) pragma solidity ^0.8.0; // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Receiver.sol) pragma solidity ^0.8.0; // File contracts/utils/GDXERC721.sol pragma solidity ^0.8.0; /**************************************** * @author: squeebo_nft * * @team: GoldenX * **************************************** * Blimpie-ERC721 provides low-gas * * mints + transfers * ****************************************/ abstract contract GDXERC721 is Context, Delegated, ERC165, IERC721, IERC721Metadata { using Address for address; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) internal _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) Delegated() { _name = name_; _symbol = symbol_; } //public function name() external view override returns (string memory) { return _name; } function balanceOf(address owner) public view override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); uint256 count; for (uint256 i; i < _owners.length; ++i) { if (owner == _owners[i]) ++count; } return count; } function ownerOf(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721: query for nonexistent token"); return _owners[tokenId]; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function symbol() external view override returns (string memory) { return _symbol; } function approve(address to, uint256 tokenId) external override { address owner = 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); } function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721: query for nonexistent token"); return _tokenApprovals[tokenId]; } function isApprovedForAll(address owner, address operator) public view override returns (bool) { return _operatorApprovals[owner][operator]; } function setApprovalForAll(address operator, bool approved) external override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } function transferFrom( address from, address to, uint256 tokenId ) external override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) external override { safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } //internal function _approve(address to, uint256 tokenId) internal { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require(_exists(tokenId), "ERC721: query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _mint(address to, uint256 tokenId) internal virtual; function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } function _transfer( address from, address to, uint256 tokenId ) internal { require( ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); // Clear approvals from the previous owner _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721Enumerable.sol) pragma solidity ^0.8.0; // File contracts/utils/GDXERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract GDXERC721Enumerable is GDXERC721, IERC721Enumerable { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, GDXERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view override returns (uint256 tokenId) { uint256 count; for (uint256 i; i < _owners.length; ++i) { if (owner == _owners[i]) { if (count == index) return i; else ++count; } } require(false, "ERC721Enumerable: owner index out of bounds"); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _owners.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) external view override returns (uint256) { require(index < _owners.length, "ERC721: query for nonexistent token"); return index; } } // File contracts/utils/IERC721Batch.sol pragma solidity ^0.8.0; interface IERC721Batch { function isOwnerOf(address account, uint256[] calldata tokenIds) external view returns (bool); function transferBatch( address from, address to, uint256[] calldata tokenIds, bytes calldata data ) external; function walletOfOwner(address account) external view returns (uint256[] memory); } // File contracts/utils/GDXERC721Batch.sol pragma solidity ^0.8.0; /**************************************** * @author: squeebo_nft * * @team: GoldenX * ****************************************/ abstract contract GDXERC721Batch is GDXERC721Enumerable, IERC721Batch { function isOwnerOf(address account, uint256[] calldata tokenIds) external view override returns (bool) { for (uint256 i; i < tokenIds.length; ++i) { if (_owners[tokenIds[i]] != account) return false; } return true; } function transferBatch( address from, address to, uint256[] calldata tokenIds, bytes calldata data ) external override { for (uint256 i; i < tokenIds.length; ++i) { safeTransferFrom(from, to, tokenIds[i], data); } } function walletOfOwner(address account) public view override returns (uint256[] memory) { uint256 quantity = balanceOf(account); uint256 count; uint256[] memory wallet = new uint256[](quantity); for (uint256 i; i < _owners.length; ++i) { if (account == _owners[i]) { wallet[count++] = i; if (count == quantity) break; } } return wallet; } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and( vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if ( uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 ) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256( abi.encodePacked("\x19Ethereum Signed Message:\n32", hash) ); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n", Strings.toString(s.length), s ) ); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256( abi.encodePacked("\x19\x01", domainSeparator, structHash) ); } } // File contracts/utils/Signed.sol pragma solidity ^0.8.0; contract Signed is Delegated { using Strings for uint256; using ECDSA for bytes32; string private _secret; address private _signer; function setSecret(string calldata secret) external onlyOwner { _secret = secret; } function setSigner(address signer) external onlyOwner { _signer = signer; } function createHash(string memory data) internal view returns (bytes32) { return keccak256( abi.encodePacked(address(this), msg.sender, data, _secret) ); } function getSigner(bytes32 hash, bytes memory signature) internal pure returns (address) { return hash.toEthSignedMessageHash().recover(signature); } function isAuthorizedSigner(address extracted) internal view virtual returns (bool) { return extracted == _signer; } function verifySignature(string memory data, bytes calldata signature) internal view { address extracted = getSigner(createHash(data), signature); require(isAuthorizedSigner(extracted), "Signature verification failed"); } } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require( index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds" ); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged( bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole ); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked( bytes32 indexed role, address indexed account, address indexed sender ); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require( account == _msgSender(), "AccessControl: can only renounce roles for self" ); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File @openzeppelin/contracts/proxy/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require( _initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized" ); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } function _isConstructor() private view returns (bool) { return !Address.isContract(address(this)); } } // File contracts/utils/Juggernauts.sol pragma solidity ^0.8.0; interface INamelessToken { function initialize( string memory name, string memory symbol, address tokenDataContract, address initialAdmin ) external; } interface INamelessTokenData { function initialize( address templateLibrary, address clonableTokenAddress, address initialAdmin, uint256 maxGenerationSize ) external; function getTokenURI(uint256 tokenId, address owner) external view returns (string memory); function beforeTokenTransfer( address from, address, uint256 tokenId ) external returns (bool); function redeem(uint256 tokenId) external; function getFeeRecipients(uint256) external view returns (address payable[] memory); function getFeeBps(uint256) external view returns (uint256[] memory); } contract NamelessToken is INamelessToken, ERC721Enumerable, AccessControl, Initializable { event TokenMetadataChanged(uint256 tokenId); event TokenRedeemed(uint256 tokenId, uint256 timestamp, string memo); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant REDEEM_ROLE = keccak256("REDEEM_ROLE"); // Duplicate Token name for cloneability string private _name; // Duplicate Token symbol for cloneability string private _symbol; // informational support for external sites that respected Ownable address private _legacyOwner; address public tokenDataContract; function initialize( string memory name_, string memory symbol_, address tokenDataContract_, address initialAdmin ) public override initializer { _name = name_; _symbol = symbol_; _legacyOwner = initialAdmin; tokenDataContract = tokenDataContract_; _setupRole(DEFAULT_ADMIN_ROLE, initialAdmin); emit OwnershipTransferred(address(0), initialAdmin); } constructor( string memory name_, string memory symbol_, address tokenDataContract_ ) ERC721(name_, symbol_) { initialize(name_, symbol_, tokenDataContract_, msg.sender); } /** * @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; } /** * emulate Ownable for external applications that expect it */ function owner() public view returns (address) { return _legacyOwner; } function transferLegacyOwnership(address newOwner) public onlyRole(DEFAULT_ADMIN_ROLE) { require(newOwner != address(0), "new owner is null"); _legacyOwner = newOwner; emit OwnershipTransferred(_legacyOwner, newOwner); } bytes4 private constant _INTERFACE_ID_FEES = 0xb7799584; function getFeeRecipients(uint256 tokenId) public view returns (address payable[] memory) { return INamelessTokenData(tokenDataContract).getFeeRecipients(tokenId); } function getFeeBps(uint256 tokenId) public view returns (uint256[] memory) { return INamelessTokenData(tokenDataContract).getFeeBps(tokenId); } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "no such token"); return INamelessTokenData(tokenDataContract).getTokenURI( tokenId, ownerOf(tokenId) ); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if ( INamelessTokenData(tokenDataContract).beforeTokenTransfer( from, to, tokenId ) ) { emit TokenMetadataChanged(tokenId); } } function redeem( uint256 tokenId, uint256 timestamp, string calldata memo ) public onlyRole(REDEEM_ROLE) { INamelessTokenData(tokenDataContract).redeem(tokenId); emit TokenRedeemed(tokenId, timestamp, memo); } function mint(address to, uint256 tokenId) public onlyRole(MINTER_ROLE) { _safeMint(to, tokenId); } function mint( address creator, address recipient, uint256 tokenId ) public onlyRole(MINTER_ROLE) { _safeMint(creator, tokenId); _safeTransfer(creator, recipient, tokenId, ""); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, AccessControl) returns (bool) { return interfaceId == _INTERFACE_ID_FEES || ERC721Enumerable.supportsInterface(interfaceId) || AccessControl.supportsInterface(interfaceId); } } // File contracts/PersonalCornerTemplate.sol pragma solidity ^0.8.0; /**************************************** * @author: GoldenX * **************************************** * Blimpie-ERC721 provides low-gas * * mints + transfers * ****************************************/ contract PersonalCornerTemplate is GDXERC721Batch { using Strings for uint256; string private _baseTokenURI = ""; string private _tokenURISuffix = ""; mapping(uint256 => string) tokenTierMap; constructor(string memory name, string memory symbol) GDXERC721(name, symbol) {} //safety first fallback() external payable {} receive() external payable {} function withdraw(address _addr) external onlyDelegates { require(address(this).balance > 0); require(payable(_addr).send(address(this).balance)); } //view function getTokensByOwner(address owner) external view returns (uint256[] memory) { return walletOfOwner(owner); } function tokenURI(uint256 tokenId) external view override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string( abi.encodePacked( _baseTokenURI, tokenTierMap[tokenId], "/", tokenId.toString(), _tokenURISuffix ) ); } function setBaseURI(string calldata _newBaseURI, string calldata _newSuffix) external onlyDelegates { _baseTokenURI = _newBaseURI; _tokenURISuffix = _newSuffix; } function mintTier( address to, uint256 tokenId, uint256 tierIndex ) external onlyDelegates { tokenTierMap[tokenId] = tierIndex.toString(); _mint(to, tokenId); } //internal function _mint(address to, uint256 tokenId) internal override { _owners.push(to); emit Transfer(address(0), to, tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getTokensByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isDelegate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"tierIndex","type":"uint256"}],"name":"mintTier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"},{"internalType":"string","name":"_newSuffix","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"isDelegate_","type":"bool"}],"name":"setDelegate","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":"tokenId","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":"tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260405180602001604052806000815250600790805190602001906200002b92919062000240565b5060405180602001604052806000815250600890805190602001906200005392919062000240565b503480156200006157600080fd5b506040516200418538038062004185833981810160405281019062000087919062000362565b8181620000a96200009d6200014b60201b60201c565b6200015360201b60201c565b6001806000620000be6200021760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555081600290805190602001906200012792919062000240565b5080600390805190602001906200014092919062000240565b505050505062000545565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200024e906200046a565b90600052602060002090601f016020900481019282620002725760008555620002be565b82601f106200028d57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002bd578251825591602001919060010190620002a0565b5b509050620002cd9190620002d1565b5090565b5b80821115620002ec576000816000905550600101620002d2565b5090565b6000620003076200030184620003fe565b620003d5565b9050828152602081018484840111156200032057600080fd5b6200032d84828562000434565b509392505050565b600082601f8301126200034757600080fd5b815162000359848260208601620002f0565b91505092915050565b600080604083850312156200037657600080fd5b600083015167ffffffffffffffff8111156200039157600080fd5b6200039f8582860162000335565b925050602083015167ffffffffffffffff811115620003bd57600080fd5b620003cb8582860162000335565b9150509250929050565b6000620003e1620003f4565b9050620003ef8282620004a0565b919050565b6000604051905090565b600067ffffffffffffffff8211156200041c576200041b62000505565b5b620004278262000534565b9050602081019050919050565b60005b838110156200045457808201518184015260208101905062000437565b8381111562000464576000848401525b50505050565b600060028204905060018216806200048357607f821691505b602082108114156200049a5762000499620004d6565b5b50919050565b620004ab8262000534565b810181811067ffffffffffffffff82111715620004cd57620004cc62000505565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613c3080620005556000396000f3fe6080604052600436106101bb5760003560e01c806351cff8d9116100ec5780639d1629611161008a578063b88d4fde11610064578063b88d4fde1461065a578063c87b56dd14610683578063e985e9c5146106c0578063f2fde38b146106fd576101c2565b80639d162961146105df578063a22cb46514610608578063b534a5c414610631576101c2565b806370a08231116100c657806370a0823114610535578063715018a6146105725780638da5cb5b1461058957806395d89b41146105b4576101c2565b806351cff8d9146104a65780636352211e146104cf5780636790a9de1461050c576101c2565b80632f745c5911610159578063438b630011610133578063438b6300146103c65780634a994eef146104035780634d44660c1461042c5780634f6ccce714610469576101c2565b80632f745c591461032357806340398d671461036057806342842e0e1461039d576101c2565b8063081812fc11610195578063081812fc14610269578063095ea7b3146102a657806318160ddd146102cf57806323b872dd146102fa576101c2565b806301ffc9a7146101c457806306fdde0314610201578063077796271461022c576101c2565b366101c257005b005b3480156101d057600080fd5b506101eb60048036038101906101e69190612bd8565b610726565b6040516101f8919061317b565b60405180910390f35b34801561020d57600080fd5b506102166107a0565b6040516102239190613196565b60405180910390f35b34801561023857600080fd5b50610253600480360381019061024e91906128ef565b610832565b604051610260919061317b565b60405180910390f35b34801561027557600080fd5b50610290600480360381019061028b9190612c9f565b610904565b60405161029d91906130f2565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c89190612b4d565b610989565b005b3480156102db57600080fd5b506102e4610aa1565b6040516102f19190613378565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906129ef565b610aae565b005b34801561032f57600080fd5b5061034a60048036038101906103459190612b4d565b610b0e565b6040516103579190613378565b60405180910390f35b34801561036c57600080fd5b50610387600480360381019061038291906128ef565b610c33565b6040516103949190613159565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf91906129ef565b610c45565b005b3480156103d257600080fd5b506103ed60048036038101906103e891906128ef565b610c65565b6040516103fa9190613159565b60405180910390f35b34801561040f57600080fd5b5061042a60048036038101906104259190612b11565b610e0d565b005b34801561043857600080fd5b50610453600480360381019061044e9190612ab9565b610ee4565b604051610460919061317b565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612c9f565b610ff1565b60405161049d9190613378565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906128ef565b611042565b005b3480156104db57600080fd5b506104f660048036038101906104f19190612c9f565b61111c565b60405161050391906130f2565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190612c2a565b6111d2565b005b34801561054157600080fd5b5061055c600480360381019061055791906128ef565b611288565b6040516105699190613378565b60405180910390f35b34801561057e57600080fd5b506105876113ca565b005b34801561059557600080fd5b5061059e611452565b6040516105ab91906130f2565b60405180910390f35b3480156105c057600080fd5b506105c961147b565b6040516105d69190613196565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190612b89565b61150d565b005b34801561061457600080fd5b5061062f600480360381019061062a9190612b11565b6115d8565b005b34801561063d57600080fd5b5061065860048036038101906106539190612954565b611759565b005b34801561066657600080fd5b50610681600480360381019061067c9190612a3e565b611810565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612c9f565b611872565b6040516106b79190613196565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190612918565b611905565b6040516106f4919061317b565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f91906128ef565b611999565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610799575061079882611a78565b5b9050919050565b6060600280546107af906135eb565b80601f01602080910402602001604051908101604052809291908181526020018280546107db906135eb565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b600061083c611b5a565b73ffffffffffffffffffffffffffffffffffffffff1661085a611452565b73ffffffffffffffffffffffffffffffffffffffff16146108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a7906132d8565b60405180910390fd5b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061090f82611b62565b61094e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610945906132b8565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109948261111c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90613338565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a24611b5a565b73ffffffffffffffffffffffffffffffffffffffff161480610a535750610a5281610a4d611b5a565b611905565b5b610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990613278565b60405180910390fd5b610a9c8383611c10565b505050565b6000600480549050905090565b610abf610ab9611b5a565b82611cc9565b610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af590613358565b60405180910390fd5b610b09838383611da7565b505050565b60008060005b600480549050811015610be95760048181548110610b5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bd85783821415610bcb578092505050610c2d565b81610bd59061364e565b91505b80610be29061364e565b9050610b14565b506000610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c22906131d8565b60405180910390fd5b505b92915050565b6060610c3e82610c65565b9050919050565b610c6083838360405180602001604052806000815250611810565b505050565b60606000610c7283611288565b90506000808267ffffffffffffffff811115610cb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ce55781602001602082028036833780820191505090505b50905060005b600480549050811015610e015760048181548110610d32577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415610df05780828480610d9d9061364e565b955081518110610dd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505083831415610def57610e01565b5b80610dfa9061364e565b9050610ceb565b50809350505050919050565b610e15611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610e33611452565b73ffffffffffffffffffffffffffffffffffffffff1614610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e80906132d8565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000805b83839050811015610fe4578473ffffffffffffffffffffffffffffffffffffffff166004858584818110610f45577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581548110610f83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fd3576000915050610fea565b80610fdd9061364e565b9050610ee8565b50600190505b9392505050565b6000600480549050821061103a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611031906132b8565b60405180910390fd5b819050919050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c5906131b8565b60405180910390fd5b600047116110db57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061111957600080fd5b50565b600061112782611b62565b611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d906132b8565b60405180910390fd5b600482815481106111a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611255906131b8565b60405180910390fd5b83836007919061126f929190612617565b50818160089190611281929190612617565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090613298565b60405180910390fd5b6000805b6004805490508110156113c05760048181548110611344577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113af57816113ac9061364e565b91505b806113b99061364e565b90506112fd565b5080915050919050565b6113d2611b5a565b73ffffffffffffffffffffffffffffffffffffffff166113f0611452565b73ffffffffffffffffffffffffffffffffffffffff1614611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d906132d8565b60405180910390fd5b6114506000611f7b565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461148a906135eb565b80601f01602080910402602001604051908101604052809291908181526020018280546114b6906135eb565b80156115035780601f106114d857610100808354040283529160200191611503565b820191906000526020600020905b8154815290600101906020018083116114e657829003601f168201915b5050505050905090565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611599576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611590906131b8565b60405180910390fd5b6115a28161203f565b6009600084815260200190815260200160002090805190602001906115c892919061269d565b506115d383836121ec565b505050565b6115e0611b5a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590613258565b60405180910390fd5b806006600061165b611b5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611708611b5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161174d919061317b565b60405180910390a35050565b60005b84849050811015611807576117f687878787858181106117a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013586868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611810565b806118009061364e565b905061175c565b50505050505050565b61182161181b611b5a565b83611cc9565b611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790613358565b60405180910390fd5b61186c848484846122af565b50505050565b606061187d82611b62565b6118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613318565b60405180910390fd5b6007600960008481526020019081526020016000206118da8461203f565b60086040516020016118ef94939291906130a9565b6040516020818303038152906040529050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119a1611b5a565b73ffffffffffffffffffffffffffffffffffffffff166119bf611452565b73ffffffffffffffffffffffffffffffffffffffff1614611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c906132d8565b60405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a758161230b565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b4357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b535750611b5282612403565b5b9050919050565b600033905090565b600060048054905082108015611c095750600073ffffffffffffffffffffffffffffffffffffffff1660048381548110611bc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c838361111c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cd482611b62565b611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a906132b8565b60405180910390fd5b6000611d1e8361111c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d8d57508373ffffffffffffffffffffffffffffffffffffffff16611d7584610904565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d9e5750611d9d8185611905565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dc78261111c565b73ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e14906132f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8490613238565b60405180910390fd5b611e98600082611c10565b8160048281548110611ed3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000821415612087576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e7565b600082905060005b600082146120b95780806120a29061364e565b915050600a826120b291906134d0565b915061208f565b60008167ffffffffffffffff8111156120fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561212d5781602001600182028036833780820191505090505b5090505b600085146121e0576001826121469190613501565b9150600a856121559190613697565b6030612161919061347a565b60f81b81838151811061219d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d991906134d0565b9450612131565b8093505050505b919050565b6004829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6122ba848484611da7565b6122c68484848461246d565b612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc906131f8565b60405180910390fd5b50505050565b612313611b5a565b73ffffffffffffffffffffffffffffffffffffffff16612331611452565b73ffffffffffffffffffffffffffffffffffffffff1614612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e906132d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ee90613218565b60405180910390fd5b61240081611f7b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600061248e8473ffffffffffffffffffffffffffffffffffffffff16612604565b156125f7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124b7611b5a565b8786866040518563ffffffff1660e01b81526004016124d9949392919061310d565b602060405180830381600087803b1580156124f357600080fd5b505af192505050801561252457506040513d601f19601f820116820180604052508101906125219190612c01565b60015b6125a7573d8060008114612554576040519150601f19603f3d011682016040523d82523d6000602084013e612559565b606091505b5060008151141561259f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612596906131f8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125fc565b600190505b949350505050565b600080823b905060008111915050919050565b828054612623906135eb565b90600052602060002090601f016020900481019282612645576000855561268c565b82601f1061265e57803560ff191683800117855561268c565b8280016001018555821561268c579182015b8281111561268b578235825591602001919060010190612670565b5b5090506126999190612723565b5090565b8280546126a9906135eb565b90600052602060002090601f0160209004810192826126cb5760008555612712565b82601f106126e457805160ff1916838001178555612712565b82800160010185558215612712579182015b828111156127115782518255916020019190600101906126f6565b5b50905061271f9190612723565b5090565b5b8082111561273c576000816000905550600101612724565b5090565b600061275361274e846133b8565b613393565b90508281526020810184848401111561276b57600080fd5b6127768482856135a9565b509392505050565b60008135905061278d81613b9e565b92915050565b60008083601f8401126127a557600080fd5b8235905067ffffffffffffffff8111156127be57600080fd5b6020830191508360208202830111156127d657600080fd5b9250929050565b6000813590506127ec81613bb5565b92915050565b60008135905061280181613bcc565b92915050565b60008151905061281681613bcc565b92915050565b60008083601f84011261282e57600080fd5b8235905067ffffffffffffffff81111561284757600080fd5b60208301915083600182028301111561285f57600080fd5b9250929050565b600082601f83011261287757600080fd5b8135612887848260208601612740565b91505092915050565b60008083601f8401126128a257600080fd5b8235905067ffffffffffffffff8111156128bb57600080fd5b6020830191508360018202830111156128d357600080fd5b9250929050565b6000813590506128e981613be3565b92915050565b60006020828403121561290157600080fd5b600061290f8482850161277e565b91505092915050565b6000806040838503121561292b57600080fd5b60006129398582860161277e565b925050602061294a8582860161277e565b9150509250929050565b6000806000806000806080878903121561296d57600080fd5b600061297b89828a0161277e565b965050602061298c89828a0161277e565b955050604087013567ffffffffffffffff8111156129a957600080fd5b6129b589828a01612793565b9450945050606087013567ffffffffffffffff8111156129d457600080fd5b6129e089828a0161281c565b92509250509295509295509295565b600080600060608486031215612a0457600080fd5b6000612a128682870161277e565b9350506020612a238682870161277e565b9250506040612a34868287016128da565b9150509250925092565b60008060008060808587031215612a5457600080fd5b6000612a628782880161277e565b9450506020612a738782880161277e565b9350506040612a84878288016128da565b925050606085013567ffffffffffffffff811115612aa157600080fd5b612aad87828801612866565b91505092959194509250565b600080600060408486031215612ace57600080fd5b6000612adc8682870161277e565b935050602084013567ffffffffffffffff811115612af957600080fd5b612b0586828701612793565b92509250509250925092565b60008060408385031215612b2457600080fd5b6000612b328582860161277e565b9250506020612b43858286016127dd565b9150509250929050565b60008060408385031215612b6057600080fd5b6000612b6e8582860161277e565b9250506020612b7f858286016128da565b9150509250929050565b600080600060608486031215612b9e57600080fd5b6000612bac8682870161277e565b9350506020612bbd868287016128da565b9250506040612bce868287016128da565b9150509250925092565b600060208284031215612bea57600080fd5b6000612bf8848285016127f2565b91505092915050565b600060208284031215612c1357600080fd5b6000612c2184828501612807565b91505092915050565b60008060008060408587031215612c4057600080fd5b600085013567ffffffffffffffff811115612c5a57600080fd5b612c6687828801612890565b9450945050602085013567ffffffffffffffff811115612c8557600080fd5b612c9187828801612890565b925092505092959194509250565b600060208284031215612cb157600080fd5b6000612cbf848285016128da565b91505092915050565b6000612cd4838361308b565b60208301905092915050565b612ce981613535565b82525050565b6000612cfa8261340e565b612d04818561343c565b9350612d0f836133e9565b8060005b83811015612d40578151612d278882612cc8565b9750612d328361342f565b925050600181019050612d13565b5085935050505092915050565b612d5681613547565b82525050565b6000612d6782613419565b612d71818561344d565b9350612d818185602086016135b8565b612d8a81613784565b840191505092915050565b6000612da082613424565b612daa818561345e565b9350612dba8185602086016135b8565b612dc381613784565b840191505092915050565b6000612dd982613424565b612de3818561346f565b9350612df38185602086016135b8565b80840191505092915050565b60008154612e0c816135eb565b612e16818661346f565b94506001821660008114612e315760018114612e4257612e75565b60ff19831686528186019350612e75565b612e4b856133f9565b60005b83811015612e6d57815481890152600182019150602081019050612e4e565b838801955050505b50505092915050565b6000612e8b60108361345e565b9150612e9682613795565b602082019050919050565b6000612eae602b8361345e565b9150612eb9826137be565b604082019050919050565b6000612ed160328361345e565b9150612edc8261380d565b604082019050919050565b6000612ef460268361345e565b9150612eff8261385c565b604082019050919050565b6000612f1760248361345e565b9150612f22826138ab565b604082019050919050565b6000612f3a60198361345e565b9150612f45826138fa565b602082019050919050565b6000612f5d60388361345e565b9150612f6882613923565b604082019050919050565b6000612f80602a8361345e565b9150612f8b82613972565b604082019050919050565b6000612fa360238361345e565b9150612fae826139c1565b604082019050919050565b6000612fc660208361345e565b9150612fd182613a10565b602082019050919050565b6000612fe960298361345e565b9150612ff482613a39565b604082019050919050565b600061300c602f8361345e565b915061301782613a88565b604082019050919050565b600061302f60218361345e565b915061303a82613ad7565b604082019050919050565b600061305260318361345e565b915061305d82613b26565b604082019050919050565b600061307560018361346f565b915061308082613b75565b600182019050919050565b6130948161359f565b82525050565b6130a38161359f565b82525050565b60006130b58287612dff565b91506130c18286612dff565b91506130cc82613068565b91506130d88285612dce565b91506130e48284612dff565b915081905095945050505050565b60006020820190506131076000830184612ce0565b92915050565b60006080820190506131226000830187612ce0565b61312f6020830186612ce0565b61313c604083018561309a565b818103606083015261314e8184612d5c565b905095945050505050565b600060208201905081810360008301526131738184612cef565b905092915050565b60006020820190506131906000830184612d4d565b92915050565b600060208201905081810360008301526131b08184612d95565b905092915050565b600060208201905081810360008301526131d181612e7e565b9050919050565b600060208201905081810360008301526131f181612ea1565b9050919050565b6000602082019050818103600083015261321181612ec4565b9050919050565b6000602082019050818103600083015261323181612ee7565b9050919050565b6000602082019050818103600083015261325181612f0a565b9050919050565b6000602082019050818103600083015261327181612f2d565b9050919050565b6000602082019050818103600083015261329181612f50565b9050919050565b600060208201905081810360008301526132b181612f73565b9050919050565b600060208201905081810360008301526132d181612f96565b9050919050565b600060208201905081810360008301526132f181612fb9565b9050919050565b6000602082019050818103600083015261331181612fdc565b9050919050565b6000602082019050818103600083015261333181612fff565b9050919050565b6000602082019050818103600083015261335181613022565b9050919050565b6000602082019050818103600083015261337181613045565b9050919050565b600060208201905061338d600083018461309a565b92915050565b600061339d6133ae565b90506133a9828261361d565b919050565b6000604051905090565b600067ffffffffffffffff8211156133d3576133d2613755565b5b6133dc82613784565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006134858261359f565b91506134908361359f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134c5576134c46136c8565b5b828201905092915050565b60006134db8261359f565b91506134e68361359f565b9250826134f6576134f56136f7565b5b828204905092915050565b600061350c8261359f565b91506135178361359f565b92508282101561352a576135296136c8565b5b828203905092915050565b60006135408261357f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135d65780820151818401526020810190506135bb565b838111156135e5576000848401525b50505050565b6000600282049050600182168061360357607f821691505b6020821081141561361757613616613726565b5b50919050565b61362682613784565b810181811067ffffffffffffffff8211171561364557613644613755565b5b80604052505050565b60006136598261359f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561368c5761368b6136c8565b5b600182019050919050565b60006136a28261359f565b91506136ad8361359f565b9250826136bd576136bc6136f7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f496e76616c69642064656c656761746500000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f60008201527f6b656e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613ba781613535565b8114613bb257600080fd5b50565b613bbe81613547565b8114613bc957600080fd5b50565b613bd581613553565b8114613be057600080fd5b50565b613bec8161359f565b8114613bf757600080fd5b5056fea264697066735822122000ea34aa357912809bc7c2c9dcc954262c0adfa128ac8cef1cf64dbabd38772464736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020547265766f6e20446967677320536572696573203120436f6c6c656374696f6e00000000000000000000000000000000000000000000000000000000000000065444494747530000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101bb5760003560e01c806351cff8d9116100ec5780639d1629611161008a578063b88d4fde11610064578063b88d4fde1461065a578063c87b56dd14610683578063e985e9c5146106c0578063f2fde38b146106fd576101c2565b80639d162961146105df578063a22cb46514610608578063b534a5c414610631576101c2565b806370a08231116100c657806370a0823114610535578063715018a6146105725780638da5cb5b1461058957806395d89b41146105b4576101c2565b806351cff8d9146104a65780636352211e146104cf5780636790a9de1461050c576101c2565b80632f745c5911610159578063438b630011610133578063438b6300146103c65780634a994eef146104035780634d44660c1461042c5780634f6ccce714610469576101c2565b80632f745c591461032357806340398d671461036057806342842e0e1461039d576101c2565b8063081812fc11610195578063081812fc14610269578063095ea7b3146102a657806318160ddd146102cf57806323b872dd146102fa576101c2565b806301ffc9a7146101c457806306fdde0314610201578063077796271461022c576101c2565b366101c257005b005b3480156101d057600080fd5b506101eb60048036038101906101e69190612bd8565b610726565b6040516101f8919061317b565b60405180910390f35b34801561020d57600080fd5b506102166107a0565b6040516102239190613196565b60405180910390f35b34801561023857600080fd5b50610253600480360381019061024e91906128ef565b610832565b604051610260919061317b565b60405180910390f35b34801561027557600080fd5b50610290600480360381019061028b9190612c9f565b610904565b60405161029d91906130f2565b60405180910390f35b3480156102b257600080fd5b506102cd60048036038101906102c89190612b4d565b610989565b005b3480156102db57600080fd5b506102e4610aa1565b6040516102f19190613378565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c91906129ef565b610aae565b005b34801561032f57600080fd5b5061034a60048036038101906103459190612b4d565b610b0e565b6040516103579190613378565b60405180910390f35b34801561036c57600080fd5b50610387600480360381019061038291906128ef565b610c33565b6040516103949190613159565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf91906129ef565b610c45565b005b3480156103d257600080fd5b506103ed60048036038101906103e891906128ef565b610c65565b6040516103fa9190613159565b60405180910390f35b34801561040f57600080fd5b5061042a60048036038101906104259190612b11565b610e0d565b005b34801561043857600080fd5b50610453600480360381019061044e9190612ab9565b610ee4565b604051610460919061317b565b60405180910390f35b34801561047557600080fd5b50610490600480360381019061048b9190612c9f565b610ff1565b60405161049d9190613378565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906128ef565b611042565b005b3480156104db57600080fd5b506104f660048036038101906104f19190612c9f565b61111c565b60405161050391906130f2565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e9190612c2a565b6111d2565b005b34801561054157600080fd5b5061055c600480360381019061055791906128ef565b611288565b6040516105699190613378565b60405180910390f35b34801561057e57600080fd5b506105876113ca565b005b34801561059557600080fd5b5061059e611452565b6040516105ab91906130f2565b60405180910390f35b3480156105c057600080fd5b506105c961147b565b6040516105d69190613196565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190612b89565b61150d565b005b34801561061457600080fd5b5061062f600480360381019061062a9190612b11565b6115d8565b005b34801561063d57600080fd5b5061065860048036038101906106539190612954565b611759565b005b34801561066657600080fd5b50610681600480360381019061067c9190612a3e565b611810565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612c9f565b611872565b6040516106b79190613196565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190612918565b611905565b6040516106f4919061317b565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f91906128ef565b611999565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610799575061079882611a78565b5b9050919050565b6060600280546107af906135eb565b80601f01602080910402602001604051908101604052809291908181526020018280546107db906135eb565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b600061083c611b5a565b73ffffffffffffffffffffffffffffffffffffffff1661085a611452565b73ffffffffffffffffffffffffffffffffffffffff16146108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a7906132d8565b60405180910390fd5b600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061090f82611b62565b61094e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610945906132b8565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109948261111c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90613338565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a24611b5a565b73ffffffffffffffffffffffffffffffffffffffff161480610a535750610a5281610a4d611b5a565b611905565b5b610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990613278565b60405180910390fd5b610a9c8383611c10565b505050565b6000600480549050905090565b610abf610ab9611b5a565b82611cc9565b610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af590613358565b60405180910390fd5b610b09838383611da7565b505050565b60008060005b600480549050811015610be95760048181548110610b5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bd85783821415610bcb578092505050610c2d565b81610bd59061364e565b91505b80610be29061364e565b9050610b14565b506000610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c22906131d8565b60405180910390fd5b505b92915050565b6060610c3e82610c65565b9050919050565b610c6083838360405180602001604052806000815250611810565b505050565b60606000610c7283611288565b90506000808267ffffffffffffffff811115610cb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ce55781602001602082028036833780820191505090505b50905060005b600480549050811015610e015760048181548110610d32577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415610df05780828480610d9d9061364e565b955081518110610dd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505083831415610def57610e01565b5b80610dfa9061364e565b9050610ceb565b50809350505050919050565b610e15611b5a565b73ffffffffffffffffffffffffffffffffffffffff16610e33611452565b73ffffffffffffffffffffffffffffffffffffffff1614610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e80906132d8565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000805b83839050811015610fe4578473ffffffffffffffffffffffffffffffffffffffff166004858584818110610f45577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581548110610f83577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fd3576000915050610fea565b80610fdd9061364e565b9050610ee8565b50600190505b9392505050565b6000600480549050821061103a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611031906132b8565b60405180910390fd5b819050919050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c5906131b8565b60405180910390fd5b600047116110db57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061111957600080fd5b50565b600061112782611b62565b611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d906132b8565b60405180910390fd5b600482815481106111a0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661125e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611255906131b8565b60405180910390fd5b83836007919061126f929190612617565b50818160089190611281929190612617565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090613298565b60405180910390fd5b6000805b6004805490508110156113c05760048181548110611344577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113af57816113ac9061364e565b91505b806113b99061364e565b90506112fd565b5080915050919050565b6113d2611b5a565b73ffffffffffffffffffffffffffffffffffffffff166113f0611452565b73ffffffffffffffffffffffffffffffffffffffff1614611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d906132d8565b60405180910390fd5b6114506000611f7b565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461148a906135eb565b80601f01602080910402602001604051908101604052809291908181526020018280546114b6906135eb565b80156115035780601f106114d857610100808354040283529160200191611503565b820191906000526020600020905b8154815290600101906020018083116114e657829003601f168201915b5050505050905090565b600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611599576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611590906131b8565b60405180910390fd5b6115a28161203f565b6009600084815260200190815260200160002090805190602001906115c892919061269d565b506115d383836121ec565b505050565b6115e0611b5a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590613258565b60405180910390fd5b806006600061165b611b5a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611708611b5a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161174d919061317b565b60405180910390a35050565b60005b84849050811015611807576117f687878787858181106117a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013586868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050611810565b806118009061364e565b905061175c565b50505050505050565b61182161181b611b5a565b83611cc9565b611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790613358565b60405180910390fd5b61186c848484846122af565b50505050565b606061187d82611b62565b6118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613318565b60405180910390fd5b6007600960008481526020019081526020016000206118da8461203f565b60086040516020016118ef94939291906130a9565b6040516020818303038152906040529050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119a1611b5a565b73ffffffffffffffffffffffffffffffffffffffff166119bf611452565b73ffffffffffffffffffffffffffffffffffffffff1614611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c906132d8565b60405180910390fd5b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a758161230b565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b4357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b535750611b5282612403565b5b9050919050565b600033905090565b600060048054905082108015611c095750600073ffffffffffffffffffffffffffffffffffffffff1660048381548110611bc5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c838361111c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cd482611b62565b611d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0a906132b8565b60405180910390fd5b6000611d1e8361111c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d8d57508373ffffffffffffffffffffffffffffffffffffffff16611d7584610904565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d9e5750611d9d8185611905565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dc78261111c565b73ffffffffffffffffffffffffffffffffffffffff1614611e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e14906132f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8490613238565b60405180910390fd5b611e98600082611c10565b8160048281548110611ed3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60606000821415612087576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e7565b600082905060005b600082146120b95780806120a29061364e565b915050600a826120b291906134d0565b915061208f565b60008167ffffffffffffffff8111156120fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561212d5781602001600182028036833780820191505090505b5090505b600085146121e0576001826121469190613501565b9150600a856121559190613697565b6030612161919061347a565b60f81b81838151811061219d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d991906134d0565b9450612131565b8093505050505b919050565b6004829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6122ba848484611da7565b6122c68484848461246d565b612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc906131f8565b60405180910390fd5b50505050565b612313611b5a565b73ffffffffffffffffffffffffffffffffffffffff16612331611452565b73ffffffffffffffffffffffffffffffffffffffff1614612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e906132d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ee90613218565b60405180910390fd5b61240081611f7b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600061248e8473ffffffffffffffffffffffffffffffffffffffff16612604565b156125f7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124b7611b5a565b8786866040518563ffffffff1660e01b81526004016124d9949392919061310d565b602060405180830381600087803b1580156124f357600080fd5b505af192505050801561252457506040513d601f19601f820116820180604052508101906125219190612c01565b60015b6125a7573d8060008114612554576040519150601f19603f3d011682016040523d82523d6000602084013e612559565b606091505b5060008151141561259f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612596906131f8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125fc565b600190505b949350505050565b600080823b905060008111915050919050565b828054612623906135eb565b90600052602060002090601f016020900481019282612645576000855561268c565b82601f1061265e57803560ff191683800117855561268c565b8280016001018555821561268c579182015b8281111561268b578235825591602001919060010190612670565b5b5090506126999190612723565b5090565b8280546126a9906135eb565b90600052602060002090601f0160209004810192826126cb5760008555612712565b82601f106126e457805160ff1916838001178555612712565b82800160010185558215612712579182015b828111156127115782518255916020019190600101906126f6565b5b50905061271f9190612723565b5090565b5b8082111561273c576000816000905550600101612724565b5090565b600061275361274e846133b8565b613393565b90508281526020810184848401111561276b57600080fd5b6127768482856135a9565b509392505050565b60008135905061278d81613b9e565b92915050565b60008083601f8401126127a557600080fd5b8235905067ffffffffffffffff8111156127be57600080fd5b6020830191508360208202830111156127d657600080fd5b9250929050565b6000813590506127ec81613bb5565b92915050565b60008135905061280181613bcc565b92915050565b60008151905061281681613bcc565b92915050565b60008083601f84011261282e57600080fd5b8235905067ffffffffffffffff81111561284757600080fd5b60208301915083600182028301111561285f57600080fd5b9250929050565b600082601f83011261287757600080fd5b8135612887848260208601612740565b91505092915050565b60008083601f8401126128a257600080fd5b8235905067ffffffffffffffff8111156128bb57600080fd5b6020830191508360018202830111156128d357600080fd5b9250929050565b6000813590506128e981613be3565b92915050565b60006020828403121561290157600080fd5b600061290f8482850161277e565b91505092915050565b6000806040838503121561292b57600080fd5b60006129398582860161277e565b925050602061294a8582860161277e565b9150509250929050565b6000806000806000806080878903121561296d57600080fd5b600061297b89828a0161277e565b965050602061298c89828a0161277e565b955050604087013567ffffffffffffffff8111156129a957600080fd5b6129b589828a01612793565b9450945050606087013567ffffffffffffffff8111156129d457600080fd5b6129e089828a0161281c565b92509250509295509295509295565b600080600060608486031215612a0457600080fd5b6000612a128682870161277e565b9350506020612a238682870161277e565b9250506040612a34868287016128da565b9150509250925092565b60008060008060808587031215612a5457600080fd5b6000612a628782880161277e565b9450506020612a738782880161277e565b9350506040612a84878288016128da565b925050606085013567ffffffffffffffff811115612aa157600080fd5b612aad87828801612866565b91505092959194509250565b600080600060408486031215612ace57600080fd5b6000612adc8682870161277e565b935050602084013567ffffffffffffffff811115612af957600080fd5b612b0586828701612793565b92509250509250925092565b60008060408385031215612b2457600080fd5b6000612b328582860161277e565b9250506020612b43858286016127dd565b9150509250929050565b60008060408385031215612b6057600080fd5b6000612b6e8582860161277e565b9250506020612b7f858286016128da565b9150509250929050565b600080600060608486031215612b9e57600080fd5b6000612bac8682870161277e565b9350506020612bbd868287016128da565b9250506040612bce868287016128da565b9150509250925092565b600060208284031215612bea57600080fd5b6000612bf8848285016127f2565b91505092915050565b600060208284031215612c1357600080fd5b6000612c2184828501612807565b91505092915050565b60008060008060408587031215612c4057600080fd5b600085013567ffffffffffffffff811115612c5a57600080fd5b612c6687828801612890565b9450945050602085013567ffffffffffffffff811115612c8557600080fd5b612c9187828801612890565b925092505092959194509250565b600060208284031215612cb157600080fd5b6000612cbf848285016128da565b91505092915050565b6000612cd4838361308b565b60208301905092915050565b612ce981613535565b82525050565b6000612cfa8261340e565b612d04818561343c565b9350612d0f836133e9565b8060005b83811015612d40578151612d278882612cc8565b9750612d328361342f565b925050600181019050612d13565b5085935050505092915050565b612d5681613547565b82525050565b6000612d6782613419565b612d71818561344d565b9350612d818185602086016135b8565b612d8a81613784565b840191505092915050565b6000612da082613424565b612daa818561345e565b9350612dba8185602086016135b8565b612dc381613784565b840191505092915050565b6000612dd982613424565b612de3818561346f565b9350612df38185602086016135b8565b80840191505092915050565b60008154612e0c816135eb565b612e16818661346f565b94506001821660008114612e315760018114612e4257612e75565b60ff19831686528186019350612e75565b612e4b856133f9565b60005b83811015612e6d57815481890152600182019150602081019050612e4e565b838801955050505b50505092915050565b6000612e8b60108361345e565b9150612e9682613795565b602082019050919050565b6000612eae602b8361345e565b9150612eb9826137be565b604082019050919050565b6000612ed160328361345e565b9150612edc8261380d565b604082019050919050565b6000612ef460268361345e565b9150612eff8261385c565b604082019050919050565b6000612f1760248361345e565b9150612f22826138ab565b604082019050919050565b6000612f3a60198361345e565b9150612f45826138fa565b602082019050919050565b6000612f5d60388361345e565b9150612f6882613923565b604082019050919050565b6000612f80602a8361345e565b9150612f8b82613972565b604082019050919050565b6000612fa360238361345e565b9150612fae826139c1565b604082019050919050565b6000612fc660208361345e565b9150612fd182613a10565b602082019050919050565b6000612fe960298361345e565b9150612ff482613a39565b604082019050919050565b600061300c602f8361345e565b915061301782613a88565b604082019050919050565b600061302f60218361345e565b915061303a82613ad7565b604082019050919050565b600061305260318361345e565b915061305d82613b26565b604082019050919050565b600061307560018361346f565b915061308082613b75565b600182019050919050565b6130948161359f565b82525050565b6130a38161359f565b82525050565b60006130b58287612dff565b91506130c18286612dff565b91506130cc82613068565b91506130d88285612dce565b91506130e48284612dff565b915081905095945050505050565b60006020820190506131076000830184612ce0565b92915050565b60006080820190506131226000830187612ce0565b61312f6020830186612ce0565b61313c604083018561309a565b818103606083015261314e8184612d5c565b905095945050505050565b600060208201905081810360008301526131738184612cef565b905092915050565b60006020820190506131906000830184612d4d565b92915050565b600060208201905081810360008301526131b08184612d95565b905092915050565b600060208201905081810360008301526131d181612e7e565b9050919050565b600060208201905081810360008301526131f181612ea1565b9050919050565b6000602082019050818103600083015261321181612ec4565b9050919050565b6000602082019050818103600083015261323181612ee7565b9050919050565b6000602082019050818103600083015261325181612f0a565b9050919050565b6000602082019050818103600083015261327181612f2d565b9050919050565b6000602082019050818103600083015261329181612f50565b9050919050565b600060208201905081810360008301526132b181612f73565b9050919050565b600060208201905081810360008301526132d181612f96565b9050919050565b600060208201905081810360008301526132f181612fb9565b9050919050565b6000602082019050818103600083015261331181612fdc565b9050919050565b6000602082019050818103600083015261333181612fff565b9050919050565b6000602082019050818103600083015261335181613022565b9050919050565b6000602082019050818103600083015261337181613045565b9050919050565b600060208201905061338d600083018461309a565b92915050565b600061339d6133ae565b90506133a9828261361d565b919050565b6000604051905090565b600067ffffffffffffffff8211156133d3576133d2613755565b5b6133dc82613784565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006134858261359f565b91506134908361359f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134c5576134c46136c8565b5b828201905092915050565b60006134db8261359f565b91506134e68361359f565b9250826134f6576134f56136f7565b5b828204905092915050565b600061350c8261359f565b91506135178361359f565b92508282101561352a576135296136c8565b5b828203905092915050565b60006135408261357f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135d65780820151818401526020810190506135bb565b838111156135e5576000848401525b50505050565b6000600282049050600182168061360357607f821691505b6020821081141561361757613616613726565b5b50919050565b61362682613784565b810181811067ffffffffffffffff8211171561364557613644613755565b5b80604052505050565b60006136598261359f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561368c5761368b6136c8565b5b600182019050919050565b60006136a28261359f565b91506136ad8361359f565b9250826136bd576136bc6136f7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f496e76616c69642064656c656761746500000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a20717565727920666f72206e6f6e6578697374656e7420746f60008201527f6b656e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b613ba781613535565b8114613bb257600080fd5b50565b613bbe81613547565b8114613bc957600080fd5b50565b613bd581613553565b8114613be057600080fd5b50565b613bec8161359f565b8114613bf757600080fd5b5056fea264697066735822122000ea34aa357912809bc7c2c9dcc954262c0adfa128ac8cef1cf64dbabd38772464736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000020547265766f6e20446967677320536572696573203120436f6c6c656374696f6e00000000000000000000000000000000000000000000000000000000000000065444494747530000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Trevon Diggs Series 1 Collection
Arg [1] : symbol (string): TDIGGS
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [3] : 547265766f6e20446967677320536572696573203120436f6c6c656374696f6e
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 5444494747530000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
90099:1937:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30972:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23396:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4039:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24941:243;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24535:398;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31886:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25715:368;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31359:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90710:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26091:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33744:500;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4162:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33132:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32065:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90519:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23868:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91432:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23498:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2745:103;;;;;;;;;;;;;:::i;:::-;;2094:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24429:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91648:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25397:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33444:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26278:357;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90878:546;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25192:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4291:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30972:303;31122:4;31179:35;31164:50;;;:11;:50;;;;:103;;;;31231:36;31255:11;31231:23;:36::i;:::-;31164:103;31144:123;;30972:303;;;:::o;23396:94::-;23444:13;23477:5;23470:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23396:94;:::o;4039:115::-;4106:4;2325:12;:10;:12::i;:::-;2314:23;;:7;:5;:7::i;:::-;:23;;;2306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4130:10:::1;:16;4141:4;4130:16;;;;;;;;;;;;;;;;;;;;;;;;;4123:23;;4039:115:::0;;;:::o;24941:243::-;25045:7;25078:16;25086:7;25078;:16::i;:::-;25070:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;25152:15;:24;25168:7;25152:24;;;;;;;;;;;;;;;;;;;;;25145:31;;24941:243;;;:::o;24535:398::-;24610:13;24626:16;24634:7;24626;:16::i;:::-;24610:32;;24667:5;24661:11;;:2;:11;;;;24653:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;24761:5;24745:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;24770:37;24787:5;24794:12;:10;:12::i;:::-;24770:16;:37::i;:::-;24745:62;24723:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24904:21;24913:2;24917:7;24904:8;:21::i;:::-;24535:398;;;:::o;31886:102::-;31939:7;31966;:14;;;;31959:21;;31886:102;:::o;25715:368::-;25918:41;25937:12;:10;:12::i;:::-;25951:7;25918:18;:41::i;:::-;25896:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;26047:28;26057:4;26063:2;26067:7;26047:9;:28::i;:::-;25715:368;;;:::o;31359:451::-;31486:15;31519:13;31548:9;31543:186;31563:7;:14;;;;31559:1;:18;31543:186;;;31612:7;31620:1;31612:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31603:19;;:5;:19;;;31599:119;;;31656:5;31647;:14;31643:59;;;31670:1;31663:8;;;;;;31643:59;31695:7;;;;:::i;:::-;;;31599:119;31579:3;;;;:::i;:::-;;;31543:186;;;;31749:5;31741:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31359:451;;;;;;:::o;90710:160::-;90801:16;90842:20;90856:5;90842:13;:20::i;:::-;90835:27;;90710:160;;;:::o;26091:179::-;26223:39;26240:4;26246:2;26250:7;26223:39;;;;;;;;;;;;:16;:39::i;:::-;26091:179;;;:::o;33744:500::-;33850:16;33884;33903:18;33913:7;33903:9;:18::i;:::-;33884:37;;33934:13;33958:23;33998:8;33984:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33958:49;;34023:9;34018:195;34038:7;:14;;;;34034:1;:18;34018:195;;;34089:7;34097:1;34089:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34078:21;;:7;:21;;;34074:128;;;34138:1;34120:6;34127:7;;;;;:::i;:::-;;;34120:15;;;;;;;;;;;;;;;;;;;;;:19;;;;;34171:8;34162:5;:17;34158:28;;;34181:5;;34158:28;34074:128;34054:3;;;;:::i;:::-;;;34018:195;;;;34230:6;34223:13;;;;;33744:500;;;:::o;4162:121::-;2325:12;:10;:12::i;:::-;2314:23;;:7;:5;:7::i;:::-;:23;;;2306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4264:11:::1;4245:10;:16;4256:4;4245:16;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;4162:121:::0;;:::o;33132:304::-;33265:4;33292:9;33287:118;33307:8;;:15;;33303:1;:19;33287:118;;;33372:7;33348:31;;:7;33356:8;;33365:1;33356:11;;;;;;;;;;;;;;;;;;;;;33348:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;33344:49;;33388:5;33381:12;;;;;33344:49;33324:3;;;;:::i;:::-;;;33287:118;;;;33424:4;33417:11;;33132:304;;;;;;:::o;32065:231::-;32170:7;32211;:14;;;;32203:5;:22;32195:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;32283:5;32276:12;;32065:231;;;:::o;90519:171::-;3951:10;:22;3962:10;3951:22;;;;;;;;;;;;;;;;;;;;;;;;;3943:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;90618:1:::1;90594:21;:25;90586:34;;;::::0;::::1;;90647:5;90639:19;;:42;90659:21;90639:42;;;;;;;;;;;;;;;;;;;;;;;90631:51;;;::::0;::::1;;90519:171:::0;:::o;23868:190::-;23932:7;23960:16;23968:7;23960;:16::i;:::-;23952:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;24034:7;24042;24034:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24027:23;;23868:190;;;:::o;91432:208::-;3951:10;:22;3962:10;3951:22;;;;;;;;;;;;;;;;;;;;;;;;;3943:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;91582:11:::1;;91566:13;:27;;;;;;;:::i;:::-;;91622:10;;91604:15;:28;;;;;;;:::i;:::-;;91432:208:::0;;;;:::o;23498:362::-;23562:7;23621:1;23604:19;;:5;:19;;;;23582:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;23706:13;23735:9;23730:100;23750:7;:14;;;;23746:1;:18;23730:100;;;23799:7;23807:1;23799:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23790:19;;:5;:19;;;23786:32;;;23811:7;;;;:::i;:::-;;;23786:32;23766:3;;;;:::i;:::-;;;23730:100;;;;23847:5;23840:12;;;23498:362;;;:::o;2745:103::-;2325:12;:10;:12::i;:::-;2314:23;;:7;:5;:7::i;:::-;:23;;;2306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2810:30:::1;2837:1;2810:18;:30::i;:::-;2745:103::o:0;2094:87::-;2140:7;2167:6;;;;;;;;;;;2160:13;;2094:87;:::o;24429:98::-;24479:13;24512:7;24505:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24429:98;:::o;91648:215::-;3951:10;:22;3962:10;3951:22;;;;;;;;;;;;;;;;;;;;;;;;;3943:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;91806:20:::1;:9;:18;:20::i;:::-;91782:12;:21;91795:7;91782:21;;;;;;;;;;;:44;;;;;;;;;;;;:::i;:::-;;91837:18;91843:2;91847:7;91837:5;:18::i;:::-;91648:215:::0;;;:::o;25397:310::-;25529:12;:10;:12::i;:::-;25517:24;;:8;:24;;;;25509:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25627:8;25582:18;:32;25601:12;:10;:12::i;:::-;25582:32;;;;;;;;;;;;;;;:42;25615:8;25582:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;25680:8;25651:48;;25666:12;:10;:12::i;:::-;25651:48;;;25690:8;25651:48;;;;;;:::i;:::-;;;;;;;;25397:310;;:::o;33444:292::-;33620:9;33615:114;33635:8;;:15;;33631:1;:19;33615:114;;;33672:45;33689:4;33695:2;33699:8;;33708:1;33699:11;;;;;;;;;;;;;;;;;;;;;33712:4;;33672:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:16;:45::i;:::-;33652:3;;;;:::i;:::-;;;33615:114;;;;33444:292;;;;;;:::o;26278:357::-;26459:41;26478:12;:10;:12::i;:::-;26492:7;26459:18;:41::i;:::-;26437:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;26588:39;26602:4;26608:2;26612:7;26621:5;26588:13;:39::i;:::-;26278:357;;;;:::o;90878:546::-;90981:13;91034:16;91042:7;91034;:16::i;:::-;91012:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;91220:13;91256:12;:21;91269:7;91256:21;;;;;;;;;;;91326:18;:7;:16;:18::i;:::-;91367:15;91181:220;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91136:280;;90878:546;;;:::o;25192:197::-;25317:4;25346:18;:25;25365:5;25346:25;;;;;;;;;;;;;;;:35;25372:8;25346:35;;;;;;;;;;;;;;;;;;;;;;;;;25339:42;;25192:197;;;;:::o;4291:210::-;2325:12;:10;:12::i;:::-;2314:23;;:7;:5;:7::i;:::-;:23;;;2306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4445:4:::1;4422:10:::0;:20:::1;4433:8;4422:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;4460:33;4484:8;4460:23;:33::i;:::-;4291:210:::0;:::o;24066:355::-;24213:4;24270:25;24255:40;;;:11;:40;;;;:105;;;;24327:33;24312:48;;;:11;:48;;;;24255:105;:158;;;;24377:36;24401:11;24377:23;:36::i;:::-;24255:158;24235:178;;24066:355;;;:::o;791:98::-;844:7;871:10;864:17;;791:98;:::o;27814:147::-;27871:4;27905:7;:14;;;;27895:7;:24;:58;;;;;27951:1;27923:30;;:7;27931;27923:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;27895:58;27888:65;;27814:147;;;:::o;26659:159::-;26753:2;26726:15;:24;26742:7;26726:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;26802:7;26798:2;26771:39;;26780:16;26788:7;26780;:16::i;:::-;26771:39;;;;;;;;;;;;26659:159;;:::o;27969:382::-;28081:4;28111:16;28119:7;28111;:16::i;:::-;28103:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;28178:13;28194:16;28202:7;28194;:16::i;:::-;28178:32;;28240:5;28229:16;;:7;:16;;;:64;;;;28286:7;28262:31;;:20;28274:7;28262:11;:20::i;:::-;:31;;;28229:64;:113;;;;28310:32;28327:5;28334:7;28310:16;:32::i;:::-;28229:113;28221:122;;;27969:382;;;;:::o;28780:486::-;28938:4;28918:24;;:16;28926:7;28918;:16::i;:::-;:24;;;28896:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;29044:1;29030:16;;:2;:16;;;;29022:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29152:29;29169:1;29173:7;29152:8;:29::i;:::-;29211:2;29192:7;29200;29192:16;;;;;;;;;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29250:7;29246:2;29231:27;;29240:4;29231:27;;;;;;;;;;;;28780:486;;;:::o;3401:191::-;3475:16;3494:6;;;;;;;;;;;3475:25;;3520:8;3511:6;;:17;;;;;;;;;;;;;;;;;;3575:8;3544:40;;3565:8;3544:40;;;;;;;;;;;;3401:191;;:::o;34620:723::-;34676:13;34906:1;34897:5;:10;34893:53;;;34924:10;;;;;;;;;;;;;;;;;;;;;34893:53;34956:12;34971:5;34956:20;;34987:14;35012:78;35027:1;35019:4;:9;35012:78;;35045:8;;;;;:::i;:::-;;;;35076:2;35068:10;;;;;:::i;:::-;;;35012:78;;;35100:19;35132:6;35122:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35100:39;;35150:154;35166:1;35157:5;:10;35150:154;;35194:1;35184:11;;;;;:::i;:::-;;;35261:2;35253:5;:10;;;;:::i;:::-;35240:2;:24;;;;:::i;:::-;35227:39;;35210:6;35217;35210:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;35290:2;35281:11;;;;;:::i;:::-;;;35150:154;;;35328:6;35314:21;;;;;34620:723;;;;:::o;91887:146::-;91960:7;91973:2;91960:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92017:7;92013:2;91992:33;;92009:1;91992:33;;;;;;;;;;;;91887:146;;:::o;28428:344::-;28577:28;28587:4;28593:2;28597:7;28577:9;:28::i;:::-;28638:48;28661:4;28667:2;28671:7;28680:5;28638:22;:48::i;:::-;28616:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;28428:344;;;;:::o;3003:238::-;2325:12;:10;:12::i;:::-;2314:23;;:7;:5;:7::i;:::-;:23;;;2306:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3126:1:::1;3106:22;;:8;:22;;;;3084:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3205:28;3224:8;3205:18;:28::i;:::-;3003:238:::0;:::o;6296:207::-;6426:4;6470:25;6455:40;;;:11;:40;;;;6448:47;;6296:207;;;:::o;26826:980::-;26981:4;27002:15;:2;:13;;;:15::i;:::-;26998:801;;;27071:2;27055:36;;;27114:12;:10;:12::i;:::-;27149:4;27176:7;27206:5;27055:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;27034:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27430:1;27413:6;:13;:18;27409:320;;;27456:108;;;;;;;;;;:::i;:::-;;;;;;;;27409:320;27679:6;27673:13;27664:6;27660:2;27656:15;27649:38;27034:710;27304:41;;;27294:51;;;:6;:51;;;;27287:58;;;;;26998:801;27783:4;27776:11;;26826:980;;;;;;;:::o;13491:387::-;13551:4;13759:12;13826:7;13814:20;13806:28;;13869:1;13862:4;:8;13855:15;;;13491:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;518:367::-;591:8;601:6;651:3;644:4;636:6;632:17;628:27;618:2;;669:1;666;659:12;618:2;705:6;692:20;682:30;;735:18;727:6;724:30;721:2;;;767:1;764;757:12;721:2;804:4;796:6;792:17;780:29;;858:3;850:4;842:6;838:17;828:8;824:32;821:41;818:2;;;875:1;872;865:12;818:2;608:277;;;;;:::o;891:133::-;934:5;972:6;959:20;950:29;;988:30;1012:5;988:30;:::i;:::-;940:84;;;;:::o;1030:137::-;1075:5;1113:6;1100:20;1091:29;;1129:32;1155:5;1129:32;:::i;:::-;1081:86;;;;:::o;1173:141::-;1229:5;1260:6;1254:13;1245:22;;1276:32;1302:5;1276:32;:::i;:::-;1235:79;;;;:::o;1333:351::-;1390:8;1400:6;1450:3;1443:4;1435:6;1431:17;1427:27;1417:2;;1468:1;1465;1458:12;1417:2;1504:6;1491:20;1481:30;;1534:18;1526:6;1523:30;1520:2;;;1566:1;1563;1556:12;1520:2;1603:4;1595:6;1591:17;1579:29;;1657:3;1649:4;1641:6;1637:17;1627:8;1623:32;1620:41;1617:2;;;1674:1;1671;1664:12;1617:2;1407:277;;;;;:::o;1703:271::-;1758:5;1807:3;1800:4;1792:6;1788:17;1784:27;1774:2;;1825:1;1822;1815:12;1774:2;1865:6;1852:20;1890:78;1964:3;1956:6;1949:4;1941:6;1937:17;1890:78;:::i;:::-;1881:87;;1764:210;;;;;:::o;1994:352::-;2052:8;2062:6;2112:3;2105:4;2097:6;2093:17;2089:27;2079:2;;2130:1;2127;2120:12;2079:2;2166:6;2153:20;2143:30;;2196:18;2188:6;2185:30;2182:2;;;2228:1;2225;2218:12;2182:2;2265:4;2257:6;2253:17;2241:29;;2319:3;2311:4;2303:6;2299:17;2289:8;2285:32;2282:41;2279:2;;;2336:1;2333;2326:12;2279:2;2069:277;;;;;:::o;2352:139::-;2398:5;2436:6;2423:20;2414:29;;2452:33;2479:5;2452:33;:::i;:::-;2404:87;;;;:::o;2497:262::-;2556:6;2605:2;2593:9;2584:7;2580:23;2576:32;2573:2;;;2621:1;2618;2611:12;2573:2;2664:1;2689:53;2734:7;2725:6;2714:9;2710:22;2689:53;:::i;:::-;2679:63;;2635:117;2563:196;;;;:::o;2765:407::-;2833:6;2841;2890:2;2878:9;2869:7;2865:23;2861:32;2858:2;;;2906:1;2903;2896:12;2858:2;2949:1;2974:53;3019:7;3010:6;2999:9;2995:22;2974:53;:::i;:::-;2964:63;;2920:117;3076:2;3102:53;3147:7;3138:6;3127:9;3123:22;3102:53;:::i;:::-;3092:63;;3047:118;2848:324;;;;;:::o;3178:992::-;3302:6;3310;3318;3326;3334;3342;3391:3;3379:9;3370:7;3366:23;3362:33;3359:2;;;3408:1;3405;3398:12;3359:2;3451:1;3476:53;3521:7;3512:6;3501:9;3497:22;3476:53;:::i;:::-;3466:63;;3422:117;3578:2;3604:53;3649:7;3640:6;3629:9;3625:22;3604:53;:::i;:::-;3594:63;;3549:118;3734:2;3723:9;3719:18;3706:32;3765:18;3757:6;3754:30;3751:2;;;3797:1;3794;3787:12;3751:2;3833:80;3905:7;3896:6;3885:9;3881:22;3833:80;:::i;:::-;3815:98;;;;3677:246;3990:2;3979:9;3975:18;3962:32;4021:18;4013:6;4010:30;4007:2;;;4053:1;4050;4043:12;4007:2;4089:64;4145:7;4136:6;4125:9;4121:22;4089:64;:::i;:::-;4071:82;;;;3933:230;3349:821;;;;;;;;:::o;4176:552::-;4253:6;4261;4269;4318:2;4306:9;4297:7;4293:23;4289:32;4286:2;;;4334:1;4331;4324:12;4286:2;4377:1;4402:53;4447:7;4438:6;4427:9;4423:22;4402:53;:::i;:::-;4392:63;;4348:117;4504:2;4530:53;4575:7;4566:6;4555:9;4551:22;4530:53;:::i;:::-;4520:63;;4475:118;4632:2;4658:53;4703:7;4694:6;4683:9;4679:22;4658:53;:::i;:::-;4648:63;;4603:118;4276:452;;;;;:::o;4734:809::-;4829:6;4837;4845;4853;4902:3;4890:9;4881:7;4877:23;4873:33;4870:2;;;4919:1;4916;4909:12;4870:2;4962:1;4987:53;5032:7;5023:6;5012:9;5008:22;4987:53;:::i;:::-;4977:63;;4933:117;5089:2;5115:53;5160:7;5151:6;5140:9;5136:22;5115:53;:::i;:::-;5105:63;;5060:118;5217:2;5243:53;5288:7;5279:6;5268:9;5264:22;5243:53;:::i;:::-;5233:63;;5188:118;5373:2;5362:9;5358:18;5345:32;5404:18;5396:6;5393:30;5390:2;;;5436:1;5433;5426:12;5390:2;5464:62;5518:7;5509:6;5498:9;5494:22;5464:62;:::i;:::-;5454:72;;5316:220;4860:683;;;;;;;:::o;5549:570::-;5644:6;5652;5660;5709:2;5697:9;5688:7;5684:23;5680:32;5677:2;;;5725:1;5722;5715:12;5677:2;5768:1;5793:53;5838:7;5829:6;5818:9;5814:22;5793:53;:::i;:::-;5783:63;;5739:117;5923:2;5912:9;5908:18;5895:32;5954:18;5946:6;5943:30;5940:2;;;5986:1;5983;5976:12;5940:2;6022:80;6094:7;6085:6;6074:9;6070:22;6022:80;:::i;:::-;6004:98;;;;5866:246;5667:452;;;;;:::o;6125:401::-;6190:6;6198;6247:2;6235:9;6226:7;6222:23;6218:32;6215:2;;;6263:1;6260;6253:12;6215:2;6306:1;6331:53;6376:7;6367:6;6356:9;6352:22;6331:53;:::i;:::-;6321:63;;6277:117;6433:2;6459:50;6501:7;6492:6;6481:9;6477:22;6459:50;:::i;:::-;6449:60;;6404:115;6205:321;;;;;:::o;6532:407::-;6600:6;6608;6657:2;6645:9;6636:7;6632:23;6628:32;6625:2;;;6673:1;6670;6663:12;6625:2;6716:1;6741:53;6786:7;6777:6;6766:9;6762:22;6741:53;:::i;:::-;6731:63;;6687:117;6843:2;6869:53;6914:7;6905:6;6894:9;6890:22;6869:53;:::i;:::-;6859:63;;6814:118;6615:324;;;;;:::o;6945:552::-;7022:6;7030;7038;7087:2;7075:9;7066:7;7062:23;7058:32;7055:2;;;7103:1;7100;7093:12;7055:2;7146:1;7171:53;7216:7;7207:6;7196:9;7192:22;7171:53;:::i;:::-;7161:63;;7117:117;7273:2;7299:53;7344:7;7335:6;7324:9;7320:22;7299:53;:::i;:::-;7289:63;;7244:118;7401:2;7427:53;7472:7;7463:6;7452:9;7448:22;7427:53;:::i;:::-;7417:63;;7372:118;7045:452;;;;;:::o;7503:260::-;7561:6;7610:2;7598:9;7589:7;7585:23;7581:32;7578:2;;;7626:1;7623;7616:12;7578:2;7669:1;7694:52;7738:7;7729:6;7718:9;7714:22;7694:52;:::i;:::-;7684:62;;7640:116;7568:195;;;;:::o;7769:282::-;7838:6;7887:2;7875:9;7866:7;7862:23;7858:32;7855:2;;;7903:1;7900;7893:12;7855:2;7946:1;7971:63;8026:7;8017:6;8006:9;8002:22;7971:63;:::i;:::-;7961:73;;7917:127;7845:206;;;;:::o;8057:673::-;8149:6;8157;8165;8173;8222:2;8210:9;8201:7;8197:23;8193:32;8190:2;;;8238:1;8235;8228:12;8190:2;8309:1;8298:9;8294:17;8281:31;8339:18;8331:6;8328:30;8325:2;;;8371:1;8368;8361:12;8325:2;8407:65;8464:7;8455:6;8444:9;8440:22;8407:65;:::i;:::-;8389:83;;;;8252:230;8549:2;8538:9;8534:18;8521:32;8580:18;8572:6;8569:30;8566:2;;;8612:1;8609;8602:12;8566:2;8648:65;8705:7;8696:6;8685:9;8681:22;8648:65;:::i;:::-;8630:83;;;;8492:231;8180:550;;;;;;;:::o;8736:262::-;8795:6;8844:2;8832:9;8823:7;8819:23;8815:32;8812:2;;;8860:1;8857;8850:12;8812:2;8903:1;8928:53;8973:7;8964:6;8953:9;8949:22;8928:53;:::i;:::-;8918:63;;8874:117;8802:196;;;;:::o;9004:179::-;9073:10;9094:46;9136:3;9128:6;9094:46;:::i;:::-;9172:4;9167:3;9163:14;9149:28;;9084:99;;;;:::o;9189:118::-;9276:24;9294:5;9276:24;:::i;:::-;9271:3;9264:37;9254:53;;:::o;9343:732::-;9462:3;9491:54;9539:5;9491:54;:::i;:::-;9561:86;9640:6;9635:3;9561:86;:::i;:::-;9554:93;;9671:56;9721:5;9671:56;:::i;:::-;9750:7;9781:1;9766:284;9791:6;9788:1;9785:13;9766:284;;;9867:6;9861:13;9894:63;9953:3;9938:13;9894:63;:::i;:::-;9887:70;;9980:60;10033:6;9980:60;:::i;:::-;9970:70;;9826:224;9813:1;9810;9806:9;9801:14;;9766:284;;;9770:14;10066:3;10059:10;;9467:608;;;;;;;:::o;10081:109::-;10162:21;10177:5;10162:21;:::i;:::-;10157:3;10150:34;10140:50;;:::o;10196:360::-;10282:3;10310:38;10342:5;10310:38;:::i;:::-;10364:70;10427:6;10422:3;10364:70;:::i;:::-;10357:77;;10443:52;10488:6;10483:3;10476:4;10469:5;10465:16;10443:52;:::i;:::-;10520:29;10542:6;10520:29;:::i;:::-;10515:3;10511:39;10504:46;;10286:270;;;;;:::o;10562:364::-;10650:3;10678:39;10711:5;10678:39;:::i;:::-;10733:71;10797:6;10792:3;10733:71;:::i;:::-;10726:78;;10813:52;10858:6;10853:3;10846:4;10839:5;10835:16;10813:52;:::i;:::-;10890:29;10912:6;10890:29;:::i;:::-;10885:3;10881:39;10874:46;;10654:272;;;;;:::o;10932:377::-;11038:3;11066:39;11099:5;11066:39;:::i;:::-;11121:89;11203:6;11198:3;11121:89;:::i;:::-;11114:96;;11219:52;11264:6;11259:3;11252:4;11245:5;11241:16;11219:52;:::i;:::-;11296:6;11291:3;11287:16;11280:23;;11042:267;;;;;:::o;11339:845::-;11442:3;11479:5;11473:12;11508:36;11534:9;11508:36;:::i;:::-;11560:89;11642:6;11637:3;11560:89;:::i;:::-;11553:96;;11680:1;11669:9;11665:17;11696:1;11691:137;;;;11842:1;11837:341;;;;11658:520;;11691:137;11775:4;11771:9;11760;11756:25;11751:3;11744:38;11811:6;11806:3;11802:16;11795:23;;11691:137;;11837:341;11904:38;11936:5;11904:38;:::i;:::-;11964:1;11978:154;11992:6;11989:1;11986:13;11978:154;;;12066:7;12060:14;12056:1;12051:3;12047:11;12040:35;12116:1;12107:7;12103:15;12092:26;;12014:4;12011:1;12007:12;12002:17;;11978:154;;;12161:6;12156:3;12152:16;12145:23;;11844:334;;11658:520;;11446:738;;;;;;:::o;12190:366::-;12332:3;12353:67;12417:2;12412:3;12353:67;:::i;:::-;12346:74;;12429:93;12518:3;12429:93;:::i;:::-;12547:2;12542:3;12538:12;12531:19;;12336:220;;;:::o;12562:366::-;12704:3;12725:67;12789:2;12784:3;12725:67;:::i;:::-;12718:74;;12801:93;12890:3;12801:93;:::i;:::-;12919:2;12914:3;12910:12;12903:19;;12708:220;;;:::o;12934:366::-;13076:3;13097:67;13161:2;13156:3;13097:67;:::i;:::-;13090:74;;13173:93;13262:3;13173:93;:::i;:::-;13291:2;13286:3;13282:12;13275:19;;13080:220;;;:::o;13306:366::-;13448:3;13469:67;13533:2;13528:3;13469:67;:::i;:::-;13462:74;;13545:93;13634:3;13545:93;:::i;:::-;13663:2;13658:3;13654:12;13647:19;;13452:220;;;:::o;13678:366::-;13820:3;13841:67;13905:2;13900:3;13841:67;:::i;:::-;13834:74;;13917:93;14006:3;13917:93;:::i;:::-;14035:2;14030:3;14026:12;14019:19;;13824:220;;;:::o;14050:366::-;14192:3;14213:67;14277:2;14272:3;14213:67;:::i;:::-;14206:74;;14289:93;14378:3;14289:93;:::i;:::-;14407:2;14402:3;14398:12;14391:19;;14196:220;;;:::o;14422:366::-;14564:3;14585:67;14649:2;14644:3;14585:67;:::i;:::-;14578:74;;14661:93;14750:3;14661:93;:::i;:::-;14779:2;14774:3;14770:12;14763:19;;14568:220;;;:::o;14794:366::-;14936:3;14957:67;15021:2;15016:3;14957:67;:::i;:::-;14950:74;;15033:93;15122:3;15033:93;:::i;:::-;15151:2;15146:3;15142:12;15135:19;;14940:220;;;:::o;15166:366::-;15308:3;15329:67;15393:2;15388:3;15329:67;:::i;:::-;15322:74;;15405:93;15494:3;15405:93;:::i;:::-;15523:2;15518:3;15514:12;15507:19;;15312:220;;;:::o;15538:366::-;15680:3;15701:67;15765:2;15760:3;15701:67;:::i;:::-;15694:74;;15777:93;15866:3;15777:93;:::i;:::-;15895:2;15890:3;15886:12;15879:19;;15684:220;;;:::o;15910:366::-;16052:3;16073:67;16137:2;16132:3;16073:67;:::i;:::-;16066:74;;16149:93;16238:3;16149:93;:::i;:::-;16267:2;16262:3;16258:12;16251:19;;16056:220;;;:::o;16282:366::-;16424:3;16445:67;16509:2;16504:3;16445:67;:::i;:::-;16438:74;;16521:93;16610:3;16521:93;:::i;:::-;16639:2;16634:3;16630:12;16623:19;;16428:220;;;:::o;16654:366::-;16796:3;16817:67;16881:2;16876:3;16817:67;:::i;:::-;16810:74;;16893:93;16982:3;16893:93;:::i;:::-;17011:2;17006:3;17002:12;16995:19;;16800:220;;;:::o;17026:366::-;17168:3;17189:67;17253:2;17248:3;17189:67;:::i;:::-;17182:74;;17265:93;17354:3;17265:93;:::i;:::-;17383:2;17378:3;17374:12;17367:19;;17172:220;;;:::o;17398:400::-;17558:3;17579:84;17661:1;17656:3;17579:84;:::i;:::-;17572:91;;17672:93;17761:3;17672:93;:::i;:::-;17790:1;17785:3;17781:11;17774:18;;17562:236;;;:::o;17804:108::-;17881:24;17899:5;17881:24;:::i;:::-;17876:3;17869:37;17859:53;;:::o;17918:118::-;18005:24;18023:5;18005:24;:::i;:::-;18000:3;17993:37;17983:53;;:::o;18042:1003::-;18410:3;18432:92;18520:3;18511:6;18432:92;:::i;:::-;18425:99;;18541:92;18629:3;18620:6;18541:92;:::i;:::-;18534:99;;18650:148;18794:3;18650:148;:::i;:::-;18643:155;;18815:95;18906:3;18897:6;18815:95;:::i;:::-;18808:102;;18927:92;19015:3;19006:6;18927:92;:::i;:::-;18920:99;;19036:3;19029:10;;18414:631;;;;;;;:::o;19051:222::-;19144:4;19182:2;19171:9;19167:18;19159:26;;19195:71;19263:1;19252:9;19248:17;19239:6;19195:71;:::i;:::-;19149:124;;;;:::o;19279:640::-;19474:4;19512:3;19501:9;19497:19;19489:27;;19526:71;19594:1;19583:9;19579:17;19570:6;19526:71;:::i;:::-;19607:72;19675:2;19664:9;19660:18;19651:6;19607:72;:::i;:::-;19689;19757:2;19746:9;19742:18;19733:6;19689:72;:::i;:::-;19808:9;19802:4;19798:20;19793:2;19782:9;19778:18;19771:48;19836:76;19907:4;19898:6;19836:76;:::i;:::-;19828:84;;19479:440;;;;;;;:::o;19925:373::-;20068:4;20106:2;20095:9;20091:18;20083:26;;20155:9;20149:4;20145:20;20141:1;20130:9;20126:17;20119:47;20183:108;20286:4;20277:6;20183:108;:::i;:::-;20175:116;;20073:225;;;;:::o;20304:210::-;20391:4;20429:2;20418:9;20414:18;20406:26;;20442:65;20504:1;20493:9;20489:17;20480:6;20442:65;:::i;:::-;20396:118;;;;:::o;20520:313::-;20633:4;20671:2;20660:9;20656:18;20648:26;;20720:9;20714:4;20710:20;20706:1;20695:9;20691:17;20684:47;20748:78;20821:4;20812:6;20748:78;:::i;:::-;20740:86;;20638:195;;;;:::o;20839:419::-;21005:4;21043:2;21032:9;21028:18;21020:26;;21092:9;21086:4;21082:20;21078:1;21067:9;21063:17;21056:47;21120:131;21246:4;21120:131;:::i;:::-;21112:139;;21010:248;;;:::o;21264:419::-;21430:4;21468:2;21457:9;21453:18;21445:26;;21517:9;21511:4;21507:20;21503:1;21492:9;21488:17;21481:47;21545:131;21671:4;21545:131;:::i;:::-;21537:139;;21435:248;;;:::o;21689:419::-;21855:4;21893:2;21882:9;21878:18;21870:26;;21942:9;21936:4;21932:20;21928:1;21917:9;21913:17;21906:47;21970:131;22096:4;21970:131;:::i;:::-;21962:139;;21860:248;;;:::o;22114:419::-;22280:4;22318:2;22307:9;22303:18;22295:26;;22367:9;22361:4;22357:20;22353:1;22342:9;22338:17;22331:47;22395:131;22521:4;22395:131;:::i;:::-;22387:139;;22285:248;;;:::o;22539:419::-;22705:4;22743:2;22732:9;22728:18;22720:26;;22792:9;22786:4;22782:20;22778:1;22767:9;22763:17;22756:47;22820:131;22946:4;22820:131;:::i;:::-;22812:139;;22710:248;;;:::o;22964:419::-;23130:4;23168:2;23157:9;23153:18;23145:26;;23217:9;23211:4;23207:20;23203:1;23192:9;23188:17;23181:47;23245:131;23371:4;23245:131;:::i;:::-;23237:139;;23135:248;;;:::o;23389:419::-;23555:4;23593:2;23582:9;23578:18;23570:26;;23642:9;23636:4;23632:20;23628:1;23617:9;23613:17;23606:47;23670:131;23796:4;23670:131;:::i;:::-;23662:139;;23560:248;;;:::o;23814:419::-;23980:4;24018:2;24007:9;24003:18;23995:26;;24067:9;24061:4;24057:20;24053:1;24042:9;24038:17;24031:47;24095:131;24221:4;24095:131;:::i;:::-;24087:139;;23985:248;;;:::o;24239:419::-;24405:4;24443:2;24432:9;24428:18;24420:26;;24492:9;24486:4;24482:20;24478:1;24467:9;24463:17;24456:47;24520:131;24646:4;24520:131;:::i;:::-;24512:139;;24410:248;;;:::o;24664:419::-;24830:4;24868:2;24857:9;24853:18;24845:26;;24917:9;24911:4;24907:20;24903:1;24892:9;24888:17;24881:47;24945:131;25071:4;24945:131;:::i;:::-;24937:139;;24835:248;;;:::o;25089:419::-;25255:4;25293:2;25282:9;25278:18;25270:26;;25342:9;25336:4;25332:20;25328:1;25317:9;25313:17;25306:47;25370:131;25496:4;25370:131;:::i;:::-;25362:139;;25260:248;;;:::o;25514:419::-;25680:4;25718:2;25707:9;25703:18;25695:26;;25767:9;25761:4;25757:20;25753:1;25742:9;25738:17;25731:47;25795:131;25921:4;25795:131;:::i;:::-;25787:139;;25685:248;;;:::o;25939:419::-;26105:4;26143:2;26132:9;26128:18;26120:26;;26192:9;26186:4;26182:20;26178:1;26167:9;26163:17;26156:47;26220:131;26346:4;26220:131;:::i;:::-;26212:139;;26110:248;;;:::o;26364:419::-;26530:4;26568:2;26557:9;26553:18;26545:26;;26617:9;26611:4;26607:20;26603:1;26592:9;26588:17;26581:47;26645:131;26771:4;26645:131;:::i;:::-;26637:139;;26535:248;;;:::o;26789:222::-;26882:4;26920:2;26909:9;26905:18;26897:26;;26933:71;27001:1;26990:9;26986:17;26977:6;26933:71;:::i;:::-;26887:124;;;;:::o;27017:129::-;27051:6;27078:20;;:::i;:::-;27068:30;;27107:33;27135:4;27127:6;27107:33;:::i;:::-;27058:88;;;:::o;27152:75::-;27185:6;27218:2;27212:9;27202:19;;27192:35;:::o;27233:307::-;27294:4;27384:18;27376:6;27373:30;27370:2;;;27406:18;;:::i;:::-;27370:2;27444:29;27466:6;27444:29;:::i;:::-;27436:37;;27528:4;27522;27518:15;27510:23;;27299:241;;;:::o;27546:132::-;27613:4;27636:3;27628:11;;27666:4;27661:3;27657:14;27649:22;;27618:60;;;:::o;27684:141::-;27733:4;27756:3;27748:11;;27779:3;27776:1;27769:14;27813:4;27810:1;27800:18;27792:26;;27738:87;;;:::o;27831:114::-;27898:6;27932:5;27926:12;27916:22;;27905:40;;;:::o;27951:98::-;28002:6;28036:5;28030:12;28020:22;;28009:40;;;:::o;28055:99::-;28107:6;28141:5;28135:12;28125:22;;28114:40;;;:::o;28160:113::-;28230:4;28262;28257:3;28253:14;28245:22;;28235:38;;;:::o;28279:184::-;28378:11;28412:6;28407:3;28400:19;28452:4;28447:3;28443:14;28428:29;;28390:73;;;;:::o;28469:168::-;28552:11;28586:6;28581:3;28574:19;28626:4;28621:3;28617:14;28602:29;;28564:73;;;;:::o;28643:169::-;28727:11;28761:6;28756:3;28749:19;28801:4;28796:3;28792:14;28777:29;;28739:73;;;;:::o;28818:148::-;28920:11;28957:3;28942:18;;28932:34;;;;:::o;28972:305::-;29012:3;29031:20;29049:1;29031:20;:::i;:::-;29026:25;;29065:20;29083:1;29065:20;:::i;:::-;29060:25;;29219:1;29151:66;29147:74;29144:1;29141:81;29138:2;;;29225:18;;:::i;:::-;29138:2;29269:1;29266;29262:9;29255:16;;29016:261;;;;:::o;29283:185::-;29323:1;29340:20;29358:1;29340:20;:::i;:::-;29335:25;;29374:20;29392:1;29374:20;:::i;:::-;29369:25;;29413:1;29403:2;;29418:18;;:::i;:::-;29403:2;29460:1;29457;29453:9;29448:14;;29325:143;;;;:::o;29474:191::-;29514:4;29534:20;29552:1;29534:20;:::i;:::-;29529:25;;29568:20;29586:1;29568:20;:::i;:::-;29563:25;;29607:1;29604;29601:8;29598:2;;;29612:18;;:::i;:::-;29598:2;29657:1;29654;29650:9;29642:17;;29519:146;;;;:::o;29671:96::-;29708:7;29737:24;29755:5;29737:24;:::i;:::-;29726:35;;29716:51;;;:::o;29773:90::-;29807:7;29850:5;29843:13;29836:21;29825:32;;29815:48;;;:::o;29869:149::-;29905:7;29945:66;29938:5;29934:78;29923:89;;29913:105;;;:::o;30024:126::-;30061:7;30101:42;30094:5;30090:54;30079:65;;30069:81;;;:::o;30156:77::-;30193:7;30222:5;30211:16;;30201:32;;;:::o;30239:154::-;30323:6;30318:3;30313;30300:30;30385:1;30376:6;30371:3;30367:16;30360:27;30290:103;;;:::o;30399:307::-;30467:1;30477:113;30491:6;30488:1;30485:13;30477:113;;;30576:1;30571:3;30567:11;30561:18;30557:1;30552:3;30548:11;30541:39;30513:2;30510:1;30506:10;30501:15;;30477:113;;;30608:6;30605:1;30602:13;30599:2;;;30688:1;30679:6;30674:3;30670:16;30663:27;30599:2;30448:258;;;;:::o;30712:320::-;30756:6;30793:1;30787:4;30783:12;30773:22;;30840:1;30834:4;30830:12;30861:18;30851:2;;30917:4;30909:6;30905:17;30895:27;;30851:2;30979;30971:6;30968:14;30948:18;30945:38;30942:2;;;30998:18;;:::i;:::-;30942:2;30763:269;;;;:::o;31038:281::-;31121:27;31143:4;31121:27;:::i;:::-;31113:6;31109:40;31251:6;31239:10;31236:22;31215:18;31203:10;31200:34;31197:62;31194:2;;;31262:18;;:::i;:::-;31194:2;31302:10;31298:2;31291:22;31081:238;;;:::o;31325:233::-;31364:3;31387:24;31405:5;31387:24;:::i;:::-;31378:33;;31433:66;31426:5;31423:77;31420:2;;;31503:18;;:::i;:::-;31420:2;31550:1;31543:5;31539:13;31532:20;;31368:190;;;:::o;31564:176::-;31596:1;31613:20;31631:1;31613:20;:::i;:::-;31608:25;;31647:20;31665:1;31647:20;:::i;:::-;31642:25;;31686:1;31676:2;;31691:18;;:::i;:::-;31676:2;31732:1;31729;31725:9;31720:14;;31598:142;;;;:::o;31746:180::-;31794:77;31791:1;31784:88;31891:4;31888:1;31881:15;31915:4;31912:1;31905:15;31932:180;31980:77;31977:1;31970:88;32077:4;32074:1;32067:15;32101:4;32098:1;32091:15;32118:180;32166:77;32163:1;32156:88;32263:4;32260:1;32253:15;32287:4;32284:1;32277:15;32304:180;32352:77;32349:1;32342:88;32449:4;32446:1;32439:15;32473:4;32470:1;32463:15;32490:102;32531:6;32582:2;32578:7;32573:2;32566:5;32562:14;32558:28;32548:38;;32538:54;;;:::o;32598:166::-;32738:18;32734:1;32726:6;32722:14;32715:42;32704:60;:::o;32770:230::-;32910:34;32906:1;32898:6;32894:14;32887:58;32979:13;32974:2;32966:6;32962:15;32955:38;32876:124;:::o;33006:237::-;33146:34;33142:1;33134:6;33130:14;33123:58;33215:20;33210:2;33202:6;33198:15;33191:45;33112:131;:::o;33249:225::-;33389:34;33385:1;33377:6;33373:14;33366:58;33458:8;33453:2;33445:6;33441:15;33434:33;33355:119;:::o;33480:223::-;33620:34;33616:1;33608:6;33604:14;33597:58;33689:6;33684:2;33676:6;33672:15;33665:31;33586:117;:::o;33709:175::-;33849:27;33845:1;33837:6;33833:14;33826:51;33815:69;:::o;33890:243::-;34030:34;34026:1;34018:6;34014:14;34007:58;34099:26;34094:2;34086:6;34082:15;34075:51;33996:137;:::o;34139:229::-;34279:34;34275:1;34267:6;34263:14;34256:58;34348:12;34343:2;34335:6;34331:15;34324:37;34245:123;:::o;34374:222::-;34514:34;34510:1;34502:6;34498:14;34491:58;34583:5;34578:2;34570:6;34566:15;34559:30;34480:116;:::o;34602:182::-;34742:34;34738:1;34730:6;34726:14;34719:58;34708:76;:::o;34790:228::-;34930:34;34926:1;34918:6;34914:14;34907:58;34999:11;34994:2;34986:6;34982:15;34975:36;34896:122;:::o;35024:234::-;35164:34;35160:1;35152:6;35148:14;35141:58;35233:17;35228:2;35220:6;35216:15;35209:42;35130:128;:::o;35264:220::-;35404:34;35400:1;35392:6;35388:14;35381:58;35473:3;35468:2;35460:6;35456:15;35449:28;35370:114;:::o;35490:236::-;35630:34;35626:1;35618:6;35614:14;35607:58;35699:19;35694:2;35686:6;35682:15;35675:44;35596:130;:::o;35732:151::-;35872:3;35868:1;35860:6;35856:14;35849:27;35838:45;:::o;35889:122::-;35962:24;35980:5;35962:24;:::i;:::-;35955:5;35952:35;35942:2;;36001:1;35998;35991:12;35942:2;35932:79;:::o;36017:116::-;36087:21;36102:5;36087:21;:::i;:::-;36080:5;36077:32;36067:2;;36123:1;36120;36113:12;36067:2;36057:76;:::o;36139:120::-;36211:23;36228:5;36211:23;:::i;:::-;36204:5;36201:34;36191:2;;36249:1;36246;36239:12;36191:2;36181:78;:::o;36265:122::-;36338:24;36356:5;36338:24;:::i;:::-;36331:5;36328:35;36318:2;;36377:1;36374;36367:12;36318:2;36308:79;:::o
Swarm Source
ipfs://00ea34aa357912809bc7c2c9dcc954262c0adfa128ac8cef1cf64dbabd387724
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.