ERC-721
Overview
Max Total Supply
1,018 CRYPTOAVATAR
Holders
125
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 CRYPTOAVATARLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoAvatar
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-05 */ /* *** https://cryptoavatar.me *** c c()_() wWw wWw )) (o)__(o) .-. wWw wWw (o)__(o) ()_() (OO)(O o) (O) (O)(o0)-.(__ __)c(O_O)c /) (O) (O) /)(__ __)/) (O o) ,'.--.)|^_\ ( \ / ) | (_)) ( ) ,'.---.`, (o)(O)( \ / )(o)(O)( )(o)(O) |^_\ / //_|_\|(_)) \ \/ / | .-' )( / /|_|_|\ \ //\\ \ \ / / //\\ )( //\\ |(_)) | \___ | / \o / |( ( )| \_____/ ||(__)| / \/ \ |(__)|( )|(__)| | / '. ) )|\\ _/ / \) )/ '. `---' .`/,-. | \ `--' / /,-. | )/ /,-. | )|\\ `-.' (/ \)(_.' ( ( `-...-' -' '' `-..-' -' ''( -' ''(/ \) __ __ _ | \/ | __ _ | |__ ___ | |\/| | / _` | | / / / -_) |_|__|_| \__,_| |_\_\ \___| _|"""""|_|"""""|_|"""""|_|"""""| "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' _ _ | |_ | |_ ___ | _| | ' \ / -_) _\__| |_||_| \___| _|"""""|_|"""""|_|"""""| "`-0-0-'"`-0-0-'"`-0-0-' _ _ ___ _____ | \| | | __| |_ _| | .` | | _| | | |_|\_| _|_|_ _|_|_ _|"""""|_| """ |_|"""""| "`-0-0-'"`-0-0-'"`-0-0-' _ _ __ __ __ ___ _ _ | | __| | \ V V / / _ \ | '_| | | / _` | \_/\_/ \___/ _|_|_ _|_|_ \__,_| _|"""""|_|"""""|_|"""""|_|"""""|_|"""""| "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' __ _ / _` | \__,_| _|"""""| "`=0-0-' _ _ | |__ ___ | |_ | |_ ___ _ _ | '_ \ / -_) | _| | _| / -_) | '_| |_.__/ \___| _\__| _\__| \___| _|_|_ _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_|"""""| "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-' _ __ _ (") | '_ \ | | __ _ __ ___ \| o O O o O O | .__/ | | / _` | / _| / -_) o o |_|__ _|_|_ \__,_| \__|_ \___| _____ TS__[O] TS__[O] _|"""""|_|"""""|_|"""""|_|"""""|_|"""""|_| | {======| {======| "`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'"`-0-0-'./o--000'./o--000' */ // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT 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] pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File contracts/interfaces/IERC2981.sol pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be payed in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require(collectionSize_ > 0, "ERC721A: collection must have a nonzero supply"); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index > 0 && index <= totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), "ERC721A: number minted query for the zero address"); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all"); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId > 0 && tokenId <= currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = totalSupply() + 1; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData(addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity)); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require(_checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer"); updatedIndex++; } currentIndex += quantity; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved"); require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner"); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File contracts/NFT.sol pragma solidity ^0.8.0; contract NFT is ERC721A, Ownable, IERC2981 { string internal BASE_URI = "ipfs://"; uint64 public startTime = 0; uint256 public price = 0.001 ether; uint16 internal royalty = 500; constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) ERC721A(name_, symbol_, maxBatchSize_, collectionSize_) {} function _baseURI() internal view override returns (string memory) { return BASE_URI; } function mint(uint256 quantity) external payable virtual { require(block.timestamp >= startTime, "NFT: not started yet"); require(quantity <= 10, "NFT: quantity must be no more than 10"); require(quantity + totalSupply() <= collectionSize, "NFT: mint too many"); require(msg.value >= quantity * price, "NFT: insufficient amount"); require(balanceOf(msg.sender) + quantity <= maxBatchSize, "NFT: own too many"); _safeMint(msg.sender, quantity); } function setStartTime(uint64 _startTime) external onlyOwner { startTime = _startTime; } function setPrice(uint16 _price) external onlyOwner { price = _price; } function setRoyalty(uint16 _royalty) external onlyOwner { royalty = _royalty; } function royaltyInfo(uint256, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { return (address(this), (salePrice * royalty) / 10000); } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success, "NFT: failed"); } receive() external payable {} } // File contracts/CryptoAvatar.sol pragma solidity ^0.8.0; contract CryptoAvatar is NFT { constructor() NFT("Crypto Avatar", "CRYPTOAVATAR", 10, 10000) { BASE_URI = "ipfs://QmPxcgiGKhaSfcEfvj4YThWpVhFpo2HPWfBeTszcxZc9VD/"; price = 0.01 ether; startTime = 1654495200; // 2022-6-6 6:00 UTC } function freeMint(uint256 quantity) external { require(block.timestamp >= startTime, "NFT: not started yet"); require(quantity <= 10, "NFT: quantity must be no more than 10"); require(balanceOf(msg.sender) + quantity <= maxBatchSize, "NFT: own too many"); require(totalSupply() < 1000, "NFT: no more free mint"); // first 1000 are free to mint _safeMint(msg.sender, quantity); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_price","type":"uint16"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_startTime","type":"uint64"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6000808055600790815561010060405260c081905266697066733a2f2f60c81b60e090815262000033916009919062000280565b50600a80546001600160401b031916905566038d7ea4c68000600b55600c805461ffff19166101f41790553480156200006b57600080fd5b506040518060400160405280600d81526020016c21b93cb83a379020bb30ba30b960991b8152506040518060400160405280600c81526020016b21a92ca82a27a0ab20aa20a960a11b815250600a61271083838383600081116200012d5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200018f5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000124565b8351620001a490600190602087019062000280565b508251620001ba90600290602086019062000280565b5060a09190915260805250620001d29050336200022e565b5050505060405180606001604052806036815260200162002729603691398051620002069160099160209091019062000280565b50662386f26fc10000600b55600a80546001600160401b03191663629d97e017905562000363565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200028e9062000326565b90600052602060002090601f016020900481019282620002b25760008555620002fd565b82601f10620002cd57805160ff1916838001178555620002fd565b82800160010185558215620002fd579182015b82811115620002fd578251825591602001919060010190620002e0565b506200030b9291506200030f565b5090565b5b808211156200030b576000815560010162000310565b600181811c908216806200033b57607f821691505b602082108114156200035d57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612384620003a560003960008181610d2601528181610f81015281816116cc015281816116f60152611b6201526000610eae01526123846000f3fe6080604052600436106101c65760003560e01c806370a08231116100f7578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd1461051f578063d7224ba01461053f578063e985e9c514610555578063f2fde38b1461059e57600080fd5b8063a035b1fe146104b6578063a0712d68146104cc578063a22cb465146104df578063b88d4fde146104ff57600080fd5b80637c928fe9116100d15780637c928fe9146104435780638da5cb5b146104635780638ed67a441461048157806395d89b41146104a157600080fd5b806370a08231146103d6578063715018a6146103f657806378e979251461040b57600080fd5b80632f745c59116101645780633ccfd60b1161013e5780633ccfd60b1461036157806342842e0e146103765780634f6ccce7146103965780636352211e146103b657600080fd5b80632f745c591461030157806336e79a5a1461032157806338812e581461034157600080fd5b8063095ea7b3116101a0578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632a55205a146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc1461022957600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101f26101ed366004611f6b565b6105be565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c61062b565b6040516101fe91906120bd565b34801561023557600080fd5b50610249610244366004611fc5565b6106bd565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611f42565b61074b565b005b34801561028f57600080fd5b506000545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611df9565b610863565b3480156102ce57600080fd5b506102e26102dd366004611fdd565b61086e565b604080516001600160a01b0390931683526020830191909152016101fe565b34801561030d57600080fd5b5061029461031c366004611f42565b61089f565b34801561032d57600080fd5b5061028161033c366004611fa3565b610a0c565b34801561034d57600080fd5b5061028161035c366004611ffe565b610a4e565b34801561036d57600080fd5b50610281610a9b565b34801561038257600080fd5b50610281610391366004611df9565b610b4e565b3480156103a257600080fd5b506102946103b1366004611fc5565b610b69565b3480156103c257600080fd5b506102496103d1366004611fc5565b610bd8565b3480156103e257600080fd5b506102946103f1366004611dad565b610bea565b34801561040257600080fd5b50610281610c7b565b34801561041757600080fd5b50600a5461042b906001600160401b031681565b6040516001600160401b0390911681526020016101fe565b34801561044f57600080fd5b5061028161045e366004611fc5565b610cb1565b34801561046f57600080fd5b506008546001600160a01b0316610249565b34801561048d57600080fd5b5061028161049c366004611fa3565b610df7565b3480156104ad57600080fd5b5061021c610e2a565b3480156104c257600080fd5b50610294600b5481565b6102816104da366004611fc5565b610e39565b3480156104eb57600080fd5b506102816104fa366004611f08565b610ff6565b34801561050b57600080fd5b5061028161051a366004611e34565b6110bb565b34801561052b57600080fd5b5061021c61053a366004611fc5565b6110f4565b34801561054b57600080fd5b5061029460075481565b34801561056157600080fd5b506101f2610570366004611dc7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105aa57600080fd5b506102816105b9366004611dad565b6111bf565b60006001600160e01b031982166380ac58cd60e01b14806105ef57506001600160e01b03198216635b5e139f60e01b145b8061060a57506001600160e01b0319821663780e9d6360e01b145b8061062557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461063a9061228c565b80601f01602080910402602001604051908101604052809291908181526020018280546106669061228c565b80156106b35780601f10610688576101008083540402835291602001916106b3565b820191906000526020600020905b81548152906001019060200180831161069657829003601f168201915b5050505050905090565b60006106c882611257565b61072f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061075682610bd8565b9050806001600160a01b0316836001600160a01b031614156107c55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610726565b336001600160a01b03821614806107e157506107e18133610570565b6108535760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610726565b61085e83838361126c565b505050565b61085e8383836112c8565b600c54600090819030906127109061088a9061ffff16866121eb565b61089491906121d7565b915091509250929050565b60006108aa83610bea565b82106109035760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610726565b600080549080805b838110156109ac576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561095d57805192505b876001600160a01b0316836001600160a01b03161415610999578684141561098b5750935061062592505050565b83610995816122c7565b9450505b50806109a4816122c7565b91505061090b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610726565b6008546001600160a01b03163314610a365760405162461bcd60e51b815260040161072690612115565b600c805461ffff191661ffff92909216919091179055565b6008546001600160a01b03163314610a785760405162461bcd60e51b815260040161072690612115565b600a805467ffffffffffffffff19166001600160401b0392909216919091179055565b6008546001600160a01b03163314610ac55760405162461bcd60e51b815260040161072690612115565b604051600090339047908381818185875af1925050503d8060008114610b07576040519150601f19603f3d011682016040523d82523d6000602084013e610b0c565b606091505b5050905080610b4b5760405162461bcd60e51b815260206004820152600b60248201526a1391950e8819985a5b195960aa1b6044820152606401610726565b50565b61085e838383604051806020016040528060008152506110bb565b60008082118015610b7c57506000548211155b610bd45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610726565b5090565b6000610be38261164c565b5192915050565b60006001600160a01b038216610c565760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610726565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610ca55760405162461bcd60e51b815260040161072690612115565b610caf60006117f3565b565b600a546001600160401b0316421015610d035760405162461bcd60e51b81526020600482015260146024820152731391950e881b9bdd081cdd185c9d1959081e595d60621b6044820152606401610726565b600a811115610d245760405162461bcd60e51b8152600401610726906120d0565b7f000000000000000000000000000000000000000000000000000000000000000081610d4f33610bea565b610d5991906121bf565b1115610d9b5760405162461bcd60e51b81526020600482015260116024820152704e46543a206f776e20746f6f206d616e7960781b6044820152606401610726565b6103e8610da760005490565b10610ded5760405162461bcd60e51b81526020600482015260166024820152751391950e881b9bc81b5bdc9948199c9959481b5a5b9d60521b6044820152606401610726565b610b4b3382611845565b6008546001600160a01b03163314610e215760405162461bcd60e51b815260040161072690612115565b61ffff16600b55565b60606002805461063a9061228c565b600a546001600160401b0316421015610e8b5760405162461bcd60e51b81526020600482015260146024820152731391950e881b9bdd081cdd185c9d1959081e595d60621b6044820152606401610726565b600a811115610eac5760405162461bcd60e51b8152600401610726906120d0565b7f0000000000000000000000000000000000000000000000000000000000000000610ed660005490565b610ee090836121bf565b1115610f235760405162461bcd60e51b81526020600482015260126024820152714e46543a206d696e7420746f6f206d616e7960701b6044820152606401610726565b600b54610f3090826121eb565b341015610f7f5760405162461bcd60e51b815260206004820152601860248201527f4e46543a20696e73756666696369656e7420616d6f756e7400000000000000006044820152606401610726565b7f000000000000000000000000000000000000000000000000000000000000000081610faa33610bea565b610fb491906121bf565b1115610ded5760405162461bcd60e51b81526020600482015260116024820152704e46543a206f776e20746f6f206d616e7960781b6044820152606401610726565b6001600160a01b03821633141561104f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610726565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110c68484846112c8565b6110d284848484611863565b6110ee5760405162461bcd60e51b81526004016107269061214a565b50505050565b60606110ff82611257565b6111635760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610726565b600061116d611971565b9050600081511161118d57604051806020016040528060008152506111b8565b8061119784611980565b6040516020016111a8929190612051565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111e95760405162461bcd60e51b815260040161072690612115565b6001600160a01b03811661124e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610726565b610b4b816117f3565b60008082118015610625575050600054101590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112d38261164c565b80519091506000906001600160a01b0316336001600160a01b0316148061130a5750336112ff846106bd565b6001600160a01b0316145b8061131c5750815161131c9033610570565b9050806113865760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610726565b846001600160a01b031682600001516001600160a01b0316146113fa5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610726565b6001600160a01b03841661145e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610726565b61146e600084846000015161126c565b6001600160a01b03851660009081526004602052604081208054600192906114a09084906001600160801b031661220a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926114ec9185911661219d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556115738460016121bf565b6000818152600360205260409020549091506001600160a01b03166116025761159b81611257565b156116025760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261166982611257565b6116c85760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610726565b60007f000000000000000000000000000000000000000000000000000000000000000083106117295761171b7f000000000000000000000000000000000000000000000000000000000000000084612232565b6117269060016121bf565b90505b825b818110611792576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561177f57949350505050565b508061178a81612275565b91505061172b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610726565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61185f828260405180602001604052806000815250611a99565b5050565b60006001600160a01b0384163b1561196557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118a7903390899088908890600401612080565b602060405180830381600087803b1580156118c157600080fd5b505af19250505080156118f1575060408051601f3d908101601f191682019092526118ee91810190611f87565b60015b61194b573d80801561191f576040519150601f19603f3d011682016040523d82523d6000602084013e611924565b606091505b5080516119435760405162461bcd60e51b81526004016107269061214a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611969565b5060015b949350505050565b60606009805461063a9061228c565b6060816119a45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119ce57806119b8816122c7565b91506119c79050600a836121d7565b91506119a8565b6000816001600160401b038111156119f657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a20576020820181803683370190505b5090505b841561196957611a35600183612232565b9150611a42600a866122e2565b611a4d9060306121bf565b60f81b818381518110611a7057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a92600a866121d7565b9450611a24565b60008054611aa89060016121bf565b90506001600160a01b038416611b0a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610726565b611b1381611257565b15611b605760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610726565b7f0000000000000000000000000000000000000000000000000000000000000000831115611bdb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610726565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c3790879061219d565b6001600160801b03168152602001858360200151611c55919061219d565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611d745760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d386000888488611863565b611d545760405162461bcd60e51b81526004016107269061214a565b81611d5e816122c7565b9250508080611d6c906122c7565b915050611ceb565b5084600080828254611d8691906121bf565b909155506116449050565b80356001600160a01b0381168114611da857600080fd5b919050565b600060208284031215611dbe578081fd5b6111b882611d91565b60008060408385031215611dd9578081fd5b611de283611d91565b9150611df060208401611d91565b90509250929050565b600080600060608486031215611e0d578081fd5b611e1684611d91565b9250611e2460208501611d91565b9150604084013590509250925092565b60008060008060808587031215611e49578081fd5b611e5285611d91565b9350611e6060208601611d91565b92506040850135915060608501356001600160401b0380821115611e82578283fd5b818701915087601f830112611e95578283fd5b813581811115611ea757611ea7612322565b604051601f8201601f19908116603f01168101908382118183101715611ecf57611ecf612322565b816040528281528a6020848701011115611ee7578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611f1a578182fd5b611f2383611d91565b915060208301358015158114611f37578182fd5b809150509250929050565b60008060408385031215611f54578182fd5b611f5d83611d91565b946020939093013593505050565b600060208284031215611f7c578081fd5b81356111b881612338565b600060208284031215611f98578081fd5b81516111b881612338565b600060208284031215611fb4578081fd5b813561ffff811681146111b8578182fd5b600060208284031215611fd6578081fd5b5035919050565b60008060408385031215611fef578182fd5b50508035926020909101359150565b60006020828403121561200f578081fd5b81356001600160401b03811681146111b8578182fd5b6000815180845261203d816020860160208601612249565b601f01601f19169290920160200192915050565b60008351612063818460208801612249565b835190830190612077818360208801612249565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120b390830184612025565b9695505050505050565b6020815260006111b86020830184612025565b60208082526025908201527f4e46543a207175616e74697479206d757374206265206e6f206d6f72652074686040820152640616e2031360dc1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612077576120776122f6565b600082198211156121d2576121d26122f6565b500190565b6000826121e6576121e661230c565b500490565b6000816000190483118215151615612205576122056122f6565b500290565b60006001600160801b038381169083168181101561222a5761222a6122f6565b039392505050565b600082821015612244576122446122f6565b500390565b60005b8381101561226457818101518382015260200161224c565b838111156110ee5750506000910152565b600081612284576122846122f6565b506000190190565b600181811c908216806122a057607f821691505b602082108114156122c157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122db576122db6122f6565b5060010190565b6000826122f1576122f161230c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4b57600080fdfea2646970667358221220101d87495dafde05cf096229e9f172950ba80396f516e626c52ae4378ccabfdd64736f6c63430008040033697066733a2f2f516d5078636769474b68615366634566766a345954685770566846706f3248505766426554737a63785a633956442f
Deployed Bytecode
0x6080604052600436106101c65760003560e01c806370a08231116100f7578063a035b1fe11610095578063c87b56dd11610064578063c87b56dd1461051f578063d7224ba01461053f578063e985e9c514610555578063f2fde38b1461059e57600080fd5b8063a035b1fe146104b6578063a0712d68146104cc578063a22cb465146104df578063b88d4fde146104ff57600080fd5b80637c928fe9116100d15780637c928fe9146104435780638da5cb5b146104635780638ed67a441461048157806395d89b41146104a157600080fd5b806370a08231146103d6578063715018a6146103f657806378e979251461040b57600080fd5b80632f745c59116101645780633ccfd60b1161013e5780633ccfd60b1461036157806342842e0e146103765780634f6ccce7146103965780636352211e146103b657600080fd5b80632f745c591461030157806336e79a5a1461032157806338812e581461034157600080fd5b8063095ea7b3116101a0578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632a55205a146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc1461022957600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b506101f26101ed366004611f6b565b6105be565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c61062b565b6040516101fe91906120bd565b34801561023557600080fd5b50610249610244366004611fc5565b6106bd565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611f42565b61074b565b005b34801561028f57600080fd5b506000545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611df9565b610863565b3480156102ce57600080fd5b506102e26102dd366004611fdd565b61086e565b604080516001600160a01b0390931683526020830191909152016101fe565b34801561030d57600080fd5b5061029461031c366004611f42565b61089f565b34801561032d57600080fd5b5061028161033c366004611fa3565b610a0c565b34801561034d57600080fd5b5061028161035c366004611ffe565b610a4e565b34801561036d57600080fd5b50610281610a9b565b34801561038257600080fd5b50610281610391366004611df9565b610b4e565b3480156103a257600080fd5b506102946103b1366004611fc5565b610b69565b3480156103c257600080fd5b506102496103d1366004611fc5565b610bd8565b3480156103e257600080fd5b506102946103f1366004611dad565b610bea565b34801561040257600080fd5b50610281610c7b565b34801561041757600080fd5b50600a5461042b906001600160401b031681565b6040516001600160401b0390911681526020016101fe565b34801561044f57600080fd5b5061028161045e366004611fc5565b610cb1565b34801561046f57600080fd5b506008546001600160a01b0316610249565b34801561048d57600080fd5b5061028161049c366004611fa3565b610df7565b3480156104ad57600080fd5b5061021c610e2a565b3480156104c257600080fd5b50610294600b5481565b6102816104da366004611fc5565b610e39565b3480156104eb57600080fd5b506102816104fa366004611f08565b610ff6565b34801561050b57600080fd5b5061028161051a366004611e34565b6110bb565b34801561052b57600080fd5b5061021c61053a366004611fc5565b6110f4565b34801561054b57600080fd5b5061029460075481565b34801561056157600080fd5b506101f2610570366004611dc7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105aa57600080fd5b506102816105b9366004611dad565b6111bf565b60006001600160e01b031982166380ac58cd60e01b14806105ef57506001600160e01b03198216635b5e139f60e01b145b8061060a57506001600160e01b0319821663780e9d6360e01b145b8061062557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461063a9061228c565b80601f01602080910402602001604051908101604052809291908181526020018280546106669061228c565b80156106b35780601f10610688576101008083540402835291602001916106b3565b820191906000526020600020905b81548152906001019060200180831161069657829003601f168201915b5050505050905090565b60006106c882611257565b61072f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061075682610bd8565b9050806001600160a01b0316836001600160a01b031614156107c55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610726565b336001600160a01b03821614806107e157506107e18133610570565b6108535760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610726565b61085e83838361126c565b505050565b61085e8383836112c8565b600c54600090819030906127109061088a9061ffff16866121eb565b61089491906121d7565b915091509250929050565b60006108aa83610bea565b82106109035760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610726565b600080549080805b838110156109ac576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561095d57805192505b876001600160a01b0316836001600160a01b03161415610999578684141561098b5750935061062592505050565b83610995816122c7565b9450505b50806109a4816122c7565b91505061090b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610726565b6008546001600160a01b03163314610a365760405162461bcd60e51b815260040161072690612115565b600c805461ffff191661ffff92909216919091179055565b6008546001600160a01b03163314610a785760405162461bcd60e51b815260040161072690612115565b600a805467ffffffffffffffff19166001600160401b0392909216919091179055565b6008546001600160a01b03163314610ac55760405162461bcd60e51b815260040161072690612115565b604051600090339047908381818185875af1925050503d8060008114610b07576040519150601f19603f3d011682016040523d82523d6000602084013e610b0c565b606091505b5050905080610b4b5760405162461bcd60e51b815260206004820152600b60248201526a1391950e8819985a5b195960aa1b6044820152606401610726565b50565b61085e838383604051806020016040528060008152506110bb565b60008082118015610b7c57506000548211155b610bd45760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610726565b5090565b6000610be38261164c565b5192915050565b60006001600160a01b038216610c565760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610726565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610ca55760405162461bcd60e51b815260040161072690612115565b610caf60006117f3565b565b600a546001600160401b0316421015610d035760405162461bcd60e51b81526020600482015260146024820152731391950e881b9bdd081cdd185c9d1959081e595d60621b6044820152606401610726565b600a811115610d245760405162461bcd60e51b8152600401610726906120d0565b7f000000000000000000000000000000000000000000000000000000000000000a81610d4f33610bea565b610d5991906121bf565b1115610d9b5760405162461bcd60e51b81526020600482015260116024820152704e46543a206f776e20746f6f206d616e7960781b6044820152606401610726565b6103e8610da760005490565b10610ded5760405162461bcd60e51b81526020600482015260166024820152751391950e881b9bc81b5bdc9948199c9959481b5a5b9d60521b6044820152606401610726565b610b4b3382611845565b6008546001600160a01b03163314610e215760405162461bcd60e51b815260040161072690612115565b61ffff16600b55565b60606002805461063a9061228c565b600a546001600160401b0316421015610e8b5760405162461bcd60e51b81526020600482015260146024820152731391950e881b9bdd081cdd185c9d1959081e595d60621b6044820152606401610726565b600a811115610eac5760405162461bcd60e51b8152600401610726906120d0565b7f0000000000000000000000000000000000000000000000000000000000002710610ed660005490565b610ee090836121bf565b1115610f235760405162461bcd60e51b81526020600482015260126024820152714e46543a206d696e7420746f6f206d616e7960701b6044820152606401610726565b600b54610f3090826121eb565b341015610f7f5760405162461bcd60e51b815260206004820152601860248201527f4e46543a20696e73756666696369656e7420616d6f756e7400000000000000006044820152606401610726565b7f000000000000000000000000000000000000000000000000000000000000000a81610faa33610bea565b610fb491906121bf565b1115610ded5760405162461bcd60e51b81526020600482015260116024820152704e46543a206f776e20746f6f206d616e7960781b6044820152606401610726565b6001600160a01b03821633141561104f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610726565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110c68484846112c8565b6110d284848484611863565b6110ee5760405162461bcd60e51b81526004016107269061214a565b50505050565b60606110ff82611257565b6111635760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610726565b600061116d611971565b9050600081511161118d57604051806020016040528060008152506111b8565b8061119784611980565b6040516020016111a8929190612051565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111e95760405162461bcd60e51b815260040161072690612115565b6001600160a01b03811661124e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610726565b610b4b816117f3565b60008082118015610625575050600054101590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112d38261164c565b80519091506000906001600160a01b0316336001600160a01b0316148061130a5750336112ff846106bd565b6001600160a01b0316145b8061131c5750815161131c9033610570565b9050806113865760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610726565b846001600160a01b031682600001516001600160a01b0316146113fa5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610726565b6001600160a01b03841661145e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610726565b61146e600084846000015161126c565b6001600160a01b03851660009081526004602052604081208054600192906114a09084906001600160801b031661220a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926114ec9185911661219d565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556115738460016121bf565b6000818152600360205260409020549091506001600160a01b03166116025761159b81611257565b156116025760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261166982611257565b6116c85760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610726565b60007f000000000000000000000000000000000000000000000000000000000000000a83106117295761171b7f000000000000000000000000000000000000000000000000000000000000000a84612232565b6117269060016121bf565b90505b825b818110611792576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561177f57949350505050565b508061178a81612275565b91505061172b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610726565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61185f828260405180602001604052806000815250611a99565b5050565b60006001600160a01b0384163b1561196557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118a7903390899088908890600401612080565b602060405180830381600087803b1580156118c157600080fd5b505af19250505080156118f1575060408051601f3d908101601f191682019092526118ee91810190611f87565b60015b61194b573d80801561191f576040519150601f19603f3d011682016040523d82523d6000602084013e611924565b606091505b5080516119435760405162461bcd60e51b81526004016107269061214a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611969565b5060015b949350505050565b60606009805461063a9061228c565b6060816119a45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119ce57806119b8816122c7565b91506119c79050600a836121d7565b91506119a8565b6000816001600160401b038111156119f657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a20576020820181803683370190505b5090505b841561196957611a35600183612232565b9150611a42600a866122e2565b611a4d9060306121bf565b60f81b818381518110611a7057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a92600a866121d7565b9450611a24565b60008054611aa89060016121bf565b90506001600160a01b038416611b0a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610726565b611b1381611257565b15611b605760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610726565b7f000000000000000000000000000000000000000000000000000000000000000a831115611bdb5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610726565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611c3790879061219d565b6001600160801b03168152602001858360200151611c55919061219d565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611d745760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611d386000888488611863565b611d545760405162461bcd60e51b81526004016107269061214a565b81611d5e816122c7565b9250508080611d6c906122c7565b915050611ceb565b5084600080828254611d8691906121bf565b909155506116449050565b80356001600160a01b0381168114611da857600080fd5b919050565b600060208284031215611dbe578081fd5b6111b882611d91565b60008060408385031215611dd9578081fd5b611de283611d91565b9150611df060208401611d91565b90509250929050565b600080600060608486031215611e0d578081fd5b611e1684611d91565b9250611e2460208501611d91565b9150604084013590509250925092565b60008060008060808587031215611e49578081fd5b611e5285611d91565b9350611e6060208601611d91565b92506040850135915060608501356001600160401b0380821115611e82578283fd5b818701915087601f830112611e95578283fd5b813581811115611ea757611ea7612322565b604051601f8201601f19908116603f01168101908382118183101715611ecf57611ecf612322565b816040528281528a6020848701011115611ee7578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611f1a578182fd5b611f2383611d91565b915060208301358015158114611f37578182fd5b809150509250929050565b60008060408385031215611f54578182fd5b611f5d83611d91565b946020939093013593505050565b600060208284031215611f7c578081fd5b81356111b881612338565b600060208284031215611f98578081fd5b81516111b881612338565b600060208284031215611fb4578081fd5b813561ffff811681146111b8578182fd5b600060208284031215611fd6578081fd5b5035919050565b60008060408385031215611fef578182fd5b50508035926020909101359150565b60006020828403121561200f578081fd5b81356001600160401b03811681146111b8578182fd5b6000815180845261203d816020860160208601612249565b601f01601f19169290920160200192915050565b60008351612063818460208801612249565b835190830190612077818360208801612249565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120b390830184612025565b9695505050505050565b6020815260006111b86020830184612025565b60208082526025908201527f4e46543a207175616e74697479206d757374206265206e6f206d6f72652074686040820152640616e2031360dc1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612077576120776122f6565b600082198211156121d2576121d26122f6565b500190565b6000826121e6576121e661230c565b500490565b6000816000190483118215151615612205576122056122f6565b500290565b60006001600160801b038381169083168181101561222a5761222a6122f6565b039392505050565b600082821015612244576122446122f6565b500390565b60005b8381101561226457818101518382015260200161224c565b838111156110ee5750506000910152565b600081612284576122846122f6565b506000190190565b600181811c908216806122a057607f821691505b602082108114156122c157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122db576122db6122f6565b5060010190565b6000826122f1576122f161230c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4b57600080fdfea2646970667358221220101d87495dafde05cf096229e9f172950ba80396f516e626c52ae4378ccabfdd64736f6c63430008040033
Deployed Bytecode Sourcemap
45618:706:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30778:372;;;;;;;;;;-1:-1:-1;30778:372:0;;;;;:::i;:::-;;:::i;:::-;;;6520:14:1;;6513:22;6495:41;;6483:2;6468:18;30778:372:0;;;;;;;;32583:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34107:214::-;;;;;;;;;;-1:-1:-1;34107:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5539:32:1;;;5521:51;;5509:2;5494:18;34107:214:0;5476:102:1;33665:376:0;;;;;;;;;;-1:-1:-1;33665:376:0;;;;;:::i;:::-;;:::i;:::-;;29202:100;;;;;;;;;;-1:-1:-1;29255:7:0;29282:12;29202:100;;;17467:25:1;;;17455:2;17440:18;29202:100:0;17422:76:1;34983:162:0;;;;;;;;;;-1:-1:-1;34983:162:0;;;;;:::i;:::-;;:::i;45124:194::-;;;;;;;;;;-1:-1:-1;45124:194:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6268:32:1;;;6250:51;;6332:2;6317:18;;6310:34;;;;6223:18;45124:194:0;6205:145:1;29883:823:0;;;;;;;;;;-1:-1:-1;29883:823:0;;;;;:::i;:::-;;:::i;45023:93::-;;;;;;;;;;-1:-1:-1;45023:93:0;;;;;:::i;:::-;;:::i;44821:101::-;;;;;;;;;;-1:-1:-1;44821:101:0;;;;;:::i;:::-;;:::i;45326:179::-;;;;;;;;;;;;;:::i;35216:177::-;;;;;;;;;;-1:-1:-1;35216:177:0;;;;;:::i;:::-;;:::i;29379:201::-;;;;;;;;;;-1:-1:-1;29379:201:0;;;;;:::i;:::-;;:::i;32392:124::-;;;;;;;;;;-1:-1:-1;32392:124:0;;;;;:::i;:::-;;:::i;31214:221::-;;;;;;;;;;-1:-1:-1;31214:221:0;;;;;:::i;:::-;;:::i;5896:94::-;;;;;;;;;;;;;:::i;43874:27::-;;;;;;;;;;-1:-1:-1;43874:27:0;;;;-1:-1:-1;;;;;43874:27:0;;;;;;-1:-1:-1;;;;;17665:31:1;;;17647:50;;17635:2;17620:18;43874:27:0;17602:101:1;45893:428:0;;;;;;;;;;-1:-1:-1;45893:428:0;;;;;:::i;:::-;;:::i;5245:87::-;;;;;;;;;;-1:-1:-1;5318:6:0;;-1:-1:-1;;;;;5318:6:0;5245:87;;44930:85;;;;;;;;;;-1:-1:-1;44930:85:0;;;;;:::i;:::-;;:::i;32752:104::-;;;;;;;;;;;;;:::i;43908:34::-;;;;;;;;;;;;;;;;44309:504;;;;;;:::i;:::-;;:::i;34393:288::-;;;;;;;;;;-1:-1:-1;34393:288:0;;;;;:::i;:::-;;:::i;35464:318::-;;;;;;;;;;-1:-1:-1;35464:318:0;;;;;:::i;:::-;;:::i;32927:334::-;;;;;;;;;;-1:-1:-1;32927:334:0;;;;;:::i;:::-;;:::i;40079:43::-;;;;;;;;;;;;;;;;34752:164;;;;;;;;;;-1:-1:-1;34752:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34873:25:0;;;34849:4;34873:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34752:164;6145:192;;;;;;;;;;-1:-1:-1;6145:192:0;;;;;:::i;:::-;;:::i;30778:372::-;30880:4;-1:-1:-1;;;;;;30917:40:0;;-1:-1:-1;;;30917:40:0;;:105;;-1:-1:-1;;;;;;;30974:48:0;;-1:-1:-1;;;30974:48:0;30917:105;:172;;;-1:-1:-1;;;;;;;31039:50:0;;-1:-1:-1;;;31039:50:0;30917:172;:225;;;-1:-1:-1;;;;;;;;;;26745:40:0;;;31106:36;30897:245;30778:372;-1:-1:-1;;30778:372:0:o;32583:100::-;32637:13;32670:5;32663:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32583:100;:::o;34107:214::-;34175:7;34203:16;34211:7;34203;:16::i;:::-;34195:74;;;;-1:-1:-1;;;34195:74:0;;16706:2:1;34195:74:0;;;16688:21:1;16745:2;16725:18;;;16718:30;16784:34;16764:18;;;16757:62;-1:-1:-1;;;16835:18:1;;;16828:43;16888:19;;34195:74:0;;;;;;;;;-1:-1:-1;34289:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34289:24:0;;34107:214::o;33665:376::-;33738:13;33754:24;33770:7;33754:15;:24::i;:::-;33738:40;;33803:5;-1:-1:-1;;;;;33797:11:0;:2;-1:-1:-1;;;;;33797:11:0;;;33789:58;;;;-1:-1:-1;;;33789:58:0;;13255:2:1;33789:58:0;;;13237:21:1;13294:2;13274:18;;;13267:30;13333:34;13313:18;;;13306:62;-1:-1:-1;;;13384:18:1;;;13377:32;13426:19;;33789:58:0;13227:224:1;33789:58:0;4107:10;-1:-1:-1;;;;;33868:21:0;;;;:62;;-1:-1:-1;33893:37:0;33910:5;4107:10;34752:164;:::i;33893:37::-;33860:132;;;;-1:-1:-1;;;33860:132:0;;9353:2:1;33860:132:0;;;9335:21:1;9392:2;9372:18;;;9365:30;9431:34;9411:18;;;9404:62;9502:27;9482:18;;;9475:55;9547:19;;33860:132:0;9325:247:1;33860:132:0;34005:28;34014:2;34018:7;34027:5;34005:8;:28::i;:::-;33665:376;;;:::o;34983:162::-;35109:28;35119:4;35125:2;35129:7;35109:9;:28::i;45124:194::-;45293:7;;45205:16;;;;45273:4;;45304:5;;45281:19;;45293:7;;45281:9;:19;:::i;:::-;45280:29;;;;:::i;:::-;45257:53;;;;45124:194;;;;;:::o;29883:823::-;29972:7;30008:16;30018:5;30008:9;:16::i;:::-;30000:5;:24;29992:71;;;;-1:-1:-1;;;29992:71:0;;6973:2:1;29992:71:0;;;6955:21:1;7012:2;6992:18;;;6985:30;7051:34;7031:18;;;7024:62;-1:-1:-1;;;7102:18:1;;;7095:32;7144:19;;29992:71:0;6945:224:1;29992:71:0;30074:22;29282:12;;;30074:22;;30206:426;30230:14;30226:1;:18;30206:426;;;30266:31;30300:14;;;:11;:14;;;;;;;;;30266:48;;;;;;;;;-1:-1:-1;;;;;30266:48:0;;;;;-1:-1:-1;;;30266:48:0;;;-1:-1:-1;;;;;30266:48:0;;;;;;;;30333:28;30329:103;;30402:14;;;-1:-1:-1;30329:103:0;30471:5;-1:-1:-1;;;;;30450:26:0;:17;-1:-1:-1;;;;;30450:26:0;;30446:175;;;30516:5;30501:11;:20;30497:77;;;-1:-1:-1;30553:1:0;-1:-1:-1;30546:8:0;;-1:-1:-1;;;30546:8:0;30497:77;30592:13;;;;:::i;:::-;;;;30446:175;-1:-1:-1;30246:3:0;;;;:::i;:::-;;;;30206:426;;;-1:-1:-1;30642:56:0;;-1:-1:-1;;;30642:56:0;;15875:2:1;30642:56:0;;;15857:21:1;15914:2;15894:18;;;15887:30;15953:34;15933:18;;;15926:62;-1:-1:-1;;;16004:18:1;;;15997:44;16058:19;;30642:56:0;15847:236:1;45023:93:0;5318:6;;-1:-1:-1;;;;;5318:6:0;4107:10;5465:23;5457:68;;;;-1:-1:-1;;;5457:68:0;;;;;;;:::i;:::-;45090:7:::1;:18:::0;;-1:-1:-1;;45090:18:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;45023:93::o;44821:101::-;5318:6;;-1:-1:-1;;;;;5318:6:0;4107:10;5465:23;5457:68;;;;-1:-1:-1;;;5457:68:0;;;;;;;:::i;:::-;44892:9:::1;:22:::0;;-1:-1:-1;;44892:22:0::1;-1:-1:-1::0;;;;;44892:22:0;;;::::1;::::0;;;::::1;::::0;;44821:101::o;45326:179::-;5318:6;;-1:-1:-1;;;;;5318:6:0;4107:10;5465:23;5457:68;;;;-1:-1:-1;;;5457:68:0;;;;;;;:::i;:::-;45395:60:::1;::::0;45377:12:::1;::::0;45403:10:::1;::::0;45428:21:::1;::::0;45377:12;45395:60;45377:12;45395:60;45428:21;45403:10;45395:60:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45376:79;;;45474:7;45466:31;;;::::0;-1:-1:-1;;;45466:31:0;;15184:2:1;45466:31:0::1;::::0;::::1;15166:21:1::0;15223:2;15203:18;;;15196:30;-1:-1:-1;;;15242:18:1;;;15235:41;15293:18;;45466:31:0::1;15156:161:1::0;45466:31:0::1;5536:1;45326:179::o:0;35216:177::-;35346:39;35363:4;35369:2;35373:7;35346:39;;;;;;;;;;;;:16;:39::i;29379:201::-;29446:7;29482:1;29474:5;:9;:35;;;;-1:-1:-1;29255:7:0;29282:12;29487:5;:22;;29474:35;29466:83;;;;-1:-1:-1;;;29466:83:0;;8543:2:1;29466:83:0;;;8525:21:1;8582:2;8562:18;;;8555:30;8621:34;8601:18;;;8594:62;-1:-1:-1;;;8672:18:1;;;8665:33;8715:19;;29466:83:0;8515:225:1;29466:83:0;-1:-1:-1;29567:5:0;29379:201::o;32392:124::-;32456:7;32483:20;32495:7;32483:11;:20::i;:::-;:25;;32392:124;-1:-1:-1;;32392:124:0:o;31214:221::-;31278:7;-1:-1:-1;;;;;31306:19:0;;31298:75;;;;-1:-1:-1;;;31298:75:0;;10532:2:1;31298:75:0;;;10514:21:1;10571:2;10551:18;;;10544:30;10610:34;10590:18;;;10583:62;-1:-1:-1;;;10661:18:1;;;10654:41;10712:19;;31298:75:0;10504:233:1;31298:75:0;-1:-1:-1;;;;;;31399:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31399:27:0;;31214:221::o;5896:94::-;5318:6;;-1:-1:-1;;;;;5318:6:0;4107:10;5465:23;5457:68;;;;-1:-1:-1;;;5457:68:0;;;;;;;:::i;:::-;5961:21:::1;5979:1;5961:9;:21::i;:::-;5896:94::o:0;45893:428::-;45976:9;;-1:-1:-1;;;;;45976:9:0;45957:15;:28;;45949:61;;;;-1:-1:-1;;;45949:61:0;;7376:2:1;45949:61:0;;;7358:21:1;7415:2;7395:18;;;7388:30;-1:-1:-1;;;7434:18:1;;;7427:50;7494:18;;45949:61:0;7348:170:1;45949:61:0;46041:2;46029:8;:14;;46021:64;;;;-1:-1:-1;;;46021:64:0;;;;;;;:::i;:::-;46140:12;46128:8;46104:21;46114:10;46104:9;:21::i;:::-;:32;;;;:::i;:::-;:48;;46096:78;;;;-1:-1:-1;;;46096:78:0;;14436:2:1;46096:78:0;;;14418:21:1;14475:2;14455:18;;;14448:30;-1:-1:-1;;;14494:18:1;;;14487:47;14551:18;;46096:78:0;14408:167:1;46096:78:0;46209:4;46193:13;29255:7;29282:12;;29202:100;46193:13;:20;46185:55;;;;-1:-1:-1;;;46185:55:0;;15524:2:1;46185:55:0;;;15506:21:1;15563:2;15543:18;;;15536:30;-1:-1:-1;;;15582:18:1;;;15575:52;15644:18;;46185:55:0;15496:172:1;46185:55:0;46282:31;46292:10;46304:8;46282:9;:31::i;44930:85::-;5318:6;;-1:-1:-1;;;;;5318:6:0;4107:10;5465:23;5457:68;;;;-1:-1:-1;;;5457:68:0;;;;;;;:::i;:::-;44993:14:::1;;:5;:14:::0;44930:85::o;32752:104::-;32808:13;32841:7;32834:14;;;;;:::i;44309:504::-;44404:9;;-1:-1:-1;;;;;44404:9:0;44385:15;:28;;44377:61;;;;-1:-1:-1;;;44377:61:0;;7376:2:1;44377:61:0;;;7358:21:1;7415:2;7395:18;;;7388:30;-1:-1:-1;;;7434:18:1;;;7427:50;7494:18;;44377:61:0;7348:170:1;44377:61:0;44469:2;44457:8;:14;;44449:64;;;;-1:-1:-1;;;44449:64:0;;;;;;;:::i;:::-;44560:14;44543:13;29255:7;29282:12;;29202:100;44543:13;44532:24;;:8;:24;:::i;:::-;:42;;44524:73;;;;-1:-1:-1;;;44524:73:0;;10185:2:1;44524:73:0;;;10167:21:1;10224:2;10204:18;;;10197:30;-1:-1:-1;;;10243:18:1;;;10236:48;10301:18;;44524:73:0;10157:168:1;44524:73:0;44640:5;;44629:16;;:8;:16;:::i;:::-;44616:9;:29;;44608:66;;;;-1:-1:-1;;;44608:66:0;;12902:2:1;44608:66:0;;;12884:21:1;12941:2;12921:18;;;12914:30;12980:26;12960:18;;;12953:54;13024:18;;44608:66:0;12874:174:1;44608:66:0;44729:12;44717:8;44693:21;44703:10;44693:9;:21::i;:::-;:32;;;;:::i;:::-;:48;;44685:78;;;;-1:-1:-1;;;44685:78:0;;14436:2:1;44685:78:0;;;14418:21:1;14475:2;14455:18;;;14448:30;-1:-1:-1;;;14494:18:1;;;14487:47;14551:18;;44685:78:0;14408:167:1;34393:288:0;-1:-1:-1;;;;;34488:24:0;;4107:10;34488:24;;34480:63;;;;-1:-1:-1;;;34480:63:0;;12128:2:1;34480:63:0;;;12110:21:1;12167:2;12147:18;;;12140:30;12206:28;12186:18;;;12179:56;12252:18;;34480:63:0;12100:176:1;34480:63:0;4107:10;34556:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34556:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34556:53:0;;;;;;;;;;34625:48;;6495:41:1;;;34556:42:0;;4107:10;34625:48;;6468:18:1;34625:48:0;;;;;;;34393:288;;:::o;35464:318::-;35623:28;35633:4;35639:2;35643:7;35623:9;:28::i;:::-;35670:48;35693:4;35699:2;35703:7;35712:5;35670:22;:48::i;:::-;35662:112;;;;-1:-1:-1;;;35662:112:0;;;;;;;:::i;:::-;35464:318;;;;:::o;32927:334::-;33000:13;33034:16;33042:7;33034;:16::i;:::-;33026:76;;;;-1:-1:-1;;;33026:76:0;;11712:2:1;33026:76:0;;;11694:21:1;11751:2;11731:18;;;11724:30;11790:34;11770:18;;;11763:62;-1:-1:-1;;;11841:18:1;;;11834:45;11896:19;;33026:76:0;11684:237:1;33026:76:0;33115:21;33139:10;:8;:10::i;:::-;33115:34;;33191:1;33173:7;33167:21;:25;:86;;;;;;;;;;;;;;;;;33219:7;33228:18;:7;:16;:18::i;:::-;33202:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33167:86;33160:93;32927:334;-1:-1:-1;;;32927:334:0:o;6145:192::-;5318:6;;-1:-1:-1;;;;;5318:6:0;4107:10;5465:23;5457:68;;;;-1:-1:-1;;;5457:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6234:22:0;::::1;6226:73;;;::::0;-1:-1:-1;;;6226:73:0;;7725:2:1;6226:73:0::1;::::0;::::1;7707:21:1::0;7764:2;7744:18;;;7737:30;7803:34;7783:18;;;7776:62;-1:-1:-1;;;7854:18:1;;;7847:36;7900:19;;6226:73:0::1;7697:228:1::0;6226:73:0::1;6310:19;6320:8;6310:9;:19::i;36037:127::-:0;36094:4;36128:1;36118:7;:11;:38;;;;-1:-1:-1;;36144:12:0;;-1:-1:-1;36133:23:0;;36037:127::o;39875:196::-;39990:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39990:29:0;-1:-1:-1;;;;;39990:29:0;;;;;;;;;40035:28;;39990:24;;40035:28;;;;;;;39875:196;;;:::o;38209:1548::-;38324:35;38362:20;38374:7;38362:11;:20::i;:::-;38437:18;;38324:58;;-1:-1:-1;38395:22:0;;-1:-1:-1;;;;;38421:34:0;4107:10;-1:-1:-1;;;;;38421:34:0;;:74;;;-1:-1:-1;4107:10:0;38459:20;38471:7;38459:11;:20::i;:::-;-1:-1:-1;;;;;38459:36:0;;38421:74;:128;;;-1:-1:-1;38516:18:0;;38499:50;;4107:10;34752:164;:::i;38499:50::-;38395:155;;38571:17;38563:80;;;;-1:-1:-1;;;38563:80:0;;12483:2:1;38563:80:0;;;12465:21:1;12522:2;12502:18;;;12495:30;12561:34;12541:18;;;12534:62;-1:-1:-1;;;12612:18:1;;;12605:48;12670:19;;38563:80:0;12455:240:1;38563:80:0;38686:4;-1:-1:-1;;;;;38664:26:0;:13;:18;;;-1:-1:-1;;;;;38664:26:0;;38656:77;;;;-1:-1:-1;;;38656:77:0;;10944:2:1;38656:77:0;;;10926:21:1;10983:2;10963:18;;;10956:30;11022:34;11002:18;;;10995:62;-1:-1:-1;;;11073:18:1;;;11066:36;11119:19;;38656:77:0;10916:228:1;38656:77:0;-1:-1:-1;;;;;38752:16:0;;38744:66;;;;-1:-1:-1;;;38744:66:0;;8947:2:1;38744:66:0;;;8929:21:1;8986:2;8966:18;;;8959:30;9025:34;9005:18;;;8998:62;-1:-1:-1;;;9076:18:1;;;9069:35;9121:19;;38744:66:0;8919:227:1;38744:66:0;38931:49;38948:1;38952:7;38961:13;:18;;;38931:8;:49::i;:::-;-1:-1:-1;;;;;38993:18:0;;;;;;:12;:18;;;;;:31;;39023:1;;38993:18;:31;;39023:1;;-1:-1:-1;;;;;38993:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;38993:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39035:16:0;;-1:-1:-1;39035:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;39035:16:0;;:29;;-1:-1:-1;;39035:29:0;;:::i;:::-;;;-1:-1:-1;;;;;39035:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39098:43:0;;;;;;;;-1:-1:-1;;;;;39098:43:0;;;;;-1:-1:-1;;;;;39124:15:0;39098:43;;;;;;;;;-1:-1:-1;39075:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;39075:66:0;-1:-1:-1;;;;;;39075:66:0;;;;;;;;;;;39403:11;39087:7;-1:-1:-1;39403:11:0;:::i;:::-;39470:1;39429:24;;;:11;:24;;;;;:29;39381:33;;-1:-1:-1;;;;;;39429:29:0;39425:227;;39493:20;39501:11;39493:7;:20::i;:::-;39489:152;;;39561:64;;;;;;;;39576:18;;-1:-1:-1;;;;;39561:64:0;;;;;;39596:28;;;;-1:-1:-1;;;;;39561:64:0;;;;;;;;;-1:-1:-1;39534:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;39534:91:0;-1:-1:-1;;;;;;39534:91:0;;;;;;;;;;;;39489:152;39688:7;39684:2;-1:-1:-1;;;;;39669:27:0;39678:4;-1:-1:-1;;;;;39669:27:0;;;;;;;;;;;39707:42;38209:1548;;;;;;:::o;31680:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;31783:16:0;31791:7;31783;:16::i;:::-;31775:71;;;;-1:-1:-1;;;31775:71:0;;8132:2:1;31775:71:0;;;8114:21:1;8171:2;8151:18;;;8144:30;8210:34;8190:18;;;8183:62;-1:-1:-1;;;8261:18:1;;;8254:40;8311:19;;31775:71:0;8104:232:1;31775:71:0;31859:26;31911:12;31900:7;:23;31896:103;;31961:22;31971:12;31961:7;:22;:::i;:::-;:26;;31986:1;31961:26;:::i;:::-;31940:47;;31896:103;32031:7;32011:242;32048:18;32040:4;:26;32011:242;;32091:31;32125:17;;;:11;:17;;;;;;;;;32091:51;;;;;;;;;-1:-1:-1;;;;;32091:51:0;;;;;-1:-1:-1;;;32091:51:0;;;-1:-1:-1;;;;;32091:51:0;;;;;;;;32161:28;32157:85;;32217:9;31680:650;-1:-1:-1;;;;31680:650:0:o;32157:85::-;-1:-1:-1;32068:6:0;;;;:::i;:::-;;;;32011:242;;;-1:-1:-1;32265:57:0;;-1:-1:-1;;;32265:57:0;;16290:2:1;32265:57:0;;;16272:21:1;16329:2;16309:18;;;16302:30;16368:34;16348:18;;;16341:62;-1:-1:-1;;;16419:18:1;;;16412:45;16474:19;;32265:57:0;16262:237:1;6345:173:0;6420:6;;;-1:-1:-1;;;;;6437:17:0;;;-1:-1:-1;;;;;;6437:17:0;;;;;;;6470:40;;6420:6;;;6437:17;6420:6;;6470:40;;6401:16;;6470:40;6345:173;;:::o;36172:104::-;36241:27;36251:2;36255:8;36241:27;;;;;;;;;;;;:9;:27::i;:::-;36172:104;;:::o;41689:804::-;41844:4;-1:-1:-1;;;;;41865:13:0;;16746:20;16794:8;41861:625;;41901:72;;-1:-1:-1;;;41901:72:0;;-1:-1:-1;;;;;41901:36:0;;;;;:72;;4107:10;;41952:4;;41958:7;;41967:5;;41901:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41901:72:0;;;;;;;;-1:-1:-1;;41901:72:0;;;;;;;;;;;;:::i;:::-;;;41897:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42147:13:0;;42143:273;;42190:61;;-1:-1:-1;;;42190:61:0;;;;;;;:::i;42143:273::-;42366:6;42360:13;42351:6;42347:2;42343:15;42336:38;41897:534;-1:-1:-1;;;;;;42024:55:0;-1:-1:-1;;;42024:55:0;;-1:-1:-1;42017:62:0;;41861:625;-1:-1:-1;42470:4:0;41861:625;41689:804;;;;;;:::o;44200:101::-;44252:13;44285:8;44278:15;;;;;:::i;24073:723::-;24129:13;24350:10;24346:53;;-1:-1:-1;;24377:10:0;;;;;;;;;;;;-1:-1:-1;;;24377:10:0;;;;;24073:723::o;24346:53::-;24424:5;24409:12;24465:78;24472:9;;24465:78;;24498:8;;;;:::i;:::-;;-1:-1:-1;24521:10:0;;-1:-1:-1;24529:2:0;24521:10;;:::i;:::-;;;24465:78;;;24553:19;24585:6;-1:-1:-1;;;;;24575:17:0;;;;;-1:-1:-1;;;24575:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24575:17:0;;24553:39;;24603:154;24610:10;;24603:154;;24637:11;24647:1;24637:11;;:::i;:::-;;-1:-1:-1;24706:10:0;24714:2;24706:5;:10;:::i;:::-;24693:24;;:2;:24;:::i;:::-;24680:39;;24663:6;24670;24663:14;;;;;;-1:-1:-1;;;24663:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;24663:56:0;;;;;;;;-1:-1:-1;24734:11:0;24743:2;24734:11;;:::i;:::-;;;24603:154;;36639:1316;36762:20;29282:12;;36785:17;;36801:1;36785:17;:::i;:::-;36762:40;-1:-1:-1;;;;;;36821:16:0;;36813:62;;;;-1:-1:-1;;;36813:62:0;;14782:2:1;36813:62:0;;;14764:21:1;14821:2;14801:18;;;14794:30;14860:34;14840:18;;;14833:62;-1:-1:-1;;;14911:18:1;;;14904:31;14952:19;;36813:62:0;14754:223:1;36813:62:0;37020:21;37028:12;37020:7;:21::i;:::-;37019:22;37011:64;;;;-1:-1:-1;;;37011:64:0;;14078:2:1;37011:64:0;;;14060:21:1;14117:2;14097:18;;;14090:30;14156:31;14136:18;;;14129:59;14205:18;;37011:64:0;14050:179:1;37011:64:0;37106:12;37094:8;:24;;37086:71;;;;-1:-1:-1;;;37086:71:0;;17120:2:1;37086:71:0;;;17102:21:1;17159:2;17139:18;;;17132:30;17198:34;17178:18;;;17171:62;-1:-1:-1;;;17249:18:1;;;17242:32;17291:19;;37086:71:0;17092:224:1;37086:71:0;-1:-1:-1;;;;;37277:16:0;;37244:30;37277:16;;;:12;:16;;;;;;;;;37244:49;;;;;;;;;-1:-1:-1;;;;;37244:49:0;;;;;-1:-1:-1;;;37244:49:0;;;;;;;;;;;37323:98;;;;;;;;37335:19;;37244:49;;37323:98;;;37335:39;;37365:8;;37335:39;:::i;:::-;-1:-1:-1;;;;;37323:98:0;;;;;37411:8;37376:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;37323:98:0;;;;;;-1:-1:-1;;;;;37304:16:0;;;;;;;:12;:16;;;;;;;;:117;;;;;;;;-1:-1:-1;;;37304:117:0;;;;;;;;;;;;37460:43;;;;;;;;;;-1:-1:-1;;;;;37486:15:0;37460:43;;;;;;;;37432:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;37432:71:0;-1:-1:-1;;;;;;37432:71:0;;;;;;;;;;;;;;;;;;37444:12;;37564:276;37588:8;37584:1;:12;37564:276;;;37623:38;;37648:12;;-1:-1:-1;;;;;37623:38:0;;;37640:1;;37623:38;;37640:1;;37623:38;37684:59;37715:1;37719:2;37723:12;37737:5;37684:22;:59::i;:::-;37676:123;;;;-1:-1:-1;;;37676:123:0;;;;;;;:::i;:::-;37814:14;;;;:::i;:::-;;;;37598:3;;;;;:::i;:::-;;;;37564:276;;;;37868:8;37852:12;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;37887:60:0;;-1:-1:-1;35464:318:0;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;-1:-1:-1;;;;;1485:2:1;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;2264:6;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:255::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:2;;;2972:6;2964;2957:22;2919:2;3016:9;3003:23;3035:30;3059:5;3035:30;:::i;3100:259::-;3169:6;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3243:6;3235;3228:22;3190:2;3280:9;3274:16;3299:30;3323:5;3299:30;:::i;3364:292::-;3422:6;3475:2;3463:9;3454:7;3450:23;3446:32;3443:2;;;3496:6;3488;3481:22;3443:2;3540:9;3527:23;3590:6;3583:5;3579:18;3572:5;3569:29;3559:2;;3617:6;3609;3602:22;3661:190;3720:6;3773:2;3761:9;3752:7;3748:23;3744:32;3741:2;;;3794:6;3786;3779:22;3741:2;-1:-1:-1;3822:23:1;;3731:120;-1:-1:-1;3731:120:1:o;3856:258::-;3924:6;3932;3985:2;3973:9;3964:7;3960:23;3956:32;3953:2;;;4006:6;3998;3991:22;3953:2;-1:-1:-1;;4034:23:1;;;4104:2;4089:18;;;4076:32;;-1:-1:-1;3943:171:1:o;4119:304::-;4177:6;4230:2;4218:9;4209:7;4205:23;4201:32;4198:2;;;4251:6;4243;4236:22;4198:2;4295:9;4282:23;-1:-1:-1;;;;;4338:5:1;4334:30;4327:5;4324:41;4314:2;;4384:6;4376;4369:22;4428:257;4469:3;4507:5;4501:12;4534:6;4529:3;4522:19;4550:63;4606:6;4599:4;4594:3;4590:14;4583:4;4576:5;4572:16;4550:63;:::i;:::-;4667:2;4646:15;-1:-1:-1;;4642:29:1;4633:39;;;;4674:4;4629:50;;4477:208;-1:-1:-1;;4477:208:1:o;4690:470::-;4869:3;4907:6;4901:13;4923:53;4969:6;4964:3;4957:4;4949:6;4945:17;4923:53;:::i;:::-;5039:13;;4998:16;;;;5061:57;5039:13;4998:16;5095:4;5083:17;;5061:57;:::i;:::-;5134:20;;4877:283;-1:-1:-1;;;;4877:283:1:o;5583:488::-;-1:-1:-1;;;;;5852:15:1;;;5834:34;;5904:15;;5899:2;5884:18;;5877:43;5951:2;5936:18;;5929:34;;;5999:3;5994:2;5979:18;;5972:31;;;5777:4;;6020:45;;6045:19;;6037:6;6020:45;:::i;:::-;6012:53;5786:285;-1:-1:-1;;;;;;5786:285:1:o;6547:219::-;6696:2;6685:9;6678:21;6659:4;6716:44;6756:2;6745:9;6741:18;6733:6;6716:44;:::i;9577:401::-;9779:2;9761:21;;;9818:2;9798:18;;;9791:30;9857:34;9852:2;9837:18;;9830:62;-1:-1:-1;;;9923:2:1;9908:18;;9901:35;9968:3;9953:19;;9751:227::o;11149:356::-;11351:2;11333:21;;;11370:18;;;11363:30;11429:34;11424:2;11409:18;;11402:62;11496:2;11481:18;;11323:182::o;13456:415::-;13658:2;13640:21;;;13697:2;13677:18;;;13670:30;13736:34;13731:2;13716:18;;13709:62;-1:-1:-1;;;13802:2:1;13787:18;;13780:49;13861:3;13846:19;;13630:241::o;17708:253::-;17748:3;-1:-1:-1;;;;;17837:2:1;17834:1;17830:10;17867:2;17864:1;17860:10;17898:3;17894:2;17890:12;17885:3;17882:21;17879:2;;;17906:18;;:::i;17966:128::-;18006:3;18037:1;18033:6;18030:1;18027:13;18024:2;;;18043:18;;:::i;:::-;-1:-1:-1;18079:9:1;;18014:80::o;18099:120::-;18139:1;18165;18155:2;;18170:18;;:::i;:::-;-1:-1:-1;18204:9:1;;18145:74::o;18224:168::-;18264:7;18330:1;18326;18322:6;18318:14;18315:1;18312:21;18307:1;18300:9;18293:17;18289:45;18286:2;;;18337:18;;:::i;:::-;-1:-1:-1;18377:9:1;;18276:116::o;18397:246::-;18437:4;-1:-1:-1;;;;;18550:10:1;;;;18520;;18572:12;;;18569:2;;;18587:18;;:::i;:::-;18624:13;;18446:197;-1:-1:-1;;;18446:197:1:o;18648:125::-;18688:4;18716:1;18713;18710:8;18707:2;;;18721:18;;:::i;:::-;-1:-1:-1;18758:9:1;;18697:76::o;18778:258::-;18850:1;18860:113;18874:6;18871:1;18868:13;18860:113;;;18950:11;;;18944:18;18931:11;;;18924:39;18896:2;18889:10;18860:113;;;18991:6;18988:1;18985:13;18982:2;;;-1:-1:-1;;19026:1:1;19008:16;;19001:27;18831:205::o;19041:136::-;19080:3;19108:5;19098:2;;19117:18;;:::i;:::-;-1:-1:-1;;;19153:18:1;;19088:89::o;19182:380::-;19261:1;19257:12;;;;19304;;;19325:2;;19379:4;19371:6;19367:17;19357:27;;19325:2;19432;19424:6;19421:14;19401:18;19398:38;19395:2;;;19478:10;19473:3;19469:20;19466:1;19459:31;19513:4;19510:1;19503:15;19541:4;19538:1;19531:15;19395:2;;19237:325;;;:::o;19567:135::-;19606:3;-1:-1:-1;;19627:17:1;;19624:2;;;19647:18;;:::i;:::-;-1:-1:-1;19694:1:1;19683:13;;19614:88::o;19707:112::-;19739:1;19765;19755:2;;19770:18;;:::i;:::-;-1:-1:-1;19804:9:1;;19745:74::o;19824:127::-;19885:10;19880:3;19876:20;19873:1;19866:31;19916:4;19913:1;19906:15;19940:4;19937:1;19930:15;19956:127;20017:10;20012:3;20008:20;20005:1;19998:31;20048:4;20045:1;20038:15;20072:4;20069:1;20062:15;20088:127;20149:10;20144:3;20140:20;20137:1;20130:31;20180:4;20177:1;20170:15;20204:4;20201:1;20194:15;20220:131;-1:-1:-1;;;;;;20294:32:1;;20284:43;;20274:2;;20341:1;20338;20331:12
Swarm Source
ipfs://101d87495dafde05cf096229e9f172950ba80396f516e626c52ae4378ccabfdd
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.