ERC-721
Overview
Max Total Supply
135 CorsairCat
Holders
90
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 CorsairCatLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Corsair_Cat
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-02 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 /// @solidity memory-safe-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 (last updated v4.6.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 `IERC721Receiver.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.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (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. * * _Available since v4.5._ */ 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 paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); 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 extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 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**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { 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; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 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_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * 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 (_startTokenId() <= curr && 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 virtual 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 (to.isContract() && !_checkContractOnERC721Received(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 _startTokenId() <= tokenId && 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 > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 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; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = 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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, 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 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { 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)) } } } } /** * @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: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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: Corsair_Cat.sol pragma solidity ^0.8.4; contract Corsair_Cat is ERC2981, ERC721A, Ownable { using Strings for uint256; uint32 public constant MAX_SUPPLY = 555; uint32 public _MintPerWallet = 3; bool public _publicMintActive = true; uint256 public _price = 0.001 ether; string public _prerevealURI = "ipfs://QmbqULR2x5QhwfYLAQRUzvCH4Mb9oGgY6orf9BgUwKmaAq"; string public _matadataURI; constructor() ERC721A("Corsair Cat", "CorsairCat") { _setDefaultRoyalty(msg.sender, 750); } modifier callerIsUser() { require(tx.origin == msg.sender, "Contract caller forbidden"); _; } modifier supplyCompliance(uint32 amount) { require(_totalMinted() + amount <= MAX_SUPPLY, "Exceed max supply"); _; } modifier publicCompliance(uint32 amount) { require(_publicMintActive, "Public mint is inactive"); require(msg.value == _price * amount, "Value error"); require( _numberMinted(msg.sender) + amount <= _MintPerWallet, "Exceed public mint limit per wallet" ); _; } // Public Read function tokenURI(uint256 tokenId) public view override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _matadataURI; return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : _prerevealURI; } function _startTokenId() internal pure override returns (uint256) { return 1; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC2981, ERC721A) returns (bool) { return interfaceId == type(IERC2981).interfaceId || interfaceId == type(IERC721).interfaceId || super.supportsInterface(interfaceId); } // Public Write function mint(uint32 amount) external payable supplyCompliance(amount) publicCompliance(amount) callerIsUser { _mint(msg.sender, amount, "", false); } // Only Owner function setPublicLimitPerWallet(uint32 MintPerWallet) external onlyOwner { _MintPerWallet = MintPerWallet; } function flipPublicMintActive() external onlyOwner { _publicMintActive = !_publicMintActive; } function setPrerevealURI(string calldata prerevealURI) external onlyOwner { _prerevealURI = prerevealURI; } function setMetadataURI(string calldata metadataURI) external onlyOwner { _matadataURI = metadataURI; } function setPrice(uint256 price) external onlyOwner { _price = price; } function setFeeNumerator(address receiver, uint96 feeNumerator) public onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function withdraw(address to) external onlyOwner { payable(to).transfer(address(this).balance); } }
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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_MintPerWallet","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_matadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_prerevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"flipPublicMintActive","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":"uint32","name":"amount","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"metadataURI","type":"string"}],"name":"setMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"prerevealURI","type":"string"}],"name":"setPrerevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"MintPerWallet","type":"uint32"}],"name":"setPublicLimitPerWallet","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":"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":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600a805464ffffffffff60a01b1916780100000003000000000000000000000000000000000000000017905566038d7ea4c68000600b5560e06040526035608081815290620023cd60a039600c90620000599082620002f2565b503480156200006757600080fd5b506040518060400160405280600b81526020016a10dbdc9cd85a5c8810d85d60aa1b8152506040518060400160405280600a81526020016910dbdc9cd85a5c90d85d60b21b8152508160049081620000c09190620002f2565b506005620000cf8282620002f2565b5050600160025550620000e233620000f6565b620000f0336102ee62000148565b620003be565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620001bc5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620002145760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001b3565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200027857607f821691505b6020821081036200029957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002ed57600081815260208120601f850160051c81016020861015620002c85750805b601f850160051c820191505b81811015620002e957828155600101620002d4565b5050505b505050565b81516001600160401b038111156200030e576200030e6200024d565b62000326816200031f845462000263565b846200029f565b602080601f8311600181146200035e5760008415620003455750858301515b600019600386901b1c1916600185901b178555620002e9565b600085815260208120601f198616915b828110156200038f578886015182559484019460019091019084016200036e565b5085821015620003ae5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611fff80620003ce6000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063b1645eb9116100a0578063d13423a91161006f578063d13423a9146105a0578063dc33e681146105b5578063e9812cba146105d5578063e985e9c5146105ea578063f2fde38b1461060a57600080fd5b8063b1645eb91461051f578063b88d4fde14610540578063bbe5989114610560578063c87b56dd1461058057600080fd5b806392e3114b116100dc57806392e3114b146104c257806395d89b41146104d7578063a22cb465146104ec578063a71bbebe1461050c57600080fd5b8063715018a61461044f578063750521f5146104645780638da5cb5b1461048457806391b7f5ed146104a257600080fd5b806324b311b11161018557806342842e0e1161015457806342842e0e146103cf57806351cff8d9146103ef5780636352211e1461040f57806370a082311461042f57600080fd5b806324b311b1146103215780632a55205a1461035a57806332cb6b0c146103995780633ea9730a146103af57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806318160ddd146102c4578063235b6ea1146102eb57806323b872dd1461030157600080fd5b806301ffc9a7146101f357806306fdde0314610228578063078eef281461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e36600461199f565b61062a565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610670565b60405161021f9190611a0c565b34801561025657600080fd5b5061026a610265366004611a1f565b610702565b005b34801561027857600080fd5b5061028c610287366004611a91565b61071c565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b5061026a6102bf366004611ac6565b610760565b3480156102d057600080fd5b5060035460025403600019015b60405190815260200161021f565b3480156102f757600080fd5b506102dd600b5481565b34801561030d57600080fd5b5061026a61031c366004611af0565b6107e8565b34801561032d57600080fd5b50600a5461034590600160a01b900463ffffffff1681565b60405163ffffffff909116815260200161021f565b34801561036657600080fd5b5061037a610375366004611b2c565b6107f3565b604080516001600160a01b03909316835260208301919091520161021f565b3480156103a557600080fd5b5061034561022b81565b3480156103bb57600080fd5b5061026a6103ca366004611b4e565b61089f565b3480156103db57600080fd5b5061026a6103ea366004611af0565b6108cd565b3480156103fb57600080fd5b5061026a61040a366004611b74565b6108e8565b34801561041b57600080fd5b5061028c61042a366004611a91565b610929565b34801561043b57600080fd5b506102dd61044a366004611b74565b61093b565b34801561045b57600080fd5b5061026a61098a565b34801561047057600080fd5b5061026a61047f366004611a1f565b61099e565b34801561049057600080fd5b50600a546001600160a01b031661028c565b3480156104ae57600080fd5b5061026a6104bd366004611a91565b6109b3565b3480156104ce57600080fd5b5061023d6109c0565b3480156104e357600080fd5b5061023d610a4e565b3480156104f857600080fd5b5061026a610507366004611b8f565b610a5d565b61026a61051a366004611b4e565b610af2565b34801561052b57600080fd5b50600a5461021390600160c01b900460ff1681565b34801561054c57600080fd5b5061026a61055b366004611be1565b610d12565b34801561056c57600080fd5b5061026a61057b366004611cbd565b610d63565b34801561058c57600080fd5b5061023d61059b366004611a91565b610d75565b3480156105ac57600080fd5b5061026a610ef7565b3480156105c157600080fd5b506102dd6105d0366004611b74565b610f20565b3480156105e157600080fd5b5061023d610f4f565b3480156105f657600080fd5b50610213610605366004611cf5565b610f5c565b34801561061657600080fd5b5061026a610625366004611b74565b610f8a565b60006001600160e01b0319821663152a902d60e11b148061065b57506001600160e01b031982166380ac58cd60e01b145b8061066a575061066a82611003565b92915050565b60606004805461067f90611d28565b80601f01602080910402602001604051908101604052809291908181526020018280546106ab90611d28565b80156106f85780601f106106cd576101008083540402835291602001916106f8565b820191906000526020600020905b8154815290600101906020018083116106db57829003601f168201915b5050505050905090565b61070a611043565b600c610717828483611db0565b505050565b60006107278261109d565b610744576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061076b82610929565b9050806001600160a01b0316836001600160a01b03160361079f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107bf57506107bd8133610f5c565b155b156107dd576040516367d9dca160e11b815260040160405180910390fd5b6107178383836110d6565b610717838383611132565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916108685750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610887906001600160601b031687611e86565b6108919190611eb3565b915196919550909350505050565b6108a7611043565b600a805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b61071783838360405180602001604052806000815250610d12565b6108f0611043565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610925573d6000803e3d6000fd5b5050565b600061093482611322565b5192915050565b60006001600160a01b038216610964576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b610992611043565b61099c600061144b565b565b6109a6611043565b600d610717828483611db0565b6109bb611043565b600b55565b600c80546109cd90611d28565b80601f01602080910402602001604051908101604052809291908181526020018280546109f990611d28565b8015610a465780601f10610a1b57610100808354040283529160200191610a46565b820191906000526020600020905b815481529060010190602001808311610a2957829003601f168201915b505050505081565b60606005805461067f90611d28565b336001600160a01b03831603610a865760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b8061022b63ffffffff8216610b0a6002546000190190565b610b149190611ec7565b1115610b5b5760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b60448201526064015b60405180910390fd5b600a548290600160c01b900460ff16610bb65760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206d696e7420697320696e6163746976650000000000000000006044820152606401610b52565b8063ffffffff16600b54610bca9190611e86565b3414610c065760405162461bcd60e51b815260206004820152600b60248201526a2b30b63ab29032b93937b960a91b6044820152606401610b52565b600a5433600090815260076020526040902054600160a01b90910463ffffffff90811691610c4791841690600160401b900467ffffffffffffffff16611ec7565b1115610ca15760405162461bcd60e51b815260206004820152602360248201527f457863656564207075626c6963206d696e74206c696d6974207065722077616c6044820152621b195d60ea1b6064820152608401610b52565b323314610cf05760405162461bcd60e51b815260206004820152601960248201527f436f6e74726163742063616c6c657220666f7262696464656e000000000000006044820152606401610b52565b610717338463ffffffff1660405180602001604052806000815250600061149d565b610d1d848484611132565b6001600160a01b0383163b15158015610d3f5750610d3d8484848461166a565b155b15610d5d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610d6b611043565b6109258282611756565b6060610d808261109d565b610d9d57604051630a14c4b560e41b815260040160405180910390fd5b6000600d8054610dac90611d28565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd890611d28565b8015610e255780601f10610dfa57610100808354040283529160200191610e25565b820191906000526020600020905b815481529060010190602001808311610e0857829003601f168201915b505050505090508051600003610ec557600c8054610e4290611d28565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6e90611d28565b8015610ebb5780601f10610e9057610100808354040283529160200191610ebb565b820191906000526020600020905b815481529060010190602001808311610e9e57829003601f168201915b5050505050610ef0565b80610ecf84611853565b604051602001610ee0929190611eda565b6040516020818303038152906040525b9392505050565b610eff611043565b600a805460ff60c01b198116600160c01b9182900460ff1615909102179055565b6001600160a01b038116600090815260076020526040812054600160401b900467ffffffffffffffff1661066a565b600d80546109cd90611d28565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b610f92611043565b6001600160a01b038116610ff75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b52565b6110008161144b565b50565b60006001600160e01b031982166380ac58cd60e01b148061103457506001600160e01b03198216635b5e139f60e01b145b8061066a575061066a82611954565b600a546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b52565b6000816001111580156110b1575060025482105b801561066a575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061113d82611322565b9050836001600160a01b031681600001516001600160a01b0316146111745760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061119257506111928533610f5c565b806111ad5750336111a28461071c565b6001600160a01b0316145b9050806111cd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111f457604051633a954ecd60e21b815260040160405180910390fd5b611200600084876110d6565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112d65760025482146112d6578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611352575060025481105b1561143257600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114305780516001600160a01b0316156113c6579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561142b579392505050565b6113c6565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002546001600160a01b0385166114c657604051622e076360e81b815260040160405180910390fd5b836000036114e75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561159457506001600160a01b0387163b15155b1561161c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115e5600088848060010195508861166a565b611602576040516368d2bf6b60e11b815260040160405180910390fd5b80820361159a57826002541461161757600080fd5b611661565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361161d575b5060025561131b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061169f903390899088908890600401611f19565b6020604051808303816000875af19250505080156116da575060408051601f3d908101601f191682019092526116d791810190611f56565b60015b611738573d808015611708576040519150601f19603f3d011682016040523d82523d6000602084013e61170d565b606091505b508051600003611730576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6127106001600160601b03821611156117c45760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610b52565b6001600160a01b03821661181a5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b52565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b60608160000361187a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118a4578061188e81611f73565b915061189d9050600a83611eb3565b915061187e565b60008167ffffffffffffffff8111156118bf576118bf611bcb565b6040519080825280601f01601f1916602001820160405280156118e9576020820181803683370190505b5090505b841561174e576118fe600183611f8c565b915061190b600a86611f9f565b611916906030611ec7565b60f81b81838151811061192b5761192b611fb3565b60200101906001600160f81b031916908160001a90535061194d600a86611eb3565b94506118ed565b60006001600160e01b0319821663152a902d60e11b148061066a57506301ffc9a760e01b6001600160e01b031983161461066a565b6001600160e01b03198116811461100057600080fd5b6000602082840312156119b157600080fd5b8135610ef081611989565b60005b838110156119d75781810151838201526020016119bf565b50506000910152565b600081518084526119f88160208601602086016119bc565b601f01601f19169290920160200192915050565b602081526000610ef060208301846119e0565b60008060208385031215611a3257600080fd5b823567ffffffffffffffff80821115611a4a57600080fd5b818501915085601f830112611a5e57600080fd5b813581811115611a6d57600080fd5b866020828501011115611a7f57600080fd5b60209290920196919550909350505050565b600060208284031215611aa357600080fd5b5035919050565b80356001600160a01b0381168114611ac157600080fd5b919050565b60008060408385031215611ad957600080fd5b611ae283611aaa565b946020939093013593505050565b600080600060608486031215611b0557600080fd5b611b0e84611aaa565b9250611b1c60208501611aaa565b9150604084013590509250925092565b60008060408385031215611b3f57600080fd5b50508035926020909101359150565b600060208284031215611b6057600080fd5b813563ffffffff81168114610ef057600080fd5b600060208284031215611b8657600080fd5b610ef082611aaa565b60008060408385031215611ba257600080fd5b611bab83611aaa565b915060208301358015158114611bc057600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611bf757600080fd5b611c0085611aaa565b9350611c0e60208601611aaa565b925060408501359150606085013567ffffffffffffffff80821115611c3257600080fd5b818701915087601f830112611c4657600080fd5b813581811115611c5857611c58611bcb565b604051601f8201601f19908116603f01168101908382118183101715611c8057611c80611bcb565b816040528281528a6020848701011115611c9957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611cd057600080fd5b611cd983611aaa565b915060208301356001600160601b0381168114611bc057600080fd5b60008060408385031215611d0857600080fd5b611d1183611aaa565b9150611d1f60208401611aaa565b90509250929050565b600181811c90821680611d3c57607f821691505b602082108103611d5c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561071757600081815260208120601f850160051c81016020861015611d895750805b601f850160051c820191505b81811015611da857828155600101611d95565b505050505050565b67ffffffffffffffff831115611dc857611dc8611bcb565b611ddc83611dd68354611d28565b83611d62565b6000601f841160018114611e105760008515611df85750838201355b600019600387901b1c1916600186901b17835561131b565b600083815260209020601f19861690835b82811015611e415786850135825560209485019460019092019101611e21565b5086821015611e5e5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761066a5761066a611e70565b634e487b7160e01b600052601260045260246000fd5b600082611ec257611ec2611e9d565b500490565b8082018082111561066a5761066a611e70565b60008351611eec8184602088016119bc565b835190830190611f008183602088016119bc565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f4c908301846119e0565b9695505050505050565b600060208284031215611f6857600080fd5b8151610ef081611989565b600060018201611f8557611f85611e70565b5060010190565b8181038181111561066a5761066a611e70565b600082611fae57611fae611e9d565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122029b65918d53dfce84ae78094334947faaf360f1bde08e40ffa0f3a890ea79aea64736f6c63430008110033697066733a2f2f516d6271554c5232783551687766594c415152557a764348344d62396f476759366f726639426755774b6d614171
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063b1645eb9116100a0578063d13423a91161006f578063d13423a9146105a0578063dc33e681146105b5578063e9812cba146105d5578063e985e9c5146105ea578063f2fde38b1461060a57600080fd5b8063b1645eb91461051f578063b88d4fde14610540578063bbe5989114610560578063c87b56dd1461058057600080fd5b806392e3114b116100dc57806392e3114b146104c257806395d89b41146104d7578063a22cb465146104ec578063a71bbebe1461050c57600080fd5b8063715018a61461044f578063750521f5146104645780638da5cb5b1461048457806391b7f5ed146104a257600080fd5b806324b311b11161018557806342842e0e1161015457806342842e0e146103cf57806351cff8d9146103ef5780636352211e1461040f57806370a082311461042f57600080fd5b806324b311b1146103215780632a55205a1461035a57806332cb6b0c146103995780633ea9730a146103af57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a457806318160ddd146102c4578063235b6ea1146102eb57806323b872dd1461030157600080fd5b806301ffc9a7146101f357806306fdde0314610228578063078eef281461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e36600461199f565b61062a565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610670565b60405161021f9190611a0c565b34801561025657600080fd5b5061026a610265366004611a1f565b610702565b005b34801561027857600080fd5b5061028c610287366004611a91565b61071c565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b5061026a6102bf366004611ac6565b610760565b3480156102d057600080fd5b5060035460025403600019015b60405190815260200161021f565b3480156102f757600080fd5b506102dd600b5481565b34801561030d57600080fd5b5061026a61031c366004611af0565b6107e8565b34801561032d57600080fd5b50600a5461034590600160a01b900463ffffffff1681565b60405163ffffffff909116815260200161021f565b34801561036657600080fd5b5061037a610375366004611b2c565b6107f3565b604080516001600160a01b03909316835260208301919091520161021f565b3480156103a557600080fd5b5061034561022b81565b3480156103bb57600080fd5b5061026a6103ca366004611b4e565b61089f565b3480156103db57600080fd5b5061026a6103ea366004611af0565b6108cd565b3480156103fb57600080fd5b5061026a61040a366004611b74565b6108e8565b34801561041b57600080fd5b5061028c61042a366004611a91565b610929565b34801561043b57600080fd5b506102dd61044a366004611b74565b61093b565b34801561045b57600080fd5b5061026a61098a565b34801561047057600080fd5b5061026a61047f366004611a1f565b61099e565b34801561049057600080fd5b50600a546001600160a01b031661028c565b3480156104ae57600080fd5b5061026a6104bd366004611a91565b6109b3565b3480156104ce57600080fd5b5061023d6109c0565b3480156104e357600080fd5b5061023d610a4e565b3480156104f857600080fd5b5061026a610507366004611b8f565b610a5d565b61026a61051a366004611b4e565b610af2565b34801561052b57600080fd5b50600a5461021390600160c01b900460ff1681565b34801561054c57600080fd5b5061026a61055b366004611be1565b610d12565b34801561056c57600080fd5b5061026a61057b366004611cbd565b610d63565b34801561058c57600080fd5b5061023d61059b366004611a91565b610d75565b3480156105ac57600080fd5b5061026a610ef7565b3480156105c157600080fd5b506102dd6105d0366004611b74565b610f20565b3480156105e157600080fd5b5061023d610f4f565b3480156105f657600080fd5b50610213610605366004611cf5565b610f5c565b34801561061657600080fd5b5061026a610625366004611b74565b610f8a565b60006001600160e01b0319821663152a902d60e11b148061065b57506001600160e01b031982166380ac58cd60e01b145b8061066a575061066a82611003565b92915050565b60606004805461067f90611d28565b80601f01602080910402602001604051908101604052809291908181526020018280546106ab90611d28565b80156106f85780601f106106cd576101008083540402835291602001916106f8565b820191906000526020600020905b8154815290600101906020018083116106db57829003601f168201915b5050505050905090565b61070a611043565b600c610717828483611db0565b505050565b60006107278261109d565b610744576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061076b82610929565b9050806001600160a01b0316836001600160a01b03160361079f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107bf57506107bd8133610f5c565b155b156107dd576040516367d9dca160e11b815260040160405180910390fd5b6107178383836110d6565b610717838383611132565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916108685750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610887906001600160601b031687611e86565b6108919190611eb3565b915196919550909350505050565b6108a7611043565b600a805463ffffffff909216600160a01b0263ffffffff60a01b19909216919091179055565b61071783838360405180602001604052806000815250610d12565b6108f0611043565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610925573d6000803e3d6000fd5b5050565b600061093482611322565b5192915050565b60006001600160a01b038216610964576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b610992611043565b61099c600061144b565b565b6109a6611043565b600d610717828483611db0565b6109bb611043565b600b55565b600c80546109cd90611d28565b80601f01602080910402602001604051908101604052809291908181526020018280546109f990611d28565b8015610a465780601f10610a1b57610100808354040283529160200191610a46565b820191906000526020600020905b815481529060010190602001808311610a2957829003601f168201915b505050505081565b60606005805461067f90611d28565b336001600160a01b03831603610a865760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b8061022b63ffffffff8216610b0a6002546000190190565b610b149190611ec7565b1115610b5b5760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b60448201526064015b60405180910390fd5b600a548290600160c01b900460ff16610bb65760405162461bcd60e51b815260206004820152601760248201527f5075626c6963206d696e7420697320696e6163746976650000000000000000006044820152606401610b52565b8063ffffffff16600b54610bca9190611e86565b3414610c065760405162461bcd60e51b815260206004820152600b60248201526a2b30b63ab29032b93937b960a91b6044820152606401610b52565b600a5433600090815260076020526040902054600160a01b90910463ffffffff90811691610c4791841690600160401b900467ffffffffffffffff16611ec7565b1115610ca15760405162461bcd60e51b815260206004820152602360248201527f457863656564207075626c6963206d696e74206c696d6974207065722077616c6044820152621b195d60ea1b6064820152608401610b52565b323314610cf05760405162461bcd60e51b815260206004820152601960248201527f436f6e74726163742063616c6c657220666f7262696464656e000000000000006044820152606401610b52565b610717338463ffffffff1660405180602001604052806000815250600061149d565b610d1d848484611132565b6001600160a01b0383163b15158015610d3f5750610d3d8484848461166a565b155b15610d5d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610d6b611043565b6109258282611756565b6060610d808261109d565b610d9d57604051630a14c4b560e41b815260040160405180910390fd5b6000600d8054610dac90611d28565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd890611d28565b8015610e255780601f10610dfa57610100808354040283529160200191610e25565b820191906000526020600020905b815481529060010190602001808311610e0857829003601f168201915b505050505090508051600003610ec557600c8054610e4290611d28565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6e90611d28565b8015610ebb5780601f10610e9057610100808354040283529160200191610ebb565b820191906000526020600020905b815481529060010190602001808311610e9e57829003601f168201915b5050505050610ef0565b80610ecf84611853565b604051602001610ee0929190611eda565b6040516020818303038152906040525b9392505050565b610eff611043565b600a805460ff60c01b198116600160c01b9182900460ff1615909102179055565b6001600160a01b038116600090815260076020526040812054600160401b900467ffffffffffffffff1661066a565b600d80546109cd90611d28565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b610f92611043565b6001600160a01b038116610ff75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b52565b6110008161144b565b50565b60006001600160e01b031982166380ac58cd60e01b148061103457506001600160e01b03198216635b5e139f60e01b145b8061066a575061066a82611954565b600a546001600160a01b0316331461099c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b52565b6000816001111580156110b1575060025482105b801561066a575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061113d82611322565b9050836001600160a01b031681600001516001600160a01b0316146111745760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061119257506111928533610f5c565b806111ad5750336111a28461071c565b6001600160a01b0316145b9050806111cd57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111f457604051633a954ecd60e21b815260040160405180910390fd5b611200600084876110d6565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166112d65760025482146112d6578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611352575060025481105b1561143257600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906114305780516001600160a01b0316156113c6579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561142b579392505050565b6113c6565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002546001600160a01b0385166114c657604051622e076360e81b815260040160405180910390fd5b836000036114e75760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561159457506001600160a01b0387163b15155b1561161c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115e5600088848060010195508861166a565b611602576040516368d2bf6b60e11b815260040160405180910390fd5b80820361159a57826002541461161757600080fd5b611661565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361161d575b5060025561131b565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061169f903390899088908890600401611f19565b6020604051808303816000875af19250505080156116da575060408051601f3d908101601f191682019092526116d791810190611f56565b60015b611738573d808015611708576040519150601f19603f3d011682016040523d82523d6000602084013e61170d565b606091505b508051600003611730576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6127106001600160601b03821611156117c45760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610b52565b6001600160a01b03821661181a5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b52565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b60608160000361187a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118a4578061188e81611f73565b915061189d9050600a83611eb3565b915061187e565b60008167ffffffffffffffff8111156118bf576118bf611bcb565b6040519080825280601f01601f1916602001820160405280156118e9576020820181803683370190505b5090505b841561174e576118fe600183611f8c565b915061190b600a86611f9f565b611916906030611ec7565b60f81b81838151811061192b5761192b611fb3565b60200101906001600160f81b031916908160001a90535061194d600a86611eb3565b94506118ed565b60006001600160e01b0319821663152a902d60e11b148061066a57506301ffc9a760e01b6001600160e01b031983161461066a565b6001600160e01b03198116811461100057600080fd5b6000602082840312156119b157600080fd5b8135610ef081611989565b60005b838110156119d75781810151838201526020016119bf565b50506000910152565b600081518084526119f88160208601602086016119bc565b601f01601f19169290920160200192915050565b602081526000610ef060208301846119e0565b60008060208385031215611a3257600080fd5b823567ffffffffffffffff80821115611a4a57600080fd5b818501915085601f830112611a5e57600080fd5b813581811115611a6d57600080fd5b866020828501011115611a7f57600080fd5b60209290920196919550909350505050565b600060208284031215611aa357600080fd5b5035919050565b80356001600160a01b0381168114611ac157600080fd5b919050565b60008060408385031215611ad957600080fd5b611ae283611aaa565b946020939093013593505050565b600080600060608486031215611b0557600080fd5b611b0e84611aaa565b9250611b1c60208501611aaa565b9150604084013590509250925092565b60008060408385031215611b3f57600080fd5b50508035926020909101359150565b600060208284031215611b6057600080fd5b813563ffffffff81168114610ef057600080fd5b600060208284031215611b8657600080fd5b610ef082611aaa565b60008060408385031215611ba257600080fd5b611bab83611aaa565b915060208301358015158114611bc057600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611bf757600080fd5b611c0085611aaa565b9350611c0e60208601611aaa565b925060408501359150606085013567ffffffffffffffff80821115611c3257600080fd5b818701915087601f830112611c4657600080fd5b813581811115611c5857611c58611bcb565b604051601f8201601f19908116603f01168101908382118183101715611c8057611c80611bcb565b816040528281528a6020848701011115611c9957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611cd057600080fd5b611cd983611aaa565b915060208301356001600160601b0381168114611bc057600080fd5b60008060408385031215611d0857600080fd5b611d1183611aaa565b9150611d1f60208401611aaa565b90509250929050565b600181811c90821680611d3c57607f821691505b602082108103611d5c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561071757600081815260208120601f850160051c81016020861015611d895750805b601f850160051c820191505b81811015611da857828155600101611d95565b505050505050565b67ffffffffffffffff831115611dc857611dc8611bcb565b611ddc83611dd68354611d28565b83611d62565b6000601f841160018114611e105760008515611df85750838201355b600019600387901b1c1916600186901b17835561131b565b600083815260209020601f19861690835b82811015611e415786850135825560209485019460019092019101611e21565b5086821015611e5e5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761066a5761066a611e70565b634e487b7160e01b600052601260045260246000fd5b600082611ec257611ec2611e9d565b500490565b8082018082111561066a5761066a611e70565b60008351611eec8184602088016119bc565b835190830190611f008183602088016119bc565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f4c908301846119e0565b9695505050505050565b600060208284031215611f6857600080fd5b8151610ef081611989565b600060018201611f8557611f85611e70565b5060010190565b8181038181111561066a5761066a611e70565b600082611fae57611fae611e9d565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122029b65918d53dfce84ae78094334947faaf360f1bde08e40ffa0f3a890ea79aea64736f6c63430008110033
Deployed Bytecode Sourcemap
50441:3420:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52325:349;;;;;;;;;;-1:-1:-1;52325:349:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;52325:349:0;;;;;;;;33046:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;53222:121::-;;;;;;;;;;-1:-1:-1;53222:121:0;;;;;:::i;:::-;;:::i;:::-;;34549:204;;;;;;;;;;-1:-1:-1;34549:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2294:32:1;;;2276:51;;2264:2;2249:18;34549:204:0;2130:203:1;34112:371:0;;;;;;;;;;-1:-1:-1;34112:371:0;;;;;:::i;:::-;;:::i;29182:303::-;;;;;;;;;;-1:-1:-1;29436:12:0;;29420:13;;:28;-1:-1:-1;;29420:46:0;29182:303;;;2921:25:1;;;2909:2;2894:18;29182:303:0;2775:177:1;50674:35:0;;;;;;;;;;;;;;;;35414:170;;;;;;;;;;-1:-1:-1;35414:170:0;;;;;:::i;:::-;;:::i;50584:32::-;;;;;;;;;;-1:-1:-1;50584:32:0;;;;-1:-1:-1;;;50584:32:0;;;;;;;;;3464:10:1;3452:23;;;3434:42;;3422:2;3407:18;50584:32:0;3290:192:1;22291:442:0;;;;;;;;;;-1:-1:-1;22291:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3932:32:1;;;3914:51;;3996:2;3981:18;;3974:34;;;;3887:18;22291:442:0;3740:274:1;50534:39:0;;;;;;;;;;;;50570:3;50534:39;;52963:123;;;;;;;;;;-1:-1:-1;52963:123:0;;;;;:::i;:::-;;:::i;35655:185::-;;;;;;;;;;-1:-1:-1;35655:185:0;;;;;:::i;:::-;;:::i;53747:111::-;;;;;;;;;;-1:-1:-1;53747:111:0;;;;;:::i;:::-;;:::i;32854:125::-;;;;;;;;;;-1:-1:-1;32854:125:0;;;;;:::i;:::-;;:::i;30302:206::-;;;;;;;;;;-1:-1:-1;30302:206:0;;;;;:::i;:::-;;:::i;49559:103::-;;;;;;;;;;;;;:::i;53361:117::-;;;;;;;;;;-1:-1:-1;53361:117:0;;;;;:::i;:::-;;:::i;48911:87::-;;;;;;;;;;-1:-1:-1;48984:6:0;;-1:-1:-1;;;;;48984:6:0;48911:87;;53492:85;;;;;;;;;;-1:-1:-1;53492:85:0;;;;;:::i;:::-;;:::i;50718:::-;;;;;;;;;;;;;:::i;33215:104::-;;;;;;;;;;;;;:::i;34825:287::-;;;;;;;;;;-1:-1:-1;34825:287:0;;;;;:::i;:::-;;:::i;52709:214::-;;;;;;:::i;:::-;;:::i;50625:36::-;;;;;;;;;;-1:-1:-1;50625:36:0;;;;-1:-1:-1;;;50625:36:0;;;;;;35911:369;;;;;;;;;;-1:-1:-1;35911:369:0;;;;;:::i;:::-;;:::i;53591:142::-;;;;;;;;;;-1:-1:-1;53591:142:0;;;;;:::i;:::-;;:::i;51657:420::-;;;;;;;;;;-1:-1:-1;51657:420:0;;;;;:::i;:::-;;:::i;53100:108::-;;;;;;;;;;;;;:::i;52200:113::-;;;;;;;;;;-1:-1:-1;52200:113:0;;;;;:::i;:::-;;:::i;50810:26::-;;;;;;;;;;;;;:::i;35183:164::-;;;;;;;;;;-1:-1:-1;35183:164:0;;;;;:::i;:::-;;:::i;49817:201::-;;;;;;;;;;-1:-1:-1;49817:201:0;;;;;:::i;:::-;;:::i;52325:349::-;52473:4;-1:-1:-1;;;;;;52515:41:0;;-1:-1:-1;;;52515:41:0;;:98;;-1:-1:-1;;;;;;;52573:40:0;;-1:-1:-1;;;52573:40:0;52515:98;:151;;;;52630:36;52654:11;52630:23;:36::i;:::-;52495:171;52325:349;-1:-1:-1;;52325:349:0:o;33046:100::-;33100:13;33133:5;33126:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33046:100;:::o;53222:121::-;48797:13;:11;:13::i;:::-;53307::::1;:28;53323:12:::0;;53307:13;:28:::1;:::i;:::-;;53222:121:::0;;:::o;34549:204::-;34617:7;34642:16;34650:7;34642;:16::i;:::-;34637:64;;34667:34;;-1:-1:-1;;;34667:34:0;;;;;;;;;;;34637:64;-1:-1:-1;34721:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34721:24:0;;34549:204::o;34112:371::-;34185:13;34201:24;34217:7;34201:15;:24::i;:::-;34185:40;;34246:5;-1:-1:-1;;;;;34240:11:0;:2;-1:-1:-1;;;;;34240:11:0;;34236:48;;34260:24;;-1:-1:-1;;;34260:24:0;;;;;;;;;;;34236:48;25547:10;-1:-1:-1;;;;;34301:21:0;;;;;;:63;;-1:-1:-1;34327:37:0;34344:5;25547:10;35183:164;:::i;34327:37::-;34326:38;34301:63;34297:138;;;34388:35;;-1:-1:-1;;;34388:35:0;;;;;;;;;;;34297:138;34447:28;34456:2;34460:7;34469:5;34447:8;:28::i;35414:170::-;35548:28;35558:4;35564:2;35568:7;35548:9;:28::i;22291:442::-;22388:7;22446:27;;;:17;:27;;;;;;;;22417:56;;;;;;;;;-1:-1:-1;;;;;22417:56:0;;;;;-1:-1:-1;;;22417:56:0;;;-1:-1:-1;;;;;22417:56:0;;;;;;;;22388:7;;22486:92;;-1:-1:-1;22537:29:0;;;;;;;;;-1:-1:-1;22537:29:0;-1:-1:-1;;;;;22537:29:0;;;;-1:-1:-1;;;22537:29:0;;-1:-1:-1;;;;;22537:29:0;;;;;22486:92;22628:23;;;;22590:21;;23099:5;;22615:36;;-1:-1:-1;;;;;22615:36:0;:10;:36;:::i;:::-;22614:58;;;;:::i;:::-;22693:16;;;;;-1:-1:-1;22291:442:0;;-1:-1:-1;;;;22291:442:0:o;52963:123::-;48797:13;:11;:13::i;:::-;53048:14:::1;:30:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;53048:30:0::1;-1:-1:-1::0;;;;53048:30:0;;::::1;::::0;;;::::1;::::0;;52963:123::o;35655:185::-;35793:39;35810:4;35816:2;35820:7;35793:39;;;;;;;;;;;;:16;:39::i;53747:111::-;48797:13;:11;:13::i;:::-;53807:43:::1;::::0;-1:-1:-1;;;;;53807:20:0;::::1;::::0;53828:21:::1;53807:43:::0;::::1;;;::::0;::::1;::::0;;;53828:21;53807:20;:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53747:111:::0;:::o;32854:125::-;32918:7;32945:21;32958:7;32945:12;:21::i;:::-;:26;;32854:125;-1:-1:-1;;32854:125:0:o;30302:206::-;30366:7;-1:-1:-1;;;;;30390:19:0;;30386:60;;30418:28;;-1:-1:-1;;;30418:28:0;;;;;;;;;;;30386:60;-1:-1:-1;;;;;;30472:19:0;;;;;:12;:19;;;;;:27;;;;30302:206::o;49559:103::-;48797:13;:11;:13::i;:::-;49624:30:::1;49651:1;49624:18;:30::i;:::-;49559:103::o:0;53361:117::-;48797:13;:11;:13::i;:::-;53444:12:::1;:26;53459:11:::0;;53444:12;:26:::1;:::i;53492:85::-:0;48797:13;:11;:13::i;:::-;53555:6:::1;:14:::0;53492:85::o;50718:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33215:104::-;33271:13;33304:7;33297:14;;;;;:::i;34825:287::-;25547:10;-1:-1:-1;;;;;34924:24:0;;;34920:54;;34957:17;;-1:-1:-1;;;34957:17:0;;;;;;;;;;;34920:54;25547:10;34987:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34987:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34987:53:0;;;;;;;;;;35056:48;;540:41:1;;;34987:42:0;;25547:10;35056:48;;513:18:1;35056:48:0;;;;;;;34825:287;;:::o;52709:214::-;52799:6;50570:3;51166:37;:23;;:14;29811:13;;-1:-1:-1;;29811:31:0;;29578:283;51166:14;:23;;;;:::i;:::-;:37;;51158:67;;;;-1:-1:-1;;;51158:67:0;;10091:2:1;51158:67:0;;;10073:21:1;10130:2;10110:18;;;10103:30;-1:-1:-1;;;10149:18:1;;;10142:47;10206:18;;51158:67:0;;;;;;;;;51329:17:::1;::::0;52833:6;;-1:-1:-1;;;51329:17:0;::::1;;;51321:53;;;::::0;-1:-1:-1;;;51321:53:0;;10437:2:1;51321:53:0::1;::::0;::::1;10419:21:1::0;10476:2;10456:18;;;10449:30;10515:25;10495:18;;;10488:53;10558:18;;51321:53:0::1;10235:347:1::0;51321:53:0::1;51425:6;51416:15;;:6;;:15;;;;:::i;:::-;51403:9;:28;51395:52;;;::::0;-1:-1:-1;;;51395:52:0;;10789:2:1;51395:52:0::1;::::0;::::1;10771:21:1::0;10828:2;10808:18;;;10801:30;-1:-1:-1;;;10847:18:1;;;10840:41;10898:18;;51395:52:0::1;10587:335:1::0;51395:52:0::1;51528:14;::::0;51504:10:::1;30651:7:::0;30686:19;;;:12;:19;;;;;:32;-1:-1:-1;;;51528:14:0;;::::1;;::::0;;::::1;::::0;51490:34:::1;::::0;;::::1;::::0;-1:-1:-1;;;30686:32:0;;;;51490:34:::1;:::i;:::-;:52;;51468:137;;;::::0;-1:-1:-1;;;51468:137:0;;11129:2:1;51468:137:0::1;::::0;::::1;11111:21:1::0;11168:2;11148:18;;;11141:30;11207:34;11187:18;;;11180:62;-1:-1:-1;;;11258:18:1;;;11251:33;11301:19;;51468:137:0::1;10927:399:1::0;51468:137:0::1;51019:9:::2;51032:10;51019:23;51011:61;;;::::0;-1:-1:-1;;;51011:61:0;;11533:2:1;51011:61:0::2;::::0;::::2;11515:21:1::0;11572:2;11552:18;;;11545:30;11611:27;11591:18;;;11584:55;11656:18;;51011:61:0::2;11331:349:1::0;51011:61:0::2;52879:36:::3;52885:10;52897:6;52879:36;;;;;;;;;;;;;::::0;52909:5:::3;52879;:36::i;35911:369::-:0;36078:28;36088:4;36094:2;36098:7;36078:9;:28::i;:::-;-1:-1:-1;;;;;36121:13:0;;4025:19;:23;;36121:76;;;;;36141:56;36172:4;36178:2;36182:7;36191:5;36141:30;:56::i;:::-;36140:57;36121:76;36117:156;;;36221:40;;-1:-1:-1;;;36221:40:0;;;;;;;;;;;36117:156;35911:369;;;;:::o;53591:142::-;48797:13;:11;:13::i;:::-;53683:42:::1;53702:8;53712:12;53683:18;:42::i;51657:420::-:0;51758:13;51794:16;51802:7;51794;:16::i;:::-;51789:59;;51819:29;;-1:-1:-1;;;51819:29:0;;;;;;;;;;;51789:59;51861:21;51885:12;51861:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51934:7;51928:21;51953:1;51928:26;:141;;52056:13;51928:141;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51998:7;52007:18;:7;:16;:18::i;:::-;51981:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51928:141;51908:161;51657:420;-1:-1:-1;;;51657:420:0:o;53100:108::-;48797:13;:11;:13::i;:::-;53183:17:::1;::::0;;-1:-1:-1;;;;53162:38:0;::::1;-1:-1:-1::0;;;53183:17:0;;;::::1;;;53182:18;53162:38:::0;;::::1;;::::0;;53100:108::o;52200:113::-;-1:-1:-1;;;;;30686:19:0;;52258:7;30686:19;;;:12;:19;;;;;:32;-1:-1:-1;;;30686:32:0;;;;52285:20;30590:137;50810:26;;;;;;;:::i;35183:164::-;-1:-1:-1;;;;;35304:25:0;;;35280:4;35304:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35183:164::o;49817:201::-;48797:13;:11;:13::i;:::-;-1:-1:-1;;;;;49906:22:0;::::1;49898:73;;;::::0;-1:-1:-1;;;49898:73:0;;12555:2:1;49898:73:0::1;::::0;::::1;12537:21:1::0;12594:2;12574:18;;;12567:30;12633:34;12613:18;;;12606:62;-1:-1:-1;;;12684:18:1;;;12677:36;12730:19;;49898:73:0::1;12353:402:1::0;49898:73:0::1;49982:28;50001:8;49982:18;:28::i;:::-;49817:201:::0;:::o;29933:305::-;30035:4;-1:-1:-1;;;;;;30072:40:0;;-1:-1:-1;;;30072:40:0;;:105;;-1:-1:-1;;;;;;;30129:48:0;;-1:-1:-1;;;30129:48:0;30072:105;:158;;;;30194:36;30218:11;30194:23;:36::i;49076:132::-;48984:6;;-1:-1:-1;;;;;48984:6:0;25547:10;49140:23;49132:68;;;;-1:-1:-1;;;49132:68:0;;12962:2:1;49132:68:0;;;12944:21:1;;;12981:18;;;12974:30;13040:34;13020:18;;;13013:62;13092:18;;49132:68:0;12760:356:1;36535:174:0;36592:4;36635:7;52177:1;36616:26;;:53;;;;;36656:13;;36646:7;:23;36616:53;:85;;;;-1:-1:-1;;36674:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36674:27:0;;;;36673:28;;36535:174::o;44692:196::-;44807:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44807:29:0;-1:-1:-1;;;;;44807:29:0;;;;;;;;;44852:28;;44807:24;;44852:28;;;;;;;44692:196;;;:::o;39635:2130::-;39750:35;39788:21;39801:7;39788:12;:21::i;:::-;39750:59;;39848:4;-1:-1:-1;;;;;39826:26:0;:13;:18;;;-1:-1:-1;;;;;39826:26:0;;39822:67;;39861:28;;-1:-1:-1;;;39861:28:0;;;;;;;;;;;39822:67;39902:22;25547:10;-1:-1:-1;;;;;39928:20:0;;;;:73;;-1:-1:-1;39965:36:0;39982:4;25547:10;35183:164;:::i;39965:36::-;39928:126;;;-1:-1:-1;25547:10:0;40018:20;40030:7;40018:11;:20::i;:::-;-1:-1:-1;;;;;40018:36:0;;39928:126;39902:153;;40073:17;40068:66;;40099:35;;-1:-1:-1;;;40099:35:0;;;;;;;;;;;40068:66;-1:-1:-1;;;;;40149:16:0;;40145:52;;40174:23;;-1:-1:-1;;;40174:23:0;;;;;;;;;;;40145:52;40318:35;40335:1;40339:7;40348:4;40318:8;:35::i;:::-;-1:-1:-1;;;;;40649:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40649:31:0;;;;;;;-1:-1:-1;;40649:31:0;;;;;;;40695:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40695:29:0;;;;;;;;;;;40775:20;;;:11;:20;;;;;;40810:18;;-1:-1:-1;;;;;;40843:49:0;;;;-1:-1:-1;;;40876:15:0;40843:49;;;;;;;;;;41166:11;;41226:24;;;;;41269:13;;40775:20;;41226:24;;41269:13;41265:384;;41479:13;;41464:11;:28;41460:174;;41517:20;;41586:28;;;;41560:54;;-1:-1:-1;;;41560:54:0;-1:-1:-1;;;;;;41560:54:0;;;-1:-1:-1;;;;;41517:20:0;;41560:54;;;;41460:174;40624:1036;;;41696:7;41692:2;-1:-1:-1;;;;;41677:27:0;41686:4;-1:-1:-1;;;;;41677:27:0;;;;;;;;;;;41715:42;39739:2026;;39635:2130;;;:::o;31683:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31794:7:0;;52177:1;31843:23;;:47;;;;;31877:13;;31870:4;:20;31843:47;31839:886;;;31911:31;31945:17;;;:11;:17;;;;;;;;;31911:51;;;;;;;;;-1:-1:-1;;;;;31911:51:0;;;;-1:-1:-1;;;31911:51:0;;;;;;;;;;;-1:-1:-1;;;31911:51:0;;;;;;;;;;;;;;31981:729;;32031:14;;-1:-1:-1;;;;;32031:28:0;;32027:101;;32095:9;31683:1109;-1:-1:-1;;;31683:1109:0:o;32027:101::-;-1:-1:-1;;;32470:6:0;32515:17;;;;:11;:17;;;;;;;;;32503:29;;;;;;;;;-1:-1:-1;;;;;32503:29:0;;;;;-1:-1:-1;;;32503:29:0;;;;;;;;;;;-1:-1:-1;;;32503:29:0;;;;;;;;;;;;;32563:28;32559:109;;32631:9;31683:1109;-1:-1:-1;;;31683:1109:0:o;32559:109::-;32430:261;;;31892:833;31839:886;32753:31;;-1:-1:-1;;;32753:31:0;;;;;;;;;;;50178:191;50271:6;;;-1:-1:-1;;;;;50288:17:0;;;-1:-1:-1;;;;;;50288:17:0;;;;;;;50321:40;;50271:6;;;50288:17;50271:6;;50321:40;;50252:16;;50321:40;50241:128;50178:191;:::o;37606:1775::-;37768:13;;-1:-1:-1;;;;;37796:16:0;;37792:48;;37821:19;;-1:-1:-1;;;37821:19:0;;;;;;;;;;;37792:48;37855:8;37867:1;37855:13;37851:44;;37877:18;;-1:-1:-1;;;37877:18:0;;;;;;;;;;;37851:44;-1:-1:-1;;;;;38246:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38305:49:0;;38246:44;;;;;;;;38305:49;;;-1:-1:-1;;;;;38246:44:0;;;;;;38305:49;;;;;;;;;;;;;;;;38371:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38421:66:0;;;;-1:-1:-1;;;38471:15:0;38421:66;;;;;;;;;;38371:25;38568:23;;;38612:4;:23;;;;-1:-1:-1;;;;;;38620:13:0;;4025:19;:23;;38620:15;38608:641;;;38656:314;38687:38;;38712:12;;-1:-1:-1;;;;;38687:38:0;;;38704:1;;38687:38;;38704:1;;38687:38;38753:69;38792:1;38796:2;38800:14;;;;;;38816:5;38753:30;:69::i;:::-;38748:174;;38858:40;;-1:-1:-1;;;38858:40:0;;;;;;;;;;;38748:174;38965:3;38949:12;:19;38656:314;;39051:12;39034:13;;:29;39030:43;;39065:8;;;39030:43;38608:641;;;39114:120;39145:40;;39170:14;;;;;-1:-1:-1;;;;;39145:40:0;;;39162:1;;39145:40;;39162:1;;39145:40;39229:3;39213:12;:19;39114:120;;38608:641;-1:-1:-1;39263:13:0;:28;39313:60;35911:369;45380:667;45564:72;;-1:-1:-1;;;45564:72:0;;45543:4;;-1:-1:-1;;;;;45564:36:0;;;;;:72;;25547:10;;45615:4;;45621:7;;45630:5;;45564:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45564:72:0;;;;;;;;-1:-1:-1;;45564:72:0;;;;;;;;;;;;:::i;:::-;;;45560:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45798:6;:13;45815:1;45798:18;45794:235;;45844:40;;-1:-1:-1;;;45844:40:0;;;;;;;;;;;45794:235;45987:6;45981:13;45972:6;45968:2;45964:15;45957:38;45560:480;-1:-1:-1;;;;;;45683:55:0;-1:-1:-1;;;45683:55:0;;-1:-1:-1;45560:480:0;45380:667;;;;;;:::o;23383:332::-;23099:5;-1:-1:-1;;;;;23486:33:0;;;;23478:88;;;;-1:-1:-1;;;23478:88:0;;14071:2:1;23478:88:0;;;14053:21:1;14110:2;14090:18;;;14083:30;14149:34;14129:18;;;14122:62;-1:-1:-1;;;14200:18:1;;;14193:40;14250:19;;23478:88:0;13869:406:1;23478:88:0;-1:-1:-1;;;;;23585:22:0;;23577:60;;;;-1:-1:-1;;;23577:60:0;;14482:2:1;23577:60:0;;;14464:21:1;14521:2;14501:18;;;14494:30;14560:27;14540:18;;;14533:55;14605:18;;23577:60:0;14280:349:1;23577:60:0;23672:35;;;;;;;;;-1:-1:-1;;;;;23672:35:0;;;;;;-1:-1:-1;;;;;23672:35:0;;;;;;;;;;-1:-1:-1;;;23650:57:0;;;;-1:-1:-1;23650:57:0;23383:332::o;430:723::-;486:13;707:5;716:1;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;22021:215;22123:4;-1:-1:-1;;;;;;22147:41:0;;-1:-1:-1;;;22147:41:0;;:81;;-1:-1:-1;;;;;;;;;;19682:40:0;;;22192:36;19573:157;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:592::-;1419:6;1427;1480:2;1468:9;1459:7;1455:23;1451:32;1448:52;;;1496:1;1493;1486:12;1448:52;1536:9;1523:23;1565:18;1606:2;1598:6;1595:14;1592:34;;;1622:1;1619;1612:12;1592:34;1660:6;1649:9;1645:22;1635:32;;1705:7;1698:4;1694:2;1690:13;1686:27;1676:55;;1727:1;1724;1717:12;1676:55;1767:2;1754:16;1793:2;1785:6;1782:14;1779:34;;;1809:1;1806;1799:12;1779:34;1854:7;1849:2;1840:6;1836:2;1832:15;1828:24;1825:37;1822:57;;;1875:1;1872;1865:12;1822:57;1906:2;1898:11;;;;;1928:6;;-1:-1:-1;1348:592:1;;-1:-1:-1;;;;1348:592:1:o;1945:180::-;2004:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:52;;;2073:1;2070;2063:12;2025:52;-1:-1:-1;2096:23:1;;1945:180;-1:-1:-1;1945:180:1:o;2338:173::-;2406:20;;-1:-1:-1;;;;;2455:31:1;;2445:42;;2435:70;;2501:1;2498;2491:12;2435:70;2338:173;;;:::o;2516:254::-;2584:6;2592;2645:2;2633:9;2624:7;2620:23;2616:32;2613:52;;;2661:1;2658;2651:12;2613:52;2684:29;2703:9;2684:29;:::i;:::-;2674:39;2760:2;2745:18;;;;2732:32;;-1:-1:-1;;;2516:254:1:o;2957:328::-;3034:6;3042;3050;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3142:29;3161:9;3142:29;:::i;:::-;3132:39;;3190:38;3224:2;3213:9;3209:18;3190:38;:::i;:::-;3180:48;;3275:2;3264:9;3260:18;3247:32;3237:42;;2957:328;;;;;:::o;3487:248::-;3555:6;3563;3616:2;3604:9;3595:7;3591:23;3587:32;3584:52;;;3632:1;3629;3622:12;3584:52;-1:-1:-1;;3655:23:1;;;3725:2;3710:18;;;3697:32;;-1:-1:-1;3487:248:1:o;4019:276::-;4077:6;4130:2;4118:9;4109:7;4105:23;4101:32;4098:52;;;4146:1;4143;4136:12;4098:52;4185:9;4172:23;4235:10;4228:5;4224:22;4217:5;4214:33;4204:61;;4261:1;4258;4251:12;4300:186;4359:6;4412:2;4400:9;4391:7;4387:23;4383:32;4380:52;;;4428:1;4425;4418:12;4380:52;4451:29;4470:9;4451:29;:::i;4491:347::-;4556:6;4564;4617:2;4605:9;4596:7;4592:23;4588:32;4585:52;;;4633:1;4630;4623:12;4585:52;4656:29;4675:9;4656:29;:::i;:::-;4646:39;;4735:2;4724:9;4720:18;4707:32;4782:5;4775:13;4768:21;4761:5;4758:32;4748:60;;4804:1;4801;4794:12;4748:60;4827:5;4817:15;;;4491:347;;;;;:::o;4843:127::-;4904:10;4899:3;4895:20;4892:1;4885:31;4935:4;4932:1;4925:15;4959:4;4956:1;4949:15;4975:1138;5070:6;5078;5086;5094;5147:3;5135:9;5126:7;5122:23;5118:33;5115:53;;;5164:1;5161;5154:12;5115:53;5187:29;5206:9;5187:29;:::i;:::-;5177:39;;5235:38;5269:2;5258:9;5254:18;5235:38;:::i;:::-;5225:48;;5320:2;5309:9;5305:18;5292:32;5282:42;;5375:2;5364:9;5360:18;5347:32;5398:18;5439:2;5431:6;5428:14;5425:34;;;5455:1;5452;5445:12;5425:34;5493:6;5482:9;5478:22;5468:32;;5538:7;5531:4;5527:2;5523:13;5519:27;5509:55;;5560:1;5557;5550:12;5509:55;5596:2;5583:16;5618:2;5614;5611:10;5608:36;;;5624:18;;:::i;:::-;5699:2;5693:9;5667:2;5753:13;;-1:-1:-1;;5749:22:1;;;5773:2;5745:31;5741:40;5729:53;;;5797:18;;;5817:22;;;5794:46;5791:72;;;5843:18;;:::i;:::-;5883:10;5879:2;5872:22;5918:2;5910:6;5903:18;5958:7;5953:2;5948;5944;5940:11;5936:20;5933:33;5930:53;;;5979:1;5976;5969:12;5930:53;6035:2;6030;6026;6022:11;6017:2;6009:6;6005:15;5992:46;6080:1;6075:2;6070;6062:6;6058:15;6054:24;6047:35;6101:6;6091:16;;;;;;;4975:1138;;;;;;;:::o;6118:366::-;6185:6;6193;6246:2;6234:9;6225:7;6221:23;6217:32;6214:52;;;6262:1;6259;6252:12;6214:52;6285:29;6304:9;6285:29;:::i;:::-;6275:39;;6364:2;6353:9;6349:18;6336:32;-1:-1:-1;;;;;6401:5:1;6397:38;6390:5;6387:49;6377:77;;6450:1;6447;6440:12;6489:260;6557:6;6565;6618:2;6606:9;6597:7;6593:23;6589:32;6586:52;;;6634:1;6631;6624:12;6586:52;6657:29;6676:9;6657:29;:::i;:::-;6647:39;;6705:38;6739:2;6728:9;6724:18;6705:38;:::i;:::-;6695:48;;6489:260;;;;;:::o;6754:380::-;6833:1;6829:12;;;;6876;;;6897:61;;6951:4;6943:6;6939:17;6929:27;;6897:61;7004:2;6996:6;6993:14;6973:18;6970:38;6967:161;;7050:10;7045:3;7041:20;7038:1;7031:31;7085:4;7082:1;7075:15;7113:4;7110:1;7103:15;6967:161;;6754:380;;;:::o;7265:545::-;7367:2;7362:3;7359:11;7356:448;;;7403:1;7428:5;7424:2;7417:17;7473:4;7469:2;7459:19;7543:2;7531:10;7527:19;7524:1;7520:27;7514:4;7510:38;7579:4;7567:10;7564:20;7561:47;;;-1:-1:-1;7602:4:1;7561:47;7657:2;7652:3;7648:12;7645:1;7641:20;7635:4;7631:31;7621:41;;7712:82;7730:2;7723:5;7720:13;7712:82;;;7775:17;;;7756:1;7745:13;7712:82;;;7716:3;;;7265:545;;;:::o;7986:1206::-;8110:18;8105:3;8102:27;8099:53;;;8132:18;;:::i;:::-;8161:94;8251:3;8211:38;8243:4;8237:11;8211:38;:::i;:::-;8205:4;8161:94;:::i;:::-;8281:1;8306:2;8301:3;8298:11;8323:1;8318:616;;;;8978:1;8995:3;8992:93;;;-1:-1:-1;9051:19:1;;;9038:33;8992:93;-1:-1:-1;;7943:1:1;7939:11;;;7935:24;7931:29;7921:40;7967:1;7963:11;;;7918:57;9098:78;;8291:895;;8318:616;7212:1;7205:14;;;7249:4;7236:18;;-1:-1:-1;;8354:17:1;;;8455:9;8477:229;8491:7;8488:1;8485:14;8477:229;;;8580:19;;;8567:33;8552:49;;8687:4;8672:20;;;;8640:1;8628:14;;;;8507:12;8477:229;;;8481:3;8734;8725:7;8722:16;8719:159;;;8858:1;8854:6;8848:3;8842;8839:1;8835:11;8831:21;8827:34;8823:39;8810:9;8805:3;8801:19;8788:33;8784:79;8776:6;8769:95;8719:159;;;8921:1;8915:3;8912:1;8908:11;8904:19;8898:4;8891:33;8291:895;;7986:1206;;;:::o;9197:127::-;9258:10;9253:3;9249:20;9246:1;9239:31;9289:4;9286:1;9279:15;9313:4;9310:1;9303:15;9329:168;9402:9;;;9433;;9450:15;;;9444:22;;9430:37;9420:71;;9471:18;;:::i;9502:127::-;9563:10;9558:3;9554:20;9551:1;9544:31;9594:4;9591:1;9584:15;9618:4;9615:1;9608:15;9634:120;9674:1;9700;9690:35;;9705:18;;:::i;:::-;-1:-1:-1;9739:9:1;;9634:120::o;9759:125::-;9824:9;;;9845:10;;;9842:36;;;9858:18;;:::i;11685:663::-;11965:3;12003:6;11997:13;12019:66;12078:6;12073:3;12066:4;12058:6;12054:17;12019:66;:::i;:::-;12148:13;;12107:16;;;;12170:70;12148:13;12107:16;12217:4;12205:17;;12170:70;:::i;:::-;-1:-1:-1;;;12262:20:1;;12291:22;;;12340:1;12329:13;;11685:663;-1:-1:-1;;;;11685:663:1:o;13121:489::-;-1:-1:-1;;;;;13390:15:1;;;13372:34;;13442:15;;13437:2;13422:18;;13415:43;13489:2;13474:18;;13467:34;;;13537:3;13532:2;13517:18;;13510:31;;;13315:4;;13558:46;;13584:19;;13576:6;13558:46;:::i;:::-;13550:54;13121:489;-1:-1:-1;;;;;;13121:489:1:o;13615:249::-;13684:6;13737:2;13725:9;13716:7;13712:23;13708:32;13705:52;;;13753:1;13750;13743:12;13705:52;13785:9;13779:16;13804:30;13828:5;13804:30;:::i;14634:135::-;14673:3;14694:17;;;14691:43;;14714:18;;:::i;:::-;-1:-1:-1;14761:1:1;14750:13;;14634:135::o;14774:128::-;14841:9;;;14862:11;;;14859:37;;;14876:18;;:::i;14907:112::-;14939:1;14965;14955:35;;14970:18;;:::i;:::-;-1:-1:-1;15004:9:1;;14907:112::o;15024:127::-;15085:10;15080:3;15076:20;15073:1;15066:31;15116:4;15113:1;15106:15;15140:4;15137:1;15130:15
Swarm Source
ipfs://29b65918d53dfce84ae78094334947faaf360f1bde08e40ffa0f3a890ea79aea
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.