ERC-721
Overview
Max Total Supply
142 TREE
Holders
88
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 TREELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MyPetTree
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-13 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata 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 that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; } // Compiler will pack the following // _currentIndex and _burnCounter into a single 256bit word. // The tokenId of the next token to be minted. uint128 internal _currentIndex; // The number of tokens burned. uint128 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). 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 tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). 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) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @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) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = uint128(updatedIndex); } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 TransferToNonERC721ReceiverImplementer(); } 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. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: dogofwisdom/MyPetTree.sol pragma solidity ^0.8.4; contract MyPetTree is ERC721A, Ownable { uint256 public MAX_SUPPLY = 888; uint256 public mintPrice = 0.005 ether; string public baseURI = "ipfs://QmXM5Fw58vXnBYeAtYLPpbmzRLCf3fHP8RStJ3Sp2WgtLq"; constructor() ERC721A("My Pet Tree", "TREE") {} function mint(uint256 quantity) external payable { // _safeMint's second argument now takes in a quantity, not a tokenId. require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); require(msg.value >= (mintPrice * quantity), "Not enough ether sent"); _safeMint(msg.sender, quantity); } function reserveMint(uint256 quantity) public onlyOwner { require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left"); _safeMint(msg.sender, quantity); } function setBaseURI(string memory _newbaseURI) external onlyOwner { baseURI = _newbaseURI; } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } function _baseURI() internal view override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { return baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"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":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newbaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6103786008556611c37937e0800060095560e0604052603560808181529062001b9760a03980516200003a91600a9160209091019062000127565b503480156200004857600080fd5b50604080518082018252600b81526a4d7920506574205472656560a81b6020808301918252835180850190945260048452635452454560e01b908401528151919291620000989160019162000127565b508051620000ae90600290602084019062000127565b505050620000cb620000c5620000d160201b60201c565b620000d5565b6200020a565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013590620001cd565b90600052602060002090601f016020900481019282620001595760008555620001a4565b82601f106200017457805160ff1916838001178555620001a4565b82800160010185558215620001a4579182015b82811115620001a457825182559160200191906001019062000187565b50620001b2929150620001b6565b5090565b5b80821115620001b25760008155600101620001b7565b600181811c90821680620001e257607f821691505b602082108114156200020457634e487b7160e01b600052602260045260246000fd5b50919050565b61197d806200021a6000396000f3fe6080604052600436106101815760003560e01c80636352211e116100d157806395d89b411161008a578063b88d4fde11610064578063b88d4fde1461041e578063c87b56dd1461043e578063e985e9c51461045e578063f2fde38b146104a757600080fd5b806395d89b41146103d6578063a0712d68146103eb578063a22cb465146103fe57600080fd5b80636352211e146103385780636817c76c146103585780636c0360eb1461036e57806370a0823114610383578063715018a6146103a35780638da5cb5b146103b857600080fd5b806323b872dd1161013e5780633ccfd60b116101185780633ccfd60b146102d057806342842e0e146102d85780634f6ccce7146102f857806355f804b31461031857600080fd5b806323b872dd1461027a5780632f745c591461029a57806332cb6b0c146102ba57600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b3146102155780631342ff4c1461023757806318160ddd14610257575b600080fd5b34801561019257600080fd5b506101a66101a1366004611725565b6104c7565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d0610534565b6040516101b2919061184b565b3480156101e957600080fd5b506101fd6101f83660046117a8565b6105c6565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b506102356102303660046116fb565b61060a565b005b34801561024357600080fd5b506102356102523660046117a8565b610698565b34801561026357600080fd5b5061026c610735565b6040519081526020016101b2565b34801561028657600080fd5b50610235610295366004611607565b610754565b3480156102a657600080fd5b5061026c6102b53660046116fb565b61075f565b3480156102c657600080fd5b5061026c60085481565b61023561085c565b3480156102e457600080fd5b506102356102f3366004611607565b6108bf565b34801561030457600080fd5b5061026c6103133660046117a8565b6108da565b34801561032457600080fd5b5061023561033336600461175f565b610985565b34801561034457600080fd5b506101fd6103533660046117a8565b6109c6565b34801561036457600080fd5b5061026c60095481565b34801561037a57600080fd5b506101d06109d8565b34801561038f57600080fd5b5061026c61039e3660046115b2565b610a66565b3480156103af57600080fd5b50610235610ab5565b3480156103c457600080fd5b506007546001600160a01b03166101fd565b3480156103e257600080fd5b506101d0610aeb565b6102356103f93660046117a8565b610afa565b34801561040a57600080fd5b506102356104193660046116bf565b610bac565b34801561042a57600080fd5b50610235610439366004611643565b610c42565b34801561044a57600080fd5b506101d06104593660046117a8565b610c7c565b34801561046a57600080fd5b506101a66104793660046115d4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156104b357600080fd5b506102356104c23660046115b2565b610d10565b60006001600160e01b031982166380ac58cd60e01b14806104f857506001600160e01b03198216635b5e139f60e01b145b8061051357506001600160e01b0319821663780e9d6360e01b145b8061052e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610543906118ca565b80601f016020809104026020016040519081016040528092919081815260200182805461056f906118ca565b80156105bc5780601f10610591576101008083540402835291602001916105bc565b820191906000526020600020905b81548152906001019060200180831161059f57829003601f168201915b5050505050905090565b60006105d182610da8565b6105ee576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610615826109c6565b9050806001600160a01b0316836001600160a01b0316141561064a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061066a57506106688133610479565b155b15610688576040516367d9dca160e11b815260040160405180910390fd5b610693838383610ddc565b505050565b6007546001600160a01b031633146106cb5760405162461bcd60e51b81526004016106c29061185e565b60405180910390fd5b600854816106d7610735565b6106e19190611893565b11156107285760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016106c2565b6107323382610e38565b50565b6000546001600160801b03600160801b82048116918116919091031690565b610693838383610e52565b600061076a83610a66565b8210610789576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561085657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161580159282019290925290610802575061084e565b80516001600160a01b03161561081757805192505b876001600160a01b0316836001600160a01b0316141561084c57868414156108455750935061052e92505050565b6001909301925b505b60010161079a565b50600080fd5b6007546001600160a01b031633146108865760405162461bcd60e51b81526004016106c29061185e565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610732573d6000803e3d6000fd5b61069383838360405180602001604052806000815250610c42565b600080546001600160801b031681805b8281101561096b57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610962578583141561095b5750949350505050565b6001909201915b506001016108ea565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b031633146109af5760405162461bcd60e51b81526004016106c29061185e565b80516109c290600a906020840190611487565b5050565b60006109d182611071565b5192915050565b600a80546109e5906118ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610a11906118ca565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b505050505081565b60006001600160a01b038216610a8f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610adf5760405162461bcd60e51b81526004016106c29061185e565b610ae96000611195565b565b606060028054610543906118ca565b60085481610b06610735565b610b109190611893565b1115610b575760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016106c2565b80600954610b6591906118ab565b3410156107285760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016106c2565b6001600160a01b038216331415610bd65760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c4d848484610e52565b610c59848484846111e7565b610c76576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600a8054610c8b906118ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb7906118ca565b8015610d045780601f10610cd957610100808354040283529160200191610d04565b820191906000526020600020905b815481529060010190602001808311610ce757829003601f168201915b50505050509050919050565b6007546001600160a01b03163314610d3a5760405162461bcd60e51b81526004016106c29061185e565b6001600160a01b038116610d9f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c2565b61073281611195565b600080546001600160801b03168210801561052e575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109c28282604051806020016040528060008152506112f6565b6000610e5d82611071565b80519091506000906001600160a01b0316336001600160a01b03161480610e8b57508151610e8b9033610479565b80610ea6575033610e9b846105c6565b6001600160a01b0316145b905080610ec657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610efb5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610f2257604051633a954ecd60e21b815260040160405180910390fd5b610f326000848460000151610ddc565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611027576000546001600160801b0316811015611027578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561117c57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061117a5780516001600160a01b031615611110579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611175579392505050565b611110565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156112ea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061122b90339089908890889060040161180e565b602060405180830381600087803b15801561124557600080fd5b505af1925050508015611275575060408051601f3d908101601f1916820190925261127291810190611742565b60015b6112d0573d8080156112a3576040519150601f19603f3d011682016040523d82523d6000602084013e6112a8565b606091505b5080516112c8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ee565b5060015b949350505050565b61069383838360016000546001600160801b03166001600160a01b03851661133057604051622e076360e81b815260040160405180910390fd5b8361134e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156114615760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611437575061143560008884886111e7565b155b15611455576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016113e0565b50600080546001600160801b0319166001600160801b039290921691909117905561106a565b828054611493906118ca565b90600052602060002090601f0160209004810192826114b557600085556114fb565b82601f106114ce57805160ff19168380011785556114fb565b828001600101855582156114fb579182015b828111156114fb5782518255916020019190600101906114e0565b5061150792915061150b565b5090565b5b80821115611507576000815560010161150c565b600067ffffffffffffffff8084111561153b5761153b61191b565b604051601f8501601f19908116603f011681019082821181831017156115635761156361191b565b8160405280935085815286868601111561157c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115ad57600080fd5b919050565b6000602082840312156115c457600080fd5b6115cd82611596565b9392505050565b600080604083850312156115e757600080fd5b6115f083611596565b91506115fe60208401611596565b90509250929050565b60008060006060848603121561161c57600080fd5b61162584611596565b925061163360208501611596565b9150604084013590509250925092565b6000806000806080858703121561165957600080fd5b61166285611596565b935061167060208601611596565b925060408501359150606085013567ffffffffffffffff81111561169357600080fd5b8501601f810187136116a457600080fd5b6116b387823560208401611520565b91505092959194509250565b600080604083850312156116d257600080fd5b6116db83611596565b9150602083013580151581146116f057600080fd5b809150509250929050565b6000806040838503121561170e57600080fd5b61171783611596565b946020939093013593505050565b60006020828403121561173757600080fd5b81356115cd81611931565b60006020828403121561175457600080fd5b81516115cd81611931565b60006020828403121561177157600080fd5b813567ffffffffffffffff81111561178857600080fd5b8201601f8101841361179957600080fd5b6112ee84823560208401611520565b6000602082840312156117ba57600080fd5b5035919050565b6000815180845260005b818110156117e7576020818501810151868301820152016117cb565b818111156117f9576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611841908301846117c1565b9695505050505050565b6020815260006115cd60208301846117c1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156118a6576118a6611905565b500190565b60008160001904831182151516156118c5576118c5611905565b500290565b600181811c908216806118de57607f821691505b602082108114156118ff57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461073257600080fdfea2646970667358221220232a4f2ccf25486c70a508aa076f6fd121e0d0ee1c84e28ff2f97508a055873c64736f6c63430008070033697066733a2f2f516d584d354677353876586e4259654174594c5070626d7a524c436633664850385253744a335370325767744c71
Deployed Bytecode
0x6080604052600436106101815760003560e01c80636352211e116100d157806395d89b411161008a578063b88d4fde11610064578063b88d4fde1461041e578063c87b56dd1461043e578063e985e9c51461045e578063f2fde38b146104a757600080fd5b806395d89b41146103d6578063a0712d68146103eb578063a22cb465146103fe57600080fd5b80636352211e146103385780636817c76c146103585780636c0360eb1461036e57806370a0823114610383578063715018a6146103a35780638da5cb5b146103b857600080fd5b806323b872dd1161013e5780633ccfd60b116101185780633ccfd60b146102d057806342842e0e146102d85780634f6ccce7146102f857806355f804b31461031857600080fd5b806323b872dd1461027a5780632f745c591461029a57806332cb6b0c146102ba57600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b3146102155780631342ff4c1461023757806318160ddd14610257575b600080fd5b34801561019257600080fd5b506101a66101a1366004611725565b6104c7565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d0610534565b6040516101b2919061184b565b3480156101e957600080fd5b506101fd6101f83660046117a8565b6105c6565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b506102356102303660046116fb565b61060a565b005b34801561024357600080fd5b506102356102523660046117a8565b610698565b34801561026357600080fd5b5061026c610735565b6040519081526020016101b2565b34801561028657600080fd5b50610235610295366004611607565b610754565b3480156102a657600080fd5b5061026c6102b53660046116fb565b61075f565b3480156102c657600080fd5b5061026c60085481565b61023561085c565b3480156102e457600080fd5b506102356102f3366004611607565b6108bf565b34801561030457600080fd5b5061026c6103133660046117a8565b6108da565b34801561032457600080fd5b5061023561033336600461175f565b610985565b34801561034457600080fd5b506101fd6103533660046117a8565b6109c6565b34801561036457600080fd5b5061026c60095481565b34801561037a57600080fd5b506101d06109d8565b34801561038f57600080fd5b5061026c61039e3660046115b2565b610a66565b3480156103af57600080fd5b50610235610ab5565b3480156103c457600080fd5b506007546001600160a01b03166101fd565b3480156103e257600080fd5b506101d0610aeb565b6102356103f93660046117a8565b610afa565b34801561040a57600080fd5b506102356104193660046116bf565b610bac565b34801561042a57600080fd5b50610235610439366004611643565b610c42565b34801561044a57600080fd5b506101d06104593660046117a8565b610c7c565b34801561046a57600080fd5b506101a66104793660046115d4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156104b357600080fd5b506102356104c23660046115b2565b610d10565b60006001600160e01b031982166380ac58cd60e01b14806104f857506001600160e01b03198216635b5e139f60e01b145b8061051357506001600160e01b0319821663780e9d6360e01b145b8061052e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610543906118ca565b80601f016020809104026020016040519081016040528092919081815260200182805461056f906118ca565b80156105bc5780601f10610591576101008083540402835291602001916105bc565b820191906000526020600020905b81548152906001019060200180831161059f57829003601f168201915b5050505050905090565b60006105d182610da8565b6105ee576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610615826109c6565b9050806001600160a01b0316836001600160a01b0316141561064a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061066a57506106688133610479565b155b15610688576040516367d9dca160e11b815260040160405180910390fd5b610693838383610ddc565b505050565b6007546001600160a01b031633146106cb5760405162461bcd60e51b81526004016106c29061185e565b60405180910390fd5b600854816106d7610735565b6106e19190611893565b11156107285760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016106c2565b6107323382610e38565b50565b6000546001600160801b03600160801b82048116918116919091031690565b610693838383610e52565b600061076a83610a66565b8210610789576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561085657600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161580159282019290925290610802575061084e565b80516001600160a01b03161561081757805192505b876001600160a01b0316836001600160a01b0316141561084c57868414156108455750935061052e92505050565b6001909301925b505b60010161079a565b50600080fd5b6007546001600160a01b031633146108865760405162461bcd60e51b81526004016106c29061185e565b6007546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610732573d6000803e3d6000fd5b61069383838360405180602001604052806000815250610c42565b600080546001600160801b031681805b8281101561096b57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610962578583141561095b5750949350505050565b6001909201915b506001016108ea565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b031633146109af5760405162461bcd60e51b81526004016106c29061185e565b80516109c290600a906020840190611487565b5050565b60006109d182611071565b5192915050565b600a80546109e5906118ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610a11906118ca565b8015610a5e5780601f10610a3357610100808354040283529160200191610a5e565b820191906000526020600020905b815481529060010190602001808311610a4157829003601f168201915b505050505081565b60006001600160a01b038216610a8f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b6007546001600160a01b03163314610adf5760405162461bcd60e51b81526004016106c29061185e565b610ae96000611195565b565b606060028054610543906118ca565b60085481610b06610735565b610b109190611893565b1115610b575760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016106c2565b80600954610b6591906118ab565b3410156107285760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b60448201526064016106c2565b6001600160a01b038216331415610bd65760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c4d848484610e52565b610c59848484846111e7565b610c76576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600a8054610c8b906118ca565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb7906118ca565b8015610d045780601f10610cd957610100808354040283529160200191610d04565b820191906000526020600020905b815481529060010190602001808311610ce757829003601f168201915b50505050509050919050565b6007546001600160a01b03163314610d3a5760405162461bcd60e51b81526004016106c29061185e565b6001600160a01b038116610d9f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c2565b61073281611195565b600080546001600160801b03168210801561052e575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109c28282604051806020016040528060008152506112f6565b6000610e5d82611071565b80519091506000906001600160a01b0316336001600160a01b03161480610e8b57508151610e8b9033610479565b80610ea6575033610e9b846105c6565b6001600160a01b0316145b905080610ec657604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610efb5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610f2257604051633a954ecd60e21b815260040160405180910390fd5b610f326000848460000151610ddc565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611027576000546001600160801b0316811015611027578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b031681101561117c57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061117a5780516001600160a01b031615611110579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611175579392505050565b611110565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156112ea57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061122b90339089908890889060040161180e565b602060405180830381600087803b15801561124557600080fd5b505af1925050508015611275575060408051601f3d908101601f1916820190925261127291810190611742565b60015b6112d0573d8080156112a3576040519150601f19603f3d011682016040523d82523d6000602084013e6112a8565b606091505b5080516112c8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ee565b5060015b949350505050565b61069383838360016000546001600160801b03166001600160a01b03851661133057604051622e076360e81b815260040160405180910390fd5b8361134e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b0319811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156114615760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611437575061143560008884886111e7565b155b15611455576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016113e0565b50600080546001600160801b0319166001600160801b039290921691909117905561106a565b828054611493906118ca565b90600052602060002090601f0160209004810192826114b557600085556114fb565b82601f106114ce57805160ff19168380011785556114fb565b828001600101855582156114fb579182015b828111156114fb5782518255916020019190600101906114e0565b5061150792915061150b565b5090565b5b80821115611507576000815560010161150c565b600067ffffffffffffffff8084111561153b5761153b61191b565b604051601f8501601f19908116603f011681019082821181831017156115635761156361191b565b8160405280935085815286868601111561157c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115ad57600080fd5b919050565b6000602082840312156115c457600080fd5b6115cd82611596565b9392505050565b600080604083850312156115e757600080fd5b6115f083611596565b91506115fe60208401611596565b90509250929050565b60008060006060848603121561161c57600080fd5b61162584611596565b925061163360208501611596565b9150604084013590509250925092565b6000806000806080858703121561165957600080fd5b61166285611596565b935061167060208601611596565b925060408501359150606085013567ffffffffffffffff81111561169357600080fd5b8501601f810187136116a457600080fd5b6116b387823560208401611520565b91505092959194509250565b600080604083850312156116d257600080fd5b6116db83611596565b9150602083013580151581146116f057600080fd5b809150509250929050565b6000806040838503121561170e57600080fd5b61171783611596565b946020939093013593505050565b60006020828403121561173757600080fd5b81356115cd81611931565b60006020828403121561175457600080fd5b81516115cd81611931565b60006020828403121561177157600080fd5b813567ffffffffffffffff81111561178857600080fd5b8201601f8101841361179957600080fd5b6112ee84823560208401611520565b6000602082840312156117ba57600080fd5b5035919050565b6000815180845260005b818110156117e7576020818501810151868301820152016117cb565b818111156117f9576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611841908301846117c1565b9695505050505050565b6020815260006115cd60208301846117c1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156118a6576118a6611905565b500190565b60008160001904831182151516156118c5576118c5611905565b500290565b600181811c908216806118de57607f821691505b602082108114156118ff57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461073257600080fdfea2646970667358221220232a4f2ccf25486c70a508aa076f6fd121e0d0ee1c84e28ff2f97508a055873c64736f6c63430008070033
Deployed Bytecode Sourcemap
45990:1292:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29457:372;;;;;;;;;;-1:-1:-1;29457:372:0;;;;;:::i;:::-;;:::i;:::-;;;5385:14:1;;5378:22;5360:41;;5348:2;5333:18;29457:372:0;;;;;;;;32067:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33570:204::-;;;;;;;;;;-1:-1:-1;33570:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4683:32:1;;;4665:51;;4653:2;4638:18;33570:204:0;4519:203:1;33133:371:0;;;;;;;;;;-1:-1:-1;33133:371:0;;;;;:::i;:::-;;:::i;:::-;;46615:190;;;;;;;;;;-1:-1:-1;46615:190:0;;;;;:::i;:::-;;:::i;26694:280::-;;;;;;;;;;;;;:::i;:::-;;;7251:25:1;;;7239:2;7224:18;26694:280:0;7105:177:1;34427:170:0;;;;;;;;;;-1:-1:-1;34427:170:0;;;;;:::i;:::-;;:::i;28280:1105::-;;;;;;;;;;-1:-1:-1;28280:1105:0;;;;;:::i;:::-;;:::i;46036:31::-;;;;;;;;;;;;;;;;46927:114;;;:::i;34668:185::-;;;;;;;;;;-1:-1:-1;34668:185:0;;;;;:::i;:::-;;:::i;27267:713::-;;;;;;;;;;-1:-1:-1;27267:713:0;;;;;:::i;:::-;;:::i;46813:106::-;;;;;;;;;;-1:-1:-1;46813:106:0;;;;;:::i;:::-;;:::i;31876:124::-;;;;;;;;;;-1:-1:-1;31876:124:0;;;;;:::i;:::-;;:::i;46074:38::-;;;;;;;;;;;;;;;;46121:79;;;;;;;;;;;;;:::i;29893:206::-;;;;;;;;;;-1:-1:-1;29893:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;32236:104;;;;;;;;;;;;;:::i;46264:343::-;;;;;;:::i;:::-;;:::i;33846:279::-;;;;;;;;;;-1:-1:-1;33846:279:0;;;;;:::i;:::-;;:::i;34924:342::-;;;;;;;;;;-1:-1:-1;34924:342:0;;;;;:::i;:::-;;:::i;47157:121::-;;;;;;;;;;-1:-1:-1;47157:121:0;;;;;:::i;:::-;;:::i;34196:164::-;;;;;;;;;;-1:-1:-1;34196:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34317:25:0;;;34293:4;34317:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34196:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;29457:372::-;29559:4;-1:-1:-1;;;;;;29596:40:0;;-1:-1:-1;;;29596:40:0;;:105;;-1:-1:-1;;;;;;;29653:48:0;;-1:-1:-1;;;29653:48:0;29596:105;:172;;;-1:-1:-1;;;;;;;29718:50:0;;-1:-1:-1;;;29718:50:0;29596:172;:225;;;-1:-1:-1;;;;;;;;;;16620:40:0;;;29785:36;29576:245;29457:372;-1:-1:-1;;29457:372:0:o;32067:100::-;32121:13;32154:5;32147:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32067:100;:::o;33570:204::-;33638:7;33663:16;33671:7;33663;:16::i;:::-;33658:64;;33688:34;;-1:-1:-1;;;33688:34:0;;;;;;;;;;;33658:64;-1:-1:-1;33742:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33742:24:0;;33570:204::o;33133:371::-;33206:13;33222:24;33238:7;33222:15;:24::i;:::-;33206:40;;33267:5;-1:-1:-1;;;;;33261:11:0;:2;-1:-1:-1;;;;;33261:11:0;;33257:48;;;33281:24;;-1:-1:-1;;;33281:24:0;;;;;;;;;;;33257:48;2883:10;-1:-1:-1;;;;;33322:21:0;;;;;;:63;;-1:-1:-1;33348:37:0;33365:5;2883:10;34196:164;:::i;33348:37::-;33347:38;33322:63;33318:138;;;33409:35;;-1:-1:-1;;;33409:35:0;;;;;;;;;;;33318:138;33468:28;33477:2;33481:7;33490:5;33468:8;:28::i;:::-;33195:309;33133:371;;:::o;46615:190::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;46718:10:::1;;46706:8;46690:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;46682:73;;;::::0;-1:-1:-1;;;46682:73:0;;6245:2:1;46682:73:0::1;::::0;::::1;6227:21:1::0;6284:2;6264:18;;;6257:30;-1:-1:-1;;;6303:18:1;;;6296:52;6365:18;;46682:73:0::1;6043:346:1::0;46682:73:0::1;46766:31;46776:10;46788:8;46766:9;:31::i;:::-;46615:190:::0;:::o;26694:280::-;26747:7;26939:12;-1:-1:-1;;;;;;;;26939:12:0;;;;26923:13;;;:28;;;;26916:35;;26694:280::o;34427:170::-;34561:28;34571:4;34577:2;34581:7;34561:9;:28::i;28280:1105::-;28369:7;28402:16;28412:5;28402:9;:16::i;:::-;28393:5;:25;28389:61;;28427:23;;-1:-1:-1;;;28427:23:0;;;;;;;;;;;28389:61;28461:22;28486:13;;-1:-1:-1;;;;;28486:13:0;;28461:22;;28736:557;28756:14;28752:1;:18;28736:557;;;28796:31;28830:14;;;:11;:14;;;;;;;;;28796:48;;;;;;;;;-1:-1:-1;;;;;28796:48:0;;;;-1:-1:-1;;;28796:48:0;;;;;;;;;;;-1:-1:-1;;;28796:48:0;;;;;;;;;;;;;;;;28863:73;;28908:8;;;28863:73;28958:14;;-1:-1:-1;;;;;28958:28:0;;28954:111;;29031:14;;;-1:-1:-1;28954:111:0;29108:5;-1:-1:-1;;;;;29087:26:0;:17;-1:-1:-1;;;;;29087:26:0;;29083:195;;;29157:5;29142:11;:20;29138:85;;;-1:-1:-1;29198:1:0;-1:-1:-1;29191:8:0;;-1:-1:-1;;;29191:8:0;29138:85;29245:13;;;;;29083:195;28777:516;28736:557;28772:3;;28736:557;;;;29369:8;;;46927:114;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4152:6;;46985:48:::1;::::0;-1:-1:-1;;;;;4152:6:0;;;;47011:21:::1;46985:48:::0;::::1;;;::::0;::::1;::::0;;;47011:21;4152:6;46985:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;34668:185:::0;34806:39;34823:4;34829:2;34833:7;34806:39;;;;;;;;;;;;:16;:39::i;27267:713::-;27334:7;27379:13;;-1:-1:-1;;;;;27379:13:0;27334:7;;27593:328;27613:14;27609:1;:18;27593:328;;;27653:31;27687:14;;;:11;:14;;;;;;;;;27653:48;;;;;;;;;-1:-1:-1;;;;;27653:48:0;;;;-1:-1:-1;;;27653:48:0;;;;;;;;;;;-1:-1:-1;;;27653:48:0;;;;;;;;;;;;;;27720:186;;27785:5;27770:11;:20;27766:85;;;-1:-1:-1;27826:1:0;27267:713;-1:-1:-1;;;;27267:713:0:o;27766:85::-;27873:13;;;;;27720:186;-1:-1:-1;27629:3:0;;27593:328;;;;27949:23;;-1:-1:-1;;;27949:23:0;;;;;;;;;;;46813:106;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46890:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46813:106:::0;:::o;31876:124::-;31940:7;31967:20;31979:7;31967:11;:20::i;:::-;:25;;31876:124;-1:-1:-1;;31876:124:0:o;46121:79::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29893:206::-;29957:7;-1:-1:-1;;;;;29981:19:0;;29977:60;;30009:28;;-1:-1:-1;;;30009:28:0;;;;;;;;;;;29977:60;-1:-1:-1;;;;;;30063:19:0;;;;;:12;:19;;;;;:27;;;;29893:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;32236:104::-;32292:13;32325:7;32318:14;;;;;:::i;46264:343::-;46440:10;;46428:8;46412:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;46404:73;;;;-1:-1:-1;;;46404:73:0;;6245:2:1;46404:73:0;;;6227:21:1;6284:2;6264:18;;;6257:30;-1:-1:-1;;;6303:18:1;;;6296:52;6365:18;;46404:73:0;6043:346:1;46404:73:0;46522:8;46510:9;;:20;;;;:::i;:::-;46496:9;:35;;46488:69;;;;-1:-1:-1;;;46488:69:0;;6957:2:1;46488:69:0;;;6939:21:1;6996:2;6976:18;;;6969:30;-1:-1:-1;;;7015:18:1;;;7008:51;7076:18;;46488:69:0;6755:345:1;33846:279:0;-1:-1:-1;;;;;33937:24:0;;2883:10;33937:24;33933:54;;;33970:17;;-1:-1:-1;;;33970:17:0;;;;;;;;;;;33933:54;2883:10;34000:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34000:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34000:53:0;;;;;;;;;;34069:48;;5360:41:1;;;34000:42:0;;2883:10;34069:48;;5333:18:1;34069:48:0;;;;;;;33846:279;;:::o;34924:342::-;35091:28;35101:4;35107:2;35111:7;35091:9;:28::i;:::-;35135:48;35158:4;35164:2;35168:7;35177:5;35135:22;:48::i;:::-;35130:129;;35207:40;;-1:-1:-1;;;35207:40:0;;;;;;;;;;;35130:129;34924:342;;;;:::o;47157:121::-;47230:13;47263:7;47256:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47157:121;;;:::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;5838:2:1;5069:73:0::1;::::0;::::1;5820:21:1::0;5877:2;5857:18;;;5850:30;5916:34;5896:18;;;5889:62;-1:-1:-1;;;5967:18:1;;;5960:36;6013:19;;5069:73:0::1;5636:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;35521:144::-:0;35578:4;35612:13;;-1:-1:-1;;;;;35612:13:0;35602:23;;:55;;;;-1:-1:-1;;35630:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35630:27:0;;;;35629:28;;35521:144::o;42737:196::-;42852:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42852:29:0;-1:-1:-1;;;;;42852:29:0;;;;;;;;;42897:28;;42852:24;;42897:28;;;;;;;42737:196;;;:::o;35673:104::-;35742:27;35752:2;35756:8;35742:27;;;;;;;;;;;;:9;:27::i;38238:2112::-;38353:35;38391:20;38403:7;38391:11;:20::i;:::-;38466:18;;38353:58;;-1:-1:-1;38424:22:0;;-1:-1:-1;;;;;38450:34:0;2883:10;-1:-1:-1;;;;;38450:34:0;;:101;;;-1:-1:-1;38518:18:0;;38501:50;;2883:10;34196:164;:::i;38501:50::-;38450:154;;;-1:-1:-1;2883:10:0;38568:20;38580:7;38568:11;:20::i;:::-;-1:-1:-1;;;;;38568:36:0;;38450:154;38424:181;;38623:17;38618:66;;38649:35;;-1:-1:-1;;;38649:35:0;;;;;;;;;;;38618:66;38721:4;-1:-1:-1;;;;;38699:26:0;:13;:18;;;-1:-1:-1;;;;;38699:26:0;;38695:67;;38734:28;;-1:-1:-1;;;38734:28:0;;;;;;;;;;;38695:67;-1:-1:-1;;;;;38777:16:0;;38773:52;;38802:23;;-1:-1:-1;;;38802:23:0;;;;;;;;;;;38773:52;38946:49;38963:1;38967:7;38976:13;:18;;;38946:8;:49::i;:::-;-1:-1:-1;;;;;39291:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39291:31:0;;;;;;;-1:-1:-1;;39291:31:0;;;;;;;39337:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39337:29:0;;;;;;;;;;;39383:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39428:61:0;;;;-1:-1:-1;;;39473:15:0;39428:61;;;;;;;;;;;39763:11;;;39793:24;;;;;:29;39763:11;;39793:29;39789:445;;40018:13;;-1:-1:-1;;;;;40018:13:0;40004:27;;40000:219;;;40088:18;;;40056:24;;;:11;:24;;;;;;;;:50;;40171:28;;;;40129:70;;-1:-1:-1;;;40129:70:0;-1:-1:-1;;;;;;40129:70:0;;;-1:-1:-1;;;;;40056:50:0;;;40129:70;;;;;;;40000:219;39266:979;40281:7;40277:2;-1:-1:-1;;;;;40262:27:0;40271:4;-1:-1:-1;;;;;40262:27:0;;;;;;;;;;;40300:42;38342:2008;;38238:2112;;;:::o;30731:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;30897:13:0;;30841:7;;-1:-1:-1;;;;;30897:13:0;30890:20;;30886:861;;;30931:31;30965:17;;;:11;:17;;;;;;;;;30931:51;;;;;;;;;-1:-1:-1;;;;;30931:51:0;;;;-1:-1:-1;;;30931:51:0;;;;;;;;;;;-1:-1:-1;;;30931:51:0;;;;;;;;;;;;;;31001:731;;31051:14;;-1:-1:-1;;;;;31051:28:0;;31047:101;;31115:9;30731:1083;-1:-1:-1;;;30731:1083:0:o;31047:101::-;-1:-1:-1;;;31492:6:0;31537:17;;;;:11;:17;;;;;;;;;31525:29;;;;;;;;;-1:-1:-1;;;;;31525:29:0;;;;;-1:-1:-1;;;31525:29:0;;;;;;;;;;;-1:-1:-1;;;31525:29:0;;;;;;;;;;;;;31585:28;31581:109;;31653:9;30731:1083;-1:-1:-1;;;30731:1083:0:o;31581:109::-;31452:261;;;30912:835;30886:861;31775:31;;-1:-1:-1;;;31775:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;43498:790::-;43653:4;-1:-1:-1;;;;;43674:13:0;;6690:20;6738:8;43670:611;;43710:72;;-1:-1:-1;;;43710:72:0;;-1:-1:-1;;;;;43710:36:0;;;;;:72;;2883:10;;43761:4;;43767:7;;43776:5;;43710:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43710:72:0;;;;;;;;-1:-1:-1;;43710:72:0;;;;;;;;;;;;:::i;:::-;;;43706:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43956:13:0;;43952:259;;44006:40;;-1:-1:-1;;;44006:40:0;;;;;;;;;;;43952:259;44161:6;44155:13;44146:6;44142:2;44138:15;44131:38;43706:520;-1:-1:-1;;;;;;43833:55:0;-1:-1:-1;;;43833:55:0;;-1:-1:-1;43826:62:0;;43670:611;-1:-1:-1;44265:4:0;43670:611;43498:790;;;;;;:::o;36140:163::-;36263:32;36269:2;36273:8;36283:5;36290:4;36701:20;36724:13;-1:-1:-1;;;;;36724:13:0;-1:-1:-1;;;;;36752:16:0;;36748:48;;36777:19;;-1:-1:-1;;;36777:19:0;;;;;;;;;;;36748:48;36811:13;36807:44;;36833:18;;-1:-1:-1;;;36833:18:0;;;;;;;;;;;36807:44;-1:-1:-1;;;;;37203:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;37262:49:0;;37203:44;;;;;;;;37262:49;;;;-1:-1:-1;;37203:44:0;;;;;;37262:49;;;;;;;;;;;;;;;;37328:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37378:66:0;;;;-1:-1:-1;;;37428:15:0;37378:66;;;;;;;;;;;37328:25;;37513:328;37533:8;37529:1;:12;37513:328;;;37572:38;;37597:12;;-1:-1:-1;;;;;37572:38:0;;;37589:1;;37572:38;;37589:1;;37572:38;37633:4;:68;;;;;37642:59;37673:1;37677:2;37681:12;37695:5;37642:22;:59::i;:::-;37641:60;37633:68;37629:164;;;37733:40;;-1:-1:-1;;;37733:40:0;;;;;;;;;;;37629:164;37811:14;;;;;37543:3;37513:328;;;-1:-1:-1;37857:13:0;:37;;-1:-1:-1;;;;;;37857:37:0;-1:-1:-1;;;;;37857:37:0;;;;;;;;;;37916:60;34924:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:471::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4174:1;4184:162;4198:6;4195:1;4192:13;4184:162;;;4260:4;4316:13;;;4312:22;;4306:29;4288:11;;;4284:20;;4277:59;4213:12;4184:162;;;4364:6;4361:1;4358:13;4355:87;;;4430:1;4423:4;4414:6;4409:3;4405:16;4401:27;4394:38;4355:87;-1:-1:-1;4496:2:1;4475:15;-1:-1:-1;;4471:29:1;4462:39;;;;4503:4;4458:50;;4043:471;-1:-1:-1;;4043:471:1:o;4727:488::-;-1:-1:-1;;;;;4996:15:1;;;4978:34;;5048:15;;5043:2;5028:18;;5021:43;5095:2;5080:18;;5073:34;;;5143:3;5138:2;5123:18;;5116:31;;;4921:4;;5164:45;;5189:19;;5181:6;5164:45;:::i;:::-;5156:53;4727:488;-1:-1:-1;;;;;;4727:488:1:o;5412:219::-;5561:2;5550:9;5543:21;5524:4;5581:44;5621:2;5610:9;5606:18;5598:6;5581:44;:::i;6394:356::-;6596:2;6578:21;;;6615:18;;;6608:30;6674:34;6669:2;6654:18;;6647:62;6741:2;6726:18;;6394:356::o;7287:128::-;7327:3;7358:1;7354:6;7351:1;7348:13;7345:39;;;7364:18;;:::i;:::-;-1:-1:-1;7400:9:1;;7287:128::o;7420:168::-;7460:7;7526:1;7522;7518:6;7514:14;7511:1;7508:21;7503:1;7496:9;7489:17;7485:45;7482:71;;;7533:18;;:::i;:::-;-1:-1:-1;7573:9:1;;7420:168::o;7593:380::-;7672:1;7668:12;;;;7715;;;7736:61;;7790:4;7782:6;7778:17;7768:27;;7736:61;7843:2;7835:6;7832:14;7812:18;7809:38;7806:161;;;7889:10;7884:3;7880:20;7877:1;7870:31;7924:4;7921:1;7914:15;7952:4;7949:1;7942:15;7806:161;;7593:380;;;:::o;7978:127::-;8039:10;8034:3;8030:20;8027:1;8020:31;8070:4;8067:1;8060:15;8094:4;8091:1;8084:15;8110:127;8171:10;8166:3;8162:20;8159:1;8152:31;8202:4;8199:1;8192:15;8226:4;8223:1;8216:15;8242:131;-1:-1:-1;;;;;;8316:32:1;;8306:43;;8296:71;;8363:1;8360;8353:12
Swarm Source
ipfs://232a4f2ccf25486c70a508aa076f6fd121e0d0ee1c84e28ff2f97508a055873c
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.