Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 170 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 21131045 | 17 days ago | IN | 0 ETH | 0.00116302 | ||||
Transfer From | 21104194 | 20 days ago | IN | 0 ETH | 0.00043642 | ||||
Set Approval For... | 21067478 | 25 days ago | IN | 0 ETH | 0.00056607 | ||||
Set Approval For... | 21017265 | 32 days ago | IN | 0 ETH | 0.00040799 | ||||
Set Approval For... | 20940000 | 43 days ago | IN | 0 ETH | 0.00061758 | ||||
Set Approval For... | 20938624 | 43 days ago | IN | 0 ETH | 0.00060916 | ||||
Set Approval For... | 20813198 | 61 days ago | IN | 0 ETH | 0.00170205 | ||||
Safe Transfer Fr... | 20254470 | 139 days ago | IN | 0 ETH | 0.00009301 | ||||
Set Approval For... | 20151202 | 153 days ago | IN | 0 ETH | 0.00011076 | ||||
Set Approval For... | 19966979 | 179 days ago | IN | 0 ETH | 0.00116643 | ||||
Set Approval For... | 19781124 | 205 days ago | IN | 0 ETH | 0.00041563 | ||||
Set Approval For... | 19621333 | 227 days ago | IN | 0 ETH | 0.00128697 | ||||
Set Approval For... | 19600529 | 230 days ago | IN | 0 ETH | 0.00073558 | ||||
Transfer From | 19511293 | 243 days ago | IN | 0 ETH | 0.00079387 | ||||
Set Approval For... | 19510135 | 243 days ago | IN | 0 ETH | 0.00111176 | ||||
Transfer From | 19510053 | 243 days ago | IN | 0 ETH | 0.00103488 | ||||
Transfer From | 19495966 | 245 days ago | IN | 0 ETH | 0.00097671 | ||||
Transfer From | 19388075 | 260 days ago | IN | 0 ETH | 0.00249617 | ||||
Set Approval For... | 19096177 | 301 days ago | IN | 0 ETH | 0.00071451 | ||||
Transfer From | 19000212 | 315 days ago | IN | 0 ETH | 0.0010494 | ||||
Set Approval For... | 18986977 | 316 days ago | IN | 0 ETH | 0.00113723 | ||||
Set Approval For... | 18986746 | 316 days ago | IN | 0 ETH | 0.00126219 | ||||
Set Approval For... | 18944849 | 322 days ago | IN | 0 ETH | 0.00062282 | ||||
Set Approval For... | 18944801 | 322 days ago | IN | 0 ETH | 0.00069493 | ||||
Set Approval For... | 18943466 | 323 days ago | IN | 0 ETH | 0.00107664 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
The_Great_Wave_off_Kanagawa_from_the_series_36_Views_of_Mt_Fuji
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-08 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // 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/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: GreatWave.sol pragma solidity ^0.8.0; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } /// @notice Optimized and flexible operator filterer to abide to OpenSea's /// mandatory on-chain royalty enforcement in order for new collections to /// receive royalties. /// For more information, see: /// See: https://github.com/ProjectOpenSea/operator-filter-registry abstract contract OperatorFilterer { /// @dev The default OpenSea operator blocklist subscription. address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; /// @dev The OpenSea operator filter registry. address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E; /// @dev Registers the current contract to OpenSea's operator filter, /// and subscribe to the default OpenSea operator blocklist. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering() internal virtual { _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true); } /// @dev Registers the current contract to OpenSea's operator filter. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe) internal virtual { /// @solidity memory-safe-assembly assembly { let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`. // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty. subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy)) // prettier-ignore for {} iszero(subscribe) {} { if iszero(subscriptionOrRegistrantToCopy) { functionSelector := 0x4420e486 // `register(address)`. break } functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`. break } // Store the function selector. mstore(0x00, shl(224, functionSelector)) // Store the `address(this)`. mstore(0x04, address()) // Store the `subscriptionOrRegistrantToCopy`. mstore(0x24, subscriptionOrRegistrantToCopy) // Register into the registry. pop(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x00)) // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, because of Solidity's memory size limits. mstore(0x24, 0) } } /// @dev Modifier to guard a function and revert if `from` is a blocked operator. /// Can be turned on / off via `enabled`. /// For gas efficiency, you can use tight variable packing to efficiently read / write /// the boolean value for `enabled`. modifier onlyAllowedOperator(address from, bool enabled) virtual { /// @solidity memory-safe-assembly assembly { // This code prioritizes runtime gas costs on a chain with the registry. // As such, we will not use `extcodesize`, but rather abuse the behavior // of `staticcall` returning 1 when called on an empty / missing contract, // to avoid reverting when a chain does not have the registry. if enabled { // Check if `from` is not equal to `msg.sender`, // discarding the upper 96 bits of `from` in case they are dirty. if iszero(eq(shr(96, shl(96, from)), caller())) { // Store the function selector of `isOperatorAllowed(address,address)`, // shifted left by 6 bytes, which is enough for 8tb of memory. // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL). mstore(0x00, 0xc6171134001122334455) // Store the `address(this)`. mstore(0x1a, address()) // Store the `msg.sender`. mstore(0x3a, caller()) // `isOperatorAllowed` always returns true if it does not revert. if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) { // Bubble up the revert if the staticcall reverts. returndatacopy(0x00, 0x00, returndatasize()) revert(0x00, returndatasize()) } // We'll skip checking if `from` is inside the blacklist. // Even though that can block transferring out of wrapper contracts, // we don't want tokens to be stuck. // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, if less than 8tb of memory is used. mstore(0x3a, 0) } } } _; } /// @dev Modifier to guard a function from approving a blocked operator. /// Can be turned on / off via `enabled`. /// For efficiency, you can use tight variable packing to efficiently read / write /// the boolean value for `enabled`. modifier onlyAllowedOperatorApproval(address operator, bool enabled) virtual { /// @solidity memory-safe-assembly assembly { // For more information on the optimization techniques used, // see the comments in `onlyAllowedOperator`. if enabled { // Store the function selector of `isOperatorAllowed(address,address)`, mstore(0x00, 0xc6171134001122334455) // Store the `address(this)`. mstore(0x1a, address()) // Store the `operator`, discarding the upper 96 bits in case they are dirty. mstore(0x3a, shr(96, shl(96, operator))) // `isOperatorAllowed` always returns true if it does not revert. if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) { // Bubble up the revert if the staticcall reverts. returndatacopy(0x00, 0x00, returndatasize()) revert(0x00, returndatasize()) } // Restore the part of the free memory pointer that was overwritten. mstore(0x3a, 0) } } _; } } error AlreadyReservedTokens(); error CallerNotOffsetter(); error FunctionLocked(); error InsufficientValue(); error InsufficientMints(); error InsufficientSupply(); error InvalidSignature(); error NoContractMinting(); error ProvenanceHashAlreadySet(); error ProvenanceHashNotSet(); error TokenOffsetAlreadySet(); error TokenOffsetNotSet(); error WithdrawFailed(); interface Offsetable { function setOffset(uint256 randomness) external; } contract The_Great_Wave_off_Kanagawa_from_the_series_36_Views_of_Mt_Fuji is ERC721A, ERC2981, OperatorFilterer, Ownable { using ECDSA for bytes32; string private _baseTokenURI; string public baseExtension = ".json"; uint256 public constant RESERVED = 336; uint256 public constant MAX_SUPPLY = 336; string public provenanceHash; bool public operatorFilteringEnabled; mapping(bytes4 => bool) public functionLocked; constructor( address _royaltyReceiver, uint96 _royaltyFraction ) ERC721A(unicode"The Great Wave off Kanagawa from the series 36 Views of Mt Fuji", unicode"The Great Wave off Kanagawa from the series 36 Views of Mt Fuji") { _registerForOperatorFiltering(); operatorFilteringEnabled = true; _setDefaultRoyalty(_royaltyReceiver, _royaltyFraction); } /** * @notice Modifier applied to functions that will be disabled when they're no longer needed */ modifier lockable() { if (functionLocked[msg.sig]) revert FunctionLocked(); _; } /** * @inheritdoc ERC721A */ function supportsInterface(bytes4 interfaceId) public view override(ERC721A, ERC2981) returns (bool) { return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } /** * @notice Override ERC721A _baseURI function to use base URI pattern */ function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, Strings.toString(tokenId), baseExtension)) : ""; } /** * @notice Return the number of tokens an address has minted * @param account Address to return the number of tokens minted for */ function numberMinted(address account) external view returns (uint256) { return _numberMinted(account); } /** * @notice Lock a function so that it can no longer be called * @dev WARNING: THIS CANNOT BE UNDONE * @param id Function signature */ function lockFunction(bytes4 id) external onlyOwner { functionLocked[id] = true; } /** * @notice Set the state of the OpenSea operator filter * @param value Flag indicating if the operator filter should be applied to transfers and approvals */ function setOperatorFilteringEnabled(bool value) external lockable onlyOwner { operatorFilteringEnabled = value; } /** * @notice Set new royalties settings for the collection * @param receiver Address to receive royalties * @param royaltyFraction Royalty fee respective to fee denominator (10_000) */ function setRoyalties(address receiver, uint96 royaltyFraction) external onlyOwner { _setDefaultRoyalty(receiver, royaltyFraction); } /** * @notice Set token metadata base URI * @param _newBaseURI New base URI */ function setBaseURI(string calldata _newBaseURI) external lockable onlyOwner { _baseTokenURI = _newBaseURI; } /** * @notice Set provenance hash for the collection * @param _provenanceHash New hash of the metadata */ function setProvenanceHash(string calldata _provenanceHash) external lockable onlyOwner { if (bytes(provenanceHash).length != 0) revert ProvenanceHashAlreadySet(); provenanceHash = _provenanceHash; } /** * @notice Mint `RESERVED` amount of tokens to an address * @param to Address to send the reserved tokens */ function reserve(address to) external lockable onlyOwner { if (_totalMinted() >= RESERVED) revert AlreadyReservedTokens(); _mint(to, RESERVED); } /** * @notice Withdraw all ETH sent to the contract */ function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); if (!success) revert WithdrawFailed(); } /** * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties * @inheritdoc ERC721A */ function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator, operatorFilteringEnabled) { super.setApprovalForAll(operator, approved); } /** * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties * @inheritdoc ERC721A */ function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator, operatorFilteringEnabled) { super.approve(operator, tokenId); } /** * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties * @inheritdoc ERC721A */ function transferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) { super.transferFrom(from, to, tokenId); } /** * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties * @inheritdoc ERC721A */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) { super.safeTransferFrom(from, to, tokenId); } /** * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties * @inheritdoc ERC721A */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyReservedTokens","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"FunctionLocked","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"ProvenanceHashAlreadySet","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"},{"inputs":[],"name":"WithdrawFailed","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"functionLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"id","type":"bytes4"}],"name":"lockFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608090815264173539b7b760d91b60a052600c9062000026908262000368565b503480156200003457600080fd5b506040516200245b3803806200245b833981016040819052620000579162000434565b6040518060600160405280603f81526020016200241c603f91396040518060600160405280603f81526020016200241c603f9139600262000099838262000368565b506003620000a8828262000368565b5050600160005550620000bb33620000e6565b620000c562000138565b600e805460ff19166001179055620000de82826200015b565b505062000489565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000159733cc6cdda760b79bafa08df41ecfa224f810dceb6600162000260565b565b6127106001600160601b0382161115620001cf5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620002275760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001c6565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6001600160a01b0390911690637d3e3dbe81620002905782620002895750634420e48662000290565b5063a0af29035b8060e01b60005250306004528160245260008060446000806daaeb6d7670e522a718067333cd4e5af15060006024525050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002ee57607f821691505b6020821081036200030f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200036357600081815260208120601f850160051c810160208610156200033e5750805b601f850160051c820191505b818110156200035f578281556001016200034a565b5050505b505050565b81516001600160401b03811115620003845762000384620002c3565b6200039c81620003958454620002d9565b8462000315565b602080601f831160018114620003d45760008415620003bb5750858301515b600019600386901b1c1916600185901b1785556200035f565b600085815260208120601f198616915b828110156200040557888601518255948401946001909101908401620003e4565b5085821015620004245787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080604083850312156200044857600080fd5b82516001600160a01b03811681146200046057600080fd5b60208401519092506001600160601b03811681146200047e57600080fd5b809150509250929050565b611f8380620004996000396000f3fe6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063c6682862116100a0578063dc33e6811161006f578063dc33e68114610543578063e75179a414610563578063e985e9c514610583578063f2fde38b146105a3578063fb796e6c146105c357600080fd5b8063c6682862146104d9578063c6ab67a3146104ee578063c87b56dd14610503578063da3ef23f1461052357600080fd5b8063b7c0b8e8116100dc578063b7c0b8e814610456578063b88d4fde14610476578063bbadfe7614610489578063c21b471b146104b957600080fd5b80638da5cb5b1461040357806395d89b4114610421578063a22cb46514610436578063aa592f251461033057600080fd5b806332cb6b0c1161018557806355f804b31161015457806355f804b31461038e5780636352211e146103ae57806370a08231146103ce578063715018a6146103ee57600080fd5b806332cb6b0c1461033057806334531828146103465780633ccfd60b1461036657806342842e0e1461037b57600080fd5b806310969523116101c1578063109695231461029757806318160ddd146102b757806323b872dd146102de5780632a55205a146102f157600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046117ad565b6105dd565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6105fd565b60405161021f919061181a565b34801561025657600080fd5b5061026a61026536600461182d565b61068f565b6040516001600160a01b03909116815260200161021f565b610295610290366004611862565b6106d3565b005b3480156102a357600080fd5b506102956102b236600461188c565b61073c565b3480156102c357600080fd5b5060015460005403600019015b60405190815260200161021f565b6102956102ec3660046118fe565b6107be565b3480156102fd57600080fd5b5061031161030c36600461193a565b610830565b604080516001600160a01b03909316835260208301919091520161021f565b34801561033c57600080fd5b506102d061015081565b34801561035257600080fd5b506102956103613660046117ad565b6108dc565b34801561037257600080fd5b50610295610909565b6102956103893660046118fe565b61097d565b34801561039a57600080fd5b506102956103a936600461188c565b6109e8565b3480156103ba57600080fd5b5061026a6103c936600461182d565b610a38565b3480156103da57600080fd5b506102d06103e936600461195c565b610a43565b3480156103fa57600080fd5b50610295610a92565b34801561040f57600080fd5b50600a546001600160a01b031661026a565b34801561042d57600080fd5b5061023d610aa6565b34801561044257600080fd5b50610295610451366004611987565b610ab5565b34801561046257600080fd5b506102956104713660046119ba565b610b18565b610295610484366004611a61565b610b6e565b34801561049557600080fd5b506102136104a43660046117ad565b600f6020526000908152604090205460ff1681565b3480156104c557600080fd5b506102956104d4366004611add565b610be2565b3480156104e557600080fd5b5061023d610bf8565b3480156104fa57600080fd5b5061023d610c86565b34801561050f57600080fd5b5061023d61051e36600461182d565b610c93565b34801561052f57600080fd5b5061029561053e366004611b20565b610d66565b34801561054f57600080fd5b506102d061055e36600461195c565b610d7a565b34801561056f57600080fd5b5061029561057e36600461195c565b610da5565b34801561058f57600080fd5b5061021361059e366004611b69565b610e22565b3480156105af57600080fd5b506102956105be36600461195c565b610e50565b3480156105cf57600080fd5b50600e546102139060ff1681565b60006105e882610ec6565b806105f757506105f782610f14565b92915050565b60606002805461060c90611b93565b80601f016020809104026020016040519081016040528092919081815260200182805461063890611b93565b80156106855780601f1061065a57610100808354040283529160200191610685565b820191906000526020600020905b81548152906001019060200180831161066857829003601f168201915b5050505050905090565b600061069a82610f49565b6106b7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600e54829060ff16801561072c5769c6171134001122334455600090815230601a526001600160a01b038316603a5280604460166daaeb6d7670e522a718067333cd4e5afa610726573d6000803e3d6000fd5b6000603a525b6107368484610f7e565b50505050565b600080356001600160e01b0319168152600f602052604090205460ff161561077757604051638bf9b99f60e01b815260040160405180910390fd5b61077f61101e565b600d805461078c90611b93565b1590506107ac576040516319e24c1160e01b815260040160405180910390fd5b600d6107b9828483611c13565b505050565b600e54839060ff16801561081e576001600160a01b038216331461081e5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610818573d6000803e3d6000fd5b6000603a525b610829858585611078565b5050505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916108a55750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906108c4906001600160601b031687611ce9565b6108ce9190611d16565b915196919550909350505050565b6108e461101e565b6001600160e01b0319166000908152600f60205260409020805460ff19166001179055565b61091161101e565b604051600090339047908381818185875af1925050503d8060008114610953576040519150601f19603f3d011682016040523d82523d6000602084013e610958565b606091505b505090508061097a57604051631d42c86760e21b815260040160405180910390fd5b50565b600e54839060ff1680156109dd576001600160a01b03821633146109dd5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6109d7573d6000803e3d6000fd5b6000603a525b61082985858561120d565b600080356001600160e01b0319168152600f602052604090205460ff1615610a2357604051638bf9b99f60e01b815260040160405180910390fd5b610a2b61101e565b600b6107b9828483611c13565b60006105f782611228565b60006001600160a01b038216610a6c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a9a61101e565b610aa46000611297565b565b60606003805461060c90611b93565b600e54829060ff168015610b0e5769c6171134001122334455600090815230601a526001600160a01b038316603a5280604460166daaeb6d7670e522a718067333cd4e5afa610b08573d6000803e3d6000fd5b6000603a525b61073684846112e9565b600080356001600160e01b0319168152600f602052604090205460ff1615610b5357604051638bf9b99f60e01b815260040160405180910390fd5b610b5b61101e565b600e805460ff1916911515919091179055565b600e54849060ff168015610bce576001600160a01b0382163314610bce5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610bc8573d6000803e3d6000fd5b6000603a525b610bda86868686611355565b505050505050565b610bea61101e565b610bf48282611399565b5050565b600c8054610c0590611b93565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3190611b93565b8015610c7e5780601f10610c5357610100808354040283529160200191610c7e565b820191906000526020600020905b815481529060010190602001808311610c6157829003601f168201915b505050505081565b600d8054610c0590611b93565b6060610c9e82610f49565b610d075760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b6000610d11611496565b90506000815111610d315760405180602001604052806000815250610d5f565b80610d3b846114a5565b600c604051602001610d4f93929190611d2a565b6040516020818303038152906040525b9392505050565b610d6e61101e565b600c610bf48282611dca565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166105f7565b600080356001600160e01b0319168152600f602052604090205460ff1615610de057604051638bf9b99f60e01b815260040160405180910390fd5b610de861101e565b610150610df86000546000190190565b10610e1657604051630f878a6560e11b815260040160405180910390fd5b61097a816101506115ae565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610e5861101e565b6001600160a01b038116610ebd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cfe565b61097a81611297565b60006301ffc9a760e01b6001600160e01b031983161480610ef757506380ac58cd60e01b6001600160e01b03198316145b806105f75750506001600160e01b031916635b5e139f60e01b1490565b60006001600160e01b0319821663152a902d60e11b14806105f757506301ffc9a760e01b6001600160e01b03198316146105f7565b600081600111158015610f5d575060005482105b80156105f7575050600090815260046020526040902054600160e01b161590565b6000610f8982610a38565b9050336001600160a01b03821614610fc257610fa58133610e22565b610fc2576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600a546001600160a01b03163314610aa45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfe565b600061108382611228565b9050836001600160a01b0316816001600160a01b0316146110b65760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417611103576110e68633610e22565b61110357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661112a57604051633a954ecd60e21b815260040160405180910390fd5b801561113557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036111c7576001840160008181526004602052604081205490036111c55760005481146111c55760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bda565b6107b983838360405180602001604052806000815250610b6e565b6000818060011161127e5760005481101561127e5760008181526004602052604081205490600160e01b8216900361127c575b80600003610d5f57506000190160008181526004602052604090205461125b565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113608484846107be565b6001600160a01b0383163b156107365761137c848484846116ac565b610736576040516368d2bf6b60e11b815260040160405180910390fd5b6127106001600160601b03821611156114075760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610cfe565b6001600160a01b03821661145d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610cfe565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6060600b805461060c90611b93565b6060816000036114cc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114f657806114e081611e8a565b91506114ef9050600a83611d16565b91506114d0565b60008167ffffffffffffffff811115611511576115116119d5565b6040519080825280601f01601f19166020018201604052801561153b576020820181803683370190505b5090505b84156115a657611550600183611ea3565b915061155d600a86611eb6565b611568906030611eca565b60f81b81838151811061157d5761157d611edd565b60200101906001600160f81b031916908160001a90535061159f600a86611d16565b945061153f565b949350505050565b60008054908290036115d35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461168257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161164a565b50816000036116a357604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116e1903390899088908890600401611ef3565b6020604051808303816000875af192505050801561171c575060408051601f3d908101601f1916820190925261171991810190611f30565b60015b61177a573d80801561174a576040519150601f19603f3d011682016040523d82523d6000602084013e61174f565b606091505b508051600003611772576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6001600160e01b03198116811461097a57600080fd5b6000602082840312156117bf57600080fd5b8135610d5f81611797565b60005b838110156117e55781810151838201526020016117cd565b50506000910152565b600081518084526118068160208601602086016117ca565b601f01601f19169290920160200192915050565b602081526000610d5f60208301846117ee565b60006020828403121561183f57600080fd5b5035919050565b80356001600160a01b038116811461185d57600080fd5b919050565b6000806040838503121561187557600080fd5b61187e83611846565b946020939093013593505050565b6000806020838503121561189f57600080fd5b823567ffffffffffffffff808211156118b757600080fd5b818501915085601f8301126118cb57600080fd5b8135818111156118da57600080fd5b8660208285010111156118ec57600080fd5b60209290920196919550909350505050565b60008060006060848603121561191357600080fd5b61191c84611846565b925061192a60208501611846565b9150604084013590509250925092565b6000806040838503121561194d57600080fd5b50508035926020909101359150565b60006020828403121561196e57600080fd5b610d5f82611846565b8035801515811461185d57600080fd5b6000806040838503121561199a57600080fd5b6119a383611846565b91506119b160208401611977565b90509250929050565b6000602082840312156119cc57600080fd5b610d5f82611977565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a0657611a066119d5565b604051601f8501601f19908116603f01168101908282118183101715611a2e57611a2e6119d5565b81604052809350858152868686011115611a4757600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215611a7757600080fd5b611a8085611846565b9350611a8e60208601611846565b925060408501359150606085013567ffffffffffffffff811115611ab157600080fd5b8501601f81018713611ac257600080fd5b611ad1878235602084016119eb565b91505092959194509250565b60008060408385031215611af057600080fd5b611af983611846565b915060208301356001600160601b0381168114611b1557600080fd5b809150509250929050565b600060208284031215611b3257600080fd5b813567ffffffffffffffff811115611b4957600080fd5b8201601f81018413611b5a57600080fd5b6115a6848235602084016119eb565b60008060408385031215611b7c57600080fd5b611b8583611846565b91506119b160208401611846565b600181811c90821680611ba757607f821691505b602082108103611bc757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156107b957600081815260208120601f850160051c81016020861015611bf45750805b601f850160051c820191505b81811015610bda57828155600101611c00565b67ffffffffffffffff831115611c2b57611c2b6119d5565b611c3f83611c398354611b93565b83611bcd565b6000601f841160018114611c735760008515611c5b5750838201355b600019600387901b1c1916600186901b178355610829565b600083815260209020601f19861690835b82811015611ca45786850135825560209485019460019092019101611c84565b5086821015611cc15760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105f7576105f7611cd3565b634e487b7160e01b600052601260045260246000fd5b600082611d2557611d25611d00565b500490565b600084516020611d3d8285838a016117ca565b855191840191611d508184848a016117ca565b8554920191600090611d6181611b93565b60018281168015611d795760018114611d8e57611dba565b60ff1984168752821515830287019450611dba565b896000528560002060005b84811015611db257815489820152908301908701611d99565b505082870194505b50929a9950505050505050505050565b815167ffffffffffffffff811115611de457611de46119d5565b611df881611df28454611b93565b84611bcd565b602080601f831160018114611e2d5760008415611e155750858301515b600019600386901b1c1916600185901b178555610bda565b600085815260208120601f198616915b82811015611e5c57888601518255948401946001909101908401611e3d565b5085821015611e7a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018201611e9c57611e9c611cd3565b5060010190565b818103818111156105f7576105f7611cd3565b600082611ec557611ec5611d00565b500690565b808201808211156105f7576105f7611cd3565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f26908301846117ee565b9695505050505050565b600060208284031215611f4257600080fd5b8151610d5f8161179756fea264697066735822122048aa3b8b14e5d791b87c426d0d1e7422526aa1f80288db91705d30bcc52c0cc164736f6c634300081300335468652047726561742057617665206f6666204b616e61676177612066726f6d2074686520736572696573203336205669657773206f66204d742046756a690000000000000000000000003c01869f7796f5e3d2c57b6d39e9382b95be2dfa00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80638da5cb5b1161010d578063c6682862116100a0578063dc33e6811161006f578063dc33e68114610543578063e75179a414610563578063e985e9c514610583578063f2fde38b146105a3578063fb796e6c146105c357600080fd5b8063c6682862146104d9578063c6ab67a3146104ee578063c87b56dd14610503578063da3ef23f1461052357600080fd5b8063b7c0b8e8116100dc578063b7c0b8e814610456578063b88d4fde14610476578063bbadfe7614610489578063c21b471b146104b957600080fd5b80638da5cb5b1461040357806395d89b4114610421578063a22cb46514610436578063aa592f251461033057600080fd5b806332cb6b0c1161018557806355f804b31161015457806355f804b31461038e5780636352211e146103ae57806370a08231146103ce578063715018a6146103ee57600080fd5b806332cb6b0c1461033057806334531828146103465780633ccfd60b1461036657806342842e0e1461037b57600080fd5b806310969523116101c1578063109695231461029757806318160ddd146102b757806323b872dd146102de5780632a55205a146102f157600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046117ad565b6105dd565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6105fd565b60405161021f919061181a565b34801561025657600080fd5b5061026a61026536600461182d565b61068f565b6040516001600160a01b03909116815260200161021f565b610295610290366004611862565b6106d3565b005b3480156102a357600080fd5b506102956102b236600461188c565b61073c565b3480156102c357600080fd5b5060015460005403600019015b60405190815260200161021f565b6102956102ec3660046118fe565b6107be565b3480156102fd57600080fd5b5061031161030c36600461193a565b610830565b604080516001600160a01b03909316835260208301919091520161021f565b34801561033c57600080fd5b506102d061015081565b34801561035257600080fd5b506102956103613660046117ad565b6108dc565b34801561037257600080fd5b50610295610909565b6102956103893660046118fe565b61097d565b34801561039a57600080fd5b506102956103a936600461188c565b6109e8565b3480156103ba57600080fd5b5061026a6103c936600461182d565b610a38565b3480156103da57600080fd5b506102d06103e936600461195c565b610a43565b3480156103fa57600080fd5b50610295610a92565b34801561040f57600080fd5b50600a546001600160a01b031661026a565b34801561042d57600080fd5b5061023d610aa6565b34801561044257600080fd5b50610295610451366004611987565b610ab5565b34801561046257600080fd5b506102956104713660046119ba565b610b18565b610295610484366004611a61565b610b6e565b34801561049557600080fd5b506102136104a43660046117ad565b600f6020526000908152604090205460ff1681565b3480156104c557600080fd5b506102956104d4366004611add565b610be2565b3480156104e557600080fd5b5061023d610bf8565b3480156104fa57600080fd5b5061023d610c86565b34801561050f57600080fd5b5061023d61051e36600461182d565b610c93565b34801561052f57600080fd5b5061029561053e366004611b20565b610d66565b34801561054f57600080fd5b506102d061055e36600461195c565b610d7a565b34801561056f57600080fd5b5061029561057e36600461195c565b610da5565b34801561058f57600080fd5b5061021361059e366004611b69565b610e22565b3480156105af57600080fd5b506102956105be36600461195c565b610e50565b3480156105cf57600080fd5b50600e546102139060ff1681565b60006105e882610ec6565b806105f757506105f782610f14565b92915050565b60606002805461060c90611b93565b80601f016020809104026020016040519081016040528092919081815260200182805461063890611b93565b80156106855780601f1061065a57610100808354040283529160200191610685565b820191906000526020600020905b81548152906001019060200180831161066857829003601f168201915b5050505050905090565b600061069a82610f49565b6106b7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600e54829060ff16801561072c5769c6171134001122334455600090815230601a526001600160a01b038316603a5280604460166daaeb6d7670e522a718067333cd4e5afa610726573d6000803e3d6000fd5b6000603a525b6107368484610f7e565b50505050565b600080356001600160e01b0319168152600f602052604090205460ff161561077757604051638bf9b99f60e01b815260040160405180910390fd5b61077f61101e565b600d805461078c90611b93565b1590506107ac576040516319e24c1160e01b815260040160405180910390fd5b600d6107b9828483611c13565b505050565b600e54839060ff16801561081e576001600160a01b038216331461081e5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610818573d6000803e3d6000fd5b6000603a525b610829858585611078565b5050505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916108a55750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906108c4906001600160601b031687611ce9565b6108ce9190611d16565b915196919550909350505050565b6108e461101e565b6001600160e01b0319166000908152600f60205260409020805460ff19166001179055565b61091161101e565b604051600090339047908381818185875af1925050503d8060008114610953576040519150601f19603f3d011682016040523d82523d6000602084013e610958565b606091505b505090508061097a57604051631d42c86760e21b815260040160405180910390fd5b50565b600e54839060ff1680156109dd576001600160a01b03821633146109dd5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6109d7573d6000803e3d6000fd5b6000603a525b61082985858561120d565b600080356001600160e01b0319168152600f602052604090205460ff1615610a2357604051638bf9b99f60e01b815260040160405180910390fd5b610a2b61101e565b600b6107b9828483611c13565b60006105f782611228565b60006001600160a01b038216610a6c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a9a61101e565b610aa46000611297565b565b60606003805461060c90611b93565b600e54829060ff168015610b0e5769c6171134001122334455600090815230601a526001600160a01b038316603a5280604460166daaeb6d7670e522a718067333cd4e5afa610b08573d6000803e3d6000fd5b6000603a525b61073684846112e9565b600080356001600160e01b0319168152600f602052604090205460ff1615610b5357604051638bf9b99f60e01b815260040160405180910390fd5b610b5b61101e565b600e805460ff1916911515919091179055565b600e54849060ff168015610bce576001600160a01b0382163314610bce5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610bc8573d6000803e3d6000fd5b6000603a525b610bda86868686611355565b505050505050565b610bea61101e565b610bf48282611399565b5050565b600c8054610c0590611b93565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3190611b93565b8015610c7e5780601f10610c5357610100808354040283529160200191610c7e565b820191906000526020600020905b815481529060010190602001808311610c6157829003601f168201915b505050505081565b600d8054610c0590611b93565b6060610c9e82610f49565b610d075760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084015b60405180910390fd5b6000610d11611496565b90506000815111610d315760405180602001604052806000815250610d5f565b80610d3b846114a5565b600c604051602001610d4f93929190611d2a565b6040516020818303038152906040525b9392505050565b610d6e61101e565b600c610bf48282611dca565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166105f7565b600080356001600160e01b0319168152600f602052604090205460ff1615610de057604051638bf9b99f60e01b815260040160405180910390fd5b610de861101e565b610150610df86000546000190190565b10610e1657604051630f878a6560e11b815260040160405180910390fd5b61097a816101506115ae565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610e5861101e565b6001600160a01b038116610ebd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cfe565b61097a81611297565b60006301ffc9a760e01b6001600160e01b031983161480610ef757506380ac58cd60e01b6001600160e01b03198316145b806105f75750506001600160e01b031916635b5e139f60e01b1490565b60006001600160e01b0319821663152a902d60e11b14806105f757506301ffc9a760e01b6001600160e01b03198316146105f7565b600081600111158015610f5d575060005482105b80156105f7575050600090815260046020526040902054600160e01b161590565b6000610f8982610a38565b9050336001600160a01b03821614610fc257610fa58133610e22565b610fc2576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600a546001600160a01b03163314610aa45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cfe565b600061108382611228565b9050836001600160a01b0316816001600160a01b0316146110b65760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417611103576110e68633610e22565b61110357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661112a57604051633a954ecd60e21b815260040160405180910390fd5b801561113557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036111c7576001840160008181526004602052604081205490036111c55760005481146111c55760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bda565b6107b983838360405180602001604052806000815250610b6e565b6000818060011161127e5760005481101561127e5760008181526004602052604081205490600160e01b8216900361127c575b80600003610d5f57506000190160008181526004602052604090205461125b565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113608484846107be565b6001600160a01b0383163b156107365761137c848484846116ac565b610736576040516368d2bf6b60e11b815260040160405180910390fd5b6127106001600160601b03821611156114075760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610cfe565b6001600160a01b03821661145d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610cfe565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6060600b805461060c90611b93565b6060816000036114cc5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114f657806114e081611e8a565b91506114ef9050600a83611d16565b91506114d0565b60008167ffffffffffffffff811115611511576115116119d5565b6040519080825280601f01601f19166020018201604052801561153b576020820181803683370190505b5090505b84156115a657611550600183611ea3565b915061155d600a86611eb6565b611568906030611eca565b60f81b81838151811061157d5761157d611edd565b60200101906001600160f81b031916908160001a90535061159f600a86611d16565b945061153f565b949350505050565b60008054908290036115d35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461168257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161164a565b50816000036116a357604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116e1903390899088908890600401611ef3565b6020604051808303816000875af192505050801561171c575060408051601f3d908101601f1916820190925261171991810190611f30565b60015b61177a573d80801561174a576040519150601f19603f3d011682016040523d82523d6000602084013e61174f565b606091505b508051600003611772576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6001600160e01b03198116811461097a57600080fd5b6000602082840312156117bf57600080fd5b8135610d5f81611797565b60005b838110156117e55781810151838201526020016117cd565b50506000910152565b600081518084526118068160208601602086016117ca565b601f01601f19169290920160200192915050565b602081526000610d5f60208301846117ee565b60006020828403121561183f57600080fd5b5035919050565b80356001600160a01b038116811461185d57600080fd5b919050565b6000806040838503121561187557600080fd5b61187e83611846565b946020939093013593505050565b6000806020838503121561189f57600080fd5b823567ffffffffffffffff808211156118b757600080fd5b818501915085601f8301126118cb57600080fd5b8135818111156118da57600080fd5b8660208285010111156118ec57600080fd5b60209290920196919550909350505050565b60008060006060848603121561191357600080fd5b61191c84611846565b925061192a60208501611846565b9150604084013590509250925092565b6000806040838503121561194d57600080fd5b50508035926020909101359150565b60006020828403121561196e57600080fd5b610d5f82611846565b8035801515811461185d57600080fd5b6000806040838503121561199a57600080fd5b6119a383611846565b91506119b160208401611977565b90509250929050565b6000602082840312156119cc57600080fd5b610d5f82611977565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611a0657611a066119d5565b604051601f8501601f19908116603f01168101908282118183101715611a2e57611a2e6119d5565b81604052809350858152868686011115611a4757600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215611a7757600080fd5b611a8085611846565b9350611a8e60208601611846565b925060408501359150606085013567ffffffffffffffff811115611ab157600080fd5b8501601f81018713611ac257600080fd5b611ad1878235602084016119eb565b91505092959194509250565b60008060408385031215611af057600080fd5b611af983611846565b915060208301356001600160601b0381168114611b1557600080fd5b809150509250929050565b600060208284031215611b3257600080fd5b813567ffffffffffffffff811115611b4957600080fd5b8201601f81018413611b5a57600080fd5b6115a6848235602084016119eb565b60008060408385031215611b7c57600080fd5b611b8583611846565b91506119b160208401611846565b600181811c90821680611ba757607f821691505b602082108103611bc757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156107b957600081815260208120601f850160051c81016020861015611bf45750805b601f850160051c820191505b81811015610bda57828155600101611c00565b67ffffffffffffffff831115611c2b57611c2b6119d5565b611c3f83611c398354611b93565b83611bcd565b6000601f841160018114611c735760008515611c5b5750838201355b600019600387901b1c1916600186901b178355610829565b600083815260209020601f19861690835b82811015611ca45786850135825560209485019460019092019101611c84565b5086821015611cc15760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176105f7576105f7611cd3565b634e487b7160e01b600052601260045260246000fd5b600082611d2557611d25611d00565b500490565b600084516020611d3d8285838a016117ca565b855191840191611d508184848a016117ca565b8554920191600090611d6181611b93565b60018281168015611d795760018114611d8e57611dba565b60ff1984168752821515830287019450611dba565b896000528560002060005b84811015611db257815489820152908301908701611d99565b505082870194505b50929a9950505050505050505050565b815167ffffffffffffffff811115611de457611de46119d5565b611df881611df28454611b93565b84611bcd565b602080601f831160018114611e2d5760008415611e155750858301515b600019600386901b1c1916600185901b178555610bda565b600085815260208120601f198616915b82811015611e5c57888601518255948401946001909101908401611e3d565b5085821015611e7a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018201611e9c57611e9c611cd3565b5060010190565b818103818111156105f7576105f7611cd3565b600082611ec557611ec5611d00565b500690565b808201808211156105f7576105f7611cd3565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f26908301846117ee565b9695505050505050565b600060208284031215611f4257600080fd5b8151610d5f8161179756fea264697066735822122048aa3b8b14e5d791b87c426d0d1e7422526aa1f80288db91705d30bcc52c0cc164736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003c01869f7796f5e3d2c57b6d39e9382b95be2dfa00000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0x3c01869f7796f5e3D2C57B6D39e9382b95bE2dfA
Arg [1] : _royaltyFraction (uint96): 1000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000003c01869f7796f5e3d2c57b6d39e9382b95be2dfa
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode Sourcemap
80180:6663:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81340:274;;;;;;;;;;-1:-1:-1;81340:274:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;81340:274:0;;;;;;;;40966:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47457:218::-;;;;;;;;;;-1:-1:-1;47457:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;47457:218:0;1533:203:1;85385:232:0;;;;;;:::i;:::-;;:::i;:::-;;84025:224;;;;;;;;;;-1:-1:-1;84025:224:0;;;;;:::i;:::-;;:::i;36717:323::-;;;;;;;;;;-1:-1:-1;36316:1:0;36991:12;36778:7;36975:13;:28;-1:-1:-1;;36975:46:0;36717:323;;;2921:25:1;;;2909:2;2894:18;36717:323:0;2775:177:1;85777:231:0;;;;;;:::i;:::-;;:::i;15758:442::-;;;;;;;;;;-1:-1:-1;15758:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3735:32:1;;;3717:51;;3799:2;3784:18;;3777:34;;;;3690:18;15758:442:0;3543:274:1;80461:40:0;;;;;;;;;;;;80498:3;80461:40;;82869:96;;;;;;;;;;-1:-1:-1;82869:96:0;;;;;:::i;:::-;;:::i;84648:183::-;;;;;;;;;;;;;:::i;86168:239::-;;;;;;:::i;:::-;;:::i;83765:123::-;;;;;;;;;;-1:-1:-1;83765:123:0;;;;;:::i;:::-;;:::i;42359:152::-;;;;;;;;;;-1:-1:-1;42359:152:0;;;;;:::i;:::-;;:::i;37901:233::-;;;;;;;;;;-1:-1:-1;37901:233:0;;;;;:::i;:::-;;:::i;21031:103::-;;;;;;;;;;;;;:::i;20383:87::-;;;;;;;;;;-1:-1:-1;20456:6:0;;-1:-1:-1;;;;;20456:6:0;20383:87;;41142:104;;;;;;;;;;;;;:::i;84991:234::-;;;;;;;;;;-1:-1:-1;84991:234:0;;;;;:::i;:::-;;:::i;83157:128::-;;;;;;;;;;-1:-1:-1;83157:128:0;;;;;:::i;:::-;;:::i;86567:273::-;;;;;;:::i;:::-;;:::i;80586:45::-;;;;;;;;;;-1:-1:-1;80586:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;83508:147;;;;;;;;;;-1:-1:-1;83508:147:0;;;;;:::i;:::-;;:::i;80372:37::-;;;;;;;;;;;;;:::i;80508:28::-;;;;;;;;;;;;;:::i;81973:438::-;;;;;;;;;;-1:-1:-1;81973:438:0;;;;;:::i;:::-;;:::i;81837:128::-;;;;;;;;;;-1:-1:-1;81837:128:0;;;;;:::i;:::-;;:::i;82576:119::-;;;;;;;;;;-1:-1:-1;82576:119:0;;;;;:::i;:::-;;:::i;84394:168::-;;;;;;;;;;-1:-1:-1;84394:168:0;;;;;:::i;:::-;;:::i;48406:164::-;;;;;;;;;;-1:-1:-1;48406:164:0;;;;;:::i;:::-;;:::i;21289:201::-;;;;;;;;;;-1:-1:-1;21289:201:0;;;;;:::i;:::-;;:::i;80543:36::-;;;;;;;;;;-1:-1:-1;80543:36:0;;;;;;;;81340:274;81471:4;81513:38;81539:11;81513:25;:38::i;:::-;:93;;;;81568:38;81594:11;81568:25;:38::i;:::-;81493:113;81340:274;-1:-1:-1;;81340:274:0:o;40966:100::-;41020:13;41053:5;41046:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40966:100;:::o;47457:218::-;47533:7;47558:16;47566:7;47558;:16::i;:::-;47553:64;;47583:34;;-1:-1:-1;;;47583:34:0;;;;;;;;;;;47553:64;-1:-1:-1;47637:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;47637:30:0;;47457:218::o;85385:232::-;85535:24;;85525:8;;85535:24;;78760:925;;;;78892:22;78886:4;78879:36;;;78993:9;78987:4;78980:23;-1:-1:-1;;;;;79129:26:0;;79123:4;79116:40;78886:4;79320;79314;79287:25;79280:5;79269:68;79259:290;;79461:16;79455:4;79449;79434:44;79513:16;79507:4;79500:30;79259:290;79668:1;79662:4;79655:15;78760:925;85577:32:::1;85591:8;85601:7;85577:13;:32::i;:::-;85385:232:::0;;;;:::o;84025:224::-;81218:23;81233:7;;-1:-1:-1;;;;;;81233:7:0;81218:23;;:14;:23;;;;;;;;81214:52;;;81250:16;;-1:-1:-1;;;81250:16:0;;;;;;;;;;;81214:52;20269:13:::1;:11;:13::i;:::-;84134:14:::2;84128:28;;;;;:::i;:::-;:33:::0;;-1:-1:-1;84124:72:0::2;;84170:26;;-1:-1:-1::0;;;84170:26:0::2;;;;;;;;;;;84124:72;84209:14;:32;84226:15:::0;;84209:14;:32:::2;:::i;:::-;;84025:224:::0;;:::o;85777:231::-;85926:24;;85920:4;;85926:24;;76533:1643;;;;-1:-1:-1;;;;;76725:22:0;;76749:8;76722:36;76712:1449;;77064:22;77058:4;77051:36;77173:9;77167:4;77160:23;77266:8;77260:4;77253:22;77459:4;77453;77447;77441;77414:25;77407:5;77396:68;77386:306;;77596:16;77590:4;77584;77569:44;77652:16;77646:4;77639:30;77386:306;78140:1;78134:4;78127:15;76712:1449;85963:37:::1;85982:4;85988:2;85992:7;85963:18;:37::i;:::-;85777:231:::0;;;;;:::o;15758:442::-;15855:7;15913:27;;;:17;:27;;;;;;;;15884:56;;;;;;;;;-1:-1:-1;;;;;15884:56:0;;;;;-1:-1:-1;;;15884:56:0;;;-1:-1:-1;;;;;15884:56:0;;;;;;;;15855:7;;15953:92;;-1:-1:-1;16004:29:0;;;;;;;;;16014:19;16004:29;-1:-1:-1;;;;;16004:29:0;;;;-1:-1:-1;;;16004:29:0;;-1:-1:-1;;;;;16004:29:0;;;;;15953:92;16095:23;;;;16057:21;;16566:5;;16082:36;;-1:-1:-1;;;;;16082:36:0;:10;:36;:::i;:::-;16081:58;;;;:::i;:::-;16160:16;;;;;-1:-1:-1;15758:442:0;;-1:-1:-1;;;;15758:442:0:o;82869:96::-;20269:13;:11;:13::i;:::-;-1:-1:-1;;;;;;82932:18:0::1;;::::0;;;:14:::1;:18;::::0;;;;:25;;-1:-1:-1;;82932:25:0::1;82953:4;82932:25;::::0;;82869:96::o;84648:183::-;20269:13;:11;:13::i;:::-;84717:58:::1;::::0;84699:12:::1;::::0;84725:10:::1;::::0;84749:21:::1;::::0;84699:12;84717:58;84699:12;84717:58;84749:21;84725:10;84717:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84698:77;;;84791:7;84786:37;;84807:16;;-1:-1:-1::0;;;84807:16:0::1;;;;;;;;;;;84786:37;84687:144;84648:183::o:0;86168:239::-;86321:24;;86315:4;;86321:24;;76533:1643;;;;-1:-1:-1;;;;;76725:22:0;;76749:8;76722:36;76712:1449;;77064:22;77058:4;77051:36;77173:9;77167:4;77160:23;77266:8;77260:4;77253:22;77459:4;77453;77447;77441;77414:25;77407:5;77396:68;77386:306;;77596:16;77590:4;77584;77569:44;77652:16;77646:4;77639:30;77386:306;78140:1;78134:4;78127:15;76712:1449;86358:41:::1;86381:4;86387:2;86391:7;86358:22;:41::i;83765:123::-:0;81218:23;81233:7;;-1:-1:-1;;;;;;81233:7:0;81218:23;;:14;:23;;;;;;;;81214:52;;;81250:16;;-1:-1:-1;;;81250:16:0;;;;;;;;;;;81214:52;20269:13:::1;:11;:13::i;:::-;83853::::2;:27;83869:11:::0;;83853:13;:27:::2;:::i;42359:152::-:0;42431:7;42474:27;42493:7;42474:18;:27::i;37901:233::-;37973:7;-1:-1:-1;;;;;37997:19:0;;37993:60;;38025:28;;-1:-1:-1;;;38025:28:0;;;;;;;;;;;37993:60;-1:-1:-1;;;;;;38071:25:0;;;;;:18;:25;;;;;;32060:13;38071:55;;37901:233::o;21031:103::-;20269:13;:11;:13::i;:::-;21096:30:::1;21123:1;21096:18;:30::i;:::-;21031:103::o:0;41142:104::-;41198:13;41231:7;41224:14;;;;;:::i;84991:234::-;85132:24;;85122:8;;85132:24;;78760:925;;;;78892:22;78886:4;78879:36;;;78993:9;78987:4;78980:23;-1:-1:-1;;;;;79129:26:0;;79123:4;79116:40;78886:4;79320;79314;79287:25;79280:5;79269:68;79259:290;;79461:16;79455:4;79449;79434:44;79513:16;79507:4;79500:30;79259:290;79668:1;79662:4;79655:15;78760:925;85174:43:::1;85198:8;85208;85174:23;:43::i;83157:128::-:0;81218:23;81233:7;;-1:-1:-1;;;;;;81233:7:0;81218:23;;:14;:23;;;;;;;;81214:52;;;81250:16;;-1:-1:-1;;;81250:16:0;;;;;;;;;;;81214:52;20269:13:::1;:11;:13::i;:::-;83245:24:::2;:32:::0;;-1:-1:-1;;83245:32:0::2;::::0;::::2;;::::0;;;::::2;::::0;;83157:128::o;86567:273::-;86748:24;;86742:4;;86748:24;;76533:1643;;;;-1:-1:-1;;;;;76725:22:0;;76749:8;76722:36;76712:1449;;77064:22;77058:4;77051:36;77173:9;77167:4;77160:23;77266:8;77260:4;77253:22;77459:4;77453;77447;77441;77414:25;77407:5;77396:68;77386:306;;77596:16;77590:4;77584;77569:44;77652:16;77646:4;77639:30;77386:306;78140:1;78134:4;78127:15;76712:1449;86785:47:::1;86808:4;86814:2;86818:7;86827:4;86785:22;:47::i;:::-;86567:273:::0;;;;;;:::o;83508:147::-;20269:13;:11;:13::i;:::-;83602:45:::1;83621:8;83631:15;83602:18;:45::i;:::-;83508:147:::0;;:::o;80372:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;80508:28::-;;;;;;;:::i;81973:438::-;82071:13;82114:16;82122:7;82114;:16::i;:::-;82098:97;;;;-1:-1:-1;;;82098:97:0;;10569:2:1;82098:97:0;;;10551:21:1;10608:2;10588:18;;;10581:30;10647:34;10627:18;;;10620:62;-1:-1:-1;;;10698:18:1;;;10691:45;10753:19;;82098:97:0;;;;;;;;;82208:28;82239:10;:8;:10::i;:::-;82208:41;;82294:1;82269:14;82263:28;:32;:140;;;;;;;;;;;;;;;;;82331:14;82347:25;82364:7;82347:16;:25::i;:::-;82374:13;82314:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82263:140;82256:147;81973:438;-1:-1:-1;;;81973:438:0:o;81837:128::-;20269:13;:11;:13::i;:::-;81924::::1;:33;81940:17:::0;81924:13;:33:::1;:::i;82576:119::-:0;-1:-1:-1;;;;;38305:25:0;;82638:7;38305:25;;;:18;:25;;32198:2;38305:25;;;;32060:13;38305:50;;38304:82;82665:22;38216:178;84394:168;81218:23;81233:7;;-1:-1:-1;;;;;;81233:7:0;81218:23;;:14;:23;;;;;;;;81214:52;;;81250:16;;-1:-1:-1;;;81250:16:0;;;;;;;;;;;81214:52;20269:13:::1;:11;:13::i;:::-;80451:3:::2;84466:14;37193:7:::0;37384:13;-1:-1:-1;;37384:31:0;;37138:296;84466:14:::2;:26;84462:62;;84501:23;;-1:-1:-1::0;;;84501:23:0::2;;;;;;;;;;;84462:62;84535:19;84541:2;80451:3;84535:5;:19::i;48406:164::-:0;-1:-1:-1;;;;;48527:25:0;;;48503:4;48527:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;48406:164::o;21289:201::-;20269:13;:11;:13::i;:::-;-1:-1:-1;;;;;21378:22:0;::::1;21370:73;;;::::0;-1:-1:-1;;;21370:73:0;;13603:2:1;21370:73:0::1;::::0;::::1;13585:21:1::0;13642:2;13622:18;;;13615:30;13681:34;13661:18;;;13654:62;-1:-1:-1;;;13732:18:1;;;13725:36;13778:19;;21370:73:0::1;13401:402:1::0;21370:73:0::1;21454:28;21473:8;21454:18;:28::i;40064:639::-:0;40149:4;-1:-1:-1;;;;;;;;;40473:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;40550:25:0;;;40473:102;:179;;;-1:-1:-1;;;;;;;;40627:25:0;-1:-1:-1;;;40627:25:0;;40064:639::o;15488:215::-;15590:4;-1:-1:-1;;;;;;15614:41:0;;-1:-1:-1;;;15614:41:0;;:81;;-1:-1:-1;;;;;;;;;;13149:40:0;;;15659:36;13040:157;48828:282;48893:4;48949:7;36316:1;48930:26;;:66;;;;;48983:13;;48973:7;:23;48930:66;:153;;;;-1:-1:-1;;49034:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;49034:44:0;:49;;48828:282::o;46890:408::-;46979:13;46995:16;47003:7;46995;:16::i;:::-;46979:32;-1:-1:-1;71223:10:0;-1:-1:-1;;;;;47028:28:0;;;47024:175;;47076:44;47093:5;71223:10;48406:164;:::i;47076:44::-;47071:128;;47148:35;;-1:-1:-1;;;47148:35:0;;;;;;;;;;;47071:128;47211:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;47211:35:0;-1:-1:-1;;;;;47211:35:0;;;;;;;;;47262:28;;47211:24;;47262:28;;;;;;;46968:330;46890:408;;:::o;20548:132::-;20456:6;;-1:-1:-1;;;;;20456:6:0;71223:10;20612:23;20604:68;;;;-1:-1:-1;;;20604:68:0;;14010:2:1;20604:68:0;;;13992:21:1;;;14029:18;;;14022:30;14088:34;14068:18;;;14061:62;14140:18;;20604:68:0;13808:356:1;51096:2825:0;51238:27;51268;51287:7;51268:18;:27::i;:::-;51238:57;;51353:4;-1:-1:-1;;;;;51312:45:0;51328:19;-1:-1:-1;;;;;51312:45:0;;51308:86;;51366:28;;-1:-1:-1;;;51366:28:0;;;;;;;;;;;51308:86;51408:27;50204:24;;;:15;:24;;;;;50432:26;;71223:10;49829:30;;;-1:-1:-1;;;;;49522:28:0;;49807:20;;;49804:56;51594:180;;51687:43;51704:4;71223:10;48406:164;:::i;51687:43::-;51682:92;;51739:35;;-1:-1:-1;;;51739:35:0;;;;;;;;;;;51682:92;-1:-1:-1;;;;;51791:16:0;;51787:52;;51816:23;;-1:-1:-1;;;51816:23:0;;;;;;;;;;;51787:52;51988:15;51985:160;;;52128:1;52107:19;52100:30;51985:160;-1:-1:-1;;;;;52525:24:0;;;;;;;:18;:24;;;;;;52523:26;;-1:-1:-1;;52523:26:0;;;52594:22;;;;;;;;;52592:24;;-1:-1:-1;52592:24:0;;;45748:11;45723:23;45719:41;45706:63;-1:-1:-1;;;45706:63:0;52887:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;53182:47:0;;:52;;53178:627;;53287:1;53277:11;;53255:19;53410:30;;;:17;:30;;;;;;:35;;53406:384;;53548:13;;53533:11;:28;53529:242;;53695:30;;;;:17;:30;;;;;:52;;;53529:242;53236:569;53178:627;53852:7;53848:2;-1:-1:-1;;;;;53833:27:0;53842:4;-1:-1:-1;;;;;53833:27:0;;;;;;;;;;;53871:42;85385:232;54017:193;54163:39;54180:4;54186:2;54190:7;54163:39;;;;;;;;;;;;:16;:39::i;43514:1275::-;43581:7;43616;;36316:1;43665:23;43661:1061;;43718:13;;43711:4;:20;43707:1015;;;43756:14;43773:23;;;:17;:23;;;;;;;-1:-1:-1;;;43862:24:0;;:29;;43858:845;;44527:113;44534:6;44544:1;44534:11;44527:113;;-1:-1:-1;;;44605:6:0;44587:25;;;;:17;:25;;;;;;44527:113;;43858:845;43733:989;43707:1015;44750:31;;-1:-1:-1;;;44750:31:0;;;;;;;;;;;21650:191;21743:6;;;-1:-1:-1;;;;;21760:17:0;;;-1:-1:-1;;;;;;21760:17:0;;;;;;;21793:40;;21743:6;;;21760:17;21743:6;;21793:40;;21724:16;;21793:40;21713:128;21650:191;:::o;48015:234::-;71223:10;48110:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;48110:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;48110:60:0;;;;;;;;;;48186:55;;540:41:1;;;48110:49:0;;71223:10;48186:55;;513:18:1;48186:55:0;;;;;;;48015:234;;:::o;54808:407::-;54983:31;54996:4;55002:2;55006:7;54983:12;:31::i;:::-;-1:-1:-1;;;;;55029:14:0;;;:19;55025:183;;55068:56;55099:4;55105:2;55109:7;55118:5;55068:30;:56::i;:::-;55063:145;;55152:40;;-1:-1:-1;;;55152:40:0;;;;;;;;;;;16850:332;16566:5;-1:-1:-1;;;;;16953:33:0;;;;16945:88;;;;-1:-1:-1;;;16945:88:0;;14371:2:1;16945:88:0;;;14353:21:1;14410:2;14390:18;;;14383:30;14449:34;14429:18;;;14422:62;-1:-1:-1;;;14500:18:1;;;14493:40;14550:19;;16945:88:0;14169:406:1;16945:88:0;-1:-1:-1;;;;;17052:22:0;;17044:60;;;;-1:-1:-1;;;17044:60:0;;14782:2:1;17044:60:0;;;14764:21:1;14821:2;14801:18;;;14794:30;14860:27;14840:18;;;14833:55;14905:18;;17044:60:0;14580:349:1;17044:60:0;17139:35;;;;;;;;;-1:-1:-1;;;;;17139:35:0;;;;;;-1:-1:-1;;;;;17139:35:0;;;;;;;;;;-1:-1:-1;;;17117:57:0;;;;:19;:57;16850:332::o;81715:114::-;81775:13;81808;81801:20;;;;;:::i;430:723::-;486:13;707:5;716:1;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;;1138:6;430:723;-1:-1:-1;;;;430:723:0:o;58477:2966::-;58550:20;58573:13;;;58601;;;58597:44;;58623:18;;-1:-1:-1;;;58623:18:0;;;;;;;;;;;58597:44;-1:-1:-1;;;;;59129:22:0;;;;;;:18;:22;;;;32198:2;59129:22;;;:71;;59167:32;59155:45;;59129:71;;;59443:31;;;:17;:31;;;;;-1:-1:-1;46179:15:0;;46153:24;46149:46;45748:11;45723:23;45719:41;45716:52;45706:63;;59443:173;;59678:23;;;;59443:31;;59129:22;;60443:25;59129:22;;60296:335;60957:1;60943:12;60939:20;60897:346;60998:3;60989:7;60986:16;60897:346;;61216:7;61206:8;61203:1;61176:25;61173:1;61170;61165:59;61051:1;61038:15;60897:346;;;60901:77;61276:8;61288:1;61276:13;61272:45;;61298:19;;-1:-1:-1;;;61298:19:0;;;;;;;;;;;61272:45;61334:13;:19;-1:-1:-1;84209:32:0::2;84025:224:::0;;:::o;57299:716::-;57483:88;;-1:-1:-1;;;57483:88:0;;57462:4;;-1:-1:-1;;;;;57483:45:0;;;;;:88;;71223:10;;57550:4;;57556:7;;57565:5;;57483:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57483:88:0;;;;;;;;-1:-1:-1;;57483:88:0;;;;;;;;;;;;:::i;:::-;;;57479:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57766:6;:13;57783:1;57766:18;57762:235;;57812:40;;-1:-1:-1;;;57812:40:0;;;;;;;;;;;57762:235;57955:6;57949:13;57940:6;57936:2;57932:15;57925:38;57479:529;-1:-1:-1;;;;;;57642:64:0;-1:-1:-1;;;57642:64:0;;-1:-1:-1;57299:716: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;2178:592::-;2249:6;2257;2310:2;2298:9;2289:7;2285:23;2281:32;2278:52;;;2326:1;2323;2316:12;2278:52;2366:9;2353:23;2395:18;2436:2;2428:6;2425:14;2422:34;;;2452:1;2449;2442:12;2422:34;2490:6;2479:9;2475:22;2465:32;;2535:7;2528:4;2524:2;2520:13;2516:27;2506:55;;2557:1;2554;2547:12;2506:55;2597:2;2584:16;2623:2;2615:6;2612:14;2609:34;;;2639:1;2636;2629:12;2609:34;2684:7;2679:2;2670:6;2666:2;2662:15;2658:24;2655:37;2652:57;;;2705:1;2702;2695:12;2652:57;2736:2;2728:11;;;;;2758:6;;-1:-1:-1;2178:592:1;;-1:-1:-1;;;;2178:592:1:o;2957:328::-;3034:6;3042;3050;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3142:29;3161:9;3142:29;:::i;:::-;3132:39;;3190:38;3224:2;3213:9;3209:18;3190:38;:::i;:::-;3180:48;;3275:2;3264:9;3260:18;3247:32;3237:42;;2957:328;;;;;:::o;3290:248::-;3358:6;3366;3419:2;3407:9;3398:7;3394:23;3390:32;3387:52;;;3435:1;3432;3425:12;3387:52;-1:-1:-1;;3458:23:1;;;3528:2;3513:18;;;3500:32;;-1:-1:-1;3290:248:1:o;3822:186::-;3881:6;3934:2;3922:9;3913:7;3909:23;3905:32;3902:52;;;3950:1;3947;3940:12;3902:52;3973:29;3992:9;3973:29;:::i;4013:160::-;4078:20;;4134:13;;4127:21;4117:32;;4107:60;;4163:1;4160;4153:12;4178:254;4243:6;4251;4304:2;4292:9;4283:7;4279:23;4275:32;4272:52;;;4320:1;4317;4310:12;4272:52;4343:29;4362:9;4343:29;:::i;:::-;4333:39;;4391:35;4422:2;4411:9;4407:18;4391:35;:::i;:::-;4381:45;;4178:254;;;;;:::o;4437:180::-;4493:6;4546:2;4534:9;4525:7;4521:23;4517:32;4514:52;;;4562:1;4559;4552:12;4514:52;4585:26;4601:9;4585:26;:::i;4622:127::-;4683:10;4678:3;4674:20;4671:1;4664:31;4714:4;4711:1;4704:15;4738:4;4735:1;4728:15;4754:631;4818:5;4848:18;4889:2;4881:6;4878:14;4875:40;;;4895:18;;:::i;:::-;4970:2;4964:9;4938:2;5024:15;;-1:-1:-1;;5020:24:1;;;5046:2;5016:33;5012:42;5000:55;;;5070:18;;;5090:22;;;5067:46;5064:72;;;5116:18;;:::i;:::-;5156:10;5152:2;5145:22;5185:6;5176:15;;5215:6;5207;5200:22;5255:3;5246:6;5241:3;5237:16;5234:25;5231:45;;;5272:1;5269;5262:12;5231:45;5322:6;5317:3;5310:4;5302:6;5298:17;5285:44;5377:1;5370:4;5361:6;5353;5349:19;5345:30;5338:41;;;;4754:631;;;;;:::o;5390:666::-;5485:6;5493;5501;5509;5562:3;5550:9;5541:7;5537:23;5533:33;5530:53;;;5579:1;5576;5569:12;5530:53;5602:29;5621:9;5602:29;:::i;:::-;5592:39;;5650:38;5684:2;5673:9;5669:18;5650:38;:::i;:::-;5640:48;;5735:2;5724:9;5720:18;5707:32;5697:42;;5790:2;5779:9;5775:18;5762:32;5817:18;5809:6;5806:30;5803:50;;;5849:1;5846;5839:12;5803:50;5872:22;;5925:4;5917:13;;5913:27;-1:-1:-1;5903:55:1;;5954:1;5951;5944:12;5903:55;5977:73;6042:7;6037:2;6024:16;6019:2;6015;6011:11;5977:73;:::i;:::-;5967:83;;;5390:666;;;;;;;:::o;6061:366::-;6128:6;6136;6189:2;6177:9;6168:7;6164:23;6160:32;6157:52;;;6205:1;6202;6195:12;6157:52;6228:29;6247:9;6228:29;:::i;:::-;6218:39;;6307:2;6296:9;6292:18;6279:32;-1:-1:-1;;;;;6344:5:1;6340:38;6333:5;6330:49;6320:77;;6393:1;6390;6383:12;6320:77;6416:5;6406:15;;;6061:366;;;;;:::o;6432:450::-;6501:6;6554:2;6542:9;6533:7;6529:23;6525:32;6522:52;;;6570:1;6567;6560:12;6522:52;6610:9;6597:23;6643:18;6635:6;6632:30;6629:50;;;6675:1;6672;6665:12;6629:50;6698:22;;6751:4;6743:13;;6739:27;-1:-1:-1;6729:55:1;;6780:1;6777;6770:12;6729:55;6803:73;6868:7;6863:2;6850:16;6845:2;6841;6837:11;6803:73;:::i;6887:260::-;6955:6;6963;7016:2;7004:9;6995:7;6991:23;6987:32;6984:52;;;7032:1;7029;7022:12;6984:52;7055:29;7074:9;7055:29;:::i;:::-;7045:39;;7103:38;7137:2;7126:9;7122:18;7103:38;:::i;7152:380::-;7231:1;7227:12;;;;7274;;;7295:61;;7349:4;7341:6;7337:17;7327:27;;7295:61;7402:2;7394:6;7391:14;7371:18;7368:38;7365:161;;7448:10;7443:3;7439:20;7436:1;7429:31;7483:4;7480:1;7473:15;7511:4;7508:1;7501:15;7365:161;;7152:380;;;:::o;7663:545::-;7765:2;7760:3;7757:11;7754:448;;;7801:1;7826:5;7822:2;7815:17;7871:4;7867:2;7857:19;7941:2;7929:10;7925:19;7922:1;7918:27;7912:4;7908:38;7977:4;7965:10;7962:20;7959:47;;;-1:-1:-1;8000:4:1;7959:47;8055:2;8050:3;8046:12;8043:1;8039:20;8033:4;8029:31;8019:41;;8110:82;8128:2;8121:5;8118:13;8110:82;;;8173:17;;;8154:1;8143:13;8110:82;;8384:1206;8508:18;8503:3;8500:27;8497:53;;;8530:18;;:::i;:::-;8559:94;8649:3;8609:38;8641:4;8635:11;8609:38;:::i;:::-;8603:4;8559:94;:::i;:::-;8679:1;8704:2;8699:3;8696:11;8721:1;8716:616;;;;9376:1;9393:3;9390:93;;;-1:-1:-1;9449:19:1;;;9436:33;9390:93;-1:-1:-1;;8341:1:1;8337:11;;;8333:24;8329:29;8319:40;8365:1;8361:11;;;8316:57;9496:78;;8689:895;;8716:616;7610:1;7603:14;;;7647:4;7634:18;;-1:-1:-1;;8752:17:1;;;8853:9;8875:229;8889:7;8886:1;8883:14;8875:229;;;8978:19;;;8965:33;8950:49;;9085:4;9070:20;;;;9038:1;9026:14;;;;8905:12;8875:229;;;8879:3;9132;9123:7;9120:16;9117:159;;;9256:1;9252:6;9246:3;9240;9237:1;9233:11;9229:21;9225:34;9221:39;9208:9;9203:3;9199:19;9186:33;9182:79;9174:6;9167:95;9117:159;;;9319:1;9313:3;9310:1;9306:11;9302:19;9296:4;9289:33;8689:895;;8384:1206;;;:::o;9595:127::-;9656:10;9651:3;9647:20;9644:1;9637:31;9687:4;9684:1;9677:15;9711:4;9708:1;9701:15;9727:168;9800:9;;;9831;;9848:15;;;9842:22;;9828:37;9818:71;;9869:18;;:::i;9900:127::-;9961:10;9956:3;9952:20;9949:1;9942:31;9992:4;9989:1;9982:15;10016:4;10013:1;10006:15;10032:120;10072:1;10098;10088:35;;10103:18;;:::i;:::-;-1:-1:-1;10137:9:1;;10032:120::o;10783:1256::-;11007:3;11045:6;11039:13;11071:4;11084:64;11141:6;11136:3;11131:2;11123:6;11119:15;11084:64;:::i;:::-;11211:13;;11170:16;;;;11233:68;11211:13;11170:16;11268:15;;;11233:68;:::i;:::-;11390:13;;11323:20;;;11363:1;;11428:36;11390:13;11428:36;:::i;:::-;11483:1;11500:18;;;11527:141;;;;11682:1;11677:337;;;;11493:521;;11527:141;-1:-1:-1;;11562:24:1;;11548:39;;11639:16;;11632:24;11618:39;;11607:51;;;-1:-1:-1;11527:141:1;;11677:337;11708:6;11705:1;11698:17;11756:2;11753:1;11743:16;11781:1;11795:169;11809:8;11806:1;11803:15;11795:169;;;11891:14;;11876:13;;;11869:37;11934:16;;;;11826:10;;11795:169;;;11799:3;;11995:8;11988:5;11984:20;11977:27;;11493:521;-1:-1:-1;12030:3:1;;10783:1256;-1:-1:-1;;;;;;;;;;10783:1256:1:o;12044:1352::-;12170:3;12164:10;12197:18;12189:6;12186:30;12183:56;;;12219:18;;:::i;:::-;12248:97;12338:6;12298:38;12330:4;12324:11;12298:38;:::i;:::-;12292:4;12248:97;:::i;:::-;12400:4;;12464:2;12453:14;;12481:1;12476:663;;;;13183:1;13200:6;13197:89;;;-1:-1:-1;13252:19:1;;;13246:26;13197:89;-1:-1:-1;;8341:1:1;8337:11;;;8333:24;8329:29;8319:40;8365:1;8361:11;;;8316:57;13299:81;;12446:944;;12476:663;7610:1;7603:14;;;7647:4;7634:18;;-1:-1:-1;;12512:20:1;;;12630:236;12644:7;12641:1;12638:14;12630:236;;;12733:19;;;12727:26;12712:42;;12825:27;;;;12793:1;12781:14;;;;12660:19;;12630:236;;;12634:3;12894:6;12885:7;12882:19;12879:201;;;12955:19;;;12949:26;-1:-1:-1;;13038:1:1;13034:14;;;13050:3;13030:24;13026:37;13022:42;13007:58;12992:74;;12879:201;-1:-1:-1;;;;;13126:1:1;13110:14;;;13106:22;13093:36;;-1:-1:-1;12044:1352:1:o;14934:135::-;14973:3;14994:17;;;14991:43;;15014:18;;:::i;:::-;-1:-1:-1;15061:1:1;15050:13;;14934:135::o;15074:128::-;15141:9;;;15162:11;;;15159:37;;;15176:18;;:::i;15207:112::-;15239:1;15265;15255:35;;15270:18;;:::i;:::-;-1:-1:-1;15304:9:1;;15207:112::o;15324:125::-;15389:9;;;15410:10;;;15407:36;;;15423:18;;:::i;15454:127::-;15515:10;15510:3;15506:20;15503:1;15496:31;15546:4;15543:1;15536:15;15570:4;15567:1;15560:15;15586:489;-1:-1:-1;;;;;15855:15:1;;;15837:34;;15907:15;;15902:2;15887:18;;15880:43;15954:2;15939:18;;15932:34;;;16002:3;15997:2;15982:18;;15975:31;;;15780:4;;16023:46;;16049:19;;16041:6;16023:46;:::i;:::-;16015:54;15586:489;-1:-1:-1;;;;;;15586:489:1:o;16080:249::-;16149:6;16202:2;16190:9;16181:7;16177:23;16173:32;16170:52;;;16218:1;16215;16208:12;16170:52;16250:9;16244:16;16269:30;16293:5;16269:30;:::i
Swarm Source
ipfs://48aa3b8b14e5d791b87c426d0d1e7422526aa1f80288db91705d30bcc52c0cc1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.