ERC-721
Overview
Max Total Supply
1,117 SWAG
Holders
272
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SWAGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SwaggySeals
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-08 */ /** ____ _ ____ ____ __ __ ____ U _____ u _ _ ____ / __"| u __ __ U /"\ u U /"___|u U /"___|u \ \ / / / __"| u \| ___"|/ U /"\ u |"| / __"| u <\___ \/ \"\ /"/ \/ _ \/ \| | _ / \| | _ / \ V / <\___ \/ | _|" \/ _ \/ U | | u <\___ \/ u___) | /\ \ /\ / /\ / ___ \ | |_| | | |_| | U_|"|_u u___) | | |___ / ___ \ \| |/__ u___) | |____/>> U \ V V / U/_/ \_\ \____| \____| |_| |____/>> |_____| /_/ \_\ |_____| |____/>> )( (__) .-,_\ /\ /_,-. \\ >> _)(|_ _)(|_ .-,//|(_ )( (__) << >> \\ >> // \\ )( (__) (__) \_)-' '-(_/ (__) (__) (__)__) (__)__) \_) (__) (__) (__) (__) (__) (__) (_")("_) (__) */ // SPDX-License-Identifier: MIT // 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/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _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) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _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/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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 0; } /** * @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) } } } // File: 111.sol pragma solidity ^0.8.9; contract SwaggySeals is ERC721A, Ownable, ReentrancyGuard, ERC2981 { event DevMintEvent(address ownerAddress, uint256 startWith, uint256 amountMinted); uint256 public devTotal; uint256 public _maxSupply = 5000; uint256 public _mintPrice = 0.005 ether; uint256 public _maxMintPerTx = 200; uint256 public _maxFreeMintPerAddr = 1; uint256 public _maxFreeMintSupply = 5000; uint256 public devSupply = 5; using Strings for uint256; string public baseURI; mapping(address => uint256) private _mintedFreeAmount; // Royalties address public royaltyAdd; constructor(string memory initBaseURI) ERC721A("SwaggySeals", "SWAG") { baseURI = initBaseURI; setDefaultRoyalty(msg.sender, 500); // 5% } // Set default royalty account & percentage function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) public { royaltyAdd = _receiver; _setDefaultRoyalty(_receiver, _feeNumerator); } // Set token specific royalty function setTokenRoyalty( uint256 tokenId, uint96 feeNumerator ) external onlyOwner { _setTokenRoyalty(tokenId, royaltyAdd, feeNumerator); } function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view override returns (address, uint256) { // Get royalty info from ERC2981 base implementation (, uint royaltyAmt) = super.royaltyInfo(_tokenId, _salePrice); // Royalty address is always the one specified in this contract return (royaltyAdd, royaltyAmt); } // /** // * @dev See {IERC165-supportsInterface}. // */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) { return interfaceId == type(IERC2981).interfaceId || interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } function mint(uint256 count) external payable { uint256 cost = _mintPrice; bool isFree = ((totalSupply() + count < _maxFreeMintSupply + 1) && (_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr)) || (msg.sender == owner()); if (isFree) { cost = 0; } require(msg.value >= count * cost, "Please send the exact amount."); require(totalSupply() + count < _maxSupply - devSupply + 1, "Sold out!"); require(count < _maxMintPerTx + 1, "Max per TX reached."); if (isFree) { _mintedFreeAmount[msg.sender] += count; } _safeMint(msg.sender, count); } function devMint() public onlyOwner { devTotal += devSupply; emit DevMintEvent(_msgSender(), devTotal, devSupply); _safeMint(msg.sender, devSupply); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Block X2Y2 if (operator == 0xF849de01B080aDC3A814FaBE1E2087475cF2E354) { return false; } return super.isApprovedForAll(owner, operator); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setFreeAmount(uint256 amount) external onlyOwner { _maxFreeMintSupply = amount; } function setPrice(uint256 _newPrice) external onlyOwner { _mintPrice = _newPrice; } function withdraw() public payable onlyOwner nonReentrant { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","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":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":false,"internalType":"address","name":"ownerAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountMinted","type":"uint256"}],"name":"DevMintEvent","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":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAdd","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","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":"payable","type":"function"}]
Contract Creation Code
6080604052611388600d556611c37937e08000600e5560c8600f55600160105561138860115560056012553480156200003757600080fd5b5060405162002339380380620023398339810160408190526200005a916200028e565b6040518060400160405280600b81526020016a5377616767795365616c7360a81b815250604051806040016040528060048152602001635357414760e01b8152508160029081620000ac9190620003f2565b506003620000bb8282620003f2565b50506000805550620000cd33620000f6565b60016009556013620000e08282620003f2565b50620000ef336101f462000148565b50620004be565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601580546001600160a01b0319166001600160a01b0384161790556200016f828262000173565b5050565b6127106001600160601b0382161115620001e75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200023f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001de565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620002a257600080fd5b82516001600160401b0380821115620002ba57600080fd5b818501915085601f830112620002cf57600080fd5b815181811115620002e457620002e462000278565b604051601f8201601f19908116603f011681019083821181831017156200030f576200030f62000278565b8160405282815288868487010111156200032857600080fd5b600093505b828410156200034c57848401860151818501870152928501926200032d565b600086848301015280965050505050505092915050565b600181811c908216806200037857607f821691505b6020821081036200039957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003ed57600081815260208120601f850160051c81016020861015620003c85750805b601f850160051c820191505b81811015620003e957828155600101620003d4565b5050505b505050565b81516001600160401b038111156200040e576200040e62000278565b62000426816200041f845462000363565b846200039f565b602080601f8311600181146200045e5760008415620004455750858301515b600019600386901b1c1916600185901b178555620003e9565b600085815260208120601f198616915b828110156200048f578886015182559484019460019091019084016200046e565b5085821015620004ae5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611e6b80620004ce6000396000f3fe6080604052600436106102045760003560e01c80636352211e1161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde1461056a578063c87b56dd1461057d578063de314a591461059d578063e985e9c5146105b3578063f2fde38b146105d357600080fd5b806395d89b411461050c5780639cb57d2014610521578063a0712d6814610537578063a22cb4651461054a57600080fd5b8063715018a6116100e7578063715018a6146104845780637c69e207146104995780638da5cb5b146104ae57806391b7f5ed146104cc57806392910eec146104ec57600080fd5b80636352211e1461040f57806367a4f4a91461042f5780636c0360eb1461044f57806370a082311461046457600080fd5b8063190866921161019b5780633ccfd60b1161016a5780633ccfd60b146103a857806341c66d0a146103b057806342842e0e146103c657806355f804b3146103d95780635e1c4b60146103f957600080fd5b8063190866921461032057806322f4596f1461034057806323b872dd146103565780632a55205a1461036957600080fd5b8063081812fc116101d7578063081812fc146102a6578063095ea7b3146102de5780630afb04db146102f157806318160ddd1461030757600080fd5b806301ffc9a7146102095780630387da421461023e57806304634d8d1461026257806306fdde0314610284575b600080fd5b34801561021557600080fd5b506102296102243660046117c9565b6105f3565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610254600e5481565b604051908152602001610235565b34801561026e57600080fd5b5061028261027d366004611819565b610660565b005b34801561029057600080fd5b50610299610689565b604051610235919061189c565b3480156102b257600080fd5b506102c66102c13660046118af565b61071b565b6040516001600160a01b039091168152602001610235565b6102826102ec3660046118c8565b61075f565b3480156102fd57600080fd5b50610254600c5481565b34801561031357600080fd5b5060015460005403610254565b34801561032c57600080fd5b506015546102c6906001600160a01b031681565b34801561034c57600080fd5b50610254600d5481565b6102826103643660046118f2565b6107ff565b34801561037557600080fd5b5061038961038436600461192e565b610998565b604080516001600160a01b039093168352602083019190915201610235565b6102826109bf565b3480156103bc57600080fd5b5061025460125481565b6102826103d43660046118f2565b610a31565b3480156103e557600080fd5b506102826103f43660046119dc565b610a51565b34801561040557600080fd5b5061025460115481565b34801561041b57600080fd5b506102c661042a3660046118af565b610a65565b34801561043b57600080fd5b5061028261044a366004611a25565b610a70565b34801561045b57600080fd5b50610299610a90565b34801561047057600080fd5b5061025461047f366004611a48565b610b1e565b34801561049057600080fd5b50610282610b6d565b3480156104a557600080fd5b50610282610b7f565b3480156104ba57600080fd5b506008546001600160a01b03166102c6565b3480156104d857600080fd5b506102826104e73660046118af565b610bf3565b3480156104f857600080fd5b506102826105073660046118af565b610c00565b34801561051857600080fd5b50610299610c0d565b34801561052d57600080fd5b5061025460105481565b6102826105453660046118af565b610c1c565b34801561055657600080fd5b50610282610565366004611a63565b610de4565b610282610578366004611a9f565b610e50565b34801561058957600080fd5b506102996105983660046118af565b610e9a565b3480156105a957600080fd5b50610254600f5481565b3480156105bf57600080fd5b506102296105ce366004611b1b565b610f3b565b3480156105df57600080fd5b506102826105ee366004611a48565b610f9a565b60006001600160e01b0319821663152a902d60e11b148061062457506301ffc9a760e01b6001600160e01b03198316145b8061063f57506380ac58cd60e01b6001600160e01b03198316145b8061065a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b601580546001600160a01b0319166001600160a01b0384161790556106858282611013565b5050565b60606002805461069890611b45565b80601f01602080910402602001604051908101604052809291908181526020018280546106c490611b45565b80156107115780601f106106e657610100808354040283529160200191610711565b820191906000526020600020905b8154815290600101906020018083116106f457829003601f168201915b5050505050905090565b6000610726826110cd565b610743576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061076a82610a65565b9050336001600160a01b038216146107a3576107868133610f3b565b6107a3576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061080a826110f4565b9050836001600160a01b0316816001600160a01b03161461083d5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761088a5761086d8633610f3b565b61088a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108b157604051633a954ecd60e21b815260040160405180910390fd5b80156108bc57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361094e5760018401600081815260046020526040812054900361094c57600054811461094c5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60008060006109a7858561115b565b6015546001600160a01b031697909650945050505050565b6109c7611207565b6109cf611261565b604051600090339047908381818185875af1925050503d8060008114610a11576040519150601f19603f3d011682016040523d82523d6000602084013e610a16565b606091505b5050905080610a2457600080fd5b50610a2f6001600955565b565b610a4c83838360405180602001604052806000815250610e50565b505050565b610a59611207565b60136106858282611bc5565b600061065a826110f4565b610a78611207565b6015546106859083906001600160a01b0316836112ba565b60138054610a9d90611b45565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac990611b45565b8015610b165780601f10610aeb57610100808354040283529160200191610b16565b820191906000526020600020905b815481529060010190602001808311610af957829003601f168201915b505050505081565b60006001600160a01b038216610b47576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b75611207565b610a2f6000611385565b610b87611207565b601254600c6000828254610b9b9190611c9b565b9091555050600c5460125460408051338152602081019390935282810191909152517f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e9181900360600190a1610a2f336012546113d7565b610bfb611207565b600e55565b610c08611207565b601155565b60606003805461069890611b45565b600e54601154600090610c30906001611c9b565b83610c3e6001546000540390565b610c489190611c9b565b108015610c71575060105433600090815260146020526040902054610c6e908590611c9b565b11155b80610c8657506008546001600160a01b031633145b90508015610c9357600091505b610c9d8284611cae565b341015610cf15760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064015b60405180910390fd5b601254600d54610d019190611cc5565b610d0c906001611c9b565b83610d1a6001546000540390565b610d249190611c9b565b10610d5d5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610ce8565b600f54610d6b906001611c9b565b8310610daf5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610ce8565b8015610dda573360009081526014602052604081208054859290610dd4908490611c9b565b90915550505b610a4c33846113d7565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e5b8484846107ff565b6001600160a01b0383163b15610e9457610e77848484846113f1565b610e94576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ea5826110cd565b610f095760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ce8565b6013610f14836114dd565b604051602001610f25929190611cd8565b6040516020818303038152906040529050919050565b60006001600160a01b03821673f849de01b080adc3a814fabe1e2087475cf2e35403610f695750600061065a565b6001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff165b9392505050565b610fa2611207565b6001600160a01b0381166110075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ce8565b61101081611385565b50565b6127106001600160601b038216111561103e5760405162461bcd60e51b8152600401610ce890611d6f565b6001600160a01b0382166110945760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610ce8565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b600080548210801561065a575050600090815260046020526040902054600160e01b161590565b6000816000548110156111425760008181526004602052604081205490600160e01b82169003611140575b80600003610f9357506000190160008181526004602052604090205461111f565b505b604051636f96cda160e11b815260040160405180910390fd5b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916111d0575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906111ef906001600160601b031687611cae565b6111f99190611db9565b915196919550909350505050565b6008546001600160a01b03163314610a2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce8565b6002600954036112b35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ce8565b6002600955565b6127106001600160601b03821611156112e55760405162461bcd60e51b8152600401610ce890611d6f565b6001600160a01b03821661133b5760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d657465727300000000006044820152606401610ce8565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600b90529190942093519051909116600160a01b029116179055565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610685828260405180602001604052806000815250611570565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611426903390899088908890600401611ddb565b6020604051808303816000875af1925050508015611461575060408051601f3d908101601f1916820190925261145e91810190611e18565b60015b6114bf573d80801561148f576040519150601f19603f3d011682016040523d82523d6000602084013e611494565b606091505b5080516000036114b7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060006114ea836115dd565b600101905060008167ffffffffffffffff81111561150a5761150a611950565b6040519080825280601f01601f191660200182016040528015611534576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461153e57509392505050565b61157a83836116b5565b6001600160a01b0383163b15610a4c576000548281035b6115a460008683806001019450866113f1565b6115c1576040516368d2bf6b60e11b815260040160405180910390fd5b8181106115915781600054146115d657600080fd5b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061161c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611648576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061166657662386f26fc10000830492506010015b6305f5e100831061167e576305f5e100830492506008015b612710831061169257612710830492506004015b606483106116a4576064830492506002015b600a831061065a5760010192915050565b60008054908290036116da5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461178957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611751565b50816000036117aa57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461101057600080fd5b6000602082840312156117db57600080fd5b8135610f93816117b3565b80356001600160a01b03811681146117fd57600080fd5b919050565b80356001600160601b03811681146117fd57600080fd5b6000806040838503121561182c57600080fd5b611835836117e6565b915061184360208401611802565b90509250929050565b60005b8381101561186757818101518382015260200161184f565b50506000910152565b6000815180845261188881602086016020860161184c565b601f01601f19169290920160200192915050565b602081526000610f936020830184611870565b6000602082840312156118c157600080fd5b5035919050565b600080604083850312156118db57600080fd5b6118e4836117e6565b946020939093013593505050565b60008060006060848603121561190757600080fd5b611910846117e6565b925061191e602085016117e6565b9150604084013590509250925092565b6000806040838503121561194157600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561198157611981611950565b604051601f8501601f19908116603f011681019082821181831017156119a9576119a9611950565b816040528093508581528686860111156119c257600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119ee57600080fd5b813567ffffffffffffffff811115611a0557600080fd5b8201601f81018413611a1657600080fd5b6114d584823560208401611966565b60008060408385031215611a3857600080fd5b8235915061184360208401611802565b600060208284031215611a5a57600080fd5b610f93826117e6565b60008060408385031215611a7657600080fd5b611a7f836117e6565b915060208301358015158114611a9457600080fd5b809150509250929050565b60008060008060808587031215611ab557600080fd5b611abe856117e6565b9350611acc602086016117e6565b925060408501359150606085013567ffffffffffffffff811115611aef57600080fd5b8501601f81018713611b0057600080fd5b611b0f87823560208401611966565b91505092959194509250565b60008060408385031215611b2e57600080fd5b611b37836117e6565b9150611843602084016117e6565b600181811c90821680611b5957607f821691505b602082108103611b7957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a4c57600081815260208120601f850160051c81016020861015611ba65750805b601f850160051c820191505b8181101561099057828155600101611bb2565b815167ffffffffffffffff811115611bdf57611bdf611950565b611bf381611bed8454611b45565b84611b7f565b602080601f831160018114611c285760008415611c105750858301515b600019600386901b1c1916600185901b178555610990565b600085815260208120601f198616915b82811015611c5757888601518255948401946001909101908401611c38565b5085821015611c755787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561065a5761065a611c85565b808202811582820484141761065a5761065a611c85565b8181038181111561065a5761065a611c85565b6000808454611ce681611b45565b60018281168015611cfe5760018114611d1357611d42565b60ff1984168752821515830287019450611d42565b8860005260208060002060005b85811015611d395781548a820152908401908201611d20565b50505082870194505b505050508351611d5681836020880161184c565b64173539b7b760d91b9101908152600501949350505050565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b600082611dd657634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e0e90830184611870565b9695505050505050565b600060208284031215611e2a57600080fd5b8151610f93816117b356fea2646970667358221220572a6ee838346f9b43ca83b2a19c837f825b86d478c9ce59439686038b6f5bde64736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569673434746e336c6874703476756b746532686f736f6c713563726a3668737366656d6235617674617a74336872346c726e7234612f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636352211e1161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde1461056a578063c87b56dd1461057d578063de314a591461059d578063e985e9c5146105b3578063f2fde38b146105d357600080fd5b806395d89b411461050c5780639cb57d2014610521578063a0712d6814610537578063a22cb4651461054a57600080fd5b8063715018a6116100e7578063715018a6146104845780637c69e207146104995780638da5cb5b146104ae57806391b7f5ed146104cc57806392910eec146104ec57600080fd5b80636352211e1461040f57806367a4f4a91461042f5780636c0360eb1461044f57806370a082311461046457600080fd5b8063190866921161019b5780633ccfd60b1161016a5780633ccfd60b146103a857806341c66d0a146103b057806342842e0e146103c657806355f804b3146103d95780635e1c4b60146103f957600080fd5b8063190866921461032057806322f4596f1461034057806323b872dd146103565780632a55205a1461036957600080fd5b8063081812fc116101d7578063081812fc146102a6578063095ea7b3146102de5780630afb04db146102f157806318160ddd1461030757600080fd5b806301ffc9a7146102095780630387da421461023e57806304634d8d1461026257806306fdde0314610284575b600080fd5b34801561021557600080fd5b506102296102243660046117c9565b6105f3565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610254600e5481565b604051908152602001610235565b34801561026e57600080fd5b5061028261027d366004611819565b610660565b005b34801561029057600080fd5b50610299610689565b604051610235919061189c565b3480156102b257600080fd5b506102c66102c13660046118af565b61071b565b6040516001600160a01b039091168152602001610235565b6102826102ec3660046118c8565b61075f565b3480156102fd57600080fd5b50610254600c5481565b34801561031357600080fd5b5060015460005403610254565b34801561032c57600080fd5b506015546102c6906001600160a01b031681565b34801561034c57600080fd5b50610254600d5481565b6102826103643660046118f2565b6107ff565b34801561037557600080fd5b5061038961038436600461192e565b610998565b604080516001600160a01b039093168352602083019190915201610235565b6102826109bf565b3480156103bc57600080fd5b5061025460125481565b6102826103d43660046118f2565b610a31565b3480156103e557600080fd5b506102826103f43660046119dc565b610a51565b34801561040557600080fd5b5061025460115481565b34801561041b57600080fd5b506102c661042a3660046118af565b610a65565b34801561043b57600080fd5b5061028261044a366004611a25565b610a70565b34801561045b57600080fd5b50610299610a90565b34801561047057600080fd5b5061025461047f366004611a48565b610b1e565b34801561049057600080fd5b50610282610b6d565b3480156104a557600080fd5b50610282610b7f565b3480156104ba57600080fd5b506008546001600160a01b03166102c6565b3480156104d857600080fd5b506102826104e73660046118af565b610bf3565b3480156104f857600080fd5b506102826105073660046118af565b610c00565b34801561051857600080fd5b50610299610c0d565b34801561052d57600080fd5b5061025460105481565b6102826105453660046118af565b610c1c565b34801561055657600080fd5b50610282610565366004611a63565b610de4565b610282610578366004611a9f565b610e50565b34801561058957600080fd5b506102996105983660046118af565b610e9a565b3480156105a957600080fd5b50610254600f5481565b3480156105bf57600080fd5b506102296105ce366004611b1b565b610f3b565b3480156105df57600080fd5b506102826105ee366004611a48565b610f9a565b60006001600160e01b0319821663152a902d60e11b148061062457506301ffc9a760e01b6001600160e01b03198316145b8061063f57506380ac58cd60e01b6001600160e01b03198316145b8061065a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b601580546001600160a01b0319166001600160a01b0384161790556106858282611013565b5050565b60606002805461069890611b45565b80601f01602080910402602001604051908101604052809291908181526020018280546106c490611b45565b80156107115780601f106106e657610100808354040283529160200191610711565b820191906000526020600020905b8154815290600101906020018083116106f457829003601f168201915b5050505050905090565b6000610726826110cd565b610743576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061076a82610a65565b9050336001600160a01b038216146107a3576107868133610f3b565b6107a3576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061080a826110f4565b9050836001600160a01b0316816001600160a01b03161461083d5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761088a5761086d8633610f3b565b61088a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108b157604051633a954ecd60e21b815260040160405180910390fd5b80156108bc57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361094e5760018401600081815260046020526040812054900361094c57600054811461094c5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60008060006109a7858561115b565b6015546001600160a01b031697909650945050505050565b6109c7611207565b6109cf611261565b604051600090339047908381818185875af1925050503d8060008114610a11576040519150601f19603f3d011682016040523d82523d6000602084013e610a16565b606091505b5050905080610a2457600080fd5b50610a2f6001600955565b565b610a4c83838360405180602001604052806000815250610e50565b505050565b610a59611207565b60136106858282611bc5565b600061065a826110f4565b610a78611207565b6015546106859083906001600160a01b0316836112ba565b60138054610a9d90611b45565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac990611b45565b8015610b165780601f10610aeb57610100808354040283529160200191610b16565b820191906000526020600020905b815481529060010190602001808311610af957829003601f168201915b505050505081565b60006001600160a01b038216610b47576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b75611207565b610a2f6000611385565b610b87611207565b601254600c6000828254610b9b9190611c9b565b9091555050600c5460125460408051338152602081019390935282810191909152517f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e9181900360600190a1610a2f336012546113d7565b610bfb611207565b600e55565b610c08611207565b601155565b60606003805461069890611b45565b600e54601154600090610c30906001611c9b565b83610c3e6001546000540390565b610c489190611c9b565b108015610c71575060105433600090815260146020526040902054610c6e908590611c9b565b11155b80610c8657506008546001600160a01b031633145b90508015610c9357600091505b610c9d8284611cae565b341015610cf15760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064015b60405180910390fd5b601254600d54610d019190611cc5565b610d0c906001611c9b565b83610d1a6001546000540390565b610d249190611c9b565b10610d5d5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610ce8565b600f54610d6b906001611c9b565b8310610daf5760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b6044820152606401610ce8565b8015610dda573360009081526014602052604081208054859290610dd4908490611c9b565b90915550505b610a4c33846113d7565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e5b8484846107ff565b6001600160a01b0383163b15610e9457610e77848484846113f1565b610e94576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ea5826110cd565b610f095760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ce8565b6013610f14836114dd565b604051602001610f25929190611cd8565b6040516020818303038152906040529050919050565b60006001600160a01b03821673f849de01b080adc3a814fabe1e2087475cf2e35403610f695750600061065a565b6001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff165b9392505050565b610fa2611207565b6001600160a01b0381166110075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ce8565b61101081611385565b50565b6127106001600160601b038216111561103e5760405162461bcd60e51b8152600401610ce890611d6f565b6001600160a01b0382166110945760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610ce8565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b600080548210801561065a575050600090815260046020526040902054600160e01b161590565b6000816000548110156111425760008181526004602052604081205490600160e01b82169003611140575b80600003610f9357506000190160008181526004602052604090205461111f565b505b604051636f96cda160e11b815260040160405180910390fd5b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916111d0575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906111ef906001600160601b031687611cae565b6111f99190611db9565b915196919550909350505050565b6008546001600160a01b03163314610a2f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce8565b6002600954036112b35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ce8565b6002600955565b6127106001600160601b03821611156112e55760405162461bcd60e51b8152600401610ce890611d6f565b6001600160a01b03821661133b5760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d657465727300000000006044820152606401610ce8565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600b90529190942093519051909116600160a01b029116179055565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610685828260405180602001604052806000815250611570565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611426903390899088908890600401611ddb565b6020604051808303816000875af1925050508015611461575060408051601f3d908101601f1916820190925261145e91810190611e18565b60015b6114bf573d80801561148f576040519150601f19603f3d011682016040523d82523d6000602084013e611494565b606091505b5080516000036114b7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060006114ea836115dd565b600101905060008167ffffffffffffffff81111561150a5761150a611950565b6040519080825280601f01601f191660200182016040528015611534576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461153e57509392505050565b61157a83836116b5565b6001600160a01b0383163b15610a4c576000548281035b6115a460008683806001019450866113f1565b6115c1576040516368d2bf6b60e11b815260040160405180910390fd5b8181106115915781600054146115d657600080fd5b5050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061161c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611648576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061166657662386f26fc10000830492506010015b6305f5e100831061167e576305f5e100830492506008015b612710831061169257612710830492506004015b606483106116a4576064830492506002015b600a831061065a5760010192915050565b60008054908290036116da5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461178957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611751565b50816000036117aa57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b03198116811461101057600080fd5b6000602082840312156117db57600080fd5b8135610f93816117b3565b80356001600160a01b03811681146117fd57600080fd5b919050565b80356001600160601b03811681146117fd57600080fd5b6000806040838503121561182c57600080fd5b611835836117e6565b915061184360208401611802565b90509250929050565b60005b8381101561186757818101518382015260200161184f565b50506000910152565b6000815180845261188881602086016020860161184c565b601f01601f19169290920160200192915050565b602081526000610f936020830184611870565b6000602082840312156118c157600080fd5b5035919050565b600080604083850312156118db57600080fd5b6118e4836117e6565b946020939093013593505050565b60008060006060848603121561190757600080fd5b611910846117e6565b925061191e602085016117e6565b9150604084013590509250925092565b6000806040838503121561194157600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561198157611981611950565b604051601f8501601f19908116603f011681019082821181831017156119a9576119a9611950565b816040528093508581528686860111156119c257600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156119ee57600080fd5b813567ffffffffffffffff811115611a0557600080fd5b8201601f81018413611a1657600080fd5b6114d584823560208401611966565b60008060408385031215611a3857600080fd5b8235915061184360208401611802565b600060208284031215611a5a57600080fd5b610f93826117e6565b60008060408385031215611a7657600080fd5b611a7f836117e6565b915060208301358015158114611a9457600080fd5b809150509250929050565b60008060008060808587031215611ab557600080fd5b611abe856117e6565b9350611acc602086016117e6565b925060408501359150606085013567ffffffffffffffff811115611aef57600080fd5b8501601f81018713611b0057600080fd5b611b0f87823560208401611966565b91505092959194509250565b60008060408385031215611b2e57600080fd5b611b37836117e6565b9150611843602084016117e6565b600181811c90821680611b5957607f821691505b602082108103611b7957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a4c57600081815260208120601f850160051c81016020861015611ba65750805b601f850160051c820191505b8181101561099057828155600101611bb2565b815167ffffffffffffffff811115611bdf57611bdf611950565b611bf381611bed8454611b45565b84611b7f565b602080601f831160018114611c285760008415611c105750858301515b600019600386901b1c1916600185901b178555610990565b600085815260208120601f198616915b82811015611c5757888601518255948401946001909101908401611c38565b5085821015611c755787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082018082111561065a5761065a611c85565b808202811582820484141761065a5761065a611c85565b8181038181111561065a5761065a611c85565b6000808454611ce681611b45565b60018281168015611cfe5760018114611d1357611d42565b60ff1984168752821515830287019450611d42565b8860005260208060002060005b85811015611d395781548a820152908401908201611d20565b50505082870194505b505050508351611d5681836020880161184c565b64173539b7b760d91b9101908152600501949350505050565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b600082611dd657634e487b7160e01b600052601260045260246000fd5b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e0e90830184611870565b9695505050505050565b600060208284031215611e2a57600080fd5b8151610f93816117b356fea2646970667358221220572a6ee838346f9b43ca83b2a19c837f825b86d478c9ce59439686038b6f5bde64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569673434746e336c6874703476756b746532686f736f6c713563726a3668737366656d6235617674617a74336872346c726e7234612f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://bafybeig44tn3lhtp4vukte2hosolq5crj6hssfemb5avtazt3hr4lrnr4a/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f62616679626569673434746e336c6874703476756b74653268
Arg [3] : 6f736f6c713563726a3668737366656d6235617674617a74336872346c726e72
Arg [4] : 34612f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
81151:4384:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82845:416;;;;;;;;;;-1:-1:-1;82845:416:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;82845:416:0;;;;;;;;81375:39;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;81375:39:0;592:177:1;81997:171:0;;;;;;;;;;-1:-1:-1;81997:171:0;;;;;:::i;:::-;;:::i;:::-;;48954:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55445:218::-;;;;;;;;;;-1:-1:-1;55445:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2504:32:1;;;2486:51;;2474:2;2459:18;55445:218:0;2340:203:1;54878:408:0;;;;;;:::i;:::-;;:::i;81306:23::-;;;;;;;;;;;;;;;;44705:323;;;;;;;;;;-1:-1:-1;44979:12:0;;44766:7;44963:13;:28;44705:323;;81743:25;;;;;;;;;;-1:-1:-1;81743:25:0;;;;-1:-1:-1;;;;;81743:25:0;;;81336:32;;;;;;;;;;;;;;;;59084:2825;;;;;;:::i;:::-;;:::i;82398:365::-;;;;;;;;;;-1:-1:-1;82398:365:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3585:32:1;;;3567:51;;3649:2;3634:18;;3627:34;;;;3540:18;82398:365:0;3393:274:1;85327:205:0;;;:::i;81558:28::-;;;;;;;;;;;;;;;;62005:193;;;;;;:::i;:::-;;:::i;85011:88::-;;;;;;;;;;-1:-1:-1;85011:88:0;;;;;:::i;:::-;;:::i;81510:40::-;;;;;;;;;;;;;;;;50347:152;;;;;;;;;;-1:-1:-1;50347:152:0;;;;;:::i;:::-;;:::i;82212:177::-;;;;;;;;;;-1:-1:-1;82212:177:0;;;;;:::i;:::-;;:::i;81628:21::-;;;;;;;;;;;;;:::i;45889:233::-;;;;;;;;;;-1:-1:-1;45889:233:0;;;;;:::i;:::-;;:::i;28831:103::-;;;;;;;;;;;;;:::i;83991:182::-;;;;;;;;;;;;;:::i;28183:87::-;;;;;;;;;;-1:-1:-1;28256:6:0;;-1:-1:-1;;;;;28256:6:0;28183:87;;85221:97;;;;;;;;;;-1:-1:-1;85221:97:0;;;;;:::i;:::-;;:::i;85108:104::-;;;;;;;;;;-1:-1:-1;85108:104:0;;;;;:::i;:::-;;:::i;49130:::-;;;;;;;;;;;;;:::i;81465:38::-;;;;;;;;;;;;;;;;83273:708;;;;;;:::i;:::-;;:::i;56003:234::-;;;;;;;;;;-1:-1:-1;56003:234:0;;;;;:::i;:::-;;:::i;62796:407::-;;;;;;:::i;:::-;;:::i;84652:350::-;;;;;;;;;;-1:-1:-1;84652:350:0;;;;;:::i;:::-;;:::i;81421:34::-;;;;;;;;;;;;;;;;84298:339;;;;;;;;;;-1:-1:-1;84298:339:0;;;;;:::i;:::-;;:::i;29089:201::-;;;;;;;;;;-1:-1:-1;29089:201:0;;;;;:::i;:::-;;:::i;82845:416::-;82948:4;-1:-1:-1;;;;;;82972:41:0;;-1:-1:-1;;;82972:41:0;;:84;;-1:-1:-1;;;;;;;;;;83031:25:0;;;82972:84;:161;;;-1:-1:-1;;;;;;;;;;83108:25:0;;;82972:161;:238;;;-1:-1:-1;;;;;;;;;;83185:25:0;;;82972:238;82965:245;82845:416;-1:-1:-1;;82845:416:0:o;81997:171::-;82083:10;:22;;-1:-1:-1;;;;;;82083:22:0;-1:-1:-1;;;;;82083:22:0;;;;;82116:44;82083:22;82146:13;82116:18;:44::i;:::-;81997:171;;:::o;48954:100::-;49008:13;49041:5;49034:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48954:100;:::o;55445:218::-;55521:7;55546:16;55554:7;55546;:16::i;:::-;55541:64;;55571:34;;-1:-1:-1;;;55571:34:0;;;;;;;;;;;55541:64;-1:-1:-1;55625:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;55625:30:0;;55445:218::o;54878:408::-;54967:13;54983:16;54991:7;54983;:16::i;:::-;54967:32;-1:-1:-1;79211:10:0;-1:-1:-1;;;;;55016:28:0;;;55012:175;;55064:44;55081:5;79211:10;84298:339;:::i;55064:44::-;55059:128;;55136:35;;-1:-1:-1;;;55136:35:0;;;;;;;;;;;55059:128;55199:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;55199:35:0;-1:-1:-1;;;;;55199:35:0;;;;;;;;;55250:28;;55199:24;;55250:28;;;;;;;54956:330;54878:408;;:::o;59084:2825::-;59226:27;59256;59275:7;59256:18;:27::i;:::-;59226:57;;59341:4;-1:-1:-1;;;;;59300:45:0;59316:19;-1:-1:-1;;;;;59300:45:0;;59296:86;;59354:28;;-1:-1:-1;;;59354:28:0;;;;;;;;;;;59296:86;59396:27;58192:24;;;:15;:24;;;;;58420:26;;79211:10;57817:30;;;-1:-1:-1;;;;;57510:28:0;;57795:20;;;57792:56;59582:180;;59675:43;59692:4;79211:10;84298:339;:::i;59675:43::-;59670:92;;59727:35;;-1:-1:-1;;;59727:35:0;;;;;;;;;;;59670:92;-1:-1:-1;;;;;59779:16:0;;59775:52;;59804:23;;-1:-1:-1;;;59804:23:0;;;;;;;;;;;59775:52;59976:15;59973:160;;;60116:1;60095:19;60088:30;59973:160;-1:-1:-1;;;;;60513:24:0;;;;;;;:18;:24;;;;;;60511:26;;-1:-1:-1;;60511:26:0;;;60582:22;;;;;;;;;60580:24;;-1:-1:-1;60580:24:0;;;53736:11;53711:23;53707:41;53694:63;-1:-1:-1;;;53694:63:0;60875:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;61170:47:0;;:52;;61166:627;;61275:1;61265:11;;61243:19;61398:30;;;:17;:30;;;;;;:35;;61394:384;;61536:13;;61521:11;:28;61517:242;;61683:30;;;;:17;:30;;;;;:52;;;61517:242;61224:569;61166:627;61840:7;61836:2;-1:-1:-1;;;;;61821:27:0;61830:4;-1:-1:-1;;;;;61821:27:0;;;;;;;;;;;61859:42;59215:2694;;;59084:2825;;;:::o;82398:365::-;82487:7;82496;82581:15;82600:39;82618:8;82628:10;82600:17;:39::i;:::-;82732:10;;-1:-1:-1;;;;;82732:10:0;;82578:61;;-1:-1:-1;82398:365:0;-1:-1:-1;;;;;82398:365:0:o;85327:205::-;28069:13;:11;:13::i;:::-;25454:21:::1;:19;:21::i;:::-;85415:82:::2;::::0;85397:12:::2;::::0;85423:10:::2;::::0;85461:21:::2;::::0;85397:12;85415:82;85397:12;85415:82;85461:21;85423:10;85415:82:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85396:101;;;85516:7;85508:16;;;::::0;::::2;;85385:147;25498:20:::1;24892:1:::0;26018:7;:22;25835:213;25498:20:::1;85327:205::o:0;62005:193::-;62151:39;62168:4;62174:2;62178:7;62151:39;;;;;;;;;;;;:16;:39::i;:::-;62005:193;;;:::o;85011:88::-;28069:13;:11;:13::i;:::-;85078:7:::1;:13;85088:3:::0;85078:7;:13:::1;:::i;50347:152::-:0;50419:7;50462:27;50481:7;50462:18;:27::i;82212:177::-;28069:13;:11;:13::i;:::-;82356:10:::1;::::0;82330:51:::1;::::0;82347:7;;-1:-1:-1;;;;;82356:10:0::1;82368:12:::0;82330:16:::1;:51::i;81628:21::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45889:233::-;45961:7;-1:-1:-1;;;;;45985:19:0;;45981:60;;46013:28;;-1:-1:-1;;;46013:28:0;;;;;;;;;;;45981:60;-1:-1:-1;;;;;;46059:25:0;;;;;:18;:25;;;;;;40048:13;46059:55;;45889:233::o;28831:103::-;28069:13;:11;:13::i;:::-;28896:30:::1;28923:1;28896:18;:30::i;83991:182::-:0;28069:13;:11;:13::i;:::-;84050:9:::1;;84038:8;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;84102:8:0::1;::::0;84112:9:::1;::::0;84075:47:::1;::::0;;79211:10;9897:51:1;;9979:2;9964:18;;9957:34;;;;10007:18;;;10000:34;;;;84075:47:0;::::1;::::0;;;;9885:2:1;84075:47:0;;::::1;84133:32;84143:10;84155:9;;84133;:32::i;85221:97::-:0;28069:13;:11;:13::i;:::-;85288:10:::1;:22:::0;85221:97::o;85108:104::-;28069:13;:11;:13::i;:::-;85177:18:::1;:27:::0;85108:104::o;49130:::-;49186:13;49219:7;49212:14;;;;;:::i;83273:708::-;83345:10;;83406:18;;83330:12;;83406:22;;83427:1;83406:22;:::i;:::-;83398:5;83382:13;44979:12;;44766:7;44963:13;:28;;44705:323;83382:13;:21;;;;:::i;:::-;:46;83381:127;;;;-1:-1:-1;83488:19:0;;83465:10;83447:29;;;;:17;:29;;;;;;:37;;83479:5;;83447:37;:::i;:::-;:60;;83381:127;83380:169;;;-1:-1:-1;28256:6:0;;-1:-1:-1;;;;;28256:6:0;83527:10;:21;83380:169;83366:183;;83567:6;83563:47;;;83597:1;83590:8;;83563:47;83644:12;83652:4;83644:5;:12;:::i;:::-;83631:9;:25;;83623:67;;;;-1:-1:-1;;;83623:67:0;;10420:2:1;83623:67:0;;;10402:21:1;10459:2;10439:18;;;10432:30;10498:31;10478:18;;;10471:59;10547:18;;83623:67:0;;;;;;;;;83746:9;;83733:10;;:22;;;;:::i;:::-;:26;;83758:1;83733:26;:::i;:::-;83725:5;83709:13;44979:12;;44766:7;44963:13;:28;;44705:323;83709:13;:21;;;;:::i;:::-;:50;83701:72;;;;-1:-1:-1;;;83701:72:0;;10911:2:1;83701:72:0;;;10893:21:1;10950:1;10930:18;;;10923:29;-1:-1:-1;;;10968:18:1;;;10961:39;11017:18;;83701:72:0;10709:332:1;83701:72:0;83800:13;;:17;;83816:1;83800:17;:::i;:::-;83792:5;:25;83784:57;;;;-1:-1:-1;;;83784:57:0;;11248:2:1;83784:57:0;;;11230:21:1;11287:2;11267:18;;;11260:30;-1:-1:-1;;;11306:18:1;;;11299:49;11365:18;;83784:57:0;11046:343:1;83784:57:0;83859:6;83855:77;;;83900:10;83882:29;;;;:17;:29;;;;;:38;;83915:5;;83882:29;:38;;83915:5;;83882:38;:::i;:::-;;;;-1:-1:-1;;83855:77:0;83945:28;83955:10;83967:5;83945:9;:28::i;56003:234::-;79211:10;56098:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;56098:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;56098:60:0;;;;;;;;;;56174:55;;540:41:1;;;56098:49:0;;79211:10;56174:55;;513:18:1;56174:55:0;;;;;;;56003:234;;:::o;62796:407::-;62971:31;62984:4;62990:2;62994:7;62971:12;:31::i;:::-;-1:-1:-1;;;;;63017:14:0;;;:19;63013:183;;63056:56;63087:4;63093:2;63097:7;63106:5;63056:30;:56::i;:::-;63051:145;;63140:40;;-1:-1:-1;;;63140:40:0;;;;;;;;;;;63051:145;62796:407;;;;:::o;84652:350::-;84770:13;84823:16;84831:7;84823;:16::i;:::-;84801:113;;;;-1:-1:-1;;;84801:113:0;;11596:2:1;84801:113:0;;;11578:21:1;11635:2;11615:18;;;11608:30;11674:34;11654:18;;;11647:62;-1:-1:-1;;;11725:18:1;;;11718:45;11780:19;;84801:113:0;11394:411:1;84801:113:0;84956:7;84965:18;:7;:16;:18::i;:::-;84939:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84925:69;;84652:350;;;:::o;84298:339::-;84423:4;-1:-1:-1;;;;;84472:54:0;;84484:42;84472:54;84468:99;;-1:-1:-1;84550:5:0;84543:12;;84468:99;-1:-1:-1;;;;;56515:25:0;;;56491:4;56515:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;84590:39;84583:46;84298:339;-1:-1:-1;;;84298:339:0:o;29089:201::-;28069:13;:11;:13::i;:::-;-1:-1:-1;;;;;29178:22:0;::::1;29170:73;;;::::0;-1:-1:-1;;;29170:73:0;;13204:2:1;29170:73:0::1;::::0;::::1;13186:21:1::0;13243:2;13223:18;;;13216:30;13282:34;13262:18;;;13255:62;-1:-1:-1;;;13333:18:1;;;13326:36;13379:19;;29170:73:0::1;13002:402:1::0;29170:73:0::1;29254:28;29273:8;29254:18;:28::i;:::-;29089:201:::0;:::o;6505:332::-;6221:5;-1:-1:-1;;;;;6608:33:0;;;;6600:88;;;;-1:-1:-1;;;6600:88:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6707:22:0;;6699:60;;;;-1:-1:-1;;;6699:60:0;;14022:2:1;6699:60:0;;;14004:21:1;14061:2;14041:18;;;14034:30;14100:27;14080:18;;;14073:55;14145:18;;6699:60:0;13820:349:1;6699:60:0;6794:35;;;;;;;;;-1:-1:-1;;;;;6794:35:0;;;;;;-1:-1:-1;;;;;6794:35:0;;;;;;;;;;-1:-1:-1;;;6772:57:0;;;;:19;:57;6505:332::o;56816:282::-;56881:4;56971:13;;56961:7;:23;56918:153;;;;-1:-1:-1;;57022:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;57022:44:0;:49;;56816:282::o;51502:1275::-;51569:7;51604;51706:13;;51699:4;:20;51695:1015;;;51744:14;51761:23;;;:17;:23;;;;;;;-1:-1:-1;;;51850:24:0;;:29;;51846:845;;52515:113;52522:6;52532:1;52522:11;52515:113;;-1:-1:-1;;;52593:6:0;52575:25;;;;:17;:25;;;;;;52515:113;;51846:845;51721:989;51695:1015;52738:31;;-1:-1:-1;;;52738:31:0;;;;;;;;;;;5413:442;5510:7;5568:27;;;:17;:27;;;;;;;;5539:56;;;;;;;;;-1:-1:-1;;;;;5539:56:0;;;;;-1:-1:-1;;;5539:56:0;;;-1:-1:-1;;;;;5539:56:0;;;;;;;;5510:7;;5608:92;;-1:-1:-1;5659:29:0;;;;;;;;;5669:19;5659:29;-1:-1:-1;;;;;5659:29:0;;;;-1:-1:-1;;;5659:29:0;;-1:-1:-1;;;;;5659:29:0;;;;;5608:92;5750:23;;;;5712:21;;6221:5;;5737:36;;-1:-1:-1;;;;;5737:36:0;:10;:36;:::i;:::-;5736:58;;;;:::i;:::-;5815:16;;;;;-1:-1:-1;5413:442:0;;-1:-1:-1;;;;5413:442:0:o;28348:132::-;28256:6;;-1:-1:-1;;;;;28256:6:0;79211:10;28412:23;28404:68;;;;-1:-1:-1;;;28404:68:0;;14730:2:1;28404:68:0;;;14712:21:1;;;14749:18;;;14742:30;14808:34;14788:18;;;14781:62;14860:18;;28404:68:0;14528:356:1;25534:293:0;24936:1;25668:7;;:19;25660:63;;;;-1:-1:-1;;;25660:63:0;;15091:2:1;25660:63:0;;;15073:21:1;15130:2;15110:18;;;15103:30;15169:33;15149:18;;;15142:61;15220:18;;25660:63:0;14889:355:1;25660:63:0;24936:1;25801:7;:18;25534:293::o;7288:390::-;6221:5;-1:-1:-1;;;;;7440:33:0;;;;7432:88;;;;-1:-1:-1;;;7432:88:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7539:22:0;;7531:62;;;;-1:-1:-1;;;7531:62:0;;15451:2:1;7531:62:0;;;15433:21:1;15490:2;15470:18;;;15463:30;15529:29;15509:18;;;15502:57;15576:18;;7531:62:0;15249:351:1;7531:62:0;7635:35;;;;;;;;-1:-1:-1;;;;;7635:35:0;;;;;-1:-1:-1;;;;;7635:35:0;;;;;;;;;;-1:-1:-1;7606:26:0;;;:17;:26;;;;;;:64;;;;;;;-1:-1:-1;;;7606:64:0;;;;;;7288:390::o;29450:191::-;29543:6;;;-1:-1:-1;;;;;29560:17:0;;;-1:-1:-1;;;;;;29560:17:0;;;;;;;29593:40;;29543:6;;;29560:17;29543:6;;29593:40;;29524:16;;29593:40;29513:128;29450:191;:::o;72956:112::-;73033:27;73043:2;73047:8;73033:27;;;;;;;;;;;;:9;:27::i;65287:716::-;65471:88;;-1:-1:-1;;;65471:88:0;;65450:4;;-1:-1:-1;;;;;65471:45:0;;;;;:88;;79211:10;;65538:4;;65544:7;;65553:5;;65471:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65471:88:0;;;;;;;;-1:-1:-1;;65471:88:0;;;;;;;;;;;;:::i;:::-;;;65467:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65754:6;:13;65771:1;65754:18;65750:235;;65800:40;;-1:-1:-1;;;65800:40:0;;;;;;;;;;;65750:235;65943:6;65937:13;65928:6;65924:2;65920:15;65913:38;65467:529;-1:-1:-1;;;;;;65630:64:0;-1:-1:-1;;;65630:64:0;;-1:-1:-1;65467:529:0;65287:716;;;;;;:::o;21215:::-;21271:13;21322:14;21339:17;21350:5;21339:10;:17::i;:::-;21359:1;21339:21;21322:38;;21375:20;21409:6;21398:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21398:18:0;-1:-1:-1;21375:41:0;-1:-1:-1;21540:28:0;;;21556:2;21540:28;21597:288;-1:-1:-1;;21629:5:0;-1:-1:-1;;;21766:2:0;21755:14;;21750:30;21629:5;21737:44;21827:2;21818:11;;;-1:-1:-1;21848:21:0;21597:288;21848:21;-1:-1:-1;21906:6:0;21215:716;-1:-1:-1;;;21215:716:0:o;72183:689::-;72314:19;72320:2;72324:8;72314:5;:19::i;:::-;-1:-1:-1;;;;;72375:14:0;;;:19;72371:483;;72415:11;72429:13;72477:14;;;72510:233;72541:62;72580:1;72584:2;72588:7;;;;;;72597:5;72541:30;:62::i;:::-;72536:167;;72639:40;;-1:-1:-1;;;72639:40:0;;;;;;;;;;;72536:167;72738:3;72730:5;:11;72510:233;;72825:3;72808:13;;:20;72804:34;;72830:8;;;72804:34;72396:458;;72183:689;;;:::o;18081:922::-;18134:7;;-1:-1:-1;;;18212:15:0;;18208:102;;-1:-1:-1;;;18248:15:0;;;-1:-1:-1;18292:2:0;18282:12;18208:102;18337:6;18328:5;:15;18324:102;;18373:6;18364:15;;;-1:-1:-1;18408:2:0;18398:12;18324:102;18453:6;18444:5;:15;18440:102;;18489:6;18480:15;;;-1:-1:-1;18524:2:0;18514:12;18440:102;18569:5;18560;:14;18556:99;;18604:5;18595:14;;;-1:-1:-1;18638:1:0;18628:11;18556:99;18682:5;18673;:14;18669:99;;18717:5;18708:14;;;-1:-1:-1;18751:1:0;18741:11;18669:99;18795:5;18786;:14;18782:99;;18830:5;18821:14;;;-1:-1:-1;18864:1:0;18854:11;18782:99;18908:5;18899;:14;18895:66;;18944:1;18934:11;18989:6;18081:922;-1:-1:-1;;18081:922:0:o;66465:2966::-;66538:20;66561:13;;;66589;;;66585:44;;66611:18;;-1:-1:-1;;;66611:18:0;;;;;;;;;;;66585:44;-1:-1:-1;;;;;67117:22:0;;;;;;:18;:22;;;;40186:2;67117:22;;;:71;;67155:32;67143:45;;67117:71;;;67431:31;;;:17;:31;;;;;-1:-1:-1;54167:15:0;;54141:24;54137:46;53736:11;53711:23;53707:41;53704:52;53694:63;;67431:173;;67666:23;;;;67431:31;;67117:22;;68431:25;67117:22;;68284:335;68945:1;68931:12;68927:20;68885:346;68986:3;68977:7;68974:16;68885:346;;69204:7;69194:8;69191:1;69164:25;69161:1;69158;69153:59;69039:1;69026:15;68885:346;;;68889:77;69264:8;69276:1;69264:13;69260:45;;69286:19;;-1:-1:-1;;;69286:19:0;;;;;;;;;;;69260:45;69322:13;:19;-1:-1:-1;62005:193: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;774:173::-;842:20;;-1:-1:-1;;;;;891:31:1;;881:42;;871:70;;937:1;934;927:12;871:70;774:173;;;:::o;952:179::-;1019:20;;-1:-1:-1;;;;;1068:38:1;;1058:49;;1048:77;;1121:1;1118;1111:12;1136:258;1203:6;1211;1264:2;1252:9;1243:7;1239:23;1235:32;1232:52;;;1280:1;1277;1270:12;1232:52;1303:29;1322:9;1303:29;:::i;:::-;1293:39;;1351:37;1384:2;1373:9;1369:18;1351:37;:::i;:::-;1341:47;;1136:258;;;;;:::o;1399:250::-;1484:1;1494:113;1508:6;1505:1;1502:13;1494:113;;;1584:11;;;1578:18;1565:11;;;1558:39;1530:2;1523:10;1494:113;;;-1:-1:-1;;1641:1:1;1623:16;;1616:27;1399:250::o;1654:271::-;1696:3;1734:5;1728:12;1761:6;1756:3;1749:19;1777:76;1846:6;1839:4;1834:3;1830:14;1823:4;1816:5;1812:16;1777:76;:::i;:::-;1907:2;1886:15;-1:-1:-1;;1882:29:1;1873:39;;;;1914:4;1869:50;;1654:271;-1:-1:-1;;1654:271:1:o;1930:220::-;2079:2;2068:9;2061:21;2042:4;2099:45;2140:2;2129:9;2125:18;2117:6;2099:45;:::i;2155:180::-;2214:6;2267:2;2255:9;2246:7;2242:23;2238:32;2235:52;;;2283:1;2280;2273:12;2235:52;-1:-1:-1;2306:23:1;;2155:180;-1:-1:-1;2155:180:1:o;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:328::-;2884:6;2892;2900;2953:2;2941:9;2932:7;2928:23;2924:32;2921:52;;;2969:1;2966;2959:12;2921:52;2992:29;3011:9;2992:29;:::i;:::-;2982:39;;3040:38;3074:2;3063:9;3059:18;3040:38;:::i;:::-;3030:48;;3125:2;3114:9;3110:18;3097:32;3087:42;;2807:328;;;;;:::o;3140:248::-;3208:6;3216;3269:2;3257:9;3248:7;3244:23;3240:32;3237:52;;;3285:1;3282;3275:12;3237:52;-1:-1:-1;;3308:23:1;;;3378:2;3363:18;;;3350:32;;-1:-1:-1;3140:248:1:o;3672:127::-;3733:10;3728:3;3724:20;3721:1;3714:31;3764:4;3761:1;3754:15;3788:4;3785:1;3778:15;3804:632;3869:5;3899:18;3940:2;3932:6;3929:14;3926:40;;;3946:18;;:::i;:::-;4021:2;4015:9;3989:2;4075:15;;-1:-1:-1;;4071:24:1;;;4097:2;4067:33;4063:42;4051:55;;;4121:18;;;4141:22;;;4118:46;4115:72;;;4167:18;;:::i;:::-;4207:10;4203:2;4196:22;4236:6;4227:15;;4266:6;4258;4251:22;4306:3;4297:6;4292:3;4288:16;4285:25;4282:45;;;4323:1;4320;4313:12;4282:45;4373:6;4368:3;4361:4;4353:6;4349:17;4336:44;4428:1;4421:4;4412:6;4404;4400:19;4396:30;4389:41;;;;3804:632;;;;;:::o;4441:451::-;4510:6;4563:2;4551:9;4542:7;4538:23;4534:32;4531:52;;;4579:1;4576;4569:12;4531:52;4619:9;4606:23;4652:18;4644:6;4641:30;4638:50;;;4684:1;4681;4674:12;4638:50;4707:22;;4760:4;4752:13;;4748:27;-1:-1:-1;4738:55:1;;4789:1;4786;4779:12;4738:55;4812:74;4878:7;4873:2;4860:16;4855:2;4851;4847:11;4812:74;:::i;4897:252::-;4964:6;4972;5025:2;5013:9;5004:7;5000:23;4996:32;4993:52;;;5041:1;5038;5031:12;4993:52;5077:9;5064:23;5054:33;;5106:37;5139:2;5128:9;5124:18;5106:37;:::i;5154:186::-;5213:6;5266:2;5254:9;5245:7;5241:23;5237:32;5234:52;;;5282:1;5279;5272:12;5234:52;5305:29;5324:9;5305:29;:::i;5345:347::-;5410:6;5418;5471:2;5459:9;5450:7;5446:23;5442:32;5439:52;;;5487:1;5484;5477:12;5439:52;5510:29;5529:9;5510:29;:::i;:::-;5500:39;;5589:2;5578:9;5574:18;5561:32;5636:5;5629:13;5622:21;5615:5;5612:32;5602:60;;5658:1;5655;5648:12;5602:60;5681:5;5671:15;;;5345:347;;;;;:::o;5697:667::-;5792:6;5800;5808;5816;5869:3;5857:9;5848:7;5844:23;5840:33;5837:53;;;5886:1;5883;5876:12;5837:53;5909:29;5928:9;5909:29;:::i;:::-;5899:39;;5957:38;5991:2;5980:9;5976:18;5957:38;:::i;:::-;5947:48;;6042:2;6031:9;6027:18;6014:32;6004:42;;6097:2;6086:9;6082:18;6069:32;6124:18;6116:6;6113:30;6110:50;;;6156:1;6153;6146:12;6110:50;6179:22;;6232:4;6224:13;;6220:27;-1:-1:-1;6210:55:1;;6261:1;6258;6251:12;6210:55;6284:74;6350:7;6345:2;6332:16;6327:2;6323;6319:11;6284:74;:::i;:::-;6274:84;;;5697:667;;;;;;;:::o;6369:260::-;6437:6;6445;6498:2;6486:9;6477:7;6473:23;6469:32;6466:52;;;6514:1;6511;6504:12;6466:52;6537:29;6556:9;6537:29;:::i;:::-;6527:39;;6585:38;6619:2;6608:9;6604:18;6585:38;:::i;6634:380::-;6713:1;6709:12;;;;6756;;;6777:61;;6831:4;6823:6;6819:17;6809:27;;6777:61;6884:2;6876:6;6873:14;6853:18;6850:38;6847:161;;6930:10;6925:3;6921:20;6918:1;6911:31;6965:4;6962:1;6955:15;6993:4;6990:1;6983:15;6847:161;;6634:380;;;:::o;7355:545::-;7457:2;7452:3;7449:11;7446:448;;;7493:1;7518:5;7514:2;7507:17;7563:4;7559:2;7549:19;7633:2;7621:10;7617:19;7614:1;7610:27;7604:4;7600:38;7669:4;7657:10;7654:20;7651:47;;;-1:-1:-1;7692:4:1;7651:47;7747:2;7742:3;7738:12;7735:1;7731:20;7725:4;7721:31;7711:41;;7802:82;7820:2;7813:5;7810:13;7802:82;;;7865:17;;;7846:1;7835:13;7802:82;;8076:1352;8202:3;8196:10;8229:18;8221:6;8218:30;8215:56;;;8251:18;;:::i;:::-;8280:97;8370:6;8330:38;8362:4;8356:11;8330:38;:::i;:::-;8324:4;8280:97;:::i;:::-;8432:4;;8496:2;8485:14;;8513:1;8508:663;;;;9215:1;9232:6;9229:89;;;-1:-1:-1;9284:19:1;;;9278:26;9229:89;-1:-1:-1;;8033:1:1;8029:11;;;8025:24;8021:29;8011:40;8057:1;8053:11;;;8008:57;9331:81;;8478:944;;8508:663;7302:1;7295:14;;;7339:4;7326:18;;-1:-1:-1;;8544:20:1;;;8662:236;8676:7;8673:1;8670:14;8662:236;;;8765:19;;;8759:26;8744:42;;8857:27;;;;8825:1;8813:14;;;;8692:19;;8662:236;;;8666:3;8926:6;8917:7;8914:19;8911:201;;;8987:19;;;8981:26;-1:-1:-1;;9070:1:1;9066:14;;;9082:3;9062:24;9058:37;9054:42;9039:58;9024:74;;8911:201;-1:-1:-1;;;;;9158:1:1;9142:14;;;9138:22;9125:36;;-1:-1:-1;8076:1352:1:o;9433:127::-;9494:10;9489:3;9485:20;9482:1;9475:31;9525:4;9522:1;9515:15;9549:4;9546:1;9539:15;9565:125;9630:9;;;9651:10;;;9648:36;;;9664:18;;:::i;10045:168::-;10118:9;;;10149;;10166:15;;;10160:22;;10146:37;10136:71;;10187:18;;:::i;10576:128::-;10643:9;;;10664:11;;;10661:37;;;10678:18;;:::i;11810:1187::-;12087:3;12116:1;12149:6;12143:13;12179:36;12205:9;12179:36;:::i;:::-;12234:1;12251:18;;;12278:133;;;;12425:1;12420:356;;;;12244:532;;12278:133;-1:-1:-1;;12311:24:1;;12299:37;;12384:14;;12377:22;12365:35;;12356:45;;;-1:-1:-1;12278:133:1;;12420:356;12451:6;12448:1;12441:17;12481:4;12526:2;12523:1;12513:16;12551:1;12565:165;12579:6;12576:1;12573:13;12565:165;;;12657:14;;12644:11;;;12637:35;12700:16;;;;12594:10;;12565:165;;;12569:3;;;12759:6;12754:3;12750:16;12743:23;;12244:532;;;;;12807:6;12801:13;12823:68;12882:8;12877:3;12870:4;12862:6;12858:17;12823:68;:::i;:::-;-1:-1:-1;;;12913:18:1;;12940:22;;;12989:1;12978:13;;11810:1187;-1:-1:-1;;;;11810:1187:1:o;13409:406::-;13611:2;13593:21;;;13650:2;13630:18;;;13623:30;13689:34;13684:2;13669:18;;13662:62;-1:-1:-1;;;13755:2:1;13740:18;;13733:40;13805:3;13790:19;;13409:406::o;14306:217::-;14346:1;14372;14362:132;;14416:10;14411:3;14407:20;14404:1;14397:31;14451:4;14448:1;14441:15;14479:4;14476:1;14469:15;14362:132;-1:-1:-1;14508:9:1;;14306:217::o;15605:489::-;-1:-1:-1;;;;;15874:15:1;;;15856:34;;15926:15;;15921:2;15906:18;;15899:43;15973:2;15958:18;;15951:34;;;16021:3;16016:2;16001:18;;15994:31;;;15799:4;;16042:46;;16068:19;;16060:6;16042:46;:::i;:::-;16034:54;15605:489;-1:-1:-1;;;;;;15605:489:1:o;16099:249::-;16168:6;16221:2;16209:9;16200:7;16196:23;16192:32;16189:52;;;16237:1;16234;16227:12;16189:52;16269:9;16263:16;16288:30;16312:5;16288:30;:::i
Swarm Source
ipfs://572a6ee838346f9b43ca83b2a19c837f825b86d478c9ce59439686038b6f5bde
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.