ERC-721
Overview
Max Total Supply
1,285 ISG
Holders
1,259
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ISGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
InsertStonksGenesis
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-28 */ // File: contracts/lib/Constants.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: contracts/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File: contracts/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: contracts/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // File: contracts/FixeArt.sol /** *Submitted for verification at Etherscan.io on 2022-09-13 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) // Developed by https://transcendnt.io pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.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/Ownable.sol // 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/Address.sol // 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/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // 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/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/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: erc721a/contracts/ERC721A.sol // ERC721A Contracts v3.3.0 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 1; } /** * @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(), ".json")) : ''; } /** * @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) virtual 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 {} } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // Developed by https://transcendnt.io pragma solidity ^0.8.4; contract InsertStonksGenesis is ERC721A, Ownable, DefaultOperatorFilterer { uint256 public max_supply = 5000; bool public paused = true; string public baseURI = "ipfs://bafybeie3hob7gdfze5swo7ij2txx3h4y2udby6f6pfllcarcyu3pxhodme/"; using Strings for uint256; mapping(uint256 => string) private _tokenURIs; constructor() ERC721A("Insert Stonks Genesis Pass", "ISG") { } mapping(address => uint256) private _ownedTokenCount; function publicMint(uint256 quantity) external payable { require(!paused, "Minting is currently paused"); require(totalSupply() + quantity <= max_supply, "Not enough tokens left"); if (msg.sender != owner()) { require(quantity + _numberMinted(msg.sender) <= 1, "Max mints reached"); } _safeMint(msg.sender, quantity); } function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) { require(index < balanceOf(owner), "Owner does not own this token"); for (uint256 i = 0; i < totalSupply(); i++) { if (_exists(i) && ownerOf(i) == owner) { if (index == 0) { return i; } index--; } } revert("Token not found"); } function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function pause() external onlyOwner { paused = true; } function unpause() external onlyOwner { paused = false; } function setMax_supply(uint256 _max_supply) public onlyOwner { max_supply = _max_supply; } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } /** * @dev See {IERC721-approve}. * In this example the added modifier ensures that the operator is allowed by the OperatorFilterRegistry. */ function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } /** * @dev See {IERC721-transferFrom}. * In this example the added modifier ensures that the operator is allowed by the OperatorFilterRegistry. */ function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. * In this example the added modifier ensures that the operator is allowed by the OperatorFilterRegistry. */ function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. * In this example the added modifier ensures that the operator is allowed by the OperatorFilterRegistry. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max_supply","type":"uint256"}],"name":"setMax_supply","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":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
611388600955600a805460ff19166001179055610100604052604360808181529062001ff560a039600b9062000036908262000313565b5034801562000043575f80fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601a81526020017f496e736572742053746f6e6b732047656e6573697320506173730000000000008152506040518060400160405280600381526020016249534760e81b8152508160029081620000be919062000313565b506003620000cd828262000313565b505060015f5550620000df3362000222565b6daaeb6d7670e522a718067333cd4e3b156200021a5780156200016d57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b5f604051808303815f87803b15801562000150575f80fd5b505af115801562000163573d5f803e3d5ffd5b505050506200021a565b6001600160a01b03821615620001be5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000138565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e486906024015f604051808303815f87803b15801562000202575f80fd5b505af115801562000215573d5f803e3d5ffd5b505050505b5050620003db565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200029c57607f821691505b602082108103620002bb57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200030e575f81815260208120601f850160051c81016020861015620002e95750805b601f850160051c820191505b818110156200030a57828155600101620002f5565b5050505b505050565b81516001600160401b038111156200032f576200032f62000273565b620003478162000340845462000287565b84620002c1565b602080601f8311600181146200037d575f8415620003655750858301515b5f19600386901b1c1916600185901b1785556200030a565b5f85815260208120601f198616915b82811015620003ad578886015182559484019460019091019084016200038c565b5085821015620003cb57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b611c0c80620003e95f395ff3fe608060405260043610610195575f3560e01c80636352211e116100e757806395d89b4111610087578063c87b56dd11610062578063c87b56dd14610445578063cd88617914610464578063e985e9c514610483578063f2fde38b146104ca575f80fd5b806395d89b41146103f3578063a22cb46514610407578063b88d4fde14610426575f80fd5b8063715018a6116100c2578063715018a6146103995780638456cb59146103ad5780638a333b50146103c15780638da5cb5b146103d6575f80fd5b80636352211e146103475780636c0360eb1461036657806370a082311461037a575f80fd5b80632db115441161015257806341f434341161012d57806341f43434146102cf57806342842e0e146102f057806355f804b31461030f5780635c975abb1461032e575f80fd5b80632db11544146102895780632f745c591461029c5780633f4ba83a146102bb575f80fd5b806301ffc9a71461019957806306fdde03146101cd578063081812fc146101ee578063095ea7b31461022557806318160ddd1461024657806323b872dd1461026a575b5f80fd5b3480156101a4575f80fd5b506101b86101b336600461161f565b6104e9565b60405190151581526020015b60405180910390f35b3480156101d8575f80fd5b506101e161053a565b6040516101c49190611687565b3480156101f9575f80fd5b5061020d610208366004611699565b6105ca565b6040516001600160a01b0390911681526020016101c4565b348015610230575f80fd5b5061024461023f3660046116cb565b61060c565b005b348015610251575f80fd5b506001545f54035f19015b6040519081526020016101c4565b348015610275575f80fd5b506102446102843660046116f3565b610625565b610244610297366004611699565b610650565b3480156102a7575f80fd5b5061025c6102b63660046116cb565b610796565b3480156102c6575f80fd5b5061024461089c565b3480156102da575f80fd5b5061020d6daaeb6d7670e522a718067333cd4e81565b3480156102fb575f80fd5b5061024461030a3660046116f3565b6108d2565b34801561031a575f80fd5b506102446103293660046117b3565b6108f7565b348015610339575f80fd5b50600a546101b89060ff1681565b348015610352575f80fd5b5061020d610361366004611699565b610931565b348015610371575f80fd5b506101e1610942565b348015610385575f80fd5b5061025c6103943660046117f8565b6109ce565b3480156103a4575f80fd5b50610244610a1b565b3480156103b8575f80fd5b50610244610a50565b3480156103cc575f80fd5b5061025c60095481565b3480156103e1575f80fd5b506008546001600160a01b031661020d565b3480156103fe575f80fd5b506101e1610a89565b348015610412575f80fd5b5061024461042136600461181e565b610a98565b348015610431575f80fd5b50610244610440366004611853565b610aac565b348015610450575f80fd5b506101e161045f366004611699565b610ad9565b34801561046f575f80fd5b5061024461047e366004611699565b610b5a565b34801561048e575f80fd5b506101b861049d3660046118ca565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b3480156104d5575f80fd5b506102446104e43660046117f8565b610b89565b5f6001600160e01b031982166380ac58cd60e01b148061051957506001600160e01b03198216635b5e139f60e01b145b8061053457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610549906118fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610575906118fb565b80156105c05780601f10610597576101008083540402835291602001916105c0565b820191905f5260205f20905b8154815290600101906020018083116105a357829003601f168201915b5050505050905090565b5f6105d482610c21565b6105f1576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b8161061681610c57565b6106208383610d0e565b505050565b826001600160a01b038116331461063f5761063f33610c57565b61064a848484610d8e565b50505050565b600a5460ff16156106a85760405162461bcd60e51b815260206004820152601b60248201527f4d696e74696e672069732063757272656e746c7920706175736564000000000060448201526064015b60405180910390fd5b6009546001545f54839190035f19016106c19190611947565b11156107085760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161069f565b6008546001600160a01b0316331461078957335f90815260056020526040902054600190600160401b900467ffffffffffffffff166107479083611947565b11156107895760405162461bcd60e51b815260206004820152601160248201527013585e081b5a5b9d1cc81c995858da1959607a1b604482015260640161069f565b6107933382610d99565b50565b5f6107a0836109ce565b82106107ee5760405162461bcd60e51b815260206004820152601d60248201527f4f776e657220646f6573206e6f74206f776e207468697320746f6b656e000000604482015260640161069f565b5f5b6001545f54035f19018110156108615761080981610c21565b801561082e5750836001600160a01b031661082382610931565b6001600160a01b0316145b1561084f57825f03610841579050610534565b8261084b8161195a565b9350505b806108598161196f565b9150506107f0565b5060405162461bcd60e51b815260206004820152600f60248201526e151bdad95b881b9bdd08199bdd5b99608a1b604482015260640161069f565b6008546001600160a01b031633146108c65760405162461bcd60e51b815260040161069f90611987565b600a805460ff19169055565b826001600160a01b03811633146108ec576108ec33610c57565b61064a848484610db2565b6008546001600160a01b031633146109215760405162461bcd60e51b815260040161069f90611987565b600b61092d8282611a09565b5050565b5f61093b82610dcc565b5192915050565b600b805461094f906118fb565b80601f016020809104026020016040519081016040528092919081815260200182805461097b906118fb565b80156109c65780601f1061099d576101008083540402835291602001916109c6565b820191905f5260205f20905b8154815290600101906020018083116109a957829003601f168201915b505050505081565b5f6001600160a01b0382166109f6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a455760405162461bcd60e51b815260040161069f90611987565b610a4e5f610eeb565b565b6008546001600160a01b03163314610a7a5760405162461bcd60e51b815260040161069f90611987565b600a805460ff19166001179055565b606060038054610549906118fb565b81610aa281610c57565b6106208383610f3c565b836001600160a01b0381163314610ac657610ac633610c57565b610ad285858585610fd0565b5050505050565b6060610ae482610c21565b610b0157604051630a14c4b560e41b815260040160405180910390fd5b5f610b0a611014565b905080515f03610b285760405180602001604052805f815250610b53565b80610b3284611023565b604051602001610b43929190611ac5565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610b845760405162461bcd60e51b815260040161069f90611987565b600955565b6008546001600160a01b03163314610bb35760405162461bcd60e51b815260040161069f90611987565b6001600160a01b038116610c185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069f565b61079381610eeb565b5f81600111158015610c3357505f5482105b80156105345750505f90815260046020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b1561079357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610cc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ce69190611b03565b61079357604051633b79c77360e21b81526001600160a01b038216600482015260240161069f565b5f610d1882610931565b9050806001600160a01b0316836001600160a01b031603610d4c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610d8357610d66813361049d565b610d83576040516367d9dca160e11b815260040160405180910390fd5b610620838383611128565b610620838383611183565b61092d828260405180602001604052805f815250611369565b61062083838360405180602001604052805f815250610aac565b604080516060810182525f80825260208201819052918101919091528180600111610ed2575f54811015610ed2575f81815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610ed05780516001600160a01b031615610e68579392505050565b505f19015f81815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610ecb579392505050565b610e68565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b336001600160a01b03831603610f655760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fdb848484611183565b6001600160a01b0383163b1561064a57610ff784848484611523565b61064a576040516368d2bf6b60e11b815260040160405180910390fd5b6060600b8054610549906118fb565b6060815f036110495750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611072578061105c8161196f565b915061106b9050600a83611b32565b915061104c565b5f8167ffffffffffffffff81111561108c5761108c61172c565b6040519080825280601f01601f1916602001820160405280156110b6576020820181803683370190505b5090505b8415611120576110cb600183611b45565b91506110d8600a86611b58565b6110e3906030611947565b60f81b8183815181106110f8576110f8611b6b565b60200101906001600160f81b03191690815f1a905350611119600a86611b32565b94506110ba565b949350505050565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f61118d82610dcc565b9050836001600160a01b0316815f01516001600160a01b0316146111c35760405162a1148160e81b815260040160405180910390fd5b5f336001600160a01b03861614806111e057506111e0853361049d565b806111fb5750336111f0846105ca565b6001600160a01b0316145b90508061121b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661124257604051633a954ecd60e21b815260040160405180910390fd5b61124d5f8487611128565b6001600160a01b038581165f908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff9283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611320575f548214611320578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ad2565b5f546001600160a01b03841661139157604051622e076360e81b815260040160405180910390fd5b825f036113b15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0384165f81815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156114d0575b60405182906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461149b5f878480600101955087611523565b6114b8576040516368d2bf6b60e11b815260040160405180910390fd5b80821061145257825f54146114cb575f80fd5b611514565b5b6040516001830192906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106114d1575b505f90815561064a9085838684565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611557903390899088908890600401611b7f565b6020604051808303815f875af1925050508015611591575060408051601f3d908101601f1916820190925261158e91810190611bbb565b60015b6115ed573d8080156115be576040519150601f19603f3d011682016040523d82523d5f602084013e6115c3565b606091505b5080515f036115e5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6001600160e01b031981168114610793575f80fd5b5f6020828403121561162f575f80fd5b8135610b538161160a565b5f5b8381101561165457818101518382015260200161163c565b50505f910152565b5f815180845261167381602086016020860161163a565b601f01601f19169290920160200192915050565b602081525f610b53602083018461165c565b5f602082840312156116a9575f80fd5b5035919050565b80356001600160a01b03811681146116c6575f80fd5b919050565b5f80604083850312156116dc575f80fd5b6116e5836116b0565b946020939093013593505050565b5f805f60608486031215611705575f80fd5b61170e846116b0565b925061171c602085016116b0565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561175a5761175a61172c565b604051601f8501601f19908116603f011681019082821181831017156117825761178261172c565b8160405280935085815286868601111561179a575f80fd5b858560208301375f602087830101525050509392505050565b5f602082840312156117c3575f80fd5b813567ffffffffffffffff8111156117d9575f80fd5b8201601f810184136117e9575f80fd5b61112084823560208401611740565b5f60208284031215611808575f80fd5b610b53826116b0565b8015158114610793575f80fd5b5f806040838503121561182f575f80fd5b611838836116b0565b9150602083013561184881611811565b809150509250929050565b5f805f8060808587031215611866575f80fd5b61186f856116b0565b935061187d602086016116b0565b925060408501359150606085013567ffffffffffffffff81111561189f575f80fd5b8501601f810187136118af575f80fd5b6118be87823560208401611740565b91505092959194509250565b5f80604083850312156118db575f80fd5b6118e4836116b0565b91506118f2602084016116b0565b90509250929050565b600181811c9082168061190f57607f821691505b60208210810361192d57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561053457610534611933565b5f8161196857611968611933565b505f190190565b5f6001820161198057611980611933565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610620575f81815260208120601f850160051c810160208610156119e25750805b601f850160051c820191505b81811015611a01578281556001016119ee565b505050505050565b815167ffffffffffffffff811115611a2357611a2361172c565b611a3781611a3184546118fb565b846119bc565b602080601f831160018114611a6a575f8415611a535750858301515b5f19600386901b1c1916600185901b178555611a01565b5f85815260208120601f198616915b82811015611a9857888601518255948401946001909101908401611a79565b5085821015611ab557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f8351611ad681846020880161163a565b835190830190611aea81836020880161163a565b64173539b7b760d91b9101908152600501949350505050565b5f60208284031215611b13575f80fd5b8151610b5381611811565b634e487b7160e01b5f52601260045260245ffd5b5f82611b4057611b40611b1e565b500490565b8181038181111561053457610534611933565b5f82611b6657611b66611b1e565b500690565b634e487b7160e01b5f52603260045260245ffd5b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611bb19083018461165c565b9695505050505050565b5f60208284031215611bcb575f80fd5b8151610b538161160a56fea2646970667358221220d3ad7569b7cc3c734fe5dd6513d9601ae584a64fdf81d7d30f07b40e4f85479364736f6c63430008140033697066733a2f2f626166796265696533686f62376764667a653573776f37696a3274787833683479327564627936663670666c6c636172637975337078686f646d652f
Deployed Bytecode
0x608060405260043610610195575f3560e01c80636352211e116100e757806395d89b4111610087578063c87b56dd11610062578063c87b56dd14610445578063cd88617914610464578063e985e9c514610483578063f2fde38b146104ca575f80fd5b806395d89b41146103f3578063a22cb46514610407578063b88d4fde14610426575f80fd5b8063715018a6116100c2578063715018a6146103995780638456cb59146103ad5780638a333b50146103c15780638da5cb5b146103d6575f80fd5b80636352211e146103475780636c0360eb1461036657806370a082311461037a575f80fd5b80632db115441161015257806341f434341161012d57806341f43434146102cf57806342842e0e146102f057806355f804b31461030f5780635c975abb1461032e575f80fd5b80632db11544146102895780632f745c591461029c5780633f4ba83a146102bb575f80fd5b806301ffc9a71461019957806306fdde03146101cd578063081812fc146101ee578063095ea7b31461022557806318160ddd1461024657806323b872dd1461026a575b5f80fd5b3480156101a4575f80fd5b506101b86101b336600461161f565b6104e9565b60405190151581526020015b60405180910390f35b3480156101d8575f80fd5b506101e161053a565b6040516101c49190611687565b3480156101f9575f80fd5b5061020d610208366004611699565b6105ca565b6040516001600160a01b0390911681526020016101c4565b348015610230575f80fd5b5061024461023f3660046116cb565b61060c565b005b348015610251575f80fd5b506001545f54035f19015b6040519081526020016101c4565b348015610275575f80fd5b506102446102843660046116f3565b610625565b610244610297366004611699565b610650565b3480156102a7575f80fd5b5061025c6102b63660046116cb565b610796565b3480156102c6575f80fd5b5061024461089c565b3480156102da575f80fd5b5061020d6daaeb6d7670e522a718067333cd4e81565b3480156102fb575f80fd5b5061024461030a3660046116f3565b6108d2565b34801561031a575f80fd5b506102446103293660046117b3565b6108f7565b348015610339575f80fd5b50600a546101b89060ff1681565b348015610352575f80fd5b5061020d610361366004611699565b610931565b348015610371575f80fd5b506101e1610942565b348015610385575f80fd5b5061025c6103943660046117f8565b6109ce565b3480156103a4575f80fd5b50610244610a1b565b3480156103b8575f80fd5b50610244610a50565b3480156103cc575f80fd5b5061025c60095481565b3480156103e1575f80fd5b506008546001600160a01b031661020d565b3480156103fe575f80fd5b506101e1610a89565b348015610412575f80fd5b5061024461042136600461181e565b610a98565b348015610431575f80fd5b50610244610440366004611853565b610aac565b348015610450575f80fd5b506101e161045f366004611699565b610ad9565b34801561046f575f80fd5b5061024461047e366004611699565b610b5a565b34801561048e575f80fd5b506101b861049d3660046118ca565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b3480156104d5575f80fd5b506102446104e43660046117f8565b610b89565b5f6001600160e01b031982166380ac58cd60e01b148061051957506001600160e01b03198216635b5e139f60e01b145b8061053457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610549906118fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610575906118fb565b80156105c05780601f10610597576101008083540402835291602001916105c0565b820191905f5260205f20905b8154815290600101906020018083116105a357829003601f168201915b5050505050905090565b5f6105d482610c21565b6105f1576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b8161061681610c57565b6106208383610d0e565b505050565b826001600160a01b038116331461063f5761063f33610c57565b61064a848484610d8e565b50505050565b600a5460ff16156106a85760405162461bcd60e51b815260206004820152601b60248201527f4d696e74696e672069732063757272656e746c7920706175736564000000000060448201526064015b60405180910390fd5b6009546001545f54839190035f19016106c19190611947565b11156107085760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b604482015260640161069f565b6008546001600160a01b0316331461078957335f90815260056020526040902054600190600160401b900467ffffffffffffffff166107479083611947565b11156107895760405162461bcd60e51b815260206004820152601160248201527013585e081b5a5b9d1cc81c995858da1959607a1b604482015260640161069f565b6107933382610d99565b50565b5f6107a0836109ce565b82106107ee5760405162461bcd60e51b815260206004820152601d60248201527f4f776e657220646f6573206e6f74206f776e207468697320746f6b656e000000604482015260640161069f565b5f5b6001545f54035f19018110156108615761080981610c21565b801561082e5750836001600160a01b031661082382610931565b6001600160a01b0316145b1561084f57825f03610841579050610534565b8261084b8161195a565b9350505b806108598161196f565b9150506107f0565b5060405162461bcd60e51b815260206004820152600f60248201526e151bdad95b881b9bdd08199bdd5b99608a1b604482015260640161069f565b6008546001600160a01b031633146108c65760405162461bcd60e51b815260040161069f90611987565b600a805460ff19169055565b826001600160a01b03811633146108ec576108ec33610c57565b61064a848484610db2565b6008546001600160a01b031633146109215760405162461bcd60e51b815260040161069f90611987565b600b61092d8282611a09565b5050565b5f61093b82610dcc565b5192915050565b600b805461094f906118fb565b80601f016020809104026020016040519081016040528092919081815260200182805461097b906118fb565b80156109c65780601f1061099d576101008083540402835291602001916109c6565b820191905f5260205f20905b8154815290600101906020018083116109a957829003601f168201915b505050505081565b5f6001600160a01b0382166109f6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a455760405162461bcd60e51b815260040161069f90611987565b610a4e5f610eeb565b565b6008546001600160a01b03163314610a7a5760405162461bcd60e51b815260040161069f90611987565b600a805460ff19166001179055565b606060038054610549906118fb565b81610aa281610c57565b6106208383610f3c565b836001600160a01b0381163314610ac657610ac633610c57565b610ad285858585610fd0565b5050505050565b6060610ae482610c21565b610b0157604051630a14c4b560e41b815260040160405180910390fd5b5f610b0a611014565b905080515f03610b285760405180602001604052805f815250610b53565b80610b3284611023565b604051602001610b43929190611ac5565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610b845760405162461bcd60e51b815260040161069f90611987565b600955565b6008546001600160a01b03163314610bb35760405162461bcd60e51b815260040161069f90611987565b6001600160a01b038116610c185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161069f565b61079381610eeb565b5f81600111158015610c3357505f5482105b80156105345750505f90815260046020526040902054600160e01b900460ff161590565b6daaeb6d7670e522a718067333cd4e3b1561079357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610cc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ce69190611b03565b61079357604051633b79c77360e21b81526001600160a01b038216600482015260240161069f565b5f610d1882610931565b9050806001600160a01b0316836001600160a01b031603610d4c5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610d8357610d66813361049d565b610d83576040516367d9dca160e11b815260040160405180910390fd5b610620838383611128565b610620838383611183565b61092d828260405180602001604052805f815250611369565b61062083838360405180602001604052805f815250610aac565b604080516060810182525f80825260208201819052918101919091528180600111610ed2575f54811015610ed2575f81815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610ed05780516001600160a01b031615610e68579392505050565b505f19015f81815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610ecb579392505050565b610e68565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b336001600160a01b03831603610f655760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fdb848484611183565b6001600160a01b0383163b1561064a57610ff784848484611523565b61064a576040516368d2bf6b60e11b815260040160405180910390fd5b6060600b8054610549906118fb565b6060815f036110495750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611072578061105c8161196f565b915061106b9050600a83611b32565b915061104c565b5f8167ffffffffffffffff81111561108c5761108c61172c565b6040519080825280601f01601f1916602001820160405280156110b6576020820181803683370190505b5090505b8415611120576110cb600183611b45565b91506110d8600a86611b58565b6110e3906030611947565b60f81b8183815181106110f8576110f8611b6b565b60200101906001600160f81b03191690815f1a905350611119600a86611b32565b94506110ba565b949350505050565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f61118d82610dcc565b9050836001600160a01b0316815f01516001600160a01b0316146111c35760405162a1148160e81b815260040160405180910390fd5b5f336001600160a01b03861614806111e057506111e0853361049d565b806111fb5750336111f0846105ca565b6001600160a01b0316145b90508061121b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661124257604051633a954ecd60e21b815260040160405180910390fd5b61124d5f8487611128565b6001600160a01b038581165f908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff9283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611320575f548214611320578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ad2565b5f546001600160a01b03841661139157604051622e076360e81b815260040160405180910390fd5b825f036113b15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0384165f81815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b156114d0575b60405182906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461149b5f878480600101955087611523565b6114b8576040516368d2bf6b60e11b815260040160405180910390fd5b80821061145257825f54146114cb575f80fd5b611514565b5b6040516001830192906001600160a01b038816905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106114d1575b505f90815561064a9085838684565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611557903390899088908890600401611b7f565b6020604051808303815f875af1925050508015611591575060408051601f3d908101601f1916820190925261158e91810190611bbb565b60015b6115ed573d8080156115be576040519150601f19603f3d011682016040523d82523d5f602084013e6115c3565b606091505b5080515f036115e5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6001600160e01b031981168114610793575f80fd5b5f6020828403121561162f575f80fd5b8135610b538161160a565b5f5b8381101561165457818101518382015260200161163c565b50505f910152565b5f815180845261167381602086016020860161163a565b601f01601f19169290920160200192915050565b602081525f610b53602083018461165c565b5f602082840312156116a9575f80fd5b5035919050565b80356001600160a01b03811681146116c6575f80fd5b919050565b5f80604083850312156116dc575f80fd5b6116e5836116b0565b946020939093013593505050565b5f805f60608486031215611705575f80fd5b61170e846116b0565b925061171c602085016116b0565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561175a5761175a61172c565b604051601f8501601f19908116603f011681019082821181831017156117825761178261172c565b8160405280935085815286868601111561179a575f80fd5b858560208301375f602087830101525050509392505050565b5f602082840312156117c3575f80fd5b813567ffffffffffffffff8111156117d9575f80fd5b8201601f810184136117e9575f80fd5b61112084823560208401611740565b5f60208284031215611808575f80fd5b610b53826116b0565b8015158114610793575f80fd5b5f806040838503121561182f575f80fd5b611838836116b0565b9150602083013561184881611811565b809150509250929050565b5f805f8060808587031215611866575f80fd5b61186f856116b0565b935061187d602086016116b0565b925060408501359150606085013567ffffffffffffffff81111561189f575f80fd5b8501601f810187136118af575f80fd5b6118be87823560208401611740565b91505092959194509250565b5f80604083850312156118db575f80fd5b6118e4836116b0565b91506118f2602084016116b0565b90509250929050565b600181811c9082168061190f57607f821691505b60208210810361192d57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561053457610534611933565b5f8161196857611968611933565b505f190190565b5f6001820161198057611980611933565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610620575f81815260208120601f850160051c810160208610156119e25750805b601f850160051c820191505b81811015611a01578281556001016119ee565b505050505050565b815167ffffffffffffffff811115611a2357611a2361172c565b611a3781611a3184546118fb565b846119bc565b602080601f831160018114611a6a575f8415611a535750858301515b5f19600386901b1c1916600185901b178555611a01565b5f85815260208120601f198616915b82811015611a9857888601518255948401946001909101908401611a79565b5085821015611ab557878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f8351611ad681846020880161163a565b835190830190611aea81836020880161163a565b64173539b7b760d91b9101908152600501949350505050565b5f60208284031215611b13575f80fd5b8151610b5381611811565b634e487b7160e01b5f52601260045260245ffd5b5f82611b4057611b40611b1e565b500490565b8181038181111561053457610534611933565b5f82611b6657611b66611b1e565b500690565b634e487b7160e01b5f52603260045260245ffd5b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611bb19083018461165c565b9695505050505050565b5f60208284031215611bcb575f80fd5b8151610b538161160a56fea2646970667358221220d3ad7569b7cc3c734fe5dd6513d9601ae584a64fdf81d7d30f07b40e4f85479364736f6c63430008140033
Deployed Bytecode Sourcemap
60920:3469:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39707:305;;;;;;;;;;-1:-1:-1;39707:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39707:305:0;;;;;;;;42822:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44343:204::-;;;;;;;;;;-1:-1:-1;44343:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;44343:204:0;1533:203:1;63110:157:0;;;;;;;;;;-1:-1:-1;63110:157:0;;;;;:::i;:::-;;:::i;:::-;;38947:312;;;;;;;;;;-1:-1:-1;38804:1:0;39210:12;39000:7;39194:13;:28;-1:-1:-1;;39194:46:0;38947:312;;;2324:25:1;;;2312:2;2297:18;38947:312:0;2178:177:1;63450:163:0;;;;;;;;;;-1:-1:-1;63450:163:0;;;;;:::i;:::-;;:::i;61398:390::-;;;;;;:::i;:::-;;:::i;61803:458::-;;;;;;;;;;-1:-1:-1;61803:458:0;;;;;:::i;:::-;;:::i;62563:71::-;;;;;;;;;;;;;:::i;7709:143::-;;;;;;;;;;;;163:42;7709:143;;63800:171;;;;;;;;;;-1:-1:-1;63800:171:0;;;;;:::i;:::-;;:::i;62379:104::-;;;;;;;;;;-1:-1:-1;62379:104:0;;;;;:::i;:::-;;:::i;61040:25::-;;;;;;;;;;-1:-1:-1;61040:25:0;;;;;;;;42630:125;;;;;;;;;;-1:-1:-1;42630:125:0;;;;;:::i;:::-;;:::i;61072:93::-;;;;;;;;;;;;;:::i;40076:206::-;;;;;;;;;;-1:-1:-1;40076:206:0;;;;;:::i;:::-;;:::i;15916:103::-;;;;;;;;;;;;;:::i;62491:64::-;;;;;;;;;;;;;:::i;61001:32::-;;;;;;;;;;;;;;;;15265:87;;;;;;;;;;-1:-1:-1;15338:6:0;;-1:-1:-1;;;;;15338:6:0;15265:87;;42991:104;;;;;;;;;;;;;:::i;62756:176::-;;;;;;;;;;-1:-1:-1;62756:176:0;;;;;:::i;:::-;;:::i;64158:228::-;;;;;;;;;;-1:-1:-1;64158:228:0;;;;;:::i;:::-;;:::i;43166:327::-;;;;;;;;;;-1:-1:-1;43166:327:0;;;;;:::i;:::-;;:::i;62644:104::-;;;;;;;;;;-1:-1:-1;62644:104:0;;;;;:::i;:::-;;:::i;44977:164::-;;;;;;;;;;-1:-1:-1;44977:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;45098:25:0;;;45074:4;45098:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44977:164;16174:201;;;;;;;;;;-1:-1:-1;16174:201:0;;;;;:::i;:::-;;:::i;39707:305::-;39809:4;-1:-1:-1;;;;;;39846:40:0;;-1:-1:-1;;;39846:40:0;;:105;;-1:-1:-1;;;;;;;39903:48:0;;-1:-1:-1;;;39903:48:0;39846:105;:158;;;-1:-1:-1;;;;;;;;;;28181:40:0;;;39968:36;39826:178;39707:305;-1:-1:-1;;39707:305:0:o;42822:100::-;42876:13;42909:5;42902:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42822:100;:::o;44343:204::-;44411:7;44436:16;44444:7;44436;:16::i;:::-;44431:64;;44461:34;;-1:-1:-1;;;44461:34:0;;;;;;;;;;;44431:64;-1:-1:-1;44515:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44515:24:0;;44343:204::o;63110:157::-;63206:8;9491:30;9512:8;9491:20;:30::i;:::-;63227:32:::1;63241:8;63251:7;63227:13;:32::i;:::-;63110:157:::0;;;:::o;63450:163::-;63551:4;-1:-1:-1;;;;;9217:18:0;;9225:10;9217:18;9213:83;;9252:32;9273:10;9252:20;:32::i;:::-;63568:37:::1;63587:4;63593:2;63597:7;63568:18;:37::i;:::-;63450:163:::0;;;;:::o;61398:390::-;61473:6;;;;61472:7;61464:47;;;;-1:-1:-1;;;61464:47:0;;6315:2:1;61464:47:0;;;6297:21:1;6354:2;6334:18;;;6327:30;6393:29;6373:18;;;6366:57;6440:18;;61464:47:0;;;;;;;;;61558:10;;38804:1;39210:12;39000:7;39194:13;61546:8;;39194:28;;-1:-1:-1;;39194:46:0;61530:24;;;;:::i;:::-;:38;;61522:73;;;;-1:-1:-1;;;61522:73:0;;6933:2:1;61522:73:0;;;6915:21:1;6972:2;6952:18;;;6945:30;-1:-1:-1;;;6991:18:1;;;6984:52;7053:18;;61522:73:0;6731:346:1;61522:73:0;15338:6;;-1:-1:-1;;;;;15338:6:0;61610:10;:21;61606:125;;61681:10;40425:7;40460:19;;;:12;:19;;;;;:32;61696:1;;-1:-1:-1;;;40460:32:0;;;;61656:36;;:8;:36;:::i;:::-;:41;;61648:71;;;;-1:-1:-1;;;61648:71:0;;7284:2:1;61648:71:0;;;7266:21:1;7323:2;7303:18;;;7296:30;-1:-1:-1;;;7342:18:1;;;7335:47;7399:18;;61648:71:0;7082:341:1;61648:71:0;61741:31;61751:10;61763:8;61741:9;:31::i;:::-;61398:390;:::o;61803:458::-;61883:7;61919:16;61929:5;61919:9;:16::i;:::-;61911:5;:24;61903:66;;;;-1:-1:-1;;;61903:66:0;;7630:2:1;61903:66:0;;;7612:21:1;7669:2;7649:18;;;7642:30;7708:31;7688:18;;;7681:59;7757:18;;61903:66:0;7428:353:1;61903:66:0;61987:9;61982:236;38804:1;39210:12;39000:7;39194:13;:28;-1:-1:-1;;39194:46:0;62002:1;:17;61982:236;;;62045:10;62053:1;62045:7;:10::i;:::-;:33;;;;;62073:5;-1:-1:-1;;;;;62059:19:0;:10;62067:1;62059:7;:10::i;:::-;-1:-1:-1;;;;;62059:19:0;;62045:33;62041:166;;;62103:5;62112:1;62103:10;62099:67;;62145:1;-1:-1:-1;62138:8:0;;62099:67;62184:7;;;;:::i;:::-;;;;62041:166;62021:3;;;;:::i;:::-;;;;61982:236;;;-1:-1:-1;62228:25:0;;-1:-1:-1;;;62228:25:0;;8269:2:1;62228:25:0;;;8251:21:1;8308:2;8288:18;;;8281:30;-1:-1:-1;;;8327:18:1;;;8320:45;8382:18;;62228:25:0;8067:339:1;62563:71:0;15338:6;;-1:-1:-1;;;;;15338:6:0;14069:10;15485:23;15477:68;;;;-1:-1:-1;;;15477:68:0;;;;;;;:::i;:::-;62612:6:::1;:14:::0;;-1:-1:-1;;62612:14:0::1;::::0;;62563:71::o;63800:171::-;63905:4;-1:-1:-1;;;;;9217:18:0;;9225:10;9217:18;9213:83;;9252:32;9273:10;9252:20;:32::i;:::-;63922:41:::1;63945:4;63951:2;63955:7;63922:22;:41::i;62379:104::-:0;15338:6;;-1:-1:-1;;;;;15338:6:0;14069:10;15485:23;15477:68;;;;-1:-1:-1;;;15477:68:0;;;;;;;:::i;:::-;62454:7:::1;:21;62464:11:::0;62454:7;:21:::1;:::i;:::-;;62379:104:::0;:::o;42630:125::-;42694:7;42721:21;42734:7;42721:12;:21::i;:::-;:26;;42630:125;-1:-1:-1;;42630:125:0:o;61072:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40076:206::-;40140:7;-1:-1:-1;;;;;40164:19:0;;40160:60;;40192:28;;-1:-1:-1;;;40192:28:0;;;;;;;;;;;40160:60;-1:-1:-1;;;;;;40246:19:0;;;;;:12;:19;;;;;:27;;;;40076:206::o;15916:103::-;15338:6;;-1:-1:-1;;;;;15338:6:0;14069:10;15485:23;15477:68;;;;-1:-1:-1;;;15477:68:0;;;;;;;:::i;:::-;15981:30:::1;16008:1;15981:18;:30::i;:::-;15916:103::o:0;62491:64::-;15338:6;;-1:-1:-1;;;;;15338:6:0;14069:10;15485:23;15477:68;;;;-1:-1:-1;;;15477:68:0;;;;;;;:::i;:::-;62534:6:::1;:13:::0;;-1:-1:-1;;62534:13:0::1;62543:4;62534:13;::::0;;62491:64::o;42991:104::-;43047:13;43080:7;43073:14;;;;;:::i;62756:176::-;62860:8;9491:30;9512:8;9491:20;:30::i;:::-;62881:43:::1;62905:8;62915;62881:23;:43::i;64158:228::-:0;64309:4;-1:-1:-1;;;;;9217:18:0;;9225:10;9217:18;9213:83;;9252:32;9273:10;9252:20;:32::i;:::-;64331:47:::1;64354:4;64360:2;64364:7;64373:4;64331:22;:47::i;:::-;64158:228:::0;;;;;:::o;43166:327::-;43239:13;43270:16;43278:7;43270;:16::i;:::-;43265:59;;43295:29;;-1:-1:-1;;;43295:29:0;;;;;;;;;;;43265:59;43337:21;43361:10;:8;:10::i;:::-;43337:34;;43395:7;43389:21;43414:1;43389:26;:96;;;;;;;;;;;;;;;;;43442:7;43451:18;:7;:16;:18::i;:::-;43425:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43389:96;43382:103;43166:327;-1:-1:-1;;;43166:327:0:o;62644:104::-;15338:6;;-1:-1:-1;;;;;15338:6:0;14069:10;15485:23;15477:68;;;;-1:-1:-1;;;15477:68:0;;;;;;;:::i;:::-;62716:10:::1;:24:::0;62644:104::o;16174:201::-;15338:6;;-1:-1:-1;;;;;15338:6:0;14069:10;15485:23;15477:68;;;;-1:-1:-1;;;15477:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16263:22:0;::::1;16255:73;;;::::0;-1:-1:-1;;;16255:73:0;;11846:2:1;16255:73:0::1;::::0;::::1;11828:21:1::0;11885:2;11865:18;;;11858:30;11924:34;11904:18;;;11897:62;-1:-1:-1;;;11975:18:1;;;11968:36;12021:19;;16255:73:0::1;11644:402:1::0;16255:73:0::1;16339:28;16358:8;16339:18;:28::i;46330:174::-:0;46387:4;46430:7;38804:1;46411:26;;:53;;;;;46451:13;;46441:7;:23;46411:53;:85;;;;-1:-1:-1;;46469:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;46469:27:0;;;;46468:28;;46330:174::o;9634:647::-;163:42;9825:45;:49;9821:453;;10124:67;;-1:-1:-1;;;10124:67:0;;10175:4;10124:67;;;12263:34:1;-1:-1:-1;;;;;12333:15:1;;12313:18;;;12306:43;163:42:0;;10124;;12198:18:1;;10124:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10119:144;;10219:28;;-1:-1:-1;;;10219:28:0;;-1:-1:-1;;;;;1697:32:1;;10219:28:0;;;1679:51:1;1652:18;;10219:28:0;1533:203:1;43897:380:0;43978:13;43994:24;44010:7;43994:15;:24::i;:::-;43978:40;;44039:5;-1:-1:-1;;;;;44033:11:0;:2;-1:-1:-1;;;;;44033:11:0;;44029:48;;44053:24;;-1:-1:-1;;;44053:24:0;;;;;;;;;;;44029:48;14069:10;-1:-1:-1;;;;;44094:21:0;;;44090:139;;44121:37;44138:5;14069:10;44977:164;:::i;44121:37::-;44117:112;;44182:35;;-1:-1:-1;;;44182:35:0;;;;;;;;;;;44117:112;44241:28;44250:2;44254:7;44263:5;44241:8;:28::i;45208:170::-;45342:28;45352:4;45358:2;45362:7;45342:9;:28::i;46588:104::-;46657:27;46667:2;46671:8;46657:27;;;;;;;;;;;;:9;:27::i;45449:185::-;45587:39;45604:4;45610:2;45614:7;45587:39;;;;;;;;;;;;:16;:39::i;41457:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;41568:7:0;;38804:1;41617:23;41613:888;;41653:13;;41646:4;:20;41642:859;;;41687:31;41721:17;;;:11;:17;;;;;;;;;41687:51;;;;;;;;;-1:-1:-1;;;;;41687:51:0;;;;-1:-1:-1;;;41687:51:0;;;;;;;;;;;-1:-1:-1;;;41687:51:0;;;;;;;;;;;;;;41757:729;;41807:14;;-1:-1:-1;;;;;41807:28:0;;41803:101;;41871:9;41457:1111;-1:-1:-1;;;41457:1111:0:o;41803:101::-;-1:-1:-1;;;42246:6:0;42291:17;;;;:11;:17;;;;;;;;;42279:29;;;;;;;;;-1:-1:-1;;;;;42279:29:0;;;;;-1:-1:-1;;;42279:29:0;;;;;;;;;;;-1:-1:-1;;;42279:29:0;;;;;;;;;;;;;42339:28;42335:109;;42407:9;41457:1111;-1:-1:-1;;;41457:1111:0:o;42335:109::-;42206:261;;;41668:833;41642:859;42529:31;;-1:-1:-1;;;42529:31:0;;;;;;;;;;;16535:191;16628:6;;;-1:-1:-1;;;;;16645:17:0;;;-1:-1:-1;;;;;;16645:17:0;;;;;;;16678:40;;16628:6;;;16645:17;16628:6;;16678:40;;16609:16;;16678:40;16598:128;16535:191;:::o;44619:287::-;14069:10;-1:-1:-1;;;;;44718:24:0;;;44714:54;;44751:17;;-1:-1:-1;;;44751:17:0;;;;;;;;;;;44714:54;14069:10;44781:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44781:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44781:53:0;;;;;;;;;;44850:48;;540:41:1;;;44781:42:0;;14069:10;44850:48;;513:18:1;44850:48:0;;;;;;;44619:287;;:::o;45705:370::-;45872:28;45882:4;45888:2;45892:7;45872:9;:28::i;:::-;-1:-1:-1;;;;;45915:13:0;;18261:19;:23;45911:157;;45936:56;45967:4;45973:2;45977:7;45986:5;45936:30;:56::i;:::-;45932:136;;46016:40;;-1:-1:-1;;;46016:40:0;;;;;;;;;;;62269:100;62321:13;62354:7;62347:14;;;;;:::i;11551:723::-;11607:13;11828:5;11837:1;11828:10;11824:53;;-1:-1:-1;;11855:10:0;;;;;;;;;;;;-1:-1:-1;;;11855:10:0;;;;;11551:723::o;11824:53::-;11902:5;11887:12;11943:78;11950:9;;11943:78;;11976:8;;;;:::i;:::-;;-1:-1:-1;11999:10:0;;-1:-1:-1;12007:2:0;11999:10;;:::i;:::-;;;11943:78;;;12031:19;12063:6;12053:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12053:17:0;;12031:39;;12081:154;12088:10;;12081:154;;12115:11;12125:1;12115:11;;:::i;:::-;;-1:-1:-1;12184:10:0;12192:2;12184:5;:10;:::i;:::-;12171:24;;:2;:24;:::i;:::-;12158:39;;12141:6;12148;12141:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;12141:56:0;;;;;;;;-1:-1:-1;12212:11:0;12221:2;12212:11;;:::i;:::-;;;12081:154;;;12259:6;11551:723;-1:-1:-1;;;;11551:723:0:o;55552:196::-;55667:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;55667:29:0;-1:-1:-1;;;;;55667:29:0;;;;;;;;;55712:28;;55667:24;;55712:28;;;;;;;55552:196;;;:::o;50500:2130::-;50615:35;50653:21;50666:7;50653:12;:21::i;:::-;50615:59;;50713:4;-1:-1:-1;;;;;50691:26:0;:13;:18;;;-1:-1:-1;;;;;50691:26:0;;50687:67;;50726:28;;-1:-1:-1;;;50726:28:0;;;;;;;;;;;50687:67;50767:22;14069:10;-1:-1:-1;;;;;50793:20:0;;;;:73;;-1:-1:-1;50830:36:0;50847:4;14069:10;44977:164;:::i;50830:36::-;50793:126;;;-1:-1:-1;14069:10:0;50883:20;50895:7;50883:11;:20::i;:::-;-1:-1:-1;;;;;50883:36:0;;50793:126;50767:153;;50938:17;50933:66;;50964:35;;-1:-1:-1;;;50964:35:0;;;;;;;;;;;50933:66;-1:-1:-1;;;;;51014:16:0;;51010:52;;51039:23;;-1:-1:-1;;;51039:23:0;;;;;;;;;;;51010:52;51183:35;51200:1;51204:7;51213:4;51183:8;:35::i;:::-;-1:-1:-1;;;;;51514:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;51514:31:0;;;;;;;-1:-1:-1;;51514:31:0;;;;;;;51560:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;51560:29:0;;;;;;;;;;;51640:20;;;:11;:20;;;;;;51675:18;;-1:-1:-1;;;;;;51708:49:0;;;;-1:-1:-1;;;51741:15:0;51708:49;;;;;;;;;;52031:11;;52091:24;;;;;52134:13;;51640:20;;52091:24;;52134:13;52130:384;;52344:13;;52329:11;:28;52325:174;;52382:20;;52451:28;;;;52425:54;;-1:-1:-1;;;52425:54:0;-1:-1:-1;;;;;;52425:54:0;;;-1:-1:-1;;;;;52382:20:0;;52425:54;;;;52325:174;51489:1036;;;52561:7;52557:2;-1:-1:-1;;;;;52542:27:0;52551:4;-1:-1:-1;;;;;52542:27:0;;;;;;;;;;;52580:42;63450:163;47065:1749;47188:20;47211:13;-1:-1:-1;;;;;47239:16:0;;47235:48;;47264:19;;-1:-1:-1;;;47264:19:0;;;;;;;;;;;47235:48;47298:8;47310:1;47298:13;47294:44;;47320:18;;-1:-1:-1;;;47320:18:0;;;;;;;;;;;47294:44;-1:-1:-1;;;;;47689:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;47748:49:0;;47689:44;;;;;;;;47748:49;;;-1:-1:-1;;;;;47689:44:0;;;;;;47748:49;;;;;;;;;;;;;;;;47814:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;47864:66:0;;;-1:-1:-1;;;47914:15:0;47864:66;;;;;;;;;;;;;47814:25;;48011:23;;;;18261:19;:23;48051:631;;48091:313;48122:38;;48147:12;;-1:-1:-1;;;;;48122:38:0;;;48139:1;;48122:38;;48139:1;;48122:38;48188:69;48227:1;48231:2;48235:14;;;;;;48251:5;48188:30;:69::i;:::-;48183:174;;48293:40;;-1:-1:-1;;;48293:40:0;;;;;;;;;;;48183:174;48399:3;48384:12;:18;48091:313;;48485:12;48468:13;;:29;48464:43;;48499:8;;;48464:43;48051:631;;;48548:119;48579:40;;48604:14;;;;;-1:-1:-1;;;;;48579:40:0;;;48596:1;;48579:40;;48596:1;;48579:40;48662:3;48647:12;:18;48548:119;;48051:631;-1:-1:-1;48696:13:0;:28;;;48746:60;;48779:2;48783:12;48797:8;48746:60;:::i;56240:667::-;56424:72;;-1:-1:-1;;;56424:72:0;;56403:4;;-1:-1:-1;;;;;56424:36:0;;;;;:72;;14069:10;;56475:4;;56481:7;;56490:5;;56424:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56424:72:0;;;;;;;;-1:-1:-1;;56424:72:0;;;;;;;;;;;;:::i;:::-;;;56420:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56658:6;:13;56675:1;56658:18;56654:235;;56704:40;;-1:-1:-1;;;56704:40:0;;;;;;;;;;;56654:235;56847:6;56841:13;56832:6;56828:2;56824:15;56817:38;56420:480;-1:-1:-1;;;;;;56543:55:0;-1:-1:-1;;;56543:55:0;;-1:-1:-1;56240:667:0;;;;;;:::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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2932:127::-;2993:10;2988:3;2984:20;2981:1;2974:31;3024:4;3021:1;3014:15;3048:4;3045:1;3038:15;3064:632;3129:5;3159:18;3200:2;3192:6;3189:14;3186:40;;;3206:18;;:::i;:::-;3281:2;3275:9;3249:2;3335:15;;-1:-1:-1;;3331:24:1;;;3357:2;3327:33;3323:42;3311:55;;;3381:18;;;3401:22;;;3378:46;3375:72;;;3427:18;;:::i;:::-;3467:10;3463:2;3456:22;3496:6;3487:15;;3526:6;3518;3511:22;3566:3;3557:6;3552:3;3548:16;3545:25;3542:45;;;3583:1;3580;3573:12;3542:45;3633:6;3628:3;3621:4;3613:6;3609:17;3596:44;3688:1;3681:4;3672:6;3664;3660:19;3656:30;3649:41;;;;3064:632;;;;;:::o;3701:451::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3879:9;3866:23;3912:18;3904:6;3901:30;3898:50;;;3944:1;3941;3934:12;3898:50;3967:22;;4020:4;4012:13;;4008:27;-1:-1:-1;3998:55:1;;4049:1;4046;4039:12;3998:55;4072:74;4138:7;4133:2;4120:16;4115:2;4111;4107:11;4072:74;:::i;4157:186::-;4216:6;4269:2;4257:9;4248:7;4244:23;4240:32;4237:52;;;4285:1;4282;4275:12;4237:52;4308:29;4327:9;4308:29;:::i;4348:118::-;4434:5;4427:13;4420:21;4413:5;4410:32;4400:60;;4456:1;4453;4446:12;4471:315;4536:6;4544;4597:2;4585:9;4576:7;4572:23;4568:32;4565:52;;;4613:1;4610;4603:12;4565:52;4636:29;4655:9;4636:29;:::i;:::-;4626:39;;4715:2;4704:9;4700:18;4687:32;4728:28;4750:5;4728:28;:::i;:::-;4775:5;4765:15;;;4471:315;;;;;:::o;4791:667::-;4886:6;4894;4902;4910;4963:3;4951:9;4942:7;4938:23;4934:33;4931:53;;;4980:1;4977;4970:12;4931:53;5003:29;5022:9;5003:29;:::i;:::-;4993:39;;5051:38;5085:2;5074:9;5070:18;5051:38;:::i;:::-;5041:48;;5136:2;5125:9;5121:18;5108:32;5098:42;;5191:2;5180:9;5176:18;5163:32;5218:18;5210:6;5207:30;5204:50;;;5250:1;5247;5240:12;5204:50;5273:22;;5326:4;5318:13;;5314:27;-1:-1:-1;5304:55:1;;5355:1;5352;5345:12;5304:55;5378:74;5444:7;5439:2;5426:16;5421:2;5417;5413:11;5378:74;:::i;:::-;5368:84;;;4791:667;;;;;;;:::o;5463:260::-;5531:6;5539;5592:2;5580:9;5571:7;5567:23;5563:32;5560:52;;;5608:1;5605;5598:12;5560:52;5631:29;5650:9;5631:29;:::i;:::-;5621:39;;5679:38;5713:2;5702:9;5698:18;5679:38;:::i;:::-;5669:48;;5463:260;;;;;:::o;5728:380::-;5807:1;5803:12;;;;5850;;;5871:61;;5925:4;5917:6;5913:17;5903:27;;5871:61;5978:2;5970:6;5967:14;5947:18;5944:38;5941:161;;6024:10;6019:3;6015:20;6012:1;6005:31;6059:4;6056:1;6049:15;6087:4;6084:1;6077:15;5941:161;;5728:380;;;:::o;6469:127::-;6530:10;6525:3;6521:20;6518:1;6511:31;6561:4;6558:1;6551:15;6585:4;6582:1;6575:15;6601:125;6666:9;;;6687:10;;;6684:36;;;6700:18;;:::i;7786:136::-;7825:3;7853:5;7843:39;;7862:18;;:::i;:::-;-1:-1:-1;;;7898:18:1;;7786:136::o;7927:135::-;7966:3;7987:17;;;7984:43;;8007:18;;:::i;:::-;-1:-1:-1;8054:1:1;8043:13;;7927:135::o;8411:356::-;8613:2;8595:21;;;8632:18;;;8625:30;8691:34;8686:2;8671:18;;8664:62;8758:2;8743:18;;8411:356::o;8898:545::-;9000:2;8995:3;8992:11;8989:448;;;9036:1;9061:5;9057:2;9050:17;9106:4;9102:2;9092:19;9176:2;9164:10;9160:19;9157:1;9153:27;9147:4;9143:38;9212:4;9200:10;9197:20;9194:47;;;-1:-1:-1;9235:4:1;9194:47;9290:2;9285:3;9281:12;9278:1;9274:20;9268:4;9264:31;9254:41;;9345:82;9363:2;9356:5;9353:13;9345:82;;;9408:17;;;9389:1;9378:13;9345:82;;;9349:3;;;8898:545;;;:::o;9619:1352::-;9745:3;9739:10;9772:18;9764:6;9761:30;9758:56;;;9794:18;;:::i;:::-;9823:97;9913:6;9873:38;9905:4;9899:11;9873:38;:::i;:::-;9867:4;9823:97;:::i;:::-;9975:4;;10039:2;10028:14;;10056:1;10051:663;;;;10758:1;10775:6;10772:89;;;-1:-1:-1;10827:19:1;;;10821:26;10772:89;-1:-1:-1;;9576:1:1;9572:11;;;9568:24;9564:29;9554:40;9600:1;9596:11;;;9551:57;10874:81;;10021:944;;10051:663;8845:1;8838:14;;;8882:4;8869:18;;-1:-1:-1;;10087:20:1;;;10205:236;10219:7;10216:1;10213:14;10205:236;;;10308:19;;;10302:26;10287:42;;10400:27;;;;10368:1;10356:14;;;;10235:19;;10205:236;;;10209:3;10469:6;10460:7;10457:19;10454:201;;;10530:19;;;10524:26;-1:-1:-1;;10613:1:1;10609:14;;;10625:3;10605:24;10601:37;10597:42;10582:58;10567:74;;10454:201;-1:-1:-1;;;;;10701:1:1;10685:14;;;10681:22;10668:36;;-1:-1:-1;9619:1352:1:o;10976:663::-;11256:3;11294:6;11288:13;11310:66;11369:6;11364:3;11357:4;11349:6;11345:17;11310:66;:::i;:::-;11439:13;;11398:16;;;;11461:70;11439:13;11398:16;11508:4;11496:17;;11461:70;:::i;:::-;-1:-1:-1;;;11553:20:1;;11582:22;;;11631:1;11620:13;;10976:663;-1:-1:-1;;;;10976:663:1:o;12360:245::-;12427:6;12480:2;12468:9;12459:7;12455:23;12451:32;12448:52;;;12496:1;12493;12486:12;12448:52;12528:9;12522:16;12547:28;12569:5;12547:28;:::i;12610:127::-;12671:10;12666:3;12662:20;12659:1;12652:31;12702:4;12699:1;12692:15;12726:4;12723:1;12716:15;12742:120;12782:1;12808;12798:35;;12813:18;;:::i;:::-;-1:-1:-1;12847:9:1;;12742:120::o;12867:128::-;12934:9;;;12955:11;;;12952:37;;;12969:18;;:::i;13000:112::-;13032:1;13058;13048:35;;13063:18;;:::i;:::-;-1:-1:-1;13097:9:1;;13000:112::o;13117:127::-;13178:10;13173:3;13169:20;13166:1;13159:31;13209:4;13206:1;13199:15;13233:4;13230:1;13223:15;13249:489;-1:-1:-1;;;;;13518:15:1;;;13500:34;;13570:15;;13565:2;13550:18;;13543:43;13617:2;13602:18;;13595:34;;;13665:3;13660:2;13645:18;;13638:31;;;13443:4;;13686:46;;13712:19;;13704:6;13686:46;:::i;:::-;13678:54;13249:489;-1:-1:-1;;;;;;13249:489:1:o;13743:249::-;13812:6;13865:2;13853:9;13844:7;13840:23;13836:32;13833:52;;;13881:1;13878;13871:12;13833:52;13913:9;13907:16;13932:30;13956:5;13932:30;:::i
Swarm Source
ipfs://d3ad7569b7cc3c734fe5dd6513d9601ae584a64fdf81d7d30f07b40e4f854793
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.