Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
56 HAWA
Holders
43
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HAWALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hawa
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-21 */ // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/lib/Constants.sol pragma solidity ^0.8.17; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // File: @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/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: Hawa/Hawa.sol pragma solidity ^0.8.10; contract Hawa is ERC721A, DefaultOperatorFilterer, Ownable { enum MintState { Closed, Open } MintState public mintState; uint256 public MAX_SUPPLY = 500; uint256 public PRICE = 0.1 ether; uint256 public WALLET_LIMIT = 3; string public baseURI = "ipfs://"; string public notRevealedURI = "ipfs://bafkreidmhodpnqkxofoaat6joghcmqj6bqfgszq3rtkofn5ia5kty2tvmm"; bool public revealed; constructor( address recipient, uint256 allocation ) ERC721A("Hawa by Hiroshi Sugito", "HAWA") { if (allocation < MAX_SUPPLY && allocation != 0) _mint(recipient, allocation); } // Modifiers modifier onlyExternallyOwnedAccount() { require(tx.origin == msg.sender, "Not externally owned account"); _; } // Mint functions function remainingForAddress(address who) public view returns (uint256) { if (mintState == MintState.Open) return WALLET_LIMIT + _getAux(who) - _numberMinted(who); else revert("Invalid sale state"); } function setMintState(uint256 newState) external onlyOwner { if (newState == 0) mintState = MintState.Closed; else if (newState == 1) mintState = MintState.Open; else revert("Invalid sale state"); } function batchMint( address[] calldata recipients, uint256[] calldata quantities ) external onlyOwner { require(recipients.length == quantities.length, "Arguments length mismatch"); uint256 supply = this.totalSupply(); for (uint256 i; i < recipients.length; i++) { supply += quantities[i]; require(supply <= MAX_SUPPLY, "Mint exceeds max supply"); _mint(recipients[i], quantities[i]); } } function mint(uint256 quantity) external payable onlyExternallyOwnedAccount { require(this.totalSupply() + quantity <= MAX_SUPPLY, "Mint exceeds max supply"); require(mintState == MintState.Open, "Invalid sale state"); require(msg.value >= PRICE * quantity, "Insufficient value"); require(remainingForAddress(msg.sender) >= quantity, "Limit for user reached"); _mint(msg.sender, quantity); } // Token function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if(revealed == false) { return notRevealedURI; } string memory baseURIStr = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURIStr, _toString(tokenId), ".json")) : ''; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory uri) external onlyOwner { baseURI = uri; } function setPrice(uint256 newPrice) external onlyOwner { PRICE = newPrice; } function reveal() external view onlyOwner { require(!revealed, "already revealed"); revealed == true; } // Withdraw function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override payable onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"allocation","type":"uint256"}],"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintState","outputs":[{"internalType":"enum Hawa.MintState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","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":[{"internalType":"address","name":"who","type":"address"}],"name":"remainingForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"newState","type":"uint256"}],"name":"setMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101f460095567016345785d8a0000600a556003600b5560c06040526007608090815266697066733a2f2f60c81b60a052600c906200003f908262000484565b506040518060800160405280604281526020016200238e60429139600d9062000069908262000484565b503480156200007757600080fd5b50604051620023f0380380620023f08339810160408190526200009a9162000550565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601681526020017f48617761206279204869726f7368692053756769746f00000000000000000000815250604051806040016040528060048152602001634841574160e01b815250816002908162000115919062000484565b50600362000124828262000484565b506000805550506daaeb6d7670e522a718067333cd4e3b1562000270578015620001be57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200019f57600080fd5b505af1158015620001b4573d6000803e3d6000fd5b5050505062000270565b6001600160a01b038216156200020f5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000184565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200025657600080fd5b505af11580156200026b573d6000803e3d6000fd5b505050505b506200027e905033620002a9565b600954811080156200028f57508015155b15620002a157620002a18282620002fb565b50506200058c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000805490829003620003215760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020620023d08339815191528180a4600183015b818114620003b05780836000600080516020620023d0833981519152600080a460010162000387565b5081600003620003d257604051622e076360e81b815260040160405180910390fd5b60005550505050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200040b57607f821691505b6020821081036200042c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003db57600081815260208120601f850160051c810160208610156200045b5750805b601f850160051c820191505b818110156200047c5782815560010162000467565b505050505050565b81516001600160401b03811115620004a057620004a0620003e0565b620004b881620004b18454620003f6565b8462000432565b602080601f831160018114620004f05760008415620004d75750858301515b600019600386901b1c1916600185901b1785556200047c565b600085815260208120601f198616915b82811015620005215788860151825594840194600190910190840162000500565b5085821015620005405787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080604083850312156200056457600080fd5b82516001600160a01b03811681146200057c57600080fd5b6020939093015192949293505050565b611df2806200059c6000396000f3fe6080604052600436106101ee5760003560e01c8063685731071161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde1461050d578063c051e38a14610520578063c87b56dd1461054e578063e985e9c51461056e578063f2fde38b1461058e57600080fd5b806395d89b41146104b0578063a0712d68146104c5578063a22cb465146104d8578063a475b5dd146104f857600080fd5b806372250380116100dc57806372250380146104475780638d859f3e1461045c5780638da5cb5b1461047257806391b7f5ed1461049057600080fd5b806368573107146103dd5780636c0360eb146103fd57806370a0823114610412578063715018a61461043257600080fd5b806332cb6b0c1161018557806342842e0e1161015457806342842e0e14610370578063518302271461038357806355f804b31461039d5780636352211e146103bd57600080fd5b806332cb6b0c1461030d578063351ed951146103235780633ccfd60b1461033957806341f434341461034e57600080fd5b80630bb862d1116101c15780630bb862d11461029757806318160ddd146102b757806323b872dd146102da57806329471d7d146102ed57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e36600461173b565b6105ae565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610600565b60405161021f91906117a8565b34801561025657600080fd5b5061026a6102653660046117bb565b610692565b6040516001600160a01b03909116815260200161021f565b6102956102903660046117eb565b6106d6565b005b3480156102a357600080fd5b506102956102b23660046117bb565b6106ef565b3480156102c357600080fd5b50600154600054035b60405190815260200161021f565b6102956102e8366004611815565b610784565b3480156102f957600080fd5b506102cc610308366004611851565b6107af565b34801561031957600080fd5b506102cc60095481565b34801561032f57600080fd5b506102cc600b5481565b34801561034557600080fd5b5061029561081f565b34801561035a57600080fd5b5061026a6daaeb6d7670e522a718067333cd4e81565b61029561037e366004611815565b61087c565b34801561038f57600080fd5b50600e546102139060ff1681565b3480156103a957600080fd5b506102956103b83660046118f8565b6108a1565b3480156103c957600080fd5b5061026a6103d83660046117bb565b6108b9565b3480156103e957600080fd5b506102956103f836600461198d565b6108c4565b34801561040957600080fd5b5061023d610a60565b34801561041e57600080fd5b506102cc61042d366004611851565b610aee565b34801561043e57600080fd5b50610295610b3d565b34801561045357600080fd5b5061023d610b51565b34801561046857600080fd5b506102cc600a5481565b34801561047e57600080fd5b506008546001600160a01b031661026a565b34801561049c57600080fd5b506102956104ab3660046117bb565b610b5e565b3480156104bc57600080fd5b5061023d610b6b565b6102956104d33660046117bb565b610b7a565b3480156104e457600080fd5b506102956104f3366004611a07565b610d90565b34801561050457600080fd5b50610295610da4565b61029561051b366004611a3e565b610df2565b34801561052c57600080fd5b5060085461054190600160a01b900460ff1681565b60405161021f9190611ad0565b34801561055a57600080fd5b5061023d6105693660046117bb565b610e1f565b34801561057a57600080fd5b50610213610589366004611af8565b610f51565b34801561059a57600080fd5b506102956105a9366004611851565b610f7f565b60006301ffc9a760e01b6001600160e01b0319831614806105df57506380ac58cd60e01b6001600160e01b03198316145b806105fa5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461060f90611b2b565b80601f016020809104026020016040519081016040528092919081815260200182805461063b90611b2b565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b5050505050905090565b600061069d82610ff5565b6106ba576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816106e08161101c565b6106ea83836110d5565b505050565b6106f7611175565b8060000361071d57600880546000919060ff60a01b1916600160a01b835b021790555050565b8060010361073f57600880546001919060ff60a01b1916600160a01b83610715565b60405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520737461746560701b60448201526064015b60405180910390fd5b50565b826001600160a01b038116331461079e5761079e3361101c565b6107a98484846111cf565b50505050565b60006001600854600160a01b900460ff1660018111156107d1576107d1611aba565b0361073f576001600160a01b0382166000908152600560205260409081902054600b549181901c67ffffffffffffffff16916108109160c01c90611b7b565b6105fa9190611b8e565b919050565b610827611175565b604051600090339047908381818185875af1925050503d8060008114610869576040519150601f19603f3d011682016040523d82523d6000602084013e61086e565b606091505b505090508061078157600080fd5b826001600160a01b0381163314610896576108963361101c565b6107a9848484611364565b6108a9611175565b600c6108b58282611be7565b5050565b60006105fa8261137f565b6108cc611175565b82811461091b5760405162461bcd60e51b815260206004820152601960248201527f417267756d656e7473206c656e677468206d69736d61746368000000000000006044820152606401610778565b6000306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561095b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097f9190611ca7565b905060005b84811015610a585783838281811061099e5761099e611cc0565b90506020020135826109b09190611b7b565b91506009548211156109fe5760405162461bcd60e51b81526020600482015260176024820152764d696e742065786365656473206d617820737570706c7960481b6044820152606401610778565b610a46868683818110610a1357610a13611cc0565b9050602002016020810190610a289190611851565b858584818110610a3a57610a3a611cc0565b905060200201356113e6565b80610a5081611cd6565b915050610984565b505050505050565b600c8054610a6d90611b2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9990611b2b565b8015610ae65780601f10610abb57610100808354040283529160200191610ae6565b820191906000526020600020905b815481529060010190602001808311610ac957829003601f168201915b505050505081565b60006001600160a01b038216610b17576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b45611175565b610b4f60006114e4565b565b600d8054610a6d90611b2b565b610b66611175565b600a55565b60606003805461060f90611b2b565b323314610bc95760405162461bcd60e51b815260206004820152601c60248201527f4e6f742065787465726e616c6c79206f776e6564206163636f756e74000000006044820152606401610778565b60095481306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2f9190611ca7565b610c399190611b7b565b1115610c815760405162461bcd60e51b81526020600482015260176024820152764d696e742065786365656473206d617820737570706c7960481b6044820152606401610778565b6001600854600160a01b900460ff166001811115610ca157610ca1611aba565b14610ce35760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520737461746560701b6044820152606401610778565b80600a54610cf19190611cef565b341015610d355760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742076616c756560701b6044820152606401610778565b80610d3f336107af565b1015610d865760405162461bcd60e51b8152602060048201526016602482015275131a5b5a5d08199bdc881d5cd95c881c995858da195960521b6044820152606401610778565b61078133826113e6565b81610d9a8161101c565b6106ea8383611536565b610dac611175565b600e5460ff1615610b4f5760405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e481c995d99585b195960821b6044820152606401610778565b836001600160a01b0381163314610e0c57610e0c3361101c565b610e18858585856115a2565b5050505050565b6060610e2a82610ff5565b610e4757604051630a14c4b560e41b815260040160405180910390fd5b600e5460ff161515600003610ee857600d8054610e6390611b2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8f90611b2b565b8015610edc5780601f10610eb157610100808354040283529160200191610edc565b820191906000526020600020905b815481529060010190602001808311610ebf57829003601f168201915b50505050509050919050565b6000610ef26115e6565b9050600c8054610f0190611b2b565b9050600003610f1f5760405180602001604052806000815250610f4a565b80610f29846115f5565b604051602001610f3a929190611d06565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610f87611175565b6001600160a01b038116610fec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610778565b610781816114e4565b60008054821080156105fa575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561078157604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611089573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ad9190611d45565b61078157604051633b79c77360e21b81526001600160a01b0382166004820152602401610778565b60006110e0826108b9565b9050336001600160a01b03821614611119576110fc8133610f51565b611119576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610b4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610778565b60006111da8261137f565b9050836001600160a01b0316816001600160a01b03161461120d5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761125a5761123d8633610f51565b61125a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661128157604051633a954ecd60e21b815260040160405180910390fd5b801561128c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361131e5760018401600081815260046020526040812054900361131c57600054811461131c5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a58565b6106ea83838360405180602001604052806000815250610df2565b6000816000548110156113cd5760008181526004602052604081205490600160e01b821690036113cb575b80600003610f4a5750600019016000818152600460205260409020546113aa565b505b604051636f96cda160e11b815260040160405180910390fd5b600080549082900361140b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146114ba57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611482565b50816000036114db57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115ad848484610784565b6001600160a01b0383163b156107a9576115c984848484611639565b6107a9576040516368d2bf6b60e11b815260040160405180910390fd5b6060600c805461060f90611b2b565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061160f5750819003601f19909101908152919050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061166e903390899088908890600401611d62565b6020604051808303816000875af19250505080156116a9575060408051601f3d908101601f191682019092526116a691810190611d9f565b60015b611707573d8080156116d7576040519150601f19603f3d011682016040523d82523d6000602084013e6116dc565b606091505b5080516000036116ff576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6001600160e01b03198116811461078157600080fd5b60006020828403121561174d57600080fd5b8135610f4a81611725565b60005b8381101561177357818101518382015260200161175b565b50506000910152565b60008151808452611794816020860160208601611758565b601f01601f19169290920160200192915050565b602081526000610f4a602083018461177c565b6000602082840312156117cd57600080fd5b5035919050565b80356001600160a01b038116811461081a57600080fd5b600080604083850312156117fe57600080fd5b611807836117d4565b946020939093013593505050565b60008060006060848603121561182a57600080fd5b611833846117d4565b9250611841602085016117d4565b9150604084013590509250925092565b60006020828403121561186357600080fd5b610f4a826117d4565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561189d5761189d61186c565b604051601f8501601f19908116603f011681019082821181831017156118c5576118c561186c565b816040528093508581528686860111156118de57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561190a57600080fd5b813567ffffffffffffffff81111561192157600080fd5b8201601f8101841361193257600080fd5b61171d84823560208401611882565b60008083601f84011261195357600080fd5b50813567ffffffffffffffff81111561196b57600080fd5b6020830191508360208260051b850101111561198657600080fd5b9250929050565b600080600080604085870312156119a357600080fd5b843567ffffffffffffffff808211156119bb57600080fd5b6119c788838901611941565b909650945060208701359150808211156119e057600080fd5b506119ed87828801611941565b95989497509550505050565b801515811461078157600080fd5b60008060408385031215611a1a57600080fd5b611a23836117d4565b91506020830135611a33816119f9565b809150509250929050565b60008060008060808587031215611a5457600080fd5b611a5d856117d4565b9350611a6b602086016117d4565b925060408501359150606085013567ffffffffffffffff811115611a8e57600080fd5b8501601f81018713611a9f57600080fd5b611aae87823560208401611882565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b6020810160028310611af257634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215611b0b57600080fd5b611b14836117d4565b9150611b22602084016117d4565b90509250929050565b600181811c90821680611b3f57607f821691505b602082108103611b5f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105fa576105fa611b65565b818103818111156105fa576105fa611b65565b601f8211156106ea57600081815260208120601f850160051c81016020861015611bc85750805b601f850160051c820191505b81811015610a5857828155600101611bd4565b815167ffffffffffffffff811115611c0157611c0161186c565b611c1581611c0f8454611b2b565b84611ba1565b602080601f831160018114611c4a5760008415611c325750858301515b600019600386901b1c1916600185901b178555610a58565b600085815260208120601f198616915b82811015611c7957888601518255948401946001909101908401611c5a565b5085821015611c975787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215611cb957600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060018201611ce857611ce8611b65565b5060010190565b80820281158282048414176105fa576105fa611b65565b60008351611d18818460208801611758565b835190830190611d2c818360208801611758565b64173539b7b760d91b9101908152600501949350505050565b600060208284031215611d5757600080fd5b8151610f4a816119f9565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d959083018461177c565b9695505050505050565b600060208284031215611db157600080fd5b8151610f4a8161172556fea26469706673582212203b9e027c23de976ac549dbc90e46dd4ba5e564609d532706634b08211927af0564736f6c63430008110033697066733a2f2f6261666b726569646d686f64706e716b786f666f616174366a6f6768636d716a3662716667737a713372746b6f666e356961356b74793274766d6dddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000d12f495041cfa87d2f6716056965141ef100cf9b0000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063685731071161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde1461050d578063c051e38a14610520578063c87b56dd1461054e578063e985e9c51461056e578063f2fde38b1461058e57600080fd5b806395d89b41146104b0578063a0712d68146104c5578063a22cb465146104d8578063a475b5dd146104f857600080fd5b806372250380116100dc57806372250380146104475780638d859f3e1461045c5780638da5cb5b1461047257806391b7f5ed1461049057600080fd5b806368573107146103dd5780636c0360eb146103fd57806370a0823114610412578063715018a61461043257600080fd5b806332cb6b0c1161018557806342842e0e1161015457806342842e0e14610370578063518302271461038357806355f804b31461039d5780636352211e146103bd57600080fd5b806332cb6b0c1461030d578063351ed951146103235780633ccfd60b1461033957806341f434341461034e57600080fd5b80630bb862d1116101c15780630bb862d11461029757806318160ddd146102b757806323b872dd146102da57806329471d7d146102ed57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e36600461173b565b6105ae565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610600565b60405161021f91906117a8565b34801561025657600080fd5b5061026a6102653660046117bb565b610692565b6040516001600160a01b03909116815260200161021f565b6102956102903660046117eb565b6106d6565b005b3480156102a357600080fd5b506102956102b23660046117bb565b6106ef565b3480156102c357600080fd5b50600154600054035b60405190815260200161021f565b6102956102e8366004611815565b610784565b3480156102f957600080fd5b506102cc610308366004611851565b6107af565b34801561031957600080fd5b506102cc60095481565b34801561032f57600080fd5b506102cc600b5481565b34801561034557600080fd5b5061029561081f565b34801561035a57600080fd5b5061026a6daaeb6d7670e522a718067333cd4e81565b61029561037e366004611815565b61087c565b34801561038f57600080fd5b50600e546102139060ff1681565b3480156103a957600080fd5b506102956103b83660046118f8565b6108a1565b3480156103c957600080fd5b5061026a6103d83660046117bb565b6108b9565b3480156103e957600080fd5b506102956103f836600461198d565b6108c4565b34801561040957600080fd5b5061023d610a60565b34801561041e57600080fd5b506102cc61042d366004611851565b610aee565b34801561043e57600080fd5b50610295610b3d565b34801561045357600080fd5b5061023d610b51565b34801561046857600080fd5b506102cc600a5481565b34801561047e57600080fd5b506008546001600160a01b031661026a565b34801561049c57600080fd5b506102956104ab3660046117bb565b610b5e565b3480156104bc57600080fd5b5061023d610b6b565b6102956104d33660046117bb565b610b7a565b3480156104e457600080fd5b506102956104f3366004611a07565b610d90565b34801561050457600080fd5b50610295610da4565b61029561051b366004611a3e565b610df2565b34801561052c57600080fd5b5060085461054190600160a01b900460ff1681565b60405161021f9190611ad0565b34801561055a57600080fd5b5061023d6105693660046117bb565b610e1f565b34801561057a57600080fd5b50610213610589366004611af8565b610f51565b34801561059a57600080fd5b506102956105a9366004611851565b610f7f565b60006301ffc9a760e01b6001600160e01b0319831614806105df57506380ac58cd60e01b6001600160e01b03198316145b806105fa5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461060f90611b2b565b80601f016020809104026020016040519081016040528092919081815260200182805461063b90611b2b565b80156106885780601f1061065d57610100808354040283529160200191610688565b820191906000526020600020905b81548152906001019060200180831161066b57829003601f168201915b5050505050905090565b600061069d82610ff5565b6106ba576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816106e08161101c565b6106ea83836110d5565b505050565b6106f7611175565b8060000361071d57600880546000919060ff60a01b1916600160a01b835b021790555050565b8060010361073f57600880546001919060ff60a01b1916600160a01b83610715565b60405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520737461746560701b60448201526064015b60405180910390fd5b50565b826001600160a01b038116331461079e5761079e3361101c565b6107a98484846111cf565b50505050565b60006001600854600160a01b900460ff1660018111156107d1576107d1611aba565b0361073f576001600160a01b0382166000908152600560205260409081902054600b549181901c67ffffffffffffffff16916108109160c01c90611b7b565b6105fa9190611b8e565b919050565b610827611175565b604051600090339047908381818185875af1925050503d8060008114610869576040519150601f19603f3d011682016040523d82523d6000602084013e61086e565b606091505b505090508061078157600080fd5b826001600160a01b0381163314610896576108963361101c565b6107a9848484611364565b6108a9611175565b600c6108b58282611be7565b5050565b60006105fa8261137f565b6108cc611175565b82811461091b5760405162461bcd60e51b815260206004820152601960248201527f417267756d656e7473206c656e677468206d69736d61746368000000000000006044820152606401610778565b6000306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561095b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097f9190611ca7565b905060005b84811015610a585783838281811061099e5761099e611cc0565b90506020020135826109b09190611b7b565b91506009548211156109fe5760405162461bcd60e51b81526020600482015260176024820152764d696e742065786365656473206d617820737570706c7960481b6044820152606401610778565b610a46868683818110610a1357610a13611cc0565b9050602002016020810190610a289190611851565b858584818110610a3a57610a3a611cc0565b905060200201356113e6565b80610a5081611cd6565b915050610984565b505050505050565b600c8054610a6d90611b2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9990611b2b565b8015610ae65780601f10610abb57610100808354040283529160200191610ae6565b820191906000526020600020905b815481529060010190602001808311610ac957829003601f168201915b505050505081565b60006001600160a01b038216610b17576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b45611175565b610b4f60006114e4565b565b600d8054610a6d90611b2b565b610b66611175565b600a55565b60606003805461060f90611b2b565b323314610bc95760405162461bcd60e51b815260206004820152601c60248201527f4e6f742065787465726e616c6c79206f776e6564206163636f756e74000000006044820152606401610778565b60095481306001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2f9190611ca7565b610c399190611b7b565b1115610c815760405162461bcd60e51b81526020600482015260176024820152764d696e742065786365656473206d617820737570706c7960481b6044820152606401610778565b6001600854600160a01b900460ff166001811115610ca157610ca1611aba565b14610ce35760405162461bcd60e51b8152602060048201526012602482015271496e76616c69642073616c6520737461746560701b6044820152606401610778565b80600a54610cf19190611cef565b341015610d355760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742076616c756560701b6044820152606401610778565b80610d3f336107af565b1015610d865760405162461bcd60e51b8152602060048201526016602482015275131a5b5a5d08199bdc881d5cd95c881c995858da195960521b6044820152606401610778565b61078133826113e6565b81610d9a8161101c565b6106ea8383611536565b610dac611175565b600e5460ff1615610b4f5760405162461bcd60e51b815260206004820152601060248201526f185b1c9958591e481c995d99585b195960821b6044820152606401610778565b836001600160a01b0381163314610e0c57610e0c3361101c565b610e18858585856115a2565b5050505050565b6060610e2a82610ff5565b610e4757604051630a14c4b560e41b815260040160405180910390fd5b600e5460ff161515600003610ee857600d8054610e6390611b2b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8f90611b2b565b8015610edc5780601f10610eb157610100808354040283529160200191610edc565b820191906000526020600020905b815481529060010190602001808311610ebf57829003601f168201915b50505050509050919050565b6000610ef26115e6565b9050600c8054610f0190611b2b565b9050600003610f1f5760405180602001604052806000815250610f4a565b80610f29846115f5565b604051602001610f3a929190611d06565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610f87611175565b6001600160a01b038116610fec5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610778565b610781816114e4565b60008054821080156105fa575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b1561078157604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611089573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110ad9190611d45565b61078157604051633b79c77360e21b81526001600160a01b0382166004820152602401610778565b60006110e0826108b9565b9050336001600160a01b03821614611119576110fc8133610f51565b611119576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610b4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610778565b60006111da8261137f565b9050836001600160a01b0316816001600160a01b03161461120d5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b0388169091141761125a5761123d8633610f51565b61125a57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661128157604051633a954ecd60e21b815260040160405180910390fd5b801561128c57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361131e5760018401600081815260046020526040812054900361131c57600054811461131c5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a58565b6106ea83838360405180602001604052806000815250610df2565b6000816000548110156113cd5760008181526004602052604081205490600160e01b821690036113cb575b80600003610f4a5750600019016000818152600460205260409020546113aa565b505b604051636f96cda160e11b815260040160405180910390fd5b600080549082900361140b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146114ba57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611482565b50816000036114db57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115ad848484610784565b6001600160a01b0383163b156107a9576115c984848484611639565b6107a9576040516368d2bf6b60e11b815260040160405180910390fd5b6060600c805461060f90611b2b565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a90048061160f5750819003601f19909101908152919050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061166e903390899088908890600401611d62565b6020604051808303816000875af19250505080156116a9575060408051601f3d908101601f191682019092526116a691810190611d9f565b60015b611707573d8080156116d7576040519150601f19603f3d011682016040523d82523d6000602084013e6116dc565b606091505b5080516000036116ff576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6001600160e01b03198116811461078157600080fd5b60006020828403121561174d57600080fd5b8135610f4a81611725565b60005b8381101561177357818101518382015260200161175b565b50506000910152565b60008151808452611794816020860160208601611758565b601f01601f19169290920160200192915050565b602081526000610f4a602083018461177c565b6000602082840312156117cd57600080fd5b5035919050565b80356001600160a01b038116811461081a57600080fd5b600080604083850312156117fe57600080fd5b611807836117d4565b946020939093013593505050565b60008060006060848603121561182a57600080fd5b611833846117d4565b9250611841602085016117d4565b9150604084013590509250925092565b60006020828403121561186357600080fd5b610f4a826117d4565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561189d5761189d61186c565b604051601f8501601f19908116603f011681019082821181831017156118c5576118c561186c565b816040528093508581528686860111156118de57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561190a57600080fd5b813567ffffffffffffffff81111561192157600080fd5b8201601f8101841361193257600080fd5b61171d84823560208401611882565b60008083601f84011261195357600080fd5b50813567ffffffffffffffff81111561196b57600080fd5b6020830191508360208260051b850101111561198657600080fd5b9250929050565b600080600080604085870312156119a357600080fd5b843567ffffffffffffffff808211156119bb57600080fd5b6119c788838901611941565b909650945060208701359150808211156119e057600080fd5b506119ed87828801611941565b95989497509550505050565b801515811461078157600080fd5b60008060408385031215611a1a57600080fd5b611a23836117d4565b91506020830135611a33816119f9565b809150509250929050565b60008060008060808587031215611a5457600080fd5b611a5d856117d4565b9350611a6b602086016117d4565b925060408501359150606085013567ffffffffffffffff811115611a8e57600080fd5b8501601f81018713611a9f57600080fd5b611aae87823560208401611882565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b6020810160028310611af257634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215611b0b57600080fd5b611b14836117d4565b9150611b22602084016117d4565b90509250929050565b600181811c90821680611b3f57607f821691505b602082108103611b5f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105fa576105fa611b65565b818103818111156105fa576105fa611b65565b601f8211156106ea57600081815260208120601f850160051c81016020861015611bc85750805b601f850160051c820191505b81811015610a5857828155600101611bd4565b815167ffffffffffffffff811115611c0157611c0161186c565b611c1581611c0f8454611b2b565b84611ba1565b602080601f831160018114611c4a5760008415611c325750858301515b600019600386901b1c1916600185901b178555610a58565b600085815260208120601f198616915b82811015611c7957888601518255948401946001909101908401611c5a565b5085821015611c975787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215611cb957600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060018201611ce857611ce8611b65565b5060010190565b80820281158282048414176105fa576105fa611b65565b60008351611d18818460208801611758565b835190830190611d2c818360208801611758565b64173539b7b760d91b9101908152600501949350505050565b600060208284031215611d5757600080fd5b8151610f4a816119f9565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d959083018461177c565b9695505050505050565b600060208284031215611db157600080fd5b8151610f4a8161172556fea26469706673582212203b9e027c23de976ac549dbc90e46dd4ba5e564609d532706634b08211927af0564736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d12f495041cfa87d2f6716056965141ef100cf9b0000000000000000000000000000000000000000000000000000000000000001
-----Decoded View---------------
Arg [0] : recipient (address): 0xd12f495041CfA87d2F6716056965141ef100Cf9b
Arg [1] : allocation (uint256): 1
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000d12f495041cfa87d2f6716056965141ef100cf9b
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode Sourcemap
81553:4358:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48460:639;;;;;;;;;;-1:-1:-1;48460:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;48460:639:0;;;;;;;;49362:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55853:218::-;;;;;;;;;;-1:-1:-1;55853:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;55853:218:0;1533:203:1;85118:165:0;;;;;;:::i;:::-;;:::i;:::-;;82674:230;;;;;;;;;;-1:-1:-1;82674:230:0;;;;;:::i;:::-;;:::i;45113:323::-;;;;;;;;;;-1:-1:-1;45387:12:0;;45174:7;45371:13;:28;45113:323;;;2324:25:1;;;2312:2;2297:18;45113:323:0;2178:177:1;85291:171:0;;;;;;:::i;:::-;;:::i;82430:236::-;;;;;;;;;;-1:-1:-1;82430:236:0;;;;;:::i;:::-;;:::i;81718:31::-;;;;;;;;;;;;;;;;81795;;;;;;;;;;;;;;;;84766:162;;;;;;;;;;;;;:::i;7867:143::-;;;;;;;;;;;;195:42;7867:143;;85470:179;;;;;;:::i;:::-;;:::i;81981:20::-;;;;;;;;;;-1:-1:-1;81981:20:0;;;;;;;;84419:90;;;;;;;;;;-1:-1:-1;84419:90:0;;;;;:::i;:::-;;:::i;50755:152::-;;;;;;;;;;-1:-1:-1;50755:152:0;;;;;:::i;:::-;;:::i;82912:493::-;;;;;;;;;;-1:-1:-1;82912:493:0;;;;;:::i;:::-;;:::i;81835:33::-;;;;;;;;;;;;;:::i;46297:233::-;;;;;;;;;;-1:-1:-1;46297:233:0;;;;;:::i;:::-;;:::i;29239:103::-;;;;;;;;;;;;;:::i;81875:99::-;;;;;;;;;;;;;:::i;81756:32::-;;;;;;;;;;;;;;;;28591:87;;;;;;;;;;-1:-1:-1;28664:6:0;;-1:-1:-1;;;;;28664:6:0;28591:87;;84517:90;;;;;;;;;;-1:-1:-1;84517:90:0;;;;;:::i;:::-;;:::i;49538:104::-;;;;;;;;;;;;;:::i;83413:443::-;;;;;;:::i;:::-;;:::i;84934:176::-;;;;;;;;;;-1:-1:-1;84934:176:0;;;;;:::i;:::-;;:::i;84615:126::-;;;;;;;;;;;;;:::i;85657:245::-;;;;;;:::i;:::-;;:::i;81683:26::-;;;;;;;;;;-1:-1:-1;81683:26:0;;;;-1:-1:-1;;;81683:26:0;;;;;;;;;;;;;:::i;83880:415::-;;;;;;;;;;-1:-1:-1;83880:415:0;;;;;:::i;:::-;;:::i;56802:164::-;;;;;;;;;;-1:-1:-1;56802:164:0;;;;;:::i;:::-;;:::i;29497:201::-;;;;;;;;;;-1:-1:-1;29497:201:0;;;;;:::i;:::-;;:::i;48460:639::-;48545:4;-1:-1:-1;;;;;;;;;48869:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;48946:25:0;;;48869:102;:179;;;-1:-1:-1;;;;;;;;;;49023:25:0;;;48869:179;48849:199;48460:639;-1:-1:-1;;48460:639:0:o;49362:100::-;49416:13;49449:5;49442:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49362:100;:::o;55853:218::-;55929:7;55954:16;55962:7;55954;:16::i;:::-;55949:64;;55979:34;;-1:-1:-1;;;55979:34:0;;;;;;;;;;;55949:64;-1:-1:-1;56033:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;56033:30:0;;55853:218::o;85118:165::-;85222:8;9649:30;9670:8;9649:20;:30::i;:::-;85243:32:::1;85257:8;85267:7;85243:13;:32::i;:::-;85118:165:::0;;;:::o;82674:230::-;28477:13;:11;:13::i;:::-;82748:8:::1;82760:1;82748:13:::0;82744:152:::1;;82763:9;:28:::0;;82775:16:::1;::::0;82763:9;-1:-1:-1;;;;82763:28:0::1;-1:-1:-1::0;;;82775:16:0;82763:28:::1;;;;;;82674:230:::0;:::o;82744:152::-:1;82811:8;82823:1;82811:13:::0;82807:89:::1;;82826:9;:26:::0;;82838:14:::1;::::0;82826:9;-1:-1:-1;;;;82826:26:0::1;-1:-1:-1::0;;;82838:14:0;82826:26:::1;::::0;82807:89:::1;82868:28;::::0;-1:-1:-1;;;82868:28:0;;7944:2:1;82868:28:0::1;::::0;::::1;7926:21:1::0;7983:2;7963:18;;;7956:30;-1:-1:-1;;;8002:18:1;;;7995:48;8060:18;;82868:28:0::1;;;;;;;;82807:89;82674:230:::0;:::o;85291:171::-;85400:4;-1:-1:-1;;;;;9375:18:0;;9383:10;9375:18;9371:83;;9410:32;9431:10;9410:20;:32::i;:::-;85417:37:::1;85436:4;85442:2;85446:7;85417:18;:37::i;:::-;85291:171:::0;;;;:::o;82430:236::-;82493:7;82530:14;82517:9;;-1:-1:-1;;;82517:9:0;;;;:27;;;;;;;;:::i;:::-;;82513:145;;-1:-1:-1;;;;;46701:25:0;;46673:7;46701:25;;;:18;:25;;40594:2;46701:25;;;;;82566:12;;46701:50;;;;40456:13;46700:82;;82566:27;;40830:3;47272:40;;82566:27;:::i;:::-;:48;;;;:::i;82513:145::-;82430:236;;;:::o;84766:162::-;28477:13;:11;:13::i;:::-;84835:58:::1;::::0;84817:12:::1;::::0;84843:10:::1;::::0;84867:21:::1;::::0;84817:12;84835:58;84817:12;84835:58;84867:21;84843:10;84835:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84816:77;;;84912:7;84904:16;;;::::0;::::1;85470:179:::0;85583:4;-1:-1:-1;;;;;9375:18:0;;9383:10;9375:18;9371:83;;9410:32;9431:10;9410:20;:32::i;:::-;85600:41:::1;85623:4;85629:2;85633:7;85600:22;:41::i;84419:90::-:0;28477:13;:11;:13::i;:::-;84488:7:::1;:13;84498:3:::0;84488:7;:13:::1;:::i;:::-;;84419:90:::0;:::o;50755:152::-;50827:7;50870:27;50889:7;50870:18;:27::i;82912:493::-;28477:13;:11;:13::i;:::-;83056:38;;::::1;83048:76;;;::::0;-1:-1:-1;;;83048:76:0;;11100:2:1;83048:76:0::1;::::0;::::1;11082:21:1::0;11139:2;11119:18;;;11112:30;11178:27;11158:18;;;11151:55;11223:18;;83048:76:0::1;10898:349:1::0;83048:76:0::1;83137:14;83154:4;-1:-1:-1::0;;;;;83154:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;83137:35;;83188:9;83183:215;83199:21:::0;;::::1;83183:215;;;83252:10;;83263:1;83252:13;;;;;;;:::i;:::-;;;;;;;83242:23;;;;;:::i;:::-;;;83298:10;;83288:6;:20;;83280:56;;;::::0;-1:-1:-1;;;83280:56:0;;11775:2:1;83280:56:0::1;::::0;::::1;11757:21:1::0;11814:2;11794:18;;;11787:30;-1:-1:-1;;;11833:18:1;;;11826:53;11896:18;;83280:56:0::1;11573:347:1::0;83280:56:0::1;83351:35;83357:10;;83368:1;83357:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;83372:10;;83383:1;83372:13;;;;;;;:::i;:::-;;;;;;;83351:5;:35::i;:::-;83222:3:::0;::::1;::::0;::::1;:::i;:::-;;;;83183:215;;;;83037:368;82912:493:::0;;;;:::o;81835:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46297:233::-;46369:7;-1:-1:-1;;;;;46393:19:0;;46389:60;;46421:28;;-1:-1:-1;;;46421:28:0;;;;;;;;;;;46389:60;-1:-1:-1;;;;;;46467:25:0;;;;;:18;:25;;;;;;40456:13;46467:55;;46297:233::o;29239:103::-;28477:13;:11;:13::i;:::-;29304:30:::1;29331:1;29304:18;:30::i;:::-;29239:103::o:0;81875:99::-;;;;;;;:::i;84517:90::-;28477:13;:11;:13::i;:::-;84583:5:::1;:16:::0;84517:90::o;49538:104::-;49594:13;49627:7;49620:14;;;;;:::i;83413:443::-;82321:9;82334:10;82321:23;82313:64;;;;-1:-1:-1;;;82313:64:0;;12267:2:1;82313:64:0;;;12249:21:1;12306:2;12286:18;;;12279:30;12345;12325:18;;;12318:58;12393:18;;82313:64:0;12065:352:1;82313:64:0;83541:10:::1;;83529:8;83508:4;-1:-1:-1::0;;;;;83508:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:29;;;;:::i;:::-;:43;;83500:79;;;::::0;-1:-1:-1;;;83500:79:0;;11775:2:1;83500:79:0::1;::::0;::::1;11757:21:1::0;11814:2;11794:18;;;11787:30;-1:-1:-1;;;11833:18:1;;;11826:53;11896:18;;83500:79:0::1;11573:347:1::0;83500:79:0::1;83611:14;83598:9;::::0;-1:-1:-1;;;83598:9:0;::::1;;;:27;::::0;::::1;;;;;;:::i;:::-;;83590:58;;;::::0;-1:-1:-1;;;83590:58:0;;7944:2:1;83590:58:0::1;::::0;::::1;7926:21:1::0;7983:2;7963:18;;;7956:30;-1:-1:-1;;;8002:18:1;;;7995:48;8060:18;;83590:58:0::1;7742:342:1::0;83590:58:0::1;83688:8;83680:5;;:16;;;;:::i;:::-;83667:9;:29;;83659:60;;;::::0;-1:-1:-1;;;83659:60:0;;12797:2:1;83659:60:0::1;::::0;::::1;12779:21:1::0;12836:2;12816:18;;;12809:30;-1:-1:-1;;;12855:18:1;;;12848:48;12913:18;;83659:60:0::1;12595:342:1::0;83659:60:0::1;83773:8;83738:31;83758:10;83738:19;:31::i;:::-;:43;;83730:78;;;::::0;-1:-1:-1;;;83730:78:0;;13144:2:1;83730:78:0::1;::::0;::::1;13126:21:1::0;13183:2;13163:18;;;13156:30;-1:-1:-1;;;13202:18:1;;;13195:52;13264:18;;83730:78:0::1;12942:346:1::0;83730:78:0::1;83821:27;83827:10;83839:8;83821:5;:27::i;84934:176::-:0;85038:8;9649:30;9670:8;9649:20;:30::i;:::-;85059:43:::1;85083:8;85093;85059:23;:43::i;84615:126::-:0;28477:13;:11;:13::i;:::-;84677:8:::1;::::0;::::1;;84676:9;84668:38;;;::::0;-1:-1:-1;;;84668:38:0;;13495:2:1;84668:38:0::1;::::0;::::1;13477:21:1::0;13534:2;13514:18;;;13507:30;-1:-1:-1;;;13553:18:1;;;13546:46;13609:18;;84668:38:0::1;13293:340:1::0;85657:245:0;85825:4;-1:-1:-1;;;;;9375:18:0;;9383:10;9375:18;9371:83;;9410:32;9431:10;9410:20;:32::i;:::-;85847:47:::1;85870:4;85876:2;85880:7;85889:4;85847:22;:47::i;:::-;85657:245:::0;;;;;:::o;83880:415::-;83953:13;83984:16;83992:7;83984;:16::i;:::-;83979:59;;84009:29;;-1:-1:-1;;;84009:29:0;;;;;;;;;;;83979:59;84054:8;;;;:17;;:8;:17;84051:70;;84095:14;84088:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83880:415;;;:::o;84051:70::-;84133:24;84160:10;:8;:10::i;:::-;84133:37;;84194:7;84188:21;;;;;:::i;:::-;;;84213:1;84188:26;:99;;;;;;;;;;;;;;;;;84241:10;84253:18;84263:7;84253:9;:18::i;:::-;84224:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84188:99;84181:106;83880:415;-1:-1:-1;;;83880:415:0:o;56802:164::-;-1:-1:-1;;;;;56923:25:0;;;56899:4;56923:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;56802:164::o;29497:201::-;28477:13;:11;:13::i;:::-;-1:-1:-1;;;;;29586:22:0;::::1;29578:73;;;::::0;-1:-1:-1;;;29578:73:0;;14508:2:1;29578:73:0::1;::::0;::::1;14490:21:1::0;14547:2;14527:18;;;14520:30;14586:34;14566:18;;;14559:62;-1:-1:-1;;;14637:18:1;;;14630:36;14683:19;;29578:73:0::1;14306:402:1::0;29578:73:0::1;29662:28;29681:8;29662:18;:28::i;57224:282::-:0;57289:4;57379:13;;57369:7;:23;57326:153;;;;-1:-1:-1;;57430:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;57430:44:0;:49;;57224:282::o;9792:647::-;195:42;9983:45;:49;9979:453;;10282:67;;-1:-1:-1;;;10282:67:0;;10333:4;10282:67;;;14925:34:1;-1:-1:-1;;;;;14995:15:1;;14975:18;;;14968:43;195:42:0;;10282;;14860:18:1;;10282:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10277:144;;10377:28;;-1:-1:-1;;;10377:28:0;;-1:-1:-1;;;;;1697:32:1;;10377:28:0;;;1679:51:1;1652:18;;10377:28:0;1533:203:1;55286:408:0;55375:13;55391:16;55399:7;55391;:16::i;:::-;55375:32;-1:-1:-1;79619:10:0;-1:-1:-1;;;;;55424:28:0;;;55420:175;;55472:44;55489:5;79619:10;56802:164;:::i;55472:44::-;55467:128;;55544:35;;-1:-1:-1;;;55544:35:0;;;;;;;;;;;55467:128;55607:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;55607:35:0;-1:-1:-1;;;;;55607:35:0;;;;;;;;;55658:28;;55607:24;;55658:28;;;;;;;55364:330;55286:408;;:::o;28756:132::-;28664:6;;-1:-1:-1;;;;;28664:6:0;79619:10;28820:23;28812:68;;;;-1:-1:-1;;;28812:68:0;;15474:2:1;28812:68:0;;;15456:21:1;;;15493:18;;;15486:30;15552:34;15532:18;;;15525:62;15604:18;;28812:68:0;15272:356:1;59492:2825:0;59634:27;59664;59683:7;59664:18;:27::i;:::-;59634:57;;59749:4;-1:-1:-1;;;;;59708:45:0;59724:19;-1:-1:-1;;;;;59708:45:0;;59704:86;;59762:28;;-1:-1:-1;;;59762:28:0;;;;;;;;;;;59704:86;59804:27;58600:24;;;:15;:24;;;;;58828:26;;79619:10;58225:30;;;-1:-1:-1;;;;;57918:28:0;;58203:20;;;58200:56;59990:180;;60083:43;60100:4;79619:10;56802:164;:::i;60083:43::-;60078:92;;60135:35;;-1:-1:-1;;;60135:35:0;;;;;;;;;;;60078:92;-1:-1:-1;;;;;60187:16:0;;60183:52;;60212:23;;-1:-1:-1;;;60212:23:0;;;;;;;;;;;60183:52;60384:15;60381:160;;;60524:1;60503:19;60496:30;60381:160;-1:-1:-1;;;;;60921:24:0;;;;;;;:18;:24;;;;;;60919:26;;-1:-1:-1;;60919:26:0;;;60990:22;;;;;;;;;60988:24;;-1:-1:-1;60988:24:0;;;54144:11;54119:23;54115:41;54102:63;-1:-1:-1;;;54102:63:0;61283:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;61578:47:0;;:52;;61574:627;;61683:1;61673:11;;61651:19;61806:30;;;:17;:30;;;;;;:35;;61802:384;;61944:13;;61929:11;:28;61925:242;;62091:30;;;;:17;:30;;;;;:52;;;61925:242;61632:569;61574:627;62248:7;62244:2;-1:-1:-1;;;;;62229:27:0;62238:4;-1:-1:-1;;;;;62229:27:0;;;;;;;;;;;62267:42;85291:171;62413:193;62559:39;62576:4;62582:2;62586:7;62559:39;;;;;;;;;;;;:16;:39::i;51910:1275::-;51977:7;52012;52114:13;;52107:4;:20;52103:1015;;;52152:14;52169:23;;;:17;:23;;;;;;;-1:-1:-1;;;52258:24:0;;:29;;52254:845;;52923:113;52930:6;52940:1;52930:11;52923:113;;-1:-1:-1;;;53001:6:0;52983:25;;;;:17;:25;;;;;;52923:113;;52254:845;52129:989;52103:1015;53146:31;;-1:-1:-1;;;53146:31:0;;;;;;;;;;;66873:2966;66946:20;66969:13;;;66997;;;66993:44;;67019:18;;-1:-1:-1;;;67019:18:0;;;;;;;;;;;66993:44;-1:-1:-1;;;;;67525:22:0;;;;;;:18;:22;;;;40594:2;67525:22;;;:71;;67563:32;67551:45;;67525:71;;;67839:31;;;:17;:31;;;;;-1:-1:-1;54575:15:0;;54549:24;54545:46;54144:11;54119:23;54115:41;54112:52;54102:63;;67839:173;;68074:23;;;;67839:31;;67525:22;;68839:25;67525:22;;68692:335;69353:1;69339:12;69335:20;69293:346;69394:3;69385:7;69382:16;69293:346;;69612:7;69602:8;69599:1;69572:25;69569:1;69566;69561:59;69447:1;69434:15;69293:346;;;69297:77;69672:8;69684:1;69672:13;69668:45;;69694:19;;-1:-1:-1;;;69694:19:0;;;;;;;;;;;69668:45;69730:13;:19;-1:-1:-1;85118:165:0;;;:::o;29858:191::-;29951:6;;;-1:-1:-1;;;;;29968:17:0;;;-1:-1:-1;;;;;;29968:17:0;;;;;;;30001:40;;29951:6;;;29968:17;29951:6;;30001:40;;29932:16;;30001:40;29921:128;29858:191;:::o;56411:234::-;79619:10;56506:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;56506:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;56506:60:0;;;;;;;;;;56582:55;;540:41:1;;;56506:49:0;;79619:10;56582:55;;513:18:1;56582:55:0;;;;;;;56411:234;;:::o;63204:407::-;63379:31;63392:4;63398:2;63402:7;63379:12;:31::i;:::-;-1:-1:-1;;;;;63425:14:0;;;:19;63421:183;;63464:56;63495:4;63501:2;63505:7;63514:5;63464:30;:56::i;:::-;63459:145;;63548:40;;-1:-1:-1;;;63548:40:0;;;;;;;;;;;84303:108;84363:13;84396:7;84389:14;;;;;:::i;79739:1745::-;79804:17;80238:4;80231;80225:11;80221:22;80330:1;80324:4;80317:15;80405:4;80402:1;80398:12;80391:19;;;80487:1;80482:3;80475:14;80591:3;80830:5;80812:428;80878:1;80873:3;80869:11;80862:18;;81049:2;81043:4;81039:13;81035:2;81031:22;81026:3;81018:36;81143:2;81133:13;;81200:25;80812:428;81200:25;-1:-1:-1;81270:13:0;;;-1:-1:-1;;81385:14:0;;;81447:19;;;81385:14;79739:1745;-1:-1:-1;79739:1745:0:o;65695:716::-;65879:88;;-1:-1:-1;;;65879:88:0;;65858:4;;-1:-1:-1;;;;;65879:45:0;;;;;:88;;79619:10;;65946:4;;65952:7;;65961:5;;65879:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65879:88:0;;;;;;;;-1:-1:-1;;65879:88:0;;;;;;;;;;;;:::i;:::-;;;65875:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66162:6;:13;66179:1;66162:18;66158:235;;66208:40;;-1:-1:-1;;;66208:40:0;;;;;;;;;;;66158:235;66351:6;66345:13;66336:6;66332:2;66328:15;66321:38;65875:529;-1:-1:-1;;;;;;66038:64:0;-1:-1:-1;;;66038:64:0;;-1:-1:-1;65875:529:0;65695:716;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1919:254;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;3123:127::-;3184:10;3179:3;3175:20;3172:1;3165:31;3215:4;3212:1;3205:15;3239:4;3236:1;3229:15;3255:632;3320:5;3350:18;3391:2;3383:6;3380:14;3377:40;;;3397:18;;:::i;:::-;3472:2;3466:9;3440:2;3526:15;;-1:-1:-1;;3522:24:1;;;3548:2;3518:33;3514:42;3502:55;;;3572:18;;;3592:22;;;3569:46;3566:72;;;3618:18;;:::i;:::-;3658:10;3654:2;3647:22;3687:6;3678:15;;3717:6;3709;3702:22;3757:3;3748:6;3743:3;3739:16;3736:25;3733:45;;;3774:1;3771;3764:12;3733:45;3824:6;3819:3;3812:4;3804:6;3800:17;3787:44;3879:1;3872:4;3863:6;3855;3851:19;3847:30;3840:41;;;;3255:632;;;;;:::o;3892:451::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4070:9;4057:23;4103:18;4095:6;4092:30;4089:50;;;4135:1;4132;4125:12;4089:50;4158:22;;4211:4;4203:13;;4199:27;-1:-1:-1;4189:55:1;;4240:1;4237;4230:12;4189:55;4263:74;4329:7;4324:2;4311:16;4306:2;4302;4298:11;4263:74;:::i;4348:367::-;4411:8;4421:6;4475:3;4468:4;4460:6;4456:17;4452:27;4442:55;;4493:1;4490;4483:12;4442:55;-1:-1:-1;4516:20:1;;4559:18;4548:30;;4545:50;;;4591:1;4588;4581:12;4545:50;4628:4;4620:6;4616:17;4604:29;;4688:3;4681:4;4671:6;4668:1;4664:14;4656:6;4652:27;4648:38;4645:47;4642:67;;;4705:1;4702;4695:12;4642:67;4348:367;;;;;:::o;4720:773::-;4842:6;4850;4858;4866;4919:2;4907:9;4898:7;4894:23;4890:32;4887:52;;;4935:1;4932;4925:12;4887:52;4975:9;4962:23;5004:18;5045:2;5037:6;5034:14;5031:34;;;5061:1;5058;5051:12;5031:34;5100:70;5162:7;5153:6;5142:9;5138:22;5100:70;:::i;:::-;5189:8;;-1:-1:-1;5074:96:1;-1:-1:-1;5277:2:1;5262:18;;5249:32;;-1:-1:-1;5293:16:1;;;5290:36;;;5322:1;5319;5312:12;5290:36;;5361:72;5425:7;5414:8;5403:9;5399:24;5361:72;:::i;:::-;4720:773;;;;-1:-1:-1;5452:8:1;-1:-1:-1;;;;4720:773:1:o;5498:118::-;5584:5;5577:13;5570:21;5563:5;5560:32;5550:60;;5606:1;5603;5596:12;5621:315;5686:6;5694;5747:2;5735:9;5726:7;5722:23;5718:32;5715:52;;;5763:1;5760;5753:12;5715:52;5786:29;5805:9;5786:29;:::i;:::-;5776:39;;5865:2;5854:9;5850:18;5837:32;5878:28;5900:5;5878:28;:::i;:::-;5925:5;5915:15;;;5621:315;;;;;:::o;5941:667::-;6036:6;6044;6052;6060;6113:3;6101:9;6092:7;6088:23;6084:33;6081:53;;;6130:1;6127;6120:12;6081:53;6153:29;6172:9;6153:29;:::i;:::-;6143:39;;6201:38;6235:2;6224:9;6220:18;6201:38;:::i;:::-;6191:48;;6286:2;6275:9;6271:18;6258:32;6248:42;;6341:2;6330:9;6326:18;6313:32;6368:18;6360:6;6357:30;6354:50;;;6400:1;6397;6390:12;6354:50;6423:22;;6476:4;6468:13;;6464:27;-1:-1:-1;6454:55:1;;6505:1;6502;6495:12;6454:55;6528:74;6594:7;6589:2;6576:16;6571:2;6567;6563:11;6528:74;:::i;:::-;6518:84;;;5941:667;;;;;;;:::o;6613:127::-;6674:10;6669:3;6665:20;6662:1;6655:31;6705:4;6702:1;6695:15;6729:4;6726:1;6719:15;6745:342;6891:2;6876:18;;6924:1;6913:13;;6903:144;;6969:10;6964:3;6960:20;6957:1;6950:31;7004:4;7001:1;6994:15;7032:4;7029:1;7022:15;6903:144;7056:25;;;6745:342;:::o;7092:260::-;7160:6;7168;7221:2;7209:9;7200:7;7196:23;7192:32;7189:52;;;7237:1;7234;7227:12;7189:52;7260:29;7279:9;7260:29;:::i;:::-;7250:39;;7308:38;7342:2;7331:9;7327:18;7308:38;:::i;:::-;7298:48;;7092:260;;;;;:::o;7357:380::-;7436:1;7432:12;;;;7479;;;7500:61;;7554:4;7546:6;7542:17;7532:27;;7500:61;7607:2;7599:6;7596:14;7576:18;7573:38;7570:161;;7653:10;7648:3;7644:20;7641:1;7634:31;7688:4;7685:1;7678:15;7716:4;7713:1;7706:15;7570:161;;7357:380;;;:::o;8089:127::-;8150:10;8145:3;8141:20;8138:1;8131:31;8181:4;8178:1;8171:15;8205:4;8202:1;8195:15;8221:125;8286:9;;;8307:10;;;8304:36;;;8320:18;;:::i;8351:128::-;8418:9;;;8439:11;;;8436:37;;;8453:18;;:::i;8820:545::-;8922:2;8917:3;8914:11;8911:448;;;8958:1;8983:5;8979:2;8972:17;9028:4;9024:2;9014:19;9098:2;9086:10;9082:19;9079:1;9075:27;9069:4;9065:38;9134:4;9122:10;9119:20;9116:47;;;-1:-1:-1;9157:4:1;9116:47;9212:2;9207:3;9203:12;9200:1;9196:20;9190:4;9186:31;9176:41;;9267:82;9285:2;9278:5;9275:13;9267:82;;;9330:17;;;9311:1;9300:13;9267:82;;9541:1352;9667:3;9661:10;9694:18;9686:6;9683:30;9680:56;;;9716:18;;:::i;:::-;9745:97;9835:6;9795:38;9827:4;9821:11;9795:38;:::i;:::-;9789:4;9745:97;:::i;:::-;9897:4;;9961:2;9950:14;;9978:1;9973:663;;;;10680:1;10697:6;10694:89;;;-1:-1:-1;10749:19:1;;;10743:26;10694:89;-1:-1:-1;;9498:1:1;9494:11;;;9490:24;9486:29;9476:40;9522:1;9518:11;;;9473:57;10796:81;;9943:944;;9973:663;8767:1;8760:14;;;8804:4;8791:18;;-1:-1:-1;;10009:20:1;;;10127:236;10141:7;10138:1;10135:14;10127:236;;;10230:19;;;10224:26;10209:42;;10322:27;;;;10290:1;10278:14;;;;10157:19;;10127:236;;;10131:3;10391:6;10382:7;10379:19;10376:201;;;10452:19;;;10446:26;-1:-1:-1;;10535:1:1;10531:14;;;10547:3;10527:24;10523:37;10519:42;10504:58;10489:74;;10376:201;-1:-1:-1;;;;;10623:1:1;10607:14;;;10603:22;10590:36;;-1:-1:-1;9541:1352:1:o;11252:184::-;11322:6;11375:2;11363:9;11354:7;11350:23;11346:32;11343:52;;;11391:1;11388;11381:12;11343:52;-1:-1:-1;11414:16:1;;11252:184;-1:-1:-1;11252:184:1:o;11441:127::-;11502:10;11497:3;11493:20;11490:1;11483:31;11533:4;11530:1;11523:15;11557:4;11554:1;11547:15;11925:135;11964:3;11985:17;;;11982:43;;12005:18;;:::i;:::-;-1:-1:-1;12052:1:1;12041:13;;11925:135::o;12422:168::-;12495:9;;;12526;;12543:15;;;12537:22;;12523:37;12513:71;;12564:18;;:::i;13638:663::-;13918:3;13956:6;13950:13;13972:66;14031:6;14026:3;14019:4;14011:6;14007:17;13972:66;:::i;:::-;14101:13;;14060:16;;;;14123:70;14101:13;14060:16;14170:4;14158:17;;14123:70;:::i;:::-;-1:-1:-1;;;14215:20:1;;14244:22;;;14293:1;14282:13;;13638:663;-1:-1:-1;;;;13638:663:1:o;15022:245::-;15089:6;15142:2;15130:9;15121:7;15117:23;15113:32;15110:52;;;15158:1;15155;15148:12;15110:52;15190:9;15184:16;15209:28;15231:5;15209:28;:::i;15633:489::-;-1:-1:-1;;;;;15902:15:1;;;15884:34;;15954:15;;15949:2;15934:18;;15927:43;16001:2;15986:18;;15979:34;;;16049:3;16044:2;16029:18;;16022:31;;;15827:4;;16070:46;;16096:19;;16088:6;16070:46;:::i;:::-;16062:54;15633:489;-1:-1:-1;;;;;;15633:489:1:o;16127:249::-;16196:6;16249:2;16237:9;16228:7;16224:23;16220:32;16217:52;;;16265:1;16262;16255:12;16217:52;16297:9;16291:16;16316:30;16340:5;16316:30;:::i
Swarm Source
ipfs://3b9e027c23de976ac549dbc90e46dd4ba5e564609d532706634b08211927af05
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.