ERC-721
Overview
Max Total Supply
4,444 SUPER
Holders
1,434
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SUPERLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SuperETHBros
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-16 */ // SPDX-License-Identifier: MIT // File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/lib/Constants.sol pragma solidity ^0.8.13; 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/[email protected]/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/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: contracts/mario.sol pragma solidity ^0.8.12; contract SuperETHBros is ERC721A, DefaultOperatorFilterer, Ownable, ReentrancyGuard { using Strings for uint256; mapping(address => uint256) public ClaimedAllowlist; mapping(address => uint256) public ClaimedPublic; uint256 public constant MAX_SUPPLY = 4444; uint256 public constant MAX_MINTS_WALLET_ALLOWLIST = 10; uint256 public constant MAX_MINTS_WALLET_PUBLIC = 10; uint256 public constant PRICE_ALLOWLIST = 0.003 ether; uint256 public constant PRICE_PUBLIC = 0.003 ether; uint256 public FREE_TOKEN_PRICE = 0 ether; uint256 public FREE_MINT_LIMIT = 1; string private baseURI; uint256 private _mintedTeam = 0; bool public TeamMinted = false; bytes32 public root; bool public AllowlistPaused = true; bool public paused = true; constructor( string memory _tokenName, string memory _tokenSymbol ) ERC721A(_tokenName, _tokenSymbol) { } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function AllowlistMint( uint256 amount, bytes32[] memory proof ) public payable nonReentrant { require(!AllowlistPaused, "Allowlist minting is paused!"); require( isValid(proof, keccak256(abi.encodePacked(msg.sender))), 'Not a part of Allowlist' ); require( msg.value == amount * PRICE_ALLOWLIST, 'Invalid funds provided' ); require( amount > 0 && amount <= MAX_MINTS_WALLET_ALLOWLIST, 'Must mint between the min and max.' ); require(totalSupply() + amount <= MAX_SUPPLY, 'Exceed max supply'); require( ClaimedAllowlist[msg.sender] + amount <= MAX_MINTS_WALLET_ALLOWLIST, 'Already minted Max Mints Allowlist' ); ClaimedAllowlist[msg.sender] += amount; _safeMint(msg.sender, amount); } function PublicMint(uint256 amount) public payable nonReentrant { require(!paused, "mint is paused!"); require(msg.value == amount * PRICE_PUBLIC, 'Invalid funds provided'); require( amount > 0 && amount <= MAX_MINTS_WALLET_PUBLIC, 'Must mint between the min and max.' ); require(totalSupply() + amount <= MAX_SUPPLY, 'Exceed max supply'); require( ClaimedPublic[msg.sender] + amount <= MAX_MINTS_WALLET_PUBLIC, 'Already minted Max Mints Public' ); ClaimedPublic[msg.sender] += amount; _safeMint(msg.sender, amount); } function mintFree() external callerIsUser { require(!paused, "mint is paused!"); uint256 amount = FREE_MINT_LIMIT; require(totalSupply() + amount <= MAX_SUPPLY, 'Exceed max supply'); require(freeTokensRemainingForAddress(msg.sender) >= amount, "Mint limit for user reached"); _safeMint(msg.sender, amount); _setAux(msg.sender, _getAux(msg.sender) + uint64(amount)); } function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner { uint16 totalSupply = uint16(totalSupply()); require(totalSupply + _mintAmount <= MAX_SUPPLY, "Excedes max supply."); _safeMint(_receiver , _mintAmount); delete _mintAmount; delete _receiver; delete totalSupply; } function freeTokensRemainingForAddress(address who) public view returns (uint256) { return FREE_MINT_LIMIT - _getAux(who); } function setPaused() external onlyOwner { paused = !paused; } function setAllowlistPaused() external onlyOwner { AllowlistPaused = !AllowlistPaused; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI( uint256 _tokenId ) public view virtual override returns (string memory) { require( _exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token' ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _tokenId.toString(), '.json' ) ) : ''; } function setBaseUri(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } 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 payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function isValid( bytes32[] memory proof, bytes32 leaf ) public view returns (bool) { return MerkleProof.verify(proof, root, leaf); } function setMerkleRoot(bytes32 _root) external onlyOwner { root = _root; } function withdraw() public onlyOwner nonReentrant { // This will transfer the remaining contract balance to the owner. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); // ============================================================================= } function _startTokenId() internal pure override returns (uint256) { return 1; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"AllowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"AllowlistPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ClaimedAllowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ClaimedPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_WALLET_ALLOWLIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_WALLET_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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_ALLOWLIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TeamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"freeTokensRemainingForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[],"name":"setAllowlistPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","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
60806040526000600c8190556001600d55600f556010805460ff191690556012805461ffff19166101011790553480156200003957600080fd5b5060405162002814380380620028148339810160408190526200005c9162000311565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001838360026200008383826200040a565b5060036200009282826200040a565b50600160005550506daaeb6d7670e522a718067333cd4e3b15620001df5780156200012d57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200010e57600080fd5b505af115801562000123573d6000803e3d6000fd5b50505050620001df565b6001600160a01b038216156200017e5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000f3565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001c557600080fd5b505af1158015620001da573d6000803e3d6000fd5b505050505b50620001ed905033620001fa565b50506001600955620004d6565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200027457600080fd5b81516001600160401b03808211156200029157620002916200024c565b604051601f8301601f19908116603f01168101908282118183101715620002bc57620002bc6200024c565b81604052838152602092508683858801011115620002d957600080fd5b600091505b83821015620002fd5785820183015181830184015290820190620002de565b600093810190920192909252949350505050565b600080604083850312156200032557600080fd5b82516001600160401b03808211156200033d57600080fd5b6200034b8683870162000262565b935060208501519150808211156200036257600080fd5b50620003718582860162000262565b9150509250929050565b600181811c908216806200039057607f821691505b602082108103620003b157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040557600081815260208120601f850160051c81016020861015620003e05750805b601f850160051c820191505b818110156200040157828155600101620003ec565b5050505b505050565b81516001600160401b038111156200042657620004266200024c565b6200043e816200043784546200037b565b84620003b7565b602080601f8311600181146200047657600084156200045d5750858301515b600019600386901b1c1916600185901b17855562000401565b600085815260208120601f198616915b82811015620004a75788860151825594840194600190910190840162000486565b5085821015620004c65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61232e80620004e66000396000f3fe6080604052600436106102515760003560e01c806388a99d9b11610139578063a56d7730116100b6578063b9015c5d1161007a578063b9015c5d14610481578063c87b56dd14610659578063e0509b8a146105df578063e985e9c514610679578063ebf0c717146106c2578063f2fde38b146106d857600080fd5b8063a56d7730146105df578063a7048ae1146105fa578063b47cacc914610610578063b88d4fde14610626578063b8a20ed01461063957600080fd5b8063965087e7116100fd578063965087e7146105325780639fb17e341461055f578063a0bcfc7f14610572578063a22cb46514610592578063a49a8662146105b257600080fd5b806388a99d9b146104b65780638ab53447146104d05780638da5cb5b146104e557806395d89b4114610503578063960b295b1461051857600080fd5b806332cb6b0c116101d25780635c975abb116101965780635c975abb1461040d5780636352211e1461042c57806370a082311461044c578063715018a61461046c5780637866375f146104815780637cb647591461049657600080fd5b806332cb6b0c1461039857806337a66d85146103ae5780633ccfd60b146103c357806341f43434146103d857806342842e0e146103fa57600080fd5b806318160ddd1161021957806318160ddd1461032857806323b872dd1461033d57806328e34a8e146103505780632f6f98e1146103655780633229c71b1461038557600080fd5b806301ffc9a71461025657806303abc9181461028b57806306fdde03146102b9578063081812fc146102db578063095ea7b314610313575b600080fd5b34801561026257600080fd5b50610276610271366004611b8d565b6106f8565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611bc6565b61074a565b604051908152602001610282565b3480156102c557600080fd5b506102ce610773565b6040516102829190611c31565b3480156102e757600080fd5b506102fb6102f6366004611c44565b610805565b6040516001600160a01b039091168152602001610282565b610326610321366004611c5d565b610849565b005b34801561033457600080fd5b506102ab6108e9565b61032661034b366004611c87565b6108f7565b34801561035c57600080fd5b50610326610922565b34801561037157600080fd5b50610326610380366004611cc3565b61093e565b610326610393366004611dc6565b6109bf565b3480156103a457600080fd5b506102ab61115c81565b3480156103ba57600080fd5b50610326610c12565b3480156103cf57600080fd5b50610326610c37565b3480156103e457600080fd5b506102fb6daaeb6d7670e522a718067333cd4e81565b610326610408366004611c87565b610cc5565b34801561041957600080fd5b5060125461027690610100900460ff1681565b34801561043857600080fd5b506102fb610447366004611c44565b610cea565b34801561045857600080fd5b506102ab610467366004611bc6565b610cf5565b34801561047857600080fd5b50610326610d44565b34801561048d57600080fd5b506102ab600a81565b3480156104a257600080fd5b506103266104b1366004611c44565b610d56565b3480156104c257600080fd5b506010546102769060ff1681565b3480156104dc57600080fd5b50610326610d63565b3480156104f157600080fd5b506008546001600160a01b03166102fb565b34801561050f57600080fd5b506102ce610eed565b34801561052457600080fd5b506012546102769060ff1681565b34801561053e57600080fd5b506102ab61054d366004611bc6565b600b6020526000908152604090205481565b61032661056d366004611c44565b610efc565b34801561057e57600080fd5b5061032661058d366004611e65565b6110ac565b34801561059e57600080fd5b506103266105ad366004611ebc565b6110c0565b3480156105be57600080fd5b506102ab6105cd366004611bc6565b600a6020526000908152604090205481565b3480156105eb57600080fd5b506102ab660aa87bee53800081565b34801561060657600080fd5b506102ab600d5481565b34801561061c57600080fd5b506102ab600c5481565b610326610634366004611ef3565b61112c565b34801561064557600080fd5b50610276610654366004611f6f565b611159565b34801561066557600080fd5b506102ce610674366004611c44565b61116f565b34801561068557600080fd5b50610276610694366004611fb4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ce57600080fd5b506102ab60115481565b3480156106e457600080fd5b506103266106f3366004611bc6565b611239565b60006301ffc9a760e01b6001600160e01b03198316148061072957506380ac58cd60e01b6001600160e01b03198316145b806107445750635b5e139f60e01b6001600160e01b03198316145b92915050565b6001600160a01b038116600090815260056020526040812054600d546107449160c01c90611fe6565b60606002805461078290611ff9565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae90611ff9565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b6000610810826112af565b61082d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061085482610cea565b9050336001600160a01b0382161461088d576108708133610694565b61088d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600154600054036000190190565b826001600160a01b038116331461091157610911336112e4565b61091c84848461139d565b50505050565b61092a611536565b6012805460ff19811660ff90911615179055565b610946611536565b60006109506108e9565b905061115c61095f8483612033565b61ffff1611156109ac5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064015b60405180910390fd5b6109ba828461ffff16611590565b505050565b6109c76115aa565b60125460ff1615610a1a5760405162461bcd60e51b815260206004820152601c60248201527f416c6c6f776c697374206d696e74696e6720697320706175736564210000000060448201526064016109a3565b6040516bffffffffffffffffffffffff193360601b166020820152610a5990829060340160405160208183030381529060405280519060200120611159565b610aa55760405162461bcd60e51b815260206004820152601760248201527f4e6f7420612070617274206f6620416c6c6f776c69737400000000000000000060448201526064016109a3565b610ab6660aa87bee53800083612055565b3414610afd5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016109a3565b600082118015610b0e5750600a8211155b610b2a5760405162461bcd60e51b81526004016109a39061206c565b61115c82610b366108e9565b610b4091906120ae565b1115610b5e5760405162461bcd60e51b81526004016109a3906120c1565b336000908152600a6020819052604090912054610b7c9084906120ae565b1115610bd55760405162461bcd60e51b815260206004820152602260248201527f416c7265616479206d696e746564204d6178204d696e747320416c6c6f776c696044820152611cdd60f21b60648201526084016109a3565b336000908152600a602052604081208054849290610bf49084906120ae565b90915550610c0490503383611590565b610c0e6001600955565b5050565b610c1a611536565b6012805461ff001981166101009182900460ff1615909102179055565b610c3f611536565b610c476115aa565b6000610c5b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ca5576040519150601f19603f3d011682016040523d82523d6000602084013e610caa565b606091505b5050905080610cb857600080fd5b50610cc36001600955565b565b826001600160a01b0381163314610cdf57610cdf336112e4565b61091c848484611603565b60006107448261161e565b60006001600160a01b038216610d1e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d4c611536565b610cc3600061168d565b610d5e611536565b601155565b323314610db25760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109a3565b601254610100900460ff1615610dfc5760405162461bcd60e51b815260206004820152600f60248201526e6d696e74206973207061757365642160881b60448201526064016109a3565b600d5461115c81610e0b6108e9565b610e1591906120ae565b1115610e335760405162461bcd60e51b81526004016109a3906120c1565b80610e3d3361074a565b1015610e8b5760405162461bcd60e51b815260206004820152601b60248201527f4d696e74206c696d697420666f7220757365722072656163686564000000000060448201526064016109a3565b610e953382611590565b33600081815260056020526040902054610eea9190610eb890849060c01c6120ec565b6001600160a01b03909116600090815260056020526040902080546001600160c01b031660c09290921b919091179055565b50565b60606003805461078290611ff9565b610f046115aa565b601254610100900460ff1615610f4e5760405162461bcd60e51b815260206004820152600f60248201526e6d696e74206973207061757365642160881b60448201526064016109a3565b610f5f660aa87bee53800082612055565b3414610fa65760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016109a3565b600081118015610fb75750600a8111155b610fd35760405162461bcd60e51b81526004016109a39061206c565b61115c81610fdf6108e9565b610fe991906120ae565b11156110075760405162461bcd60e51b81526004016109a3906120c1565b336000908152600b6020526040902054600a906110259083906120ae565b11156110735760405162461bcd60e51b815260206004820152601f60248201527f416c7265616479206d696e746564204d6178204d696e7473205075626c69630060448201526064016109a3565b336000908152600b6020526040812080548392906110929084906120ae565b909155506110a290503382611590565b610eea6001600955565b6110b4611536565b600e610c0e8282612153565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836001600160a01b038116331461114657611146336112e4565b611152858585856116df565b5050505050565b60006111688360115484611723565b9392505050565b606061117a826112af565b6111de5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a3565b60006111e8611739565b905060008151116112085760405180602001604052806000815250611168565b8061121284611748565b604051602001611223929190612213565b6040516020818303038152906040529392505050565b611241611536565b6001600160a01b0381166112a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a3565b610eea8161168d565b6000816001111580156112c3575060005482105b8015610744575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610eea57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611351573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113759190612252565b610eea57604051633b79c77360e21b81526001600160a01b03821660048201526024016109a3565b60006113a88261161e565b9050836001600160a01b0316816001600160a01b0316146113db5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176114285761140b8633610694565b61142857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661144f57604051633a954ecd60e21b815260040160405180910390fd5b801561145a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036114ec576001840160008181526004602052604081205490036114ea5760005481146114ea5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610cc35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a3565b610c0e8282604051806020016040528060008152506117db565b6002600954036115fc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109a3565b6002600955565b6109ba8383836040518060200160405280600081525061112c565b60008180600111611674576000548110156116745760008181526004602052604081205490600160e01b82169003611672575b80600003611168575060001901600081815260046020526040902054611651565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116ea8484846108f7565b6001600160a01b0383163b1561091c5761170684848484611841565b61091c576040516368d2bf6b60e11b815260040160405180910390fd5b600082611730858461192d565b14949350505050565b6060600e805461078290611ff9565b60606000611755836119a1565b600101905060008167ffffffffffffffff81111561177557611775611cff565b6040519080825280601f01601f19166020018201604052801561179f576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846117a957509392505050565b6117e58383611a79565b6001600160a01b0383163b156109ba576000548281035b61180f6000868380600101945086611841565b61182c576040516368d2bf6b60e11b815260040160405180910390fd5b8181106117fc57816000541461115257600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061187690339089908890889060040161226f565b6020604051808303816000875af19250505080156118b1575060408051601f3d908101601f191682019092526118ae918101906122ac565b60015b61190f573d8080156118df576040519150601f19603f3d011682016040523d82523d6000602084013e6118e4565b606091505b508051600003611907576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600081815b845181101561199957600085828151811061194f5761194f6122c9565b602002602001015190508083116119755760008381526020829052604090209250611986565b600081815260208490526040902092505b5080611991816122df565b915050611932565b509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106119e05772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611a0c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611a2a57662386f26fc10000830492506010015b6305f5e1008310611a42576305f5e100830492506008015b6127108310611a5657612710830492506004015b60648310611a68576064830492506002015b600a83106107445760010192915050565b6000805490829003611a9e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611b4d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611b15565b5081600003611b6e57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114610eea57600080fd5b600060208284031215611b9f57600080fd5b813561116881611b77565b80356001600160a01b0381168114611bc157600080fd5b919050565b600060208284031215611bd857600080fd5b61116882611baa565b60005b83811015611bfc578181015183820152602001611be4565b50506000910152565b60008151808452611c1d816020860160208601611be1565b601f01601f19169290920160200192915050565b6020815260006111686020830184611c05565b600060208284031215611c5657600080fd5b5035919050565b60008060408385031215611c7057600080fd5b611c7983611baa565b946020939093013593505050565b600080600060608486031215611c9c57600080fd5b611ca584611baa565b9250611cb360208501611baa565b9150604084013590509250925092565b60008060408385031215611cd657600080fd5b823561ffff81168114611ce857600080fd5b9150611cf660208401611baa565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611d3e57611d3e611cff565b604052919050565b600082601f830112611d5757600080fd5b8135602067ffffffffffffffff821115611d7357611d73611cff565b8160051b611d82828201611d15565b9283528481018201928281019087851115611d9c57600080fd5b83870192505b84831015611dbb57823582529183019190830190611da2565b979650505050505050565b60008060408385031215611dd957600080fd5b82359150602083013567ffffffffffffffff811115611df757600080fd5b611e0385828601611d46565b9150509250929050565b600067ffffffffffffffff831115611e2757611e27611cff565b611e3a601f8401601f1916602001611d15565b9050828152838383011115611e4e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e7757600080fd5b813567ffffffffffffffff811115611e8e57600080fd5b8201601f81018413611e9f57600080fd5b61192584823560208401611e0d565b8015158114610eea57600080fd5b60008060408385031215611ecf57600080fd5b611ed883611baa565b91506020830135611ee881611eae565b809150509250929050565b60008060008060808587031215611f0957600080fd5b611f1285611baa565b9350611f2060208601611baa565b925060408501359150606085013567ffffffffffffffff811115611f4357600080fd5b8501601f81018713611f5457600080fd5b611f6387823560208401611e0d565b91505092959194509250565b60008060408385031215611f8257600080fd5b823567ffffffffffffffff811115611f9957600080fd5b611fa585828601611d46565b95602094909401359450505050565b60008060408385031215611fc757600080fd5b611ce883611baa565b634e487b7160e01b600052601160045260246000fd5b8181038181111561074457610744611fd0565b600181811c9082168061200d57607f821691505b60208210810361202d57634e487b7160e01b600052602260045260246000fd5b50919050565b61ffff81811683821601908082111561204e5761204e611fd0565b5092915050565b808202811582820484141761074457610744611fd0565b60208082526022908201527f4d757374206d696e74206265747765656e20746865206d696e20616e64206d616040820152613c1760f11b606082015260800190565b8082018082111561074457610744611fd0565b602080825260119082015270457863656564206d617820737570706c7960781b604082015260600190565b67ffffffffffffffff81811683821601908082111561204e5761204e611fd0565b601f8211156109ba57600081815260208120601f850160051c810160208610156121345750805b601f850160051c820191505b8181101561152e57828155600101612140565b815167ffffffffffffffff81111561216d5761216d611cff565b6121818161217b8454611ff9565b8461210d565b602080601f8311600181146121b6576000841561219e5750858301515b600019600386901b1c1916600185901b17855561152e565b600085815260208120601f198616915b828110156121e5578886015182559484019460019091019084016121c6565b50858210156122035787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351612225818460208801611be1565b835190830190612239818360208801611be1565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561226457600080fd5b815161116881611eae565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122a290830184611c05565b9695505050505050565b6000602082840312156122be57600080fd5b815161116881611b77565b634e487b7160e01b600052603260045260246000fd5b6000600182016122f1576122f1611fd0565b506001019056fea26469706673582212204d96401b3e8910e9ae70c471980fea3d9026a6fb9ede224a29e074192e68853a64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e5375706572204554482042726f7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055355504552000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c806388a99d9b11610139578063a56d7730116100b6578063b9015c5d1161007a578063b9015c5d14610481578063c87b56dd14610659578063e0509b8a146105df578063e985e9c514610679578063ebf0c717146106c2578063f2fde38b146106d857600080fd5b8063a56d7730146105df578063a7048ae1146105fa578063b47cacc914610610578063b88d4fde14610626578063b8a20ed01461063957600080fd5b8063965087e7116100fd578063965087e7146105325780639fb17e341461055f578063a0bcfc7f14610572578063a22cb46514610592578063a49a8662146105b257600080fd5b806388a99d9b146104b65780638ab53447146104d05780638da5cb5b146104e557806395d89b4114610503578063960b295b1461051857600080fd5b806332cb6b0c116101d25780635c975abb116101965780635c975abb1461040d5780636352211e1461042c57806370a082311461044c578063715018a61461046c5780637866375f146104815780637cb647591461049657600080fd5b806332cb6b0c1461039857806337a66d85146103ae5780633ccfd60b146103c357806341f43434146103d857806342842e0e146103fa57600080fd5b806318160ddd1161021957806318160ddd1461032857806323b872dd1461033d57806328e34a8e146103505780632f6f98e1146103655780633229c71b1461038557600080fd5b806301ffc9a71461025657806303abc9181461028b57806306fdde03146102b9578063081812fc146102db578063095ea7b314610313575b600080fd5b34801561026257600080fd5b50610276610271366004611b8d565b6106f8565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004611bc6565b61074a565b604051908152602001610282565b3480156102c557600080fd5b506102ce610773565b6040516102829190611c31565b3480156102e757600080fd5b506102fb6102f6366004611c44565b610805565b6040516001600160a01b039091168152602001610282565b610326610321366004611c5d565b610849565b005b34801561033457600080fd5b506102ab6108e9565b61032661034b366004611c87565b6108f7565b34801561035c57600080fd5b50610326610922565b34801561037157600080fd5b50610326610380366004611cc3565b61093e565b610326610393366004611dc6565b6109bf565b3480156103a457600080fd5b506102ab61115c81565b3480156103ba57600080fd5b50610326610c12565b3480156103cf57600080fd5b50610326610c37565b3480156103e457600080fd5b506102fb6daaeb6d7670e522a718067333cd4e81565b610326610408366004611c87565b610cc5565b34801561041957600080fd5b5060125461027690610100900460ff1681565b34801561043857600080fd5b506102fb610447366004611c44565b610cea565b34801561045857600080fd5b506102ab610467366004611bc6565b610cf5565b34801561047857600080fd5b50610326610d44565b34801561048d57600080fd5b506102ab600a81565b3480156104a257600080fd5b506103266104b1366004611c44565b610d56565b3480156104c257600080fd5b506010546102769060ff1681565b3480156104dc57600080fd5b50610326610d63565b3480156104f157600080fd5b506008546001600160a01b03166102fb565b34801561050f57600080fd5b506102ce610eed565b34801561052457600080fd5b506012546102769060ff1681565b34801561053e57600080fd5b506102ab61054d366004611bc6565b600b6020526000908152604090205481565b61032661056d366004611c44565b610efc565b34801561057e57600080fd5b5061032661058d366004611e65565b6110ac565b34801561059e57600080fd5b506103266105ad366004611ebc565b6110c0565b3480156105be57600080fd5b506102ab6105cd366004611bc6565b600a6020526000908152604090205481565b3480156105eb57600080fd5b506102ab660aa87bee53800081565b34801561060657600080fd5b506102ab600d5481565b34801561061c57600080fd5b506102ab600c5481565b610326610634366004611ef3565b61112c565b34801561064557600080fd5b50610276610654366004611f6f565b611159565b34801561066557600080fd5b506102ce610674366004611c44565b61116f565b34801561068557600080fd5b50610276610694366004611fb4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ce57600080fd5b506102ab60115481565b3480156106e457600080fd5b506103266106f3366004611bc6565b611239565b60006301ffc9a760e01b6001600160e01b03198316148061072957506380ac58cd60e01b6001600160e01b03198316145b806107445750635b5e139f60e01b6001600160e01b03198316145b92915050565b6001600160a01b038116600090815260056020526040812054600d546107449160c01c90611fe6565b60606002805461078290611ff9565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae90611ff9565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b6000610810826112af565b61082d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061085482610cea565b9050336001600160a01b0382161461088d576108708133610694565b61088d576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600154600054036000190190565b826001600160a01b038116331461091157610911336112e4565b61091c84848461139d565b50505050565b61092a611536565b6012805460ff19811660ff90911615179055565b610946611536565b60006109506108e9565b905061115c61095f8483612033565b61ffff1611156109ac5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064015b60405180910390fd5b6109ba828461ffff16611590565b505050565b6109c76115aa565b60125460ff1615610a1a5760405162461bcd60e51b815260206004820152601c60248201527f416c6c6f776c697374206d696e74696e6720697320706175736564210000000060448201526064016109a3565b6040516bffffffffffffffffffffffff193360601b166020820152610a5990829060340160405160208183030381529060405280519060200120611159565b610aa55760405162461bcd60e51b815260206004820152601760248201527f4e6f7420612070617274206f6620416c6c6f776c69737400000000000000000060448201526064016109a3565b610ab6660aa87bee53800083612055565b3414610afd5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016109a3565b600082118015610b0e5750600a8211155b610b2a5760405162461bcd60e51b81526004016109a39061206c565b61115c82610b366108e9565b610b4091906120ae565b1115610b5e5760405162461bcd60e51b81526004016109a3906120c1565b336000908152600a6020819052604090912054610b7c9084906120ae565b1115610bd55760405162461bcd60e51b815260206004820152602260248201527f416c7265616479206d696e746564204d6178204d696e747320416c6c6f776c696044820152611cdd60f21b60648201526084016109a3565b336000908152600a602052604081208054849290610bf49084906120ae565b90915550610c0490503383611590565b610c0e6001600955565b5050565b610c1a611536565b6012805461ff001981166101009182900460ff1615909102179055565b610c3f611536565b610c476115aa565b6000610c5b6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ca5576040519150601f19603f3d011682016040523d82523d6000602084013e610caa565b606091505b5050905080610cb857600080fd5b50610cc36001600955565b565b826001600160a01b0381163314610cdf57610cdf336112e4565b61091c848484611603565b60006107448261161e565b60006001600160a01b038216610d1e576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610d4c611536565b610cc3600061168d565b610d5e611536565b601155565b323314610db25760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109a3565b601254610100900460ff1615610dfc5760405162461bcd60e51b815260206004820152600f60248201526e6d696e74206973207061757365642160881b60448201526064016109a3565b600d5461115c81610e0b6108e9565b610e1591906120ae565b1115610e335760405162461bcd60e51b81526004016109a3906120c1565b80610e3d3361074a565b1015610e8b5760405162461bcd60e51b815260206004820152601b60248201527f4d696e74206c696d697420666f7220757365722072656163686564000000000060448201526064016109a3565b610e953382611590565b33600081815260056020526040902054610eea9190610eb890849060c01c6120ec565b6001600160a01b03909116600090815260056020526040902080546001600160c01b031660c09290921b919091179055565b50565b60606003805461078290611ff9565b610f046115aa565b601254610100900460ff1615610f4e5760405162461bcd60e51b815260206004820152600f60248201526e6d696e74206973207061757365642160881b60448201526064016109a3565b610f5f660aa87bee53800082612055565b3414610fa65760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016109a3565b600081118015610fb75750600a8111155b610fd35760405162461bcd60e51b81526004016109a39061206c565b61115c81610fdf6108e9565b610fe991906120ae565b11156110075760405162461bcd60e51b81526004016109a3906120c1565b336000908152600b6020526040902054600a906110259083906120ae565b11156110735760405162461bcd60e51b815260206004820152601f60248201527f416c7265616479206d696e746564204d6178204d696e7473205075626c69630060448201526064016109a3565b336000908152600b6020526040812080548392906110929084906120ae565b909155506110a290503382611590565b610eea6001600955565b6110b4611536565b600e610c0e8282612153565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836001600160a01b038116331461114657611146336112e4565b611152858585856116df565b5050505050565b60006111688360115484611723565b9392505050565b606061117a826112af565b6111de5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a3565b60006111e8611739565b905060008151116112085760405180602001604052806000815250611168565b8061121284611748565b604051602001611223929190612213565b6040516020818303038152906040529392505050565b611241611536565b6001600160a01b0381166112a65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a3565b610eea8161168d565b6000816001111580156112c3575060005482105b8015610744575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b15610eea57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611351573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113759190612252565b610eea57604051633b79c77360e21b81526001600160a01b03821660048201526024016109a3565b60006113a88261161e565b9050836001600160a01b0316816001600160a01b0316146113db5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176114285761140b8633610694565b61142857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661144f57604051633a954ecd60e21b815260040160405180910390fd5b801561145a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b841690036114ec576001840160008181526004602052604081205490036114ea5760005481146114ea5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610cc35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a3565b610c0e8282604051806020016040528060008152506117db565b6002600954036115fc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109a3565b6002600955565b6109ba8383836040518060200160405280600081525061112c565b60008180600111611674576000548110156116745760008181526004602052604081205490600160e01b82169003611672575b80600003611168575060001901600081815260046020526040902054611651565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6116ea8484846108f7565b6001600160a01b0383163b1561091c5761170684848484611841565b61091c576040516368d2bf6b60e11b815260040160405180910390fd5b600082611730858461192d565b14949350505050565b6060600e805461078290611ff9565b60606000611755836119a1565b600101905060008167ffffffffffffffff81111561177557611775611cff565b6040519080825280601f01601f19166020018201604052801561179f576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846117a957509392505050565b6117e58383611a79565b6001600160a01b0383163b156109ba576000548281035b61180f6000868380600101945086611841565b61182c576040516368d2bf6b60e11b815260040160405180910390fd5b8181106117fc57816000541461115257600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061187690339089908890889060040161226f565b6020604051808303816000875af19250505080156118b1575060408051601f3d908101601f191682019092526118ae918101906122ac565b60015b61190f573d8080156118df576040519150601f19603f3d011682016040523d82523d6000602084013e6118e4565b606091505b508051600003611907576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600081815b845181101561199957600085828151811061194f5761194f6122c9565b602002602001015190508083116119755760008381526020829052604090209250611986565b600081815260208490526040902092505b5080611991816122df565b915050611932565b509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106119e05772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611a0c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611a2a57662386f26fc10000830492506010015b6305f5e1008310611a42576305f5e100830492506008015b6127108310611a5657612710830492506004015b60648310611a68576064830492506002015b600a83106107445760010192915050565b6000805490829003611a9e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114611b4d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611b15565b5081600003611b6e57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b031981168114610eea57600080fd5b600060208284031215611b9f57600080fd5b813561116881611b77565b80356001600160a01b0381168114611bc157600080fd5b919050565b600060208284031215611bd857600080fd5b61116882611baa565b60005b83811015611bfc578181015183820152602001611be4565b50506000910152565b60008151808452611c1d816020860160208601611be1565b601f01601f19169290920160200192915050565b6020815260006111686020830184611c05565b600060208284031215611c5657600080fd5b5035919050565b60008060408385031215611c7057600080fd5b611c7983611baa565b946020939093013593505050565b600080600060608486031215611c9c57600080fd5b611ca584611baa565b9250611cb360208501611baa565b9150604084013590509250925092565b60008060408385031215611cd657600080fd5b823561ffff81168114611ce857600080fd5b9150611cf660208401611baa565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611d3e57611d3e611cff565b604052919050565b600082601f830112611d5757600080fd5b8135602067ffffffffffffffff821115611d7357611d73611cff565b8160051b611d82828201611d15565b9283528481018201928281019087851115611d9c57600080fd5b83870192505b84831015611dbb57823582529183019190830190611da2565b979650505050505050565b60008060408385031215611dd957600080fd5b82359150602083013567ffffffffffffffff811115611df757600080fd5b611e0385828601611d46565b9150509250929050565b600067ffffffffffffffff831115611e2757611e27611cff565b611e3a601f8401601f1916602001611d15565b9050828152838383011115611e4e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e7757600080fd5b813567ffffffffffffffff811115611e8e57600080fd5b8201601f81018413611e9f57600080fd5b61192584823560208401611e0d565b8015158114610eea57600080fd5b60008060408385031215611ecf57600080fd5b611ed883611baa565b91506020830135611ee881611eae565b809150509250929050565b60008060008060808587031215611f0957600080fd5b611f1285611baa565b9350611f2060208601611baa565b925060408501359150606085013567ffffffffffffffff811115611f4357600080fd5b8501601f81018713611f5457600080fd5b611f6387823560208401611e0d565b91505092959194509250565b60008060408385031215611f8257600080fd5b823567ffffffffffffffff811115611f9957600080fd5b611fa585828601611d46565b95602094909401359450505050565b60008060408385031215611fc757600080fd5b611ce883611baa565b634e487b7160e01b600052601160045260246000fd5b8181038181111561074457610744611fd0565b600181811c9082168061200d57607f821691505b60208210810361202d57634e487b7160e01b600052602260045260246000fd5b50919050565b61ffff81811683821601908082111561204e5761204e611fd0565b5092915050565b808202811582820484141761074457610744611fd0565b60208082526022908201527f4d757374206d696e74206265747765656e20746865206d696e20616e64206d616040820152613c1760f11b606082015260800190565b8082018082111561074457610744611fd0565b602080825260119082015270457863656564206d617820737570706c7960781b604082015260600190565b67ffffffffffffffff81811683821601908082111561204e5761204e611fd0565b601f8211156109ba57600081815260208120601f850160051c810160208610156121345750805b601f850160051c820191505b8181101561152e57828155600101612140565b815167ffffffffffffffff81111561216d5761216d611cff565b6121818161217b8454611ff9565b8461210d565b602080601f8311600181146121b6576000841561219e5750858301515b600019600386901b1c1916600185901b17855561152e565b600085815260208120601f198616915b828110156121e5578886015182559484019460019091019084016121c6565b50858210156122035787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008351612225818460208801611be1565b835190830190612239818360208801611be1565b64173539b7b760d91b9101908152600501949350505050565b60006020828403121561226457600080fd5b815161116881611eae565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122a290830184611c05565b9695505050505050565b6000602082840312156122be57600080fd5b815161116881611b77565b634e487b7160e01b600052603260045260246000fd5b6000600182016122f1576122f1611fd0565b506001019056fea26469706673582212204d96401b3e8910e9ae70c471980fea3d9026a6fb9ede224a29e074192e68853a64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e5375706572204554482042726f7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055355504552000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): Super ETH Bros
Arg [1] : _tokenSymbol (string): SUPER
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 5375706572204554482042726f73000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 5355504552000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
86939:6206:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53834:639;;;;;;;;;;-1:-1:-1;53834:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;53834:639:0;;;;;;;;90419:158;;;;;;;;;;-1:-1:-1;90419:158:0;;;;;:::i;:::-;;:::i;:::-;;;1107:25:1;;;1095:2;1080:18;90419:158:0;961:177:1;54736:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;61227:218::-;;;;;;;;;;-1:-1:-1;61227:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2248:32:1;;;2230:51;;2218:2;2203:18;61227:218:0;2084:203:1;60660:408:0;;;;;;:::i;:::-;;:::i;:::-;;50487:323;;;;;;;;;;;;;:::i;91602:205::-;;;;;;:::i;:::-;;:::i;90657:98::-;;;;;;;;;;;;;:::i;90083:327::-;;;;;;;;;;-1:-1:-1;90083:327:0;;;;;:::i;:::-;;:::i;88040:924::-;;;;;;:::i;:::-;;:::i;87200:41::-;;;;;;;;;;;;87237:4;87200:41;;90582:71;;;;;;;;;;;;;:::i;92566:475::-;;;;;;;;;;;;;:::i;7900:143::-;;;;;;;;;;;;228:42;7900:143;;91815:213;;;;;;:::i;:::-;;:::i;87754:25::-;;;;;;;;;;-1:-1:-1;87754:25:0;;;;;;;;;;;56129:152;;;;;;;;;;-1:-1:-1;56129:152:0;;;;;:::i;:::-;;:::i;51671:233::-;;;;;;;;;;-1:-1:-1;51671:233:0;;;;;:::i;:::-;;:::i;34613:103::-;;;;;;;;;;;;;:::i;87248:55::-;;;;;;;;;;;;87301:2;87248:55;;92469:88;;;;;;;;;;-1:-1:-1;92469:88:0;;;;;:::i;:::-;;:::i;87650:30::-;;;;;;;;;;-1:-1:-1;87650:30:0;;;;;;;;89637:439;;;;;;;;;;;;;:::i;33965:87::-;;;;;;;;;;-1:-1:-1;34038:6:0;;-1:-1:-1;;;;;34038:6:0;33965:87;;54912:104;;;;;;;;;;;;;:::i;87713:34::-;;;;;;;;;;-1:-1:-1;87713:34:0;;;;;;;;87143:48;;;;;;;;;;-1:-1:-1;87143:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;88972:657;;;;;;:::i;:::-;;:::i;91488:106::-;;;;;;;;;;-1:-1:-1;91488:106:0;;;;;:::i;:::-;;:::i;61785:234::-;;;;;;;;;;-1:-1:-1;61785:234:0;;;;;:::i;:::-;;:::i;87085:51::-;;;;;;;;;;-1:-1:-1;87085:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;87429:50;;;;;;;;;;;;87468:11;87429:50;;87540:34;;;;;;;;;;;;;;;;87486:41;;;;;;;;;;;;;;;;92036:247;;;;;;:::i;:::-;;:::i;92291:170::-;;;;;;;;;;-1:-1:-1;92291:170:0;;;;;:::i;:::-;;:::i;90877:603::-;;;;;;;;;;-1:-1:-1;90877:603:0;;;;;:::i;:::-;;:::i;62176:164::-;;;;;;;;;;-1:-1:-1;62176:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;62297:25:0;;;62273:4;62297:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;62176:164;87687:19;;;;;;;;;;;;;;;;34871:201;;;;;;;;;;-1:-1:-1;34871:201:0;;;;;:::i;:::-;;:::i;53834:639::-;53919:4;-1:-1:-1;;;;;;;;;54243:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;54320:25:0;;;54243:102;:179;;;-1:-1:-1;;;;;;;;;;54397:25:0;;;54243:179;54223:199;53834:639;-1:-1:-1;;53834:639:0:o;90419:158::-;-1:-1:-1;;;;;52646:25:0;;90492:7;52646:25;;;:18;:25;;;;;;90530:15;;:30;;46204:3;52646:40;;90530:30;:::i;54736:100::-;54790:13;54823:5;54816:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54736:100;:::o;61227:218::-;61303:7;61328:16;61336:7;61328;:16::i;:::-;61323:64;;61353:34;;-1:-1:-1;;;61353:34:0;;;;;;;;;;;61323:64;-1:-1:-1;61407:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;61407:30:0;;61227:218::o;60660:408::-;60749:13;60765:16;60773:7;60765;:16::i;:::-;60749:32;-1:-1:-1;84993:10:0;-1:-1:-1;;;;;60798:28:0;;;60794:175;;60846:44;60863:5;84993:10;62176:164;:::i;60846:44::-;60841:128;;60918:35;;-1:-1:-1;;;60918:35:0;;;;;;;;;;;60841:128;60981:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;60981:35:0;-1:-1:-1;;;;;60981:35:0;;;;;;;;;61032:28;;60981:24;;61032:28;;;;;;;60738:330;60660:408;;:::o;50487:323::-;93133:1;50761:12;50548:7;50745:13;:28;-1:-1:-1;;50745:46:0;;50487:323::o;91602:205::-;91745:4;-1:-1:-1;;;;;9408:18:0;;9416:10;9408:18;9404:83;;9443:32;9464:10;9443:20;:32::i;:::-;91762:37:::1;91781:4;91787:2;91791:7;91762:18;:37::i;:::-;91602:205:::0;;;;:::o;90657:98::-;33851:13;:11;:13::i;:::-;90732:15:::1;::::0;;-1:-1:-1;;90713:34:0;::::1;90732:15;::::0;;::::1;90731:16;90713:34;::::0;;90657:98::o;90083:327::-;33851:13;:11;:13::i;:::-;90166:18:::1;90194:13;:11;:13::i;:::-;90166:42:::0;-1:-1:-1;87237:4:0::1;90223:25;90237:11:::0;90166:42;90223:25:::1;:::i;:::-;:39;;;;90215:71;;;::::0;-1:-1:-1;;;90215:71:0;;9085:2:1;90215:71:0::1;::::0;::::1;9067:21:1::0;9124:2;9104:18;;;9097:30;-1:-1:-1;;;9143:18:1;;;9136:49;9202:18;;90215:71:0::1;;;;;;;;;90294:34;90304:9;90316:11;90294:34;;:9;:34::i;:::-;-1:-1:-1::0;;;90083:327:0:o;88040:924::-;16037:21;:19;:21::i;:::-;88176:15:::1;::::0;::::1;;88175:16;88167:57;;;::::0;-1:-1:-1;;;88167:57:0;;9433:2:1;88167:57:0::1;::::0;::::1;9415:21:1::0;9472:2;9452:18;;;9445:30;9511;9491:18;;;9484:58;9559:18;;88167:57:0::1;9231:352:1::0;88167:57:0::1;88282:28;::::0;-1:-1:-1;;88299:10:0::1;9737:2:1::0;9733:15;9729:53;88282:28:0::1;::::0;::::1;9717:66:1::0;88257:55:0::1;::::0;88265:5;;9799:12:1;;88282:28:0::1;;;;;;;;;;;;88272:39;;;;;;88257:7;:55::i;:::-;88235:128;;;::::0;-1:-1:-1;;;88235:128:0;;10024:2:1;88235:128:0::1;::::0;::::1;10006:21:1::0;10063:2;10043:18;;;10036:30;10102:25;10082:18;;;10075:53;10145:18;;88235:128:0::1;9822:347:1::0;88235:128:0::1;88409:24;87411:11;88409:6:::0;:24:::1;:::i;:::-;88396:9;:37;88374:109;;;::::0;-1:-1:-1;;;88374:109:0;;10549:2:1;88374:109:0::1;::::0;::::1;10531:21:1::0;10588:2;10568:18;;;10561:30;-1:-1:-1;;;10607:18:1;;;10600:52;10669:18;;88374:109:0::1;10347:346:1::0;88374:109:0::1;88525:1;88516:6;:10;:50;;;;;87301:2;88530:6;:36;;88516:50;88494:134;;;;-1:-1:-1::0;;;88494:134:0::1;;;;;;;:::i;:::-;87237:4;88663:6;88647:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;88639:66;;;;-1:-1:-1::0;;;88639:66:0::1;;;;;;;:::i;:::-;88755:10;88738:28;::::0;;;87301:2:::1;88738:28;::::0;;;;;;;;:37:::1;::::0;88769:6;;88738:37:::1;:::i;:::-;:67;;88716:151;;;::::0;-1:-1:-1;;;88716:151:0;;11779:2:1;88716:151:0::1;::::0;::::1;11761:21:1::0;11818:2;11798:18;;;11791:30;11857:34;11837:18;;;11830:62;-1:-1:-1;;;11908:18:1;;;11901:32;11950:19;;88716:151:0::1;11577:398:1::0;88716:151:0::1;88895:10;88878:28;::::0;;;:16:::1;:28;::::0;;;;:38;;88910:6;;88878:28;:38:::1;::::0;88910:6;;88878:38:::1;:::i;:::-;::::0;;;-1:-1:-1;88927:29:0::1;::::0;-1:-1:-1;88937:10:0::1;88949:6:::0;88927:9:::1;:29::i;:::-;16081:20:::0;15475:1;16601:7;:22;16418:213;16081:20;88040:924;;:::o;90582:71::-;33851:13;:11;:13::i;:::-;90639:6:::1;::::0;;-1:-1:-1;;90629:16:0;::::1;90639:6;::::0;;;::::1;;;90638:7;90629:16:::0;;::::1;;::::0;;90582:71::o;92566:475::-;33851:13;:11;:13::i;:::-;16037:21:::1;:19;:21::i;:::-;92863:7:::2;92884;34038:6:::0;;-1:-1:-1;;;;;34038:6:0;;33965:87;92884:7:::2;-1:-1:-1::0;;;;;92876:21:0::2;92905;92876:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92862:69;;;92946:2;92938:11;;;::::0;::::2;;92616:425;16081:20:::1;15475:1:::0;16601:7;:22;16418:213;16081:20:::1;92566:475::o:0;91815:213::-;91962:4;-1:-1:-1;;;;;9408:18:0;;9416:10;9408:18;9404:83;;9443:32;9464:10;9443:20;:32::i;:::-;91979:41:::1;92002:4;92008:2;92012:7;91979:22;:41::i;56129:152::-:0;56201:7;56244:27;56263:7;56244:18;:27::i;51671:233::-;51743:7;-1:-1:-1;;;;;51767:19:0;;51763:60;;51795:28;;-1:-1:-1;;;51795:28:0;;;;;;;;;;;51763:60;-1:-1:-1;;;;;;51841:25:0;;;;;:18;:25;;;;;;45830:13;51841:55;;51671:233::o;34613:103::-;33851:13;:11;:13::i;:::-;34678:30:::1;34705:1;34678:18;:30::i;92469:88::-:0;33851:13;:11;:13::i;:::-;92537:4:::1;:12:::0;92469:88::o;89637:439::-;87960:9;87973:10;87960:23;87952:66;;;;-1:-1:-1;;;87952:66:0;;12392:2:1;87952:66:0;;;12374:21:1;12431:2;12411:18;;;12404:30;12470:32;12450:18;;;12443:60;12520:18;;87952:66:0;12190:354:1;87952:66:0;89699:6:::1;::::0;::::1;::::0;::::1;;;89698:7;89690:35;;;::::0;-1:-1:-1;;;89690:35:0;;12751:2:1;89690:35:0::1;::::0;::::1;12733:21:1::0;12790:2;12770:18;;;12763:30;-1:-1:-1;;;12809:18:1;;;12802:45;12864:18;;89690:35:0::1;12549:339:1::0;89690:35:0::1;89753:15;::::0;87237:4:::1;89753:15:::0;89787:13:::1;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;89779:66;;;;-1:-1:-1::0;;;89779:66:0::1;;;;;;;:::i;:::-;89918:6;89873:41;89903:10;89873:29;:41::i;:::-;:51;;89865:91;;;::::0;-1:-1:-1;;;89865:91:0;;13095:2:1;89865:91:0::1;::::0;::::1;13077:21:1::0;13134:2;13114:18;;;13107:30;13173:29;13153:18;;;13146:57;13220:18;;89865:91:0::1;12893:351:1::0;89865:91:0::1;89969:29;89979:10;89991:6;89969:9;:29::i;:::-;90019:10;52613:6:::0;52646:25;;;:18;:25;;;;;;90011:57:::1;::::0;90019:10;90031:36:::1;::::0;90060:6;;46204:3;52646:40;90031:36:::1;:::i;:::-;-1:-1:-1::0;;;;;52972:25:0;;;52955:14;52972:25;;;:18;:25;;;;;;;-1:-1:-1;;;;;53172:32:0;46204:3;53209:24;;;;53171:63;;;;53245:34;;52883:404;90011:57:::1;89679:397;89637:439::o:0;54912:104::-;54968:13;55001:7;54994:14;;;;;:::i;88972:657::-;16037:21;:19;:21::i;:::-;89057:6:::1;::::0;::::1;::::0;::::1;;;89056:7;89048:35;;;::::0;-1:-1:-1;;;89048:35:0;;12751:2:1;89048:35:0::1;::::0;::::1;12733:21:1::0;12790:2;12770:18;;;12763:30;-1:-1:-1;;;12809:18:1;;;12802:45;12864:18;;89048:35:0::1;12549:339:1::0;89048:35:0::1;89115:21;87468:11;89115:6:::0;:21:::1;:::i;:::-;89102:9;:34;89094:69;;;::::0;-1:-1:-1;;;89094:69:0;;10549:2:1;89094:69:0::1;::::0;::::1;10531:21:1::0;10588:2;10568:18;;;10561:30;-1:-1:-1;;;10607:18:1;;;10600:52;10669:18;;89094:69:0::1;10347:346:1::0;89094:69:0::1;89205:1;89196:6;:10;:47;;;;;87360:2;89210:6;:33;;89196:47;89174:131;;;;-1:-1:-1::0;;;89174:131:0::1;;;;;;;:::i;:::-;87237:4;89340:6;89324:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;89316:66;;;;-1:-1:-1::0;;;89316:66:0::1;;;;;;;:::i;:::-;89429:10;89415:25;::::0;;;:13:::1;:25;::::0;;;;;87360:2:::1;::::0;89415:34:::1;::::0;89443:6;;89415:34:::1;:::i;:::-;:61;;89393:142;;;::::0;-1:-1:-1;;;89393:142:0;;13636:2:1;89393:142:0::1;::::0;::::1;13618:21:1::0;13675:2;13655:18;;;13648:30;13714:33;13694:18;;;13687:61;13765:18;;89393:142:0::1;13434:355:1::0;89393:142:0::1;89560:10;89546:25;::::0;;;:13:::1;:25;::::0;;;;:35;;89575:6;;89546:25;:35:::1;::::0;89575:6;;89546:35:::1;:::i;:::-;::::0;;;-1:-1:-1;89592:29:0::1;::::0;-1:-1:-1;89602:10:0::1;89614:6:::0;89592:9:::1;:29::i;:::-;16081:20:::0;15475:1;16601:7;:22;16418:213;91488:106;33851:13;:11;:13::i;:::-;91565:7:::1;:21;91575:11:::0;91565:7;:21:::1;:::i;61785:234::-:0;84993:10;61880:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;61880:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;61880:60:0;;;;;;;;;;61956:55;;540:41:1;;;61880:49:0;;84993:10;61956:55;;513:18:1;61956:55:0;;;;;;;61785:234;;:::o;92036:247::-;92211:4;-1:-1:-1;;;;;9408:18:0;;9416:10;9408:18;9404:83;;9443:32;9464:10;9443:20;:32::i;:::-;92228:47:::1;92251:4;92257:2;92261:7;92270:4;92228:22;:47::i;:::-;92036:247:::0;;;;;:::o;92291:170::-;92392:4;92416:37;92435:5;92442:4;;92448;92416:18;:37::i;:::-;92409:44;92291:170;-1:-1:-1;;;92291:170:0:o;90877:603::-;90967:13;91015:17;91023:8;91015:7;:17::i;:::-;90993:114;;;;-1:-1:-1;;;90993:114:0;;16200:2:1;90993:114:0;;;16182:21:1;16239:2;16219:18;;;16212:30;16278:34;16258:18;;;16251:62;-1:-1:-1;;;16329:18:1;;;16322:45;16384:19;;90993:114:0;15998:411:1;90993:114:0;91118:28;91149:10;:8;:10::i;:::-;91118:41;;91221:1;91196:14;91190:28;:32;:282;;;;;;;;;;;;;;;;;91314:14;91355:19;:8;:17;:19::i;:::-;91271:160;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91170:302;90877:603;-1:-1:-1;;;90877:603:0:o;34871:201::-;33851:13;:11;:13::i;:::-;-1:-1:-1;;;;;34960:22:0;::::1;34952:73;;;::::0;-1:-1:-1;;;34952:73:0;;17284:2:1;34952:73:0::1;::::0;::::1;17266:21:1::0;17323:2;17303:18;;;17296:30;17362:34;17342:18;;;17335:62;-1:-1:-1;;;17413:18:1;;;17406:36;17459:19;;34952:73:0::1;17082:402:1::0;34952:73:0::1;35036:28;35055:8;35036:18;:28::i;62598:282::-:0;62663:4;62719:7;93133:1;62700:26;;:66;;;;;62753:13;;62743:7;:23;62700:66;:153;;;;-1:-1:-1;;62804:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;62804:44:0;:49;;62598:282::o;9825:647::-;228:42;10016:45;:49;10012:453;;10315:67;;-1:-1:-1;;;10315:67:0;;10366:4;10315:67;;;17701:34:1;-1:-1:-1;;;;;17771:15:1;;17751:18;;;17744:43;228:42:0;;10315;;17636:18:1;;10315:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10310:144;;10410:28;;-1:-1:-1;;;10410:28:0;;-1:-1:-1;;;;;2248:32:1;;10410:28:0;;;2230:51:1;2203:18;;10410:28:0;2084:203:1;64866:2825:0;65008:27;65038;65057:7;65038:18;:27::i;:::-;65008:57;;65123:4;-1:-1:-1;;;;;65082:45:0;65098:19;-1:-1:-1;;;;;65082:45:0;;65078:86;;65136:28;;-1:-1:-1;;;65136:28:0;;;;;;;;;;;65078:86;65178:27;63974:24;;;:15;:24;;;;;64202:26;;84993:10;63599:30;;;-1:-1:-1;;;;;63292:28:0;;63577:20;;;63574:56;65364:180;;65457:43;65474:4;84993:10;62176:164;:::i;65457:43::-;65452:92;;65509:35;;-1:-1:-1;;;65509:35:0;;;;;;;;;;;65452:92;-1:-1:-1;;;;;65561:16:0;;65557:52;;65586:23;;-1:-1:-1;;;65586:23:0;;;;;;;;;;;65557:52;65758:15;65755:160;;;65898:1;65877:19;65870:30;65755:160;-1:-1:-1;;;;;66295:24:0;;;;;;;:18;:24;;;;;;66293:26;;-1:-1:-1;;66293:26:0;;;66364:22;;;;;;;;;66362:24;;-1:-1:-1;66362:24:0;;;59518:11;59493:23;59489:41;59476:63;-1:-1:-1;;;59476:63:0;66657:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;66952:47:0;;:52;;66948:627;;67057:1;67047:11;;67025:19;67180:30;;;:17;:30;;;;;;:35;;67176:384;;67318:13;;67303:11;:28;67299:242;;67465:30;;;;:17;:30;;;;;:52;;;67299:242;67006:569;66948:627;67622:7;67618:2;-1:-1:-1;;;;;67603:27:0;67612:4;-1:-1:-1;;;;;67603:27:0;;;;;;;;;;;67641:42;64997:2694;;;64866:2825;;;:::o;34130:132::-;34038:6;;-1:-1:-1;;;;;34038:6:0;84993:10;34194:23;34186:68;;;;-1:-1:-1;;;34186:68:0;;18250:2:1;34186:68:0;;;18232:21:1;;;18269:18;;;18262:30;18328:34;18308:18;;;18301:62;18380:18;;34186:68:0;18048:356:1;78738:112:0;78815:27;78825:2;78829:8;78815:27;;;;;;;;;;;;:9;:27::i;16117:293::-;15519:1;16251:7;;:19;16243:63;;;;-1:-1:-1;;;16243:63:0;;18611:2:1;16243:63:0;;;18593:21:1;18650:2;18630:18;;;18623:30;18689:33;18669:18;;;18662:61;18740:18;;16243:63:0;18409:355:1;16243:63:0;15519:1;16384:7;:18;16117:293::o;67787:193::-;67933:39;67950:4;67956:2;67960:7;67933:39;;;;;;;;;;;;:16;:39::i;57284:1275::-;57351:7;57386;;93133:1;57435:23;57431:1061;;57488:13;;57481:4;:20;57477:1015;;;57526:14;57543:23;;;:17;:23;;;;;;;-1:-1:-1;;;57632:24:0;;:29;;57628:845;;58297:113;58304:6;58314:1;58304:11;58297:113;;-1:-1:-1;;;58375:6:0;58357:25;;;;:17;:25;;;;;;58297:113;;57628:845;57503:989;57477:1015;58520:31;;-1:-1:-1;;;58520:31:0;;;;;;;;;;;35232:191;35325:6;;;-1:-1:-1;;;;;35342:17:0;;;-1:-1:-1;;;;;;35342:17:0;;;;;;;35375:40;;35325:6;;;35342:17;35325:6;;35375:40;;35306:16;;35375:40;35295:128;35232:191;:::o;68578:407::-;68753:31;68766:4;68772:2;68776:7;68753:12;:31::i;:::-;-1:-1:-1;;;;;68799:14:0;;;:19;68795:183;;68838:56;68869:4;68875:2;68879:7;68888:5;68838:30;:56::i;:::-;68833:145;;68922:40;;-1:-1:-1;;;68922:40:0;;;;;;;;;;;12226:190;12351:4;12404;12375:25;12388:5;12395:4;12375:12;:25::i;:::-;:33;;12226:190;-1:-1:-1;;;;12226:190:0:o;90761:108::-;90821:13;90854:7;90847:14;;;;;:::i;29943:716::-;29999:13;30050:14;30067:17;30078:5;30067:10;:17::i;:::-;30087:1;30067:21;30050:38;;30103:20;30137:6;30126:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30126:18:0;-1:-1:-1;30103:41:0;-1:-1:-1;30268:28:0;;;30284:2;30268:28;30325:288;-1:-1:-1;;30357:5:0;-1:-1:-1;;;30494:2:0;30483:14;;30478:30;30357:5;30465:44;30555:2;30546:11;;;-1:-1:-1;30576:21:0;30325:288;30576:21;-1:-1:-1;30634:6:0;29943:716;-1:-1:-1;;;29943:716:0:o;77965:689::-;78096:19;78102:2;78106:8;78096:5;:19::i;:::-;-1:-1:-1;;;;;78157:14:0;;;:19;78153:483;;78197:11;78211:13;78259:14;;;78292:233;78323:62;78362:1;78366:2;78370:7;;;;;;78379:5;78323:30;:62::i;:::-;78318:167;;78421:40;;-1:-1:-1;;;78421:40:0;;;;;;;;;;;78318:167;78520:3;78512:5;:11;78292:233;;78607:3;78590:13;;:20;78586:34;;78612:8;;;71069:716;71253:88;;-1:-1:-1;;;71253:88:0;;71232:4;;-1:-1:-1;;;;;71253:45:0;;;;;:88;;84993:10;;71320:4;;71326:7;;71335:5;;71253:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71253:88:0;;;;;;;;-1:-1:-1;;71253:88:0;;;;;;;;;;;;:::i;:::-;;;71249:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71536:6;:13;71553:1;71536:18;71532:235;;71582:40;;-1:-1:-1;;;71582:40:0;;;;;;;;;;;71532:235;71725:6;71719:13;71710:6;71706:2;71702:15;71695:38;71249:529;-1:-1:-1;;;;;;71412:64:0;-1:-1:-1;;;71412:64:0;;-1:-1:-1;71249:529:0;71069:716;;;;;;:::o;12778:675::-;12861:7;12904:4;12861:7;12919:497;12943:5;:12;12939:1;:16;12919:497;;;12977:20;13000:5;13006:1;13000:8;;;;;;;;:::i;:::-;;;;;;;12977:31;;13043:12;13027;:28;13023:382;;13529:13;13579:15;;;13615:4;13608:15;;;13662:4;13646:21;;13155:57;;13023:382;;;13529:13;13579:15;;;13615:4;13608:15;;;13662:4;13646:21;;13332:57;;13023:382;-1:-1:-1;12957:3:0;;;;:::i;:::-;;;;12919:497;;;-1:-1:-1;13433:12:0;12778:675;-1:-1:-1;;;12778:675:0:o;26809:922::-;26862:7;;-1:-1:-1;;;26940:15:0;;26936:102;;-1:-1:-1;;;26976:15:0;;;-1:-1:-1;27020:2:0;27010:12;26936:102;27065:6;27056:5;:15;27052:102;;27101:6;27092:15;;;-1:-1:-1;27136:2:0;27126:12;27052:102;27181:6;27172:5;:15;27168:102;;27217:6;27208:15;;;-1:-1:-1;27252:2:0;27242:12;27168:102;27297:5;27288;:14;27284:99;;27332:5;27323:14;;;-1:-1:-1;27366:1:0;27356:11;27284:99;27410:5;27401;:14;27397:99;;27445:5;27436:14;;;-1:-1:-1;27479:1:0;27469:11;27397:99;27523:5;27514;:14;27510:99;;27558:5;27549:14;;;-1:-1:-1;27592:1:0;27582:11;27510:99;27636:5;27627;:14;27623:66;;27672:1;27662:11;27717:6;26809:922;-1:-1:-1;;26809:922:0:o;72247:2966::-;72320:20;72343:13;;;72371;;;72367:44;;72393:18;;-1:-1:-1;;;72393:18:0;;;;;;;;;;;72367:44;-1:-1:-1;;;;;72899:22:0;;;;;;:18;:22;;;;45968:2;72899:22;;;:71;;72937:32;72925:45;;72899:71;;;73213:31;;;:17;:31;;;;;-1:-1:-1;59949:15:0;;59923:24;59919:46;59518:11;59493:23;59489:41;59486:52;59476:63;;73213:173;;73448:23;;;;73213:31;;72899:22;;74213:25;72899:22;;74066:335;74727:1;74713:12;74709:20;74667:346;74768:3;74759:7;74756:16;74667:346;;74986:7;74976:8;74973:1;74946:25;74943:1;74940;74935:59;74821:1;74808:15;74667:346;;;74671:77;75046:8;75058:1;75046:13;75042:45;;75068:19;;-1:-1:-1;;;75068:19:0;;;;;;;;;;;75042:45;75104:13;:19;-1:-1:-1;;;;90083:327:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:173::-;660:20;;-1:-1:-1;;;;;709:31:1;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:186::-;829:6;882:2;870:9;861:7;857:23;853:32;850:52;;;898:1;895;888:12;850:52;921:29;940:9;921:29;:::i;1143:250::-;1228:1;1238:113;1252:6;1249:1;1246:13;1238:113;;;1328:11;;;1322:18;1309:11;;;1302:39;1274:2;1267:10;1238:113;;;-1:-1:-1;;1385:1:1;1367:16;;1360:27;1143:250::o;1398:271::-;1440:3;1478:5;1472:12;1505:6;1500:3;1493:19;1521:76;1590:6;1583:4;1578:3;1574:14;1567:4;1560:5;1556:16;1521:76;:::i;:::-;1651:2;1630:15;-1:-1:-1;;1626:29:1;1617:39;;;;1658:4;1613:50;;1398:271;-1:-1:-1;;1398:271:1:o;1674:220::-;1823:2;1812:9;1805:21;1786:4;1843:45;1884:2;1873:9;1869:18;1861:6;1843:45;:::i;1899:180::-;1958:6;2011:2;1999:9;1990:7;1986:23;1982:32;1979:52;;;2027:1;2024;2017:12;1979:52;-1:-1:-1;2050:23:1;;1899:180;-1:-1:-1;1899:180:1:o;2292:254::-;2360:6;2368;2421:2;2409:9;2400:7;2396:23;2392:32;2389:52;;;2437:1;2434;2427:12;2389:52;2460:29;2479:9;2460:29;:::i;:::-;2450:39;2536:2;2521:18;;;;2508:32;;-1:-1:-1;;;2292:254:1:o;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;2884:346::-;2951:6;2959;3012:2;3000:9;2991:7;2987:23;2983:32;2980:52;;;3028:1;3025;3018:12;2980:52;3067:9;3054:23;3117:6;3110:5;3106:18;3099:5;3096:29;3086:57;;3139:1;3136;3129:12;3086:57;3162:5;-1:-1:-1;3186:38:1;3220:2;3205:18;;3186:38;:::i;:::-;3176:48;;2884:346;;;;;:::o;3235:127::-;3296:10;3291:3;3287:20;3284:1;3277:31;3327:4;3324:1;3317:15;3351:4;3348:1;3341:15;3367:275;3438:2;3432:9;3503:2;3484:13;;-1:-1:-1;;3480:27:1;3468:40;;3538:18;3523:34;;3559:22;;;3520:62;3517:88;;;3585:18;;:::i;:::-;3621:2;3614:22;3367:275;;-1:-1:-1;3367:275:1:o;3647:712::-;3701:5;3754:3;3747:4;3739:6;3735:17;3731:27;3721:55;;3772:1;3769;3762:12;3721:55;3808:6;3795:20;3834:4;3857:18;3853:2;3850:26;3847:52;;;3879:18;;:::i;:::-;3925:2;3922:1;3918:10;3948:28;3972:2;3968;3964:11;3948:28;:::i;:::-;4010:15;;;4080;;;4076:24;;;4041:12;;;;4112:15;;;4109:35;;;4140:1;4137;4130:12;4109:35;4176:2;4168:6;4164:15;4153:26;;4188:142;4204:6;4199:3;4196:15;4188:142;;;4270:17;;4258:30;;4221:12;;;;4308;;;;4188:142;;;4348:5;3647:712;-1:-1:-1;;;;;;;3647:712:1:o;4364:416::-;4457:6;4465;4518:2;4506:9;4497:7;4493:23;4489:32;4486:52;;;4534:1;4531;4524:12;4486:52;4570:9;4557:23;4547:33;;4631:2;4620:9;4616:18;4603:32;4658:18;4650:6;4647:30;4644:50;;;4690:1;4687;4680:12;4644:50;4713:61;4766:7;4757:6;4746:9;4742:22;4713:61;:::i;:::-;4703:71;;;4364:416;;;;;:::o;5209:407::-;5274:5;5308:18;5300:6;5297:30;5294:56;;;5330:18;;:::i;:::-;5368:57;5413:2;5392:15;;-1:-1:-1;;5388:29:1;5419:4;5384:40;5368:57;:::i;:::-;5359:66;;5448:6;5441:5;5434:21;5488:3;5479:6;5474:3;5470:16;5467:25;5464:45;;;5505:1;5502;5495:12;5464:45;5554:6;5549:3;5542:4;5535:5;5531:16;5518:43;5608:1;5601:4;5592:6;5585:5;5581:18;5577:29;5570:40;5209:407;;;;;:::o;5621:451::-;5690:6;5743:2;5731:9;5722:7;5718:23;5714:32;5711:52;;;5759:1;5756;5749:12;5711:52;5799:9;5786:23;5832:18;5824:6;5821:30;5818:50;;;5864:1;5861;5854:12;5818:50;5887:22;;5940:4;5932:13;;5928:27;-1:-1:-1;5918:55:1;;5969:1;5966;5959:12;5918:55;5992:74;6058:7;6053:2;6040:16;6035:2;6031;6027:11;5992:74;:::i;6077:118::-;6163:5;6156:13;6149:21;6142:5;6139:32;6129:60;;6185:1;6182;6175:12;6200:315;6265:6;6273;6326:2;6314:9;6305:7;6301:23;6297:32;6294:52;;;6342:1;6339;6332:12;6294:52;6365:29;6384:9;6365:29;:::i;:::-;6355:39;;6444:2;6433:9;6429:18;6416:32;6457:28;6479:5;6457:28;:::i;:::-;6504:5;6494:15;;;6200:315;;;;;:::o;6520:667::-;6615:6;6623;6631;6639;6692:3;6680:9;6671:7;6667:23;6663:33;6660:53;;;6709:1;6706;6699:12;6660:53;6732:29;6751:9;6732:29;:::i;:::-;6722:39;;6780:38;6814:2;6803:9;6799:18;6780:38;:::i;:::-;6770:48;;6865:2;6854:9;6850:18;6837:32;6827:42;;6920:2;6909:9;6905:18;6892:32;6947:18;6939:6;6936:30;6933:50;;;6979:1;6976;6969:12;6933:50;7002:22;;7055:4;7047:13;;7043:27;-1:-1:-1;7033:55:1;;7084:1;7081;7074:12;7033:55;7107:74;7173:7;7168:2;7155:16;7150:2;7146;7142:11;7107:74;:::i;:::-;7097:84;;;6520:667;;;;;;;:::o;7192:416::-;7285:6;7293;7346:2;7334:9;7325:7;7321:23;7317:32;7314:52;;;7362:1;7359;7352:12;7314:52;7402:9;7389:23;7435:18;7427:6;7424:30;7421:50;;;7467:1;7464;7457:12;7421:50;7490:61;7543:7;7534:6;7523:9;7519:22;7490:61;:::i;:::-;7480:71;7598:2;7583:18;;;;7570:32;;-1:-1:-1;;;;7192:416:1:o;7613:260::-;7681:6;7689;7742:2;7730:9;7721:7;7717:23;7713:32;7710:52;;;7758:1;7755;7748:12;7710:52;7781:29;7800:9;7781:29;:::i;8060:127::-;8121:10;8116:3;8112:20;8109:1;8102:31;8152:4;8149:1;8142:15;8176:4;8173:1;8166:15;8192:128;8259:9;;;8280:11;;;8277:37;;;8294:18;;:::i;8325:380::-;8404:1;8400:12;;;;8447;;;8468:61;;8522:4;8514:6;8510:17;8500:27;;8468:61;8575:2;8567:6;8564:14;8544:18;8541:38;8538:161;;8621:10;8616:3;8612:20;8609:1;8602:31;8656:4;8653:1;8646:15;8684:4;8681:1;8674:15;8538:161;;8325:380;;;:::o;8710:168::-;8777:6;8803:10;;;8815;;;8799:27;;8838:11;;;8835:37;;;8852:18;;:::i;:::-;8835:37;8710:168;;;;:::o;10174:::-;10247:9;;;10278;;10295:15;;;10289:22;;10275:37;10265:71;;10316:18;;:::i;10698:398::-;10900:2;10882:21;;;10939:2;10919:18;;;10912:30;10978:34;10973:2;10958:18;;10951:62;-1:-1:-1;;;11044:2:1;11029:18;;11022:32;11086:3;11071:19;;10698:398::o;11101:125::-;11166:9;;;11187:10;;;11184:36;;;11200:18;;:::i;11231:341::-;11433:2;11415:21;;;11472:2;11452:18;;;11445:30;-1:-1:-1;;;11506:2:1;11491:18;;11484:47;11563:2;11548:18;;11231:341::o;13249:180::-;13316:18;13354:10;;;13366;;;13350:27;;13389:11;;;13386:37;;;13403:18;;:::i;13920:545::-;14022:2;14017:3;14014:11;14011:448;;;14058:1;14083:5;14079:2;14072:17;14128:4;14124:2;14114:19;14198:2;14186:10;14182:19;14179:1;14175:27;14169:4;14165:38;14234:4;14222:10;14219:20;14216:47;;;-1:-1:-1;14257:4:1;14216:47;14312:2;14307:3;14303:12;14300:1;14296:20;14290:4;14286:31;14276:41;;14367:82;14385:2;14378:5;14375:13;14367:82;;;14430:17;;;14411:1;14400:13;14367:82;;14641:1352;14767:3;14761:10;14794:18;14786:6;14783:30;14780:56;;;14816:18;;:::i;:::-;14845:97;14935:6;14895:38;14927:4;14921:11;14895:38;:::i;:::-;14889:4;14845:97;:::i;:::-;14997:4;;15061:2;15050:14;;15078:1;15073:663;;;;15780:1;15797:6;15794:89;;;-1:-1:-1;15849:19:1;;;15843:26;15794:89;-1:-1:-1;;14598:1:1;14594:11;;;14590:24;14586:29;14576:40;14622:1;14618:11;;;14573:57;15896:81;;15043:944;;15073:663;13867:1;13860:14;;;13904:4;13891:18;;-1:-1:-1;;15109:20:1;;;15227:236;15241:7;15238:1;15235:14;15227:236;;;15330:19;;;15324:26;15309:42;;15422:27;;;;15390:1;15378:14;;;;15257:19;;15227:236;;;15231:3;15491:6;15482:7;15479:19;15476:201;;;15552:19;;;15546:26;-1:-1:-1;;15635:1:1;15631:14;;;15647:3;15627:24;15623:37;15619:42;15604:58;15589:74;;15476:201;-1:-1:-1;;;;;15723:1:1;15707:14;;;15703:22;15690:36;;-1:-1:-1;14641:1352:1:o;16414:663::-;16694:3;16732:6;16726:13;16748:66;16807:6;16802:3;16795:4;16787:6;16783:17;16748:66;:::i;:::-;16877:13;;16836:16;;;;16899:70;16877:13;16836:16;16946:4;16934:17;;16899:70;:::i;:::-;-1:-1:-1;;;16991:20:1;;17020:22;;;17069:1;17058:13;;16414:663;-1:-1:-1;;;;16414:663:1:o;17798:245::-;17865:6;17918:2;17906:9;17897:7;17893:23;17889:32;17886:52;;;17934:1;17931;17924:12;17886:52;17966:9;17960:16;17985:28;18007:5;17985:28;:::i;18901:489::-;-1:-1:-1;;;;;19170:15:1;;;19152:34;;19222:15;;19217:2;19202:18;;19195:43;19269:2;19254:18;;19247:34;;;19317:3;19312:2;19297:18;;19290:31;;;19095:4;;19338:46;;19364:19;;19356:6;19338:46;:::i;:::-;19330:54;18901:489;-1:-1:-1;;;;;;18901:489:1:o;19395:249::-;19464:6;19517:2;19505:9;19496:7;19492:23;19488:32;19485:52;;;19533:1;19530;19523:12;19485:52;19565:9;19559:16;19584:30;19608:5;19584:30;:::i;19649:127::-;19710:10;19705:3;19701:20;19698:1;19691:31;19741:4;19738:1;19731:15;19765:4;19762:1;19755:15;19781:135;19820:3;19841:17;;;19838:43;;19861:18;;:::i;:::-;-1:-1:-1;19908:1:1;19897:13;;19781:135::o
Swarm Source
ipfs://4d96401b3e8910e9ae70c471980fea3d9026a6fb9ede224a29e074192e68853a
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.