ERC-721
Overview
Max Total Supply
1,000 STH
Holders
442
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 STHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Something
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-09 */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/interfaces/[email protected] // 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/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/common/[email protected] // OpenZeppelin Contracts (last updated v4.6.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: * * - `tokenId` must be already minted. * - `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/token/ERC721/[email protected] // OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File contracts/interfaces/IERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // 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; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/[email protected] // 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/[email protected] // OpenZeppelin Contracts (last updated v4.5.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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File contracts/ERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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, IERC721A { using Address for address; using Strings for uint256; // 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 override 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) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if (!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()) if (!_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; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { 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 (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 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) 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; 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 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 contracts/Something.sol pragma solidity 0.8.9; /* * ___ __ * )_ _ _ ) \ X / o _)_ ( _ (_ ` _ _ _ _ _)_ ( _ o _ _ * (__ ) ) (_( \/ \/ ( (_ ) ) .__) (_) ) ) ) )_) (_ ) ) ( ) ) (_( * (_ _) * --------------------------------------------- * | We end with SOMETHING when AI meets NOTHING * | Website: https://endwithsomething.xyz * | Twitter: https://twitter.com/EndWithSth * | Opensea: https://opensea.io/collection/end-with-something */ contract Something is Ownable, ERC721A, ERC2981 { uint256 public constant mintingPrice = 3 * 10**15; uint64 public constant mintingCapPerTx = 2; uint64 public constant freeMintingCapPerAddress = 1; uint64 public constant maxSupply = 1000; uint64 public freeQuota = 0; string public baseURI; bool public mintingActive = false; mapping(address => uint256) private addressToFreeMinted; constructor(uint64 initialFreeQuota) ERC721A("Something", "STH") { freeQuota = initialFreeQuota; _setDefaultRoyalty(msg.sender, 500); } function mint(uint256 amount) external payable { require(msg.sender == tx.origin, "EOA only"); require(mintingActive, "minting inactive"); require(amount > 0, "amount = 0"); require(amount <= mintingCapPerTx, "exceed mintingCapPerTx"); require(_totalMinted() + amount <= maxSupply, "exceed maxSupply"); uint256 totalCost = 0; uint256 freeMintedAmount = 0; uint256 prevMintedTotal = _totalMinted(); uint256 newMintedTotal = prevMintedTotal + amount; if (newMintedTotal > freeQuota) { if (prevMintedTotal < freeQuota) { // partial free minting freeMintedAmount = freeQuota - prevMintedTotal; totalCost += mintingPrice * (newMintedTotal - freeQuota); } else { // paid minting totalCost += mintingPrice * (newMintedTotal - prevMintedTotal); } } else { // free minting freeMintedAmount = amount; } // ensure payment is sufficient require(msg.value >= totalCost, "insufficient payment"); // ensure free-minting cap is not hit if (freeMintedAmount > 0) { uint256 freeMintedUpdated = addressToFreeMinted[msg.sender] + freeMintedAmount; require( freeMintedUpdated <= freeMintingCapPerAddress, "exceed freeMintingCapPerAddress" ); addressToFreeMinted[msg.sender] = freeMintedUpdated; } _safeMint(msg.sender, amount); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; if (balance > 0) { payable(msg.sender).transfer(balance); } } function enableMinting() external onlyOwner { require(!mintingActive, "minting enabled already"); mintingActive = true; } function disableMinting() external onlyOwner { require(mintingActive, "minting disabled already"); mintingActive = false; } function setFreeQuota(uint64 newFreeQuota) external onlyOwner { require(newFreeQuota <= maxSupply, "freeQuota > maxSupply"); uint256 minted = _totalMinted(); // ensure nobody ever pays to protect fairness require(minted <= freeQuota, "minted > freeQuota"); require(minted <= newFreeQuota, "minted > newFreeQuota"); freeQuota = newFreeQuota; } function setBaseURI(string memory newBaseURI) external onlyOwner { baseURI = newBaseURI; } function totalMinted() external view returns (uint256) { return _totalMinted(); } function getTotalFreeMintedByUser(address user) external view returns (uint256) { return addressToFreeMinted[user]; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } function _baseURI() internal view override returns (string memory) { return baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint64","name":"initialFreeQuota","type":"uint64"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintingCapPerAddress","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeQuota","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getTotalFreeMintedByUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingCapPerTx","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"newFreeQuota","type":"uint64"}],"name":"setFreeQuota","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":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600b80546001600160401b0319169055600d805460ff191690553480156200002b57600080fd5b5060405162002354380380620023548339810160408190526200004e9162000308565b60405180604001604052806009815260200168536f6d657468696e6760b81b815250604051806040016040528060038152602001620a6a8960eb1b815250620000a6620000a06200010960201b60201c565b6200010d565b8151620000bb90600390602085019062000262565b508051620000d190600490602084019062000262565b5060006001555050600b80546001600160401b0319166001600160401b03831617905562000102336101f46200015d565b5062000377565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6127106001600160601b0382161115620001d15760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620002295760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001c8565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b82805462000270906200033a565b90600052602060002090601f016020900481019282620002945760008555620002df565b82601f10620002af57805160ff1916838001178555620002df565b82800160010185558215620002df579182015b82811115620002df578251825591602001919060010190620002c2565b50620002ed929150620002f1565b5090565b5b80821115620002ed5760008155600101620002f2565b6000602082840312156200031b57600080fd5b81516001600160401b03811681146200033357600080fd5b9392505050565b600181811c908216806200034f57607f821691505b602082108114156200037157634e487b7160e01b600052602260045260246000fd5b50919050565b611fcd80620003876000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610582578063d5abeb01146105a2578063e797ec1b146105b8578063e985e9c5146105cd578063f2fde38b1461061657600080fd5b8063a22cb4651461050d578063a2309ff81461052d578063a2b9af3914610542578063b88d4fde1461056257600080fd5b806382fecdf8116100dc57806382fecdf8146104b25780638da5cb5b146104c757806395d89b41146104e5578063a0712d68146104fa57600080fd5b806370a0823114610453578063715018a6146104735780637e5cd5c11461048857806381f1b3781461049d57600080fd5b806335db70b5116101855780634988df93116101545780634988df93146103c657806355f804b3146103fe5780636352211e1461041e5780636c0360eb1461043e57600080fd5b806335db70b5146103405780633ccfd60b1461035b57806342842e0e14610370578063464790321461039057600080fd5b806318160ddd116101c157806318160ddd146102a457806323b872dd146102c75780632a55205a146102e757806331f9c9191461032657600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611a85565b610636565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610647565b60405161021f9190611afa565b34801561025657600080fd5b5061026a610265366004611b0d565b6106d9565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611b42565b61071d565b005b3480156102b057600080fd5b50600254600154035b60405190815260200161021f565b3480156102d357600080fd5b506102a26102e2366004611b6c565b6107a4565b3480156102f357600080fd5b50610307610302366004611ba8565b6107af565b604080516001600160a01b03909316835260208301919091520161021f565b34801561033257600080fd5b50600d546102139060ff1681565b34801561034c57600080fd5b506102b9660aa87bee53800081565b34801561036757600080fd5b506102a261085b565b34801561037c57600080fd5b506102a261038b366004611b6c565b6108c7565b34801561039c57600080fd5b506102b96103ab366004611bca565b6001600160a01b03166000908152600e602052604090205490565b3480156103d257600080fd5b50600b546103e6906001600160401b031681565b6040516001600160401b03909116815260200161021f565b34801561040a57600080fd5b506102a2610419366004611c70565b6108e2565b34801561042a57600080fd5b5061026a610439366004611b0d565b61091f565b34801561044a57600080fd5b5061023d610931565b34801561045f57600080fd5b506102b961046e366004611bca565b6109bf565b34801561047f57600080fd5b506102a2610a0d565b34801561049457600080fd5b506102a2610a43565b3480156104a957600080fd5b506103e6600181565b3480156104be57600080fd5b506103e6600281565b3480156104d357600080fd5b506000546001600160a01b031661026a565b3480156104f157600080fd5b5061023d610acb565b6102a2610508366004611b0d565b610ada565b34801561051957600080fd5b506102a2610528366004611cb8565b610dba565b34801561053957600080fd5b506102b9610e50565b34801561054e57600080fd5b506102a261055d366004611cf4565b610e60565b34801561056e57600080fd5b506102a261057d366004611d1d565b610fb0565b34801561058e57600080fd5b5061023d61059d366004611b0d565b610ffa565b3480156105ae57600080fd5b506103e66103e881565b3480156105c457600080fd5b506102a261107f565b3480156105d957600080fd5b506102136105e8366004611d98565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561062257600080fd5b506102a2610631366004611bca565b61110b565b6000610641826111a3565b92915050565b60606003805461065690611dcb565b80601f016020809104026020016040519081016040528092919081815260200182805461068290611dcb565b80156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050905090565b60006106e4826111c8565b610701576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006107288261091f565b9050806001600160a01b0316836001600160a01b0316141561075d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107945761077781336105e8565b610794576040516367d9dca160e11b815260040160405180910390fd5b61079f8383836111f4565b505050565b61079f838383611250565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916108245750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610843906001600160601b031687611e1c565b61084d9190611e51565b915196919550909350505050565b6000546001600160a01b0316331461088e5760405162461bcd60e51b815260040161088590611e65565b60405180910390fd5b4780156108c457604051339082156108fc029083906000818181858888f193505050501580156108c2573d6000803e3d6000fd5b505b50565b61079f83838360405180602001604052806000815250610fb0565b6000546001600160a01b0316331461090c5760405162461bcd60e51b815260040161088590611e65565b80516108c290600c9060208401906119d6565b600061092a8261143b565b5192915050565b600c805461093e90611dcb565b80601f016020809104026020016040519081016040528092919081815260200182805461096a90611dcb565b80156109b75780601f1061098c576101008083540402835291602001916109b7565b820191906000526020600020905b81548152906001019060200180831161099a57829003601f168201915b505050505081565b60006001600160a01b0382166109e8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610a375760405162461bcd60e51b815260040161088590611e65565b610a416000611555565b565b6000546001600160a01b03163314610a6d5760405162461bcd60e51b815260040161088590611e65565b600d5460ff16610abf5760405162461bcd60e51b815260206004820152601860248201527f6d696e74696e672064697361626c656420616c726561647900000000000000006044820152606401610885565b600d805460ff19169055565b60606004805461065690611dcb565b333214610b145760405162461bcd60e51b8152602060048201526008602482015267454f41206f6e6c7960c01b6044820152606401610885565b600d5460ff16610b595760405162461bcd60e51b815260206004820152601060248201526f6d696e74696e6720696e61637469766560801b6044820152606401610885565b60008111610b965760405162461bcd60e51b815260206004820152600a6024820152690616d6f756e74203d20360b41b6044820152606401610885565b6002811115610be05760405162461bcd60e51b81526020600482015260166024820152750caf0c6cacac840dad2dce8d2dcce86c2e0a0cae4a8f60531b6044820152606401610885565b6103e881610bed60015490565b610bf79190611e9a565b1115610c385760405162461bcd60e51b815260206004820152601060248201526f657863656564206d6178537570706c7960801b6044820152606401610885565b6000806000610c4660015490565b90506000610c548583611e9a565b600b549091506001600160401b0316811115610cd957600b546001600160401b0316821015610ccf57600b54610c949083906001600160401b0316611eb2565b600b54909350610cad906001600160401b031682611eb2565b610cbe90660aa87bee538000611e1c565b610cc89085611e9a565b9350610cdd565b610cad8282611eb2565b8492505b83341015610d245760405162461bcd60e51b81526020600482015260146024820152731a5b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610885565b8215610da957336000908152600e6020526040812054610d45908590611e9a565b90506001811115610d985760405162461bcd60e51b815260206004820152601f60248201527f65786365656420667265654d696e74696e6743617050657241646472657373006044820152606401610885565b336000908152600e60205260409020555b610db333866115a5565b5050505050565b6001600160a01b038216331415610de45760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610e5b60015490565b905090565b6000546001600160a01b03163314610e8a5760405162461bcd60e51b815260040161088590611e65565b6103e86001600160401b0382161115610edd5760405162461bcd60e51b81526020600482015260156024820152746672656551756f7461203e206d6178537570706c7960581b6044820152606401610885565b6000610ee860015490565b600b549091506001600160401b0316811115610f3b5760405162461bcd60e51b81526020600482015260126024820152716d696e746564203e206672656551756f746160701b6044820152606401610885565b816001600160401b0316811115610f8c5760405162461bcd60e51b81526020600482015260156024820152746d696e746564203e206e65774672656551756f746160581b6044820152606401610885565b50600b805467ffffffffffffffff19166001600160401b0392909216919091179055565b610fbb848484611250565b6001600160a01b0383163b15610ff457610fd7848484846115bf565b610ff4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611005826111c8565b61102257604051630a14c4b560e41b815260040160405180910390fd5b600061102c6116b7565b905080516000141561104d5760405180602001604052806000815250611078565b80611057846116c6565b604051602001611068929190611ec9565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146110a95760405162461bcd60e51b815260040161088590611e65565b600d5460ff16156110fc5760405162461bcd60e51b815260206004820152601760248201527f6d696e74696e6720656e61626c656420616c72656164790000000000000000006044820152606401610885565b600d805460ff19166001179055565b6000546001600160a01b031633146111355760405162461bcd60e51b815260040161088590611e65565b6001600160a01b03811661119a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610885565b6108c481611555565b60006001600160e01b0319821663152a902d60e11b14806106415750610641826117c3565b600060015482108015610641575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061125b8261143b565b9050836001600160a01b031681600001516001600160a01b0316146112925760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112b057506112b085336105e8565b806112cb5750336112c0846106d9565b6001600160a01b0316145b9050806112eb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661131257604051633a954ecd60e21b815260040160405180910390fd5b61131e600084876111f4565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166113f25760015482146113f257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610db3565b60408051606081018252600080825260208201819052918101919091528160015481101561153c57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061153a5780516001600160a01b0316156114d1579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611535579392505050565b6114d1565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108c2828260405180602001604052806000815250611813565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115f4903390899088908890600401611ef8565b602060405180830381600087803b15801561160e57600080fd5b505af192505050801561163e575060408051601f3d908101601f1916820190925261163b91810190611f35565b60015b611699573d80801561166c576040519150601f19603f3d011682016040523d82523d6000602084013e611671565b606091505b508051611691576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461065690611dcb565b6060816116ea5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171457806116fe81611f52565b915061170d9050600a83611e51565b91506116ee565b6000816001600160401b0381111561172e5761172e611be5565b6040519080825280601f01601f191660200182016040528015611758576020820181803683370190505b5090505b84156116af5761176d600183611eb2565b915061177a600a86611f6d565b611785906030611e9a565b60f81b81838151811061179a5761179a611f81565b60200101906001600160f81b031916908160001a9053506117bc600a86611e51565b945061175c565b60006001600160e01b031982166380ac58cd60e01b14806117f457506001600160e01b03198216635b5e139f60e01b145b8061064157506301ffc9a760e01b6001600160e01b0319831614610641565b6001546001600160a01b03841661183c57604051622e076360e81b815260040160405180910390fd5b8261185a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611982575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461194b60008784806001019550876115bf565b611968576040516368d2bf6b60e11b815260040160405180910390fd5b80821061190057826001541461197d57600080fd5b6119c7565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611983575b50600155610ff4600085838684565b8280546119e290611dcb565b90600052602060002090601f016020900481019282611a045760008555611a4a565b82601f10611a1d57805160ff1916838001178555611a4a565b82800160010185558215611a4a579182015b82811115611a4a578251825591602001919060010190611a2f565b50611a56929150611a5a565b5090565b5b80821115611a565760008155600101611a5b565b6001600160e01b0319811681146108c457600080fd5b600060208284031215611a9757600080fd5b813561107881611a6f565b60005b83811015611abd578181015183820152602001611aa5565b83811115610ff45750506000910152565b60008151808452611ae6816020860160208601611aa2565b601f01601f19169290920160200192915050565b6020815260006110786020830184611ace565b600060208284031215611b1f57600080fd5b5035919050565b80356001600160a01b0381168114611b3d57600080fd5b919050565b60008060408385031215611b5557600080fd5b611b5e83611b26565b946020939093013593505050565b600080600060608486031215611b8157600080fd5b611b8a84611b26565b9250611b9860208501611b26565b9150604084013590509250925092565b60008060408385031215611bbb57600080fd5b50508035926020909101359150565b600060208284031215611bdc57600080fd5b61107882611b26565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611c1557611c15611be5565b604051601f8501601f19908116603f01168101908282118183101715611c3d57611c3d611be5565b81604052809350858152868686011115611c5657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c8257600080fd5b81356001600160401b03811115611c9857600080fd5b8201601f81018413611ca957600080fd5b6116af84823560208401611bfb565b60008060408385031215611ccb57600080fd5b611cd483611b26565b915060208301358015158114611ce957600080fd5b809150509250929050565b600060208284031215611d0657600080fd5b81356001600160401b038116811461107857600080fd5b60008060008060808587031215611d3357600080fd5b611d3c85611b26565b9350611d4a60208601611b26565b92506040850135915060608501356001600160401b03811115611d6c57600080fd5b8501601f81018713611d7d57600080fd5b611d8c87823560208401611bfb565b91505092959194509250565b60008060408385031215611dab57600080fd5b611db483611b26565b9150611dc260208401611b26565b90509250929050565b600181811c90821680611ddf57607f821691505b60208210811415611e0057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611e3657611e36611e06565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e6057611e60611e3b565b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ead57611ead611e06565b500190565b600082821015611ec457611ec4611e06565b500390565b60008351611edb818460208801611aa2565b835190830190611eef818360208801611aa2565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f2b90830184611ace565b9695505050505050565b600060208284031215611f4757600080fd5b815161107881611a6f565b6000600019821415611f6657611f66611e06565b5060010190565b600082611f7c57611f7c611e3b565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220647a08b64f15c51db26c1cd34d75a76de1c9984373c18a2e84e5912faf9dbd7864736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000c8
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610582578063d5abeb01146105a2578063e797ec1b146105b8578063e985e9c5146105cd578063f2fde38b1461061657600080fd5b8063a22cb4651461050d578063a2309ff81461052d578063a2b9af3914610542578063b88d4fde1461056257600080fd5b806382fecdf8116100dc57806382fecdf8146104b25780638da5cb5b146104c757806395d89b41146104e5578063a0712d68146104fa57600080fd5b806370a0823114610453578063715018a6146104735780637e5cd5c11461048857806381f1b3781461049d57600080fd5b806335db70b5116101855780634988df93116101545780634988df93146103c657806355f804b3146103fe5780636352211e1461041e5780636c0360eb1461043e57600080fd5b806335db70b5146103405780633ccfd60b1461035b57806342842e0e14610370578063464790321461039057600080fd5b806318160ddd116101c157806318160ddd146102a457806323b872dd146102c75780632a55205a146102e757806331f9c9191461032657600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611a85565b610636565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610647565b60405161021f9190611afa565b34801561025657600080fd5b5061026a610265366004611b0d565b6106d9565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611b42565b61071d565b005b3480156102b057600080fd5b50600254600154035b60405190815260200161021f565b3480156102d357600080fd5b506102a26102e2366004611b6c565b6107a4565b3480156102f357600080fd5b50610307610302366004611ba8565b6107af565b604080516001600160a01b03909316835260208301919091520161021f565b34801561033257600080fd5b50600d546102139060ff1681565b34801561034c57600080fd5b506102b9660aa87bee53800081565b34801561036757600080fd5b506102a261085b565b34801561037c57600080fd5b506102a261038b366004611b6c565b6108c7565b34801561039c57600080fd5b506102b96103ab366004611bca565b6001600160a01b03166000908152600e602052604090205490565b3480156103d257600080fd5b50600b546103e6906001600160401b031681565b6040516001600160401b03909116815260200161021f565b34801561040a57600080fd5b506102a2610419366004611c70565b6108e2565b34801561042a57600080fd5b5061026a610439366004611b0d565b61091f565b34801561044a57600080fd5b5061023d610931565b34801561045f57600080fd5b506102b961046e366004611bca565b6109bf565b34801561047f57600080fd5b506102a2610a0d565b34801561049457600080fd5b506102a2610a43565b3480156104a957600080fd5b506103e6600181565b3480156104be57600080fd5b506103e6600281565b3480156104d357600080fd5b506000546001600160a01b031661026a565b3480156104f157600080fd5b5061023d610acb565b6102a2610508366004611b0d565b610ada565b34801561051957600080fd5b506102a2610528366004611cb8565b610dba565b34801561053957600080fd5b506102b9610e50565b34801561054e57600080fd5b506102a261055d366004611cf4565b610e60565b34801561056e57600080fd5b506102a261057d366004611d1d565b610fb0565b34801561058e57600080fd5b5061023d61059d366004611b0d565b610ffa565b3480156105ae57600080fd5b506103e66103e881565b3480156105c457600080fd5b506102a261107f565b3480156105d957600080fd5b506102136105e8366004611d98565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561062257600080fd5b506102a2610631366004611bca565b61110b565b6000610641826111a3565b92915050565b60606003805461065690611dcb565b80601f016020809104026020016040519081016040528092919081815260200182805461068290611dcb565b80156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050905090565b60006106e4826111c8565b610701576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006107288261091f565b9050806001600160a01b0316836001600160a01b0316141561075d5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107945761077781336105e8565b610794576040516367d9dca160e11b815260040160405180910390fd5b61079f8383836111f4565b505050565b61079f838383611250565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916108245750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610843906001600160601b031687611e1c565b61084d9190611e51565b915196919550909350505050565b6000546001600160a01b0316331461088e5760405162461bcd60e51b815260040161088590611e65565b60405180910390fd5b4780156108c457604051339082156108fc029083906000818181858888f193505050501580156108c2573d6000803e3d6000fd5b505b50565b61079f83838360405180602001604052806000815250610fb0565b6000546001600160a01b0316331461090c5760405162461bcd60e51b815260040161088590611e65565b80516108c290600c9060208401906119d6565b600061092a8261143b565b5192915050565b600c805461093e90611dcb565b80601f016020809104026020016040519081016040528092919081815260200182805461096a90611dcb565b80156109b75780601f1061098c576101008083540402835291602001916109b7565b820191906000526020600020905b81548152906001019060200180831161099a57829003601f168201915b505050505081565b60006001600160a01b0382166109e8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610a375760405162461bcd60e51b815260040161088590611e65565b610a416000611555565b565b6000546001600160a01b03163314610a6d5760405162461bcd60e51b815260040161088590611e65565b600d5460ff16610abf5760405162461bcd60e51b815260206004820152601860248201527f6d696e74696e672064697361626c656420616c726561647900000000000000006044820152606401610885565b600d805460ff19169055565b60606004805461065690611dcb565b333214610b145760405162461bcd60e51b8152602060048201526008602482015267454f41206f6e6c7960c01b6044820152606401610885565b600d5460ff16610b595760405162461bcd60e51b815260206004820152601060248201526f6d696e74696e6720696e61637469766560801b6044820152606401610885565b60008111610b965760405162461bcd60e51b815260206004820152600a6024820152690616d6f756e74203d20360b41b6044820152606401610885565b6002811115610be05760405162461bcd60e51b81526020600482015260166024820152750caf0c6cacac840dad2dce8d2dcce86c2e0a0cae4a8f60531b6044820152606401610885565b6103e881610bed60015490565b610bf79190611e9a565b1115610c385760405162461bcd60e51b815260206004820152601060248201526f657863656564206d6178537570706c7960801b6044820152606401610885565b6000806000610c4660015490565b90506000610c548583611e9a565b600b549091506001600160401b0316811115610cd957600b546001600160401b0316821015610ccf57600b54610c949083906001600160401b0316611eb2565b600b54909350610cad906001600160401b031682611eb2565b610cbe90660aa87bee538000611e1c565b610cc89085611e9a565b9350610cdd565b610cad8282611eb2565b8492505b83341015610d245760405162461bcd60e51b81526020600482015260146024820152731a5b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610885565b8215610da957336000908152600e6020526040812054610d45908590611e9a565b90506001811115610d985760405162461bcd60e51b815260206004820152601f60248201527f65786365656420667265654d696e74696e6743617050657241646472657373006044820152606401610885565b336000908152600e60205260409020555b610db333866115a5565b5050505050565b6001600160a01b038216331415610de45760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610e5b60015490565b905090565b6000546001600160a01b03163314610e8a5760405162461bcd60e51b815260040161088590611e65565b6103e86001600160401b0382161115610edd5760405162461bcd60e51b81526020600482015260156024820152746672656551756f7461203e206d6178537570706c7960581b6044820152606401610885565b6000610ee860015490565b600b549091506001600160401b0316811115610f3b5760405162461bcd60e51b81526020600482015260126024820152716d696e746564203e206672656551756f746160701b6044820152606401610885565b816001600160401b0316811115610f8c5760405162461bcd60e51b81526020600482015260156024820152746d696e746564203e206e65774672656551756f746160581b6044820152606401610885565b50600b805467ffffffffffffffff19166001600160401b0392909216919091179055565b610fbb848484611250565b6001600160a01b0383163b15610ff457610fd7848484846115bf565b610ff4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611005826111c8565b61102257604051630a14c4b560e41b815260040160405180910390fd5b600061102c6116b7565b905080516000141561104d5760405180602001604052806000815250611078565b80611057846116c6565b604051602001611068929190611ec9565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146110a95760405162461bcd60e51b815260040161088590611e65565b600d5460ff16156110fc5760405162461bcd60e51b815260206004820152601760248201527f6d696e74696e6720656e61626c656420616c72656164790000000000000000006044820152606401610885565b600d805460ff19166001179055565b6000546001600160a01b031633146111355760405162461bcd60e51b815260040161088590611e65565b6001600160a01b03811661119a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610885565b6108c481611555565b60006001600160e01b0319821663152a902d60e11b14806106415750610641826117c3565b600060015482108015610641575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061125b8261143b565b9050836001600160a01b031681600001516001600160a01b0316146112925760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112b057506112b085336105e8565b806112cb5750336112c0846106d9565b6001600160a01b0316145b9050806112eb57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661131257604051633a954ecd60e21b815260040160405180910390fd5b61131e600084876111f4565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166113f25760015482146113f257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610db3565b60408051606081018252600080825260208201819052918101919091528160015481101561153c57600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061153a5780516001600160a01b0316156114d1579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611535579392505050565b6114d1565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108c2828260405180602001604052806000815250611813565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115f4903390899088908890600401611ef8565b602060405180830381600087803b15801561160e57600080fd5b505af192505050801561163e575060408051601f3d908101601f1916820190925261163b91810190611f35565b60015b611699573d80801561166c576040519150601f19603f3d011682016040523d82523d6000602084013e611671565b606091505b508051611691576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461065690611dcb565b6060816116ea5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561171457806116fe81611f52565b915061170d9050600a83611e51565b91506116ee565b6000816001600160401b0381111561172e5761172e611be5565b6040519080825280601f01601f191660200182016040528015611758576020820181803683370190505b5090505b84156116af5761176d600183611eb2565b915061177a600a86611f6d565b611785906030611e9a565b60f81b81838151811061179a5761179a611f81565b60200101906001600160f81b031916908160001a9053506117bc600a86611e51565b945061175c565b60006001600160e01b031982166380ac58cd60e01b14806117f457506001600160e01b03198216635b5e139f60e01b145b8061064157506301ffc9a760e01b6001600160e01b0319831614610641565b6001546001600160a01b03841661183c57604051622e076360e81b815260040160405180910390fd5b8261185a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600590925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611982575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461194b60008784806001019550876115bf565b611968576040516368d2bf6b60e11b815260040160405180910390fd5b80821061190057826001541461197d57600080fd5b6119c7565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611983575b50600155610ff4600085838684565b8280546119e290611dcb565b90600052602060002090601f016020900481019282611a045760008555611a4a565b82601f10611a1d57805160ff1916838001178555611a4a565b82800160010185558215611a4a579182015b82811115611a4a578251825591602001919060010190611a2f565b50611a56929150611a5a565b5090565b5b80821115611a565760008155600101611a5b565b6001600160e01b0319811681146108c457600080fd5b600060208284031215611a9757600080fd5b813561107881611a6f565b60005b83811015611abd578181015183820152602001611aa5565b83811115610ff45750506000910152565b60008151808452611ae6816020860160208601611aa2565b601f01601f19169290920160200192915050565b6020815260006110786020830184611ace565b600060208284031215611b1f57600080fd5b5035919050565b80356001600160a01b0381168114611b3d57600080fd5b919050565b60008060408385031215611b5557600080fd5b611b5e83611b26565b946020939093013593505050565b600080600060608486031215611b8157600080fd5b611b8a84611b26565b9250611b9860208501611b26565b9150604084013590509250925092565b60008060408385031215611bbb57600080fd5b50508035926020909101359150565b600060208284031215611bdc57600080fd5b61107882611b26565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611c1557611c15611be5565b604051601f8501601f19908116603f01168101908282118183101715611c3d57611c3d611be5565b81604052809350858152868686011115611c5657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c8257600080fd5b81356001600160401b03811115611c9857600080fd5b8201601f81018413611ca957600080fd5b6116af84823560208401611bfb565b60008060408385031215611ccb57600080fd5b611cd483611b26565b915060208301358015158114611ce957600080fd5b809150509250929050565b600060208284031215611d0657600080fd5b81356001600160401b038116811461107857600080fd5b60008060008060808587031215611d3357600080fd5b611d3c85611b26565b9350611d4a60208601611b26565b92506040850135915060608501356001600160401b03811115611d6c57600080fd5b8501601f81018713611d7d57600080fd5b611d8c87823560208401611bfb565b91505092959194509250565b60008060408385031215611dab57600080fd5b611db483611b26565b9150611dc260208401611b26565b90509250929050565b600181811c90821680611ddf57607f821691505b60208210811415611e0057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611e3657611e36611e06565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e6057611e60611e3b565b500490565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ead57611ead611e06565b500190565b600082821015611ec457611ec4611e06565b500390565b60008351611edb818460208801611aa2565b835190830190611eef818360208801611aa2565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f2b90830184611ace565b9695505050505050565b600060208284031215611f4757600080fd5b815161107881611a6f565b6000600019821415611f6657611f66611e06565b5060010190565b600082611f7c57611f7c611e3b565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220647a08b64f15c51db26c1cd34d75a76de1c9984373c18a2e84e5912faf9dbd7864736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c8
-----Decoded View---------------
Arg [0] : initialFreeQuota (uint64): 200
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c8
Deployed Bytecode Sourcemap
54869:3873:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58410:221;;;;;;;;;;-1:-1:-1;58410:221:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;58410:221:0;;;;;;;;37966:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39589:245::-;;;;;;;;;;-1:-1:-1;39589:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;39589:245:0;1528:203:1;39129:394:0;;;;;;;;;;-1:-1:-1;39129:394:0;;;;;:::i;:::-;;:::i;:::-;;33920:312;;;;;;;;;;-1:-1:-1;34183:12:0;;34167:13;;:28;33920:312;;;2319:25:1;;;2307:2;2292:18;33920:312:0;2173:177:1;40577:170:0;;;;;;;;;;-1:-1:-1;40577:170:0;;;;;:::i;:::-;;:::i;8160:505::-;;;;;;;;;;-1:-1:-1;8160:505:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3133:32:1;;;3115:51;;3197:2;3182:18;;3175:34;;;;3088:18;8160:505:0;2941:274:1;55197:33:0;;;;;;;;;;-1:-1:-1;55197:33:0;;;;;;;;54924:49;;;;;;;;;;;;54963:10;54924:49;;57111:188;;;;;;;;;;;;;:::i;40818:185::-;;;;;;;;;;-1:-1:-1;40818:185:0;;;;;:::i;:::-;;:::i;58239:163::-;;;;;;;;;;-1:-1:-1;58239:163:0;;;;;:::i;:::-;-1:-1:-1;;;;;58369:25:0;58337:7;58369:25;;;:19;:25;;;;;;;58239:163;55133:27;;;;;;;;;;-1:-1:-1;55133:27:0;;;;-1:-1:-1;;;;;55133:27:0;;;;;;-1:-1:-1;;;;;3573:31:1;;;3555:50;;3543:2;3528:18;55133:27:0;3411:200:1;58024:104:0;;;;;;;;;;-1:-1:-1;58024:104:0;;;;;:::i;:::-;;:::i;37774:125::-;;;;;;;;;;-1:-1:-1;37774:125:0;;;;;:::i;:::-;;:::i;55169:21::-;;;;;;;;;;;;;:::i;35099:206::-;;;;;;;;;;-1:-1:-1;35099:206:0;;;;;:::i;:::-;;:::i;2672:103::-;;;;;;;;;;;;;:::i;57459:146::-;;;;;;;;;;;;;:::i;55029:51::-;;;;;;;;;;;;55079:1;55029:51;;54980:42;;;;;;;;;;;;55021:1;54980:42;;2021:87;;;;;;;;;;-1:-1:-1;2067:7:0;2094:6;-1:-1:-1;;;;;2094:6:0;2021:87;;38135:104;;;;;;;;;;;;;:::i;55469:1634::-;;;;;;:::i;:::-;;:::i;39906:319::-;;;;;;;;;;-1:-1:-1;39906:319:0;;;;;:::i;:::-;;:::i;58136:95::-;;;;;;;;;;;;;:::i;57613:403::-;;;;;;;;;;-1:-1:-1;57613:403:0;;;;;:::i;:::-;;:::i;41074:392::-;;;;;;;;;;-1:-1:-1;41074:392:0;;;;;:::i;:::-;;:::i;38310:415::-;;;;;;;;;;-1:-1:-1;38310:415:0;;;;;:::i;:::-;;:::i;55087:39::-;;;;;;;;;;;;55122:4;55087:39;;57307:144;;;;;;;;;;;;;:::i;40296:214::-;;;;;;;;;;-1:-1:-1;40296:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;40467:25:0;;;40438:4;40467:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40296:214;2930:238;;;;;;;;;;-1:-1:-1;2930:238:0;;;;;:::i;:::-;;:::i;58410:221::-;58558:4;58587:36;58611:11;58587:23;:36::i;:::-;58580:43;58410:221;-1:-1:-1;;58410:221:0:o;37966:100::-;38020:13;38053:5;38046:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37966:100;:::o;39589:245::-;39693:7;39723:16;39731:7;39723;:16::i;:::-;39718:64;;39748:34;;-1:-1:-1;;;39748:34:0;;;;;;;;;;;39718:64;-1:-1:-1;39802:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39802:24:0;;39589:245::o;39129:394::-;39202:13;39218:24;39234:7;39218:15;:24::i;:::-;39202:40;;39263:5;-1:-1:-1;;;;;39257:11:0;:2;-1:-1:-1;;;;;39257:11:0;;39253:48;;;39277:24;;-1:-1:-1;;;39277:24:0;;;;;;;;;;;39253:48;798:10;-1:-1:-1;;;;;39318:21:0;;;39314:161;;39359:37;39376:5;798:10;40296:214;:::i;39359:37::-;39354:121;;39424:35;;-1:-1:-1;;;39424:35:0;;;;;;;;;;;39354:121;39487:28;39496:2;39500:7;39509:5;39487:8;:28::i;:::-;39191:332;39129:394;;:::o;40577:170::-;40711:28;40721:4;40727:2;40731:7;40711:9;:28::i;8160:505::-;8302:7;8365:27;;;:17;:27;;;;;;;;8336:56;;;;;;;;;-1:-1:-1;;;;;8336:56:0;;;;;-1:-1:-1;;;8336:56:0;;;-1:-1:-1;;;;;8336:56:0;;;;;;;;8302:7;;8405:92;;-1:-1:-1;8456:29:0;;;;;;;;;8466:19;8456:29;-1:-1:-1;;;;;8456:29:0;;;;-1:-1:-1;;;8456:29:0;;-1:-1:-1;;;;;8456:29:0;;;;;8405:92;8547:23;;;;8509:21;;9031:5;;8534:36;;-1:-1:-1;;;;;8534:36:0;:10;:36;:::i;:::-;8533:71;;;;:::i;:::-;8625:16;;;;;-1:-1:-1;8160:505:0;;-1:-1:-1;;;;8160:505:0:o;57111:188::-;2067:7;2094:6;-1:-1:-1;;;;;2094:6:0;798:10;2241:23;2233:68;;;;-1:-1:-1;;;2233:68:0;;;;;;;:::i;:::-;;;;;;;;;57179:21:::1;57215:11:::0;;57211:81:::1;;57243:37;::::0;57251:10:::1;::::0;57243:37;::::1;;;::::0;57272:7;;57243:37:::1;::::0;;;57272:7;57251:10;57243:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;57211:81;57150:149;57111:188::o:0;40818:185::-;40956:39;40973:4;40979:2;40983:7;40956:39;;;;;;;;;;;;:16;:39::i;58024:104::-;2067:7;2094:6;-1:-1:-1;;;;;2094:6:0;798:10;2241:23;2233:68;;;;-1:-1:-1;;;2233:68:0;;;;;;;:::i;:::-;58100:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;37774:125::-:0;37838:7;37865:21;37878:7;37865:12;:21::i;:::-;:26;;37774:125;-1:-1:-1;;37774:125:0:o;55169:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35099:206::-;35163:7;-1:-1:-1;;;;;35187:19:0;;35183:60;;35215:28;;-1:-1:-1;;;35215:28:0;;;;;;;;;;;35183:60;-1:-1:-1;;;;;;35269:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;35269:27:0;;35099:206::o;2672:103::-;2067:7;2094:6;-1:-1:-1;;;;;2094:6:0;798:10;2241:23;2233:68;;;;-1:-1:-1;;;2233:68:0;;;;;;;:::i;:::-;2737:30:::1;2764:1;2737:18;:30::i;:::-;2672:103::o:0;57459:146::-;2067:7;2094:6;-1:-1:-1;;;;;2094:6:0;798:10;2241:23;2233:68;;;;-1:-1:-1;;;2233:68:0;;;;;;;:::i;:::-;57523:13:::1;::::0;::::1;;57515:50;;;::::0;-1:-1:-1;;;57515:50:0;;7929:2:1;57515:50:0::1;::::0;::::1;7911:21:1::0;7968:2;7948:18;;;7941:30;8007:26;7987:18;;;7980:54;8051:18;;57515:50:0::1;7727:348:1::0;57515:50:0::1;57576:13;:21:::0;;-1:-1:-1;;57576:21:0::1;::::0;;57459:146::o;38135:104::-;38191:13;38224:7;38217:14;;;;;:::i;55469:1634::-;55535:10;55549:9;55535:23;55527:44;;;;-1:-1:-1;;;55527:44:0;;8282:2:1;55527:44:0;;;8264:21:1;8321:1;8301:18;;;8294:29;-1:-1:-1;;;8339:18:1;;;8332:38;8387:18;;55527:44:0;8080:331:1;55527:44:0;55590:13;;;;55582:42;;;;-1:-1:-1;;;55582:42:0;;8618:2:1;55582:42:0;;;8600:21:1;8657:2;8637:18;;;8630:30;-1:-1:-1;;;8676:18:1;;;8669:46;8732:18;;55582:42:0;8416:340:1;55582:42:0;55652:1;55643:6;:10;55635:33;;;;-1:-1:-1;;;55635:33:0;;8963:2:1;55635:33:0;;;8945:21:1;9002:2;8982:18;;;8975:30;-1:-1:-1;;;9021:18:1;;;9014:40;9071:18;;55635:33:0;8761:334:1;55635:33:0;55021:1;55687:25;;;55679:60;;;;-1:-1:-1;;;55679:60:0;;9302:2:1;55679:60:0;;;9284:21:1;9341:2;9321:18;;;9314:30;-1:-1:-1;;;9360:18:1;;;9353:52;9422:18;;55679:60:0;9100:346:1;55679:60:0;55122:4;55775:6;55758:14;34558:13;;;34325:283;55758:14;:23;;;;:::i;:::-;:36;;55750:65;;;;-1:-1:-1;;;55750:65:0;;9786:2:1;55750:65:0;;;9768:21:1;9825:2;9805:18;;;9798:30;-1:-1:-1;;;9844:18:1;;;9837:46;9900:18;;55750:65:0;9584:340:1;55750:65:0;55828:17;55860:24;55899:23;55925:14;34558:13;;;34325:283;55925:14;55899:40;-1:-1:-1;55950:22:0;55975:24;55993:6;55899:40;55975:24;:::i;:::-;56031:9;;55950:49;;-1:-1:-1;;;;;;56031:9:0;56014:26;;56010:511;;;56079:9;;-1:-1:-1;;;;;56079:9:0;56061:27;;56057:366;;;56169:9;;:27;;56181:15;;-1:-1:-1;;;;;56169:9:0;:27;:::i;:::-;56261:9;;56150:46;;-1:-1:-1;56244:26:0;;-1:-1:-1;;;;;56261:9:0;56244:14;:26;:::i;:::-;56228:43;;54963:10;56228:43;:::i;:::-;56215:56;;;;:::i;:::-;;;56010:511;;56057:366;56374:32;56391:15;56374:14;:32;:::i;56010:511::-;56503:6;56484:25;;56010:511;56593:9;56580;:22;;56572:55;;;;-1:-1:-1;;;56572:55:0;;10261:2:1;56572:55:0;;;10243:21:1;10300:2;10280:18;;;10273:30;-1:-1:-1;;;10319:18:1;;;10312:50;10379:18;;56572:55:0;10059:344:1;56572:55:0;56691:20;;56687:367;;56776:10;56728:25;56756:31;;;:19;:31;;;;;;:67;;56807:16;;56756:67;:::i;:::-;56728:95;-1:-1:-1;55079:1:0;56864:45;;;56838:138;;;;-1:-1:-1;;;56838:138:0;;10610:2:1;56838:138:0;;;10592:21:1;10649:2;10629:18;;;10622:30;10688:33;10668:18;;;10661:61;10739:18;;56838:138:0;10408:355:1;56838:138:0;57011:10;56991:31;;;;:19;:31;;;;;:51;56687:367;57066:29;57076:10;57088:6;57066:9;:29::i;:::-;55516:1587;;;;55469:1634;:::o;39906:319::-;-1:-1:-1;;;;;40037:24:0;;798:10;40037:24;40033:54;;;40070:17;;-1:-1:-1;;;40070:17:0;;;;;;;;;;;40033:54;798:10;40100:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40100:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40100:53:0;;;;;;;;;;40169:48;;540:41:1;;;40100:42:0;;798:10;40169:48;;513:18:1;40169:48:0;;;;;;;39906:319;;:::o;58136:95::-;58182:7;58209:14;34558:13;;;34325:283;58209:14;58202:21;;58136:95;:::o;57613:403::-;2067:7;2094:6;-1:-1:-1;;;;;2094:6:0;798:10;2241:23;2233:68;;;;-1:-1:-1;;;2233:68:0;;;;;;;:::i;:::-;55122:4:::1;-1:-1:-1::0;;;;;57694:25:0;::::1;;;57686:59;;;::::0;-1:-1:-1;;;57686:59:0;;10970:2:1;57686:59:0::1;::::0;::::1;10952:21:1::0;11009:2;10989:18;;;10982:30;-1:-1:-1;;;11028:18:1;;;11021:51;11089:18;;57686:59:0::1;10768:345:1::0;57686:59:0::1;57758:14;57775;34558:13:::0;;;34325:283;57775:14:::1;57874:9;::::0;57758:31;;-1:-1:-1;;;;;;57874:9:0::1;57864:19:::0;::::1;;57856:50;;;::::0;-1:-1:-1;;;57856:50:0;;11320:2:1;57856:50:0::1;::::0;::::1;11302:21:1::0;11359:2;11339:18;;;11332:30;-1:-1:-1;;;11378:18:1;;;11371:48;11436:18;;57856:50:0::1;11118:342:1::0;57856:50:0::1;57935:12;-1:-1:-1::0;;;;;57925:22:0::1;:6;:22;;57917:56;;;::::0;-1:-1:-1;;;57917:56:0;;11667:2:1;57917:56:0::1;::::0;::::1;11649:21:1::0;11706:2;11686:18;;;11679:30;-1:-1:-1;;;11725:18:1;;;11718:51;11786:18;;57917:56:0::1;11465:345:1::0;57917:56:0::1;-1:-1:-1::0;57984:9:0::1;:24:::0;;-1:-1:-1;;57984:24:0::1;-1:-1:-1::0;;;;;57984:24:0;;;::::1;::::0;;;::::1;::::0;;57613:403::o;41074:392::-;41241:28;41251:4;41257:2;41261:7;41241:9;:28::i;:::-;-1:-1:-1;;;;;41284:13:0;;22252:19;:23;41280:179;;41319:56;41350:4;41356:2;41360:7;41369:5;41319:30;:56::i;:::-;41314:145;;41403:40;;-1:-1:-1;;;41403:40:0;;;;;;;;;;;41314:145;41074:392;;;;:::o;38310:415::-;38428:13;38464:16;38472:7;38464;:16::i;:::-;38459:59;;38489:29;;-1:-1:-1;;;38489:29:0;;;;;;;;;;;38459:59;38531:21;38555:10;:8;:10::i;:::-;38531:34;;38602:7;38596:21;38621:1;38596:26;;:121;;;;;;;;;;;;;;;;;38666:7;38675:18;:7;:16;:18::i;:::-;38649:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38596:121;38576:141;38310:415;-1:-1:-1;;;38310:415:0:o;57307:144::-;2067:7;2094:6;-1:-1:-1;;;;;2094:6:0;798:10;2241:23;2233:68;;;;-1:-1:-1;;;2233:68:0;;;;;;;:::i;:::-;57371:13:::1;::::0;::::1;;57370:14;57362:50;;;::::0;-1:-1:-1;;;57362:50:0;;12492:2:1;57362:50:0::1;::::0;::::1;12474:21:1::0;12531:2;12511:18;;;12504:30;12570:25;12550:18;;;12543:53;12613:18;;57362:50:0::1;12290:347:1::0;57362:50:0::1;57423:13;:20:::0;;-1:-1:-1;;57423:20:0::1;57439:4;57423:20;::::0;;57307:144::o;2930:238::-;2067:7;2094:6;-1:-1:-1;;;;;2094:6:0;798:10;2241:23;2233:68;;;;-1:-1:-1;;;2233:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3033:22:0;::::1;3011:110;;;::::0;-1:-1:-1;;;3011:110:0;;12844:2:1;3011:110:0::1;::::0;::::1;12826:21:1::0;12883:2;12863:18;;;12856:30;12922:34;12902:18;;;12895:62;-1:-1:-1;;;12973:18:1;;;12966:36;13019:19;;3011:110:0::1;12642:402:1::0;3011:110:0::1;3132:28;3151:8;3132:18;:28::i;7814:291::-:0;7961:4;-1:-1:-1;;;;;;8003:41:0;;-1:-1:-1;;;8003:41:0;;:94;;;8061:36;8085:11;8061:23;:36::i;41721:213::-;41778:4;41868:13;;41858:7;:23;41815:111;;;;-1:-1:-1;;41899:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;41899:27:0;;;;41898:28;;41721:213::o;51173:196::-;51288:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;51288:29:0;-1:-1:-1;;;;;51288:29:0;;;;;;;;;51333:28;;51288:24;;51333:28;;;;;;;51173:196;;;:::o;46121:2130::-;46236:35;46274:21;46287:7;46274:12;:21::i;:::-;46236:59;;46334:4;-1:-1:-1;;;;;46312:26:0;:13;:18;;;-1:-1:-1;;;;;46312:26:0;;46308:67;;46347:28;;-1:-1:-1;;;46347:28:0;;;;;;;;;;;46308:67;46388:22;798:10;-1:-1:-1;;;;;46414:20:0;;;;:73;;-1:-1:-1;46451:36:0;46468:4;798:10;40296:214;:::i;46451:36::-;46414:126;;;-1:-1:-1;798:10:0;46504:20;46516:7;46504:11;:20::i;:::-;-1:-1:-1;;;;;46504:36:0;;46414:126;46388:153;;46559:17;46554:66;;46585:35;;-1:-1:-1;;;46585:35:0;;;;;;;;;;;46554:66;-1:-1:-1;;;;;46635:16:0;;46631:52;;46660:23;;-1:-1:-1;;;46660:23:0;;;;;;;;;;;46631:52;46804:35;46821:1;46825:7;46834:4;46804:8;:35::i;:::-;-1:-1:-1;;;;;47135:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;47135:31:0;;;-1:-1:-1;;;;;47135:31:0;;;-1:-1:-1;;47135:31:0;;;;;;;47181:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;47181:29:0;;;;;;;;;;;47261:20;;;:11;:20;;;;;;47296:18;;-1:-1:-1;;;;;;47329:49:0;;;;-1:-1:-1;;;47362:15:0;47329:49;;;;;;;;;;47652:11;;47712:24;;;;;47755:13;;47261:20;;47712:24;;47755:13;47751:384;;47965:13;;47950:11;:28;47946:174;;48003:20;;48072:28;;;;-1:-1:-1;;;;;48046:54:0;-1:-1:-1;;;48046:54:0;-1:-1:-1;;;;;;48046:54:0;;;-1:-1:-1;;;;;48003:20:0;;48046:54;;;;47946:174;47110:1036;;;48182:7;48178:2;-1:-1:-1;;;;;48163:27:0;48172:4;-1:-1:-1;;;;;48163:27:0;;;;;;;;;;;48201:42;41074:392;36480:1232;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;36623:7:0;36725:13;;36718:4;:20;36714:931;;;36763:31;36797:17;;;:11;:17;;;;;;;;;36763:51;;;;;;;;;-1:-1:-1;;;;;36763:51:0;;;;-1:-1:-1;;;36763:51:0;;-1:-1:-1;;;;;36763:51:0;;;;;;;;-1:-1:-1;;;36763:51:0;;;;;;;;;;;;;;36837:789;;36891:14;;-1:-1:-1;;;;;36891:28:0;;36887:109;;36959:9;36480:1232;-1:-1:-1;;;36480:1232:0:o;36887:109::-;-1:-1:-1;;;37362:6:0;37411:17;;;;:11;:17;;;;;;;;;37399:29;;;;;;;;;-1:-1:-1;;;;;37399:29:0;;;;;-1:-1:-1;;;37399:29:0;;-1:-1:-1;;;;;37399:29:0;;;;;;;;-1:-1:-1;;;37399:29:0;;;;;;;;;;;;;37463:28;37459:117;;37535:9;36480:1232;-1:-1:-1;;;36480:1232:0:o;37459:117::-;37318:285;;;36740:905;36714:931;37673:31;;-1:-1:-1;;;37673:31:0;;;;;;;;;;;3328:191;3402:16;3421:6;;-1:-1:-1;;;;;3438:17:0;;;-1:-1:-1;;;;;;3438:17:0;;;;;;3471:40;;3421:6;;;;;;;3471:40;;3402:16;3471:40;3391:128;3328:191;:::o;42018:104::-;42087:27;42097:2;42101:8;42087:27;;;;;;;;;;;;:9;:27::i;51861:772::-;52058:155;;-1:-1:-1;;;52058:155:0;;52024:4;;-1:-1:-1;;;;;52058:36:0;;;;;:155;;798:10;;52144:4;;52167:7;;52193:5;;52058:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52058:155:0;;;;;;;;-1:-1:-1;;52058:155:0;;;;;;;;;;;;:::i;:::-;;;52041:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52384:13:0;;52380:235;;52430:40;;-1:-1:-1;;;52430:40:0;;;;;;;;;;;52380:235;52573:6;52567:13;52558:6;52554:2;52550:15;52543:38;52041:585;-1:-1:-1;;;;;;52269:55:0;-1:-1:-1;;;52269:55:0;;-1:-1:-1;52041:585:0;51861:772;;;;;;:::o;58639:100::-;58691:13;58724:7;58717:14;;;;;:::i;30063:723::-;30119:13;30340:10;30336:53;;-1:-1:-1;;30367:10:0;;;;;;;;;;;;-1:-1:-1;;;30367:10:0;;;;;30063:723::o;30336:53::-;30414:5;30399:12;30455:78;30462:9;;30455:78;;30488:8;;;;:::i;:::-;;-1:-1:-1;30511:10:0;;-1:-1:-1;30519:2:0;30511:10;;:::i;:::-;;;30455:78;;;30543:19;30575:6;-1:-1:-1;;;;;30565:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30565:17:0;;30543:39;;30593:154;30600:10;;30593:154;;30627:11;30637:1;30627:11;;:::i;:::-;;-1:-1:-1;30696:10:0;30704:2;30696:5;:10;:::i;:::-;30683:24;;:2;:24;:::i;:::-;30670:39;;30653:6;30660;30653:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;30653:56:0;;;;;;;;-1:-1:-1;30724:11:0;30733:2;30724:11;;:::i;:::-;;;30593:154;;34680:355;34827:4;-1:-1:-1;;;;;;34869:40:0;;-1:-1:-1;;;34869:40:0;;:105;;-1:-1:-1;;;;;;;34926:48:0;;-1:-1:-1;;;34926:48:0;34869:105;:158;;;-1:-1:-1;;;;;;;;;;6373:40:0;;;34991:36;6214:207;42495:1940;42641:13;;-1:-1:-1;;;;;42669:16:0;;42665:48;;42694:19;;-1:-1:-1;;;42694:19:0;;;;;;;;;;;42665:48;42728:13;42724:44;;42750:18;;-1:-1:-1;;;42750:18:0;;;;;;;;;;;42724:44;-1:-1:-1;;;;;43119:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;43178:49:0;;-1:-1:-1;;;;;43119:44:0;;;;;;;43178:49;;;;-1:-1:-1;;43119:44:0;;;;;;43178:49;;;;;;;;;;;;;;;;43244:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;43294:66:0;;;-1:-1:-1;;;43344:15:0;43294:66;;;;;;;;;;;;;43244:25;;43441:23;;;;22252:19;:23;43481:822;;43521:504;43552:38;;43577:12;;-1:-1:-1;;;;;43552:38:0;;;43569:1;;43552:38;;43569:1;;43552:38;43644:212;43713:1;43746:2;43779:14;;;;;;43824:5;43644:30;:212::i;:::-;43613:365;;43914:40;;-1:-1:-1;;;43914:40:0;;;;;;;;;;;43613:365;44020:3;44005:12;:18;43521:504;;44106:12;44089:13;;:29;44085:43;;44120:8;;;44085:43;43481:822;;;44169:119;44200:40;;44225:14;;;;;-1:-1:-1;;;;;44200:40:0;;;44217:1;;44200:40;;44217:1;;44200:40;44283:3;44268:12;:18;44169:119;;43481:822;-1:-1:-1;44317:13:0;:28;44367:60;44396:1;44400:2;44404:12;44418:8;44367:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:248::-;2756:6;2764;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;-1:-1:-1;;2856:23:1;;;2926:2;2911:18;;;2898:32;;-1:-1:-1;2688:248:1:o;3220:186::-;3279:6;3332:2;3320:9;3311:7;3307:23;3303:32;3300:52;;;3348:1;3345;3338:12;3300:52;3371:29;3390:9;3371:29;:::i;3616:127::-;3677:10;3672:3;3668:20;3665:1;3658:31;3708:4;3705:1;3698:15;3732:4;3729:1;3722:15;3748:632;3813:5;-1:-1:-1;;;;;3884:2:1;3876:6;3873:14;3870:40;;;3890:18;;:::i;:::-;3965:2;3959:9;3933:2;4019:15;;-1:-1:-1;;4015:24:1;;;4041:2;4011:33;4007:42;3995:55;;;4065:18;;;4085:22;;;4062:46;4059:72;;;4111:18;;:::i;:::-;4151:10;4147:2;4140:22;4180:6;4171:15;;4210:6;4202;4195:22;4250:3;4241:6;4236:3;4232:16;4229:25;4226:45;;;4267:1;4264;4257:12;4226:45;4317:6;4312:3;4305:4;4297:6;4293:17;4280:44;4372:1;4365:4;4356:6;4348;4344:19;4340:30;4333:41;;;;3748:632;;;;;:::o;4385:451::-;4454:6;4507:2;4495:9;4486:7;4482:23;4478:32;4475:52;;;4523:1;4520;4513:12;4475:52;4563:9;4550:23;-1:-1:-1;;;;;4588:6:1;4585:30;4582:50;;;4628:1;4625;4618:12;4582:50;4651:22;;4704:4;4696:13;;4692:27;-1:-1:-1;4682:55:1;;4733:1;4730;4723:12;4682:55;4756:74;4822:7;4817:2;4804:16;4799:2;4795;4791:11;4756:74;:::i;4841:347::-;4906:6;4914;4967:2;4955:9;4946:7;4942:23;4938:32;4935:52;;;4983:1;4980;4973:12;4935:52;5006:29;5025:9;5006:29;:::i;:::-;4996:39;;5085:2;5074:9;5070:18;5057:32;5132:5;5125:13;5118:21;5111:5;5108:32;5098:60;;5154:1;5151;5144:12;5098:60;5177:5;5167:15;;;4841:347;;;;;:::o;5193:284::-;5251:6;5304:2;5292:9;5283:7;5279:23;5275:32;5272:52;;;5320:1;5317;5310:12;5272:52;5359:9;5346:23;-1:-1:-1;;;;;5402:5:1;5398:30;5391:5;5388:41;5378:69;;5443:1;5440;5433:12;5482:667;5577:6;5585;5593;5601;5654:3;5642:9;5633:7;5629:23;5625:33;5622:53;;;5671:1;5668;5661:12;5622:53;5694:29;5713:9;5694:29;:::i;:::-;5684:39;;5742:38;5776:2;5765:9;5761:18;5742:38;:::i;:::-;5732:48;;5827:2;5816:9;5812:18;5799:32;5789:42;;5882:2;5871:9;5867:18;5854:32;-1:-1:-1;;;;;5901:6:1;5898:30;5895:50;;;5941:1;5938;5931:12;5895:50;5964:22;;6017:4;6009:13;;6005:27;-1:-1:-1;5995:55:1;;6046:1;6043;6036:12;5995:55;6069:74;6135:7;6130:2;6117:16;6112:2;6108;6104:11;6069:74;:::i;:::-;6059:84;;;5482:667;;;;;;;:::o;6154:260::-;6222:6;6230;6283:2;6271:9;6262:7;6258:23;6254:32;6251:52;;;6299:1;6296;6289:12;6251:52;6322:29;6341:9;6322:29;:::i;:::-;6312:39;;6370:38;6404:2;6393:9;6389:18;6370:38;:::i;:::-;6360:48;;6154:260;;;;;:::o;6419:380::-;6498:1;6494:12;;;;6541;;;6562:61;;6616:4;6608:6;6604:17;6594:27;;6562:61;6669:2;6661:6;6658:14;6638:18;6635:38;6632:161;;;6715:10;6710:3;6706:20;6703:1;6696:31;6750:4;6747:1;6740:15;6778:4;6775:1;6768:15;6632:161;;6419:380;;;:::o;6804:127::-;6865:10;6860:3;6856:20;6853:1;6846:31;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6936:168;6976:7;7042:1;7038;7034:6;7030:14;7027:1;7024:21;7019:1;7012:9;7005:17;7001:45;6998:71;;;7049:18;;:::i;:::-;-1:-1:-1;7089:9:1;;6936:168::o;7109:127::-;7170:10;7165:3;7161:20;7158:1;7151:31;7201:4;7198:1;7191:15;7225:4;7222:1;7215:15;7241:120;7281:1;7307;7297:35;;7312:18;;:::i;:::-;-1:-1:-1;7346:9:1;;7241:120::o;7366:356::-;7568:2;7550:21;;;7587:18;;;7580:30;7646:34;7641:2;7626:18;;7619:62;7713:2;7698:18;;7366:356::o;9451:128::-;9491:3;9522:1;9518:6;9515:1;9512:13;9509:39;;;9528:18;;:::i;:::-;-1:-1:-1;9564:9:1;;9451:128::o;9929:125::-;9969:4;9997:1;9994;9991:8;9988:34;;;10002:18;;:::i;:::-;-1:-1:-1;10039:9:1;;9929:125::o;11815:470::-;11994:3;12032:6;12026:13;12048:53;12094:6;12089:3;12082:4;12074:6;12070:17;12048:53;:::i;:::-;12164:13;;12123:16;;;;12186:57;12164:13;12123:16;12220:4;12208:17;;12186:57;:::i;:::-;12259:20;;11815:470;-1:-1:-1;;;;11815:470:1:o;13049:489::-;-1:-1:-1;;;;;13318:15:1;;;13300:34;;13370:15;;13365:2;13350:18;;13343:43;13417:2;13402:18;;13395:34;;;13465:3;13460:2;13445:18;;13438:31;;;13243:4;;13486:46;;13512:19;;13504:6;13486:46;:::i;:::-;13478:54;13049:489;-1:-1:-1;;;;;;13049:489:1:o;13543:249::-;13612:6;13665:2;13653:9;13644:7;13640:23;13636:32;13633:52;;;13681:1;13678;13671:12;13633:52;13713:9;13707:16;13732:30;13756:5;13732:30;:::i;13797:135::-;13836:3;-1:-1:-1;;13857:17:1;;13854:43;;;13877:18;;:::i;:::-;-1:-1:-1;13924:1:1;13913:13;;13797:135::o;13937:112::-;13969:1;13995;13985:35;;14000:18;;:::i;:::-;-1:-1:-1;14034:9:1;;13937:112::o;14054:127::-;14115:10;14110:3;14106:20;14103:1;14096:31;14146:4;14143:1;14136:15;14170:4;14167:1;14160:15
Swarm Source
ipfs://647a08b64f15c51db26c1cd34d75a76de1c9984373c18a2e84e5912faf9dbd78
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.