Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,200 MC
Holders
1,091
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MisfitClub
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-20 */ // 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 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 256, 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 << 3) < value ? 1 : 0); } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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 `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @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); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/chiru-labs/ERC721A/blob/main/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: https://github.com/chiru-labs/ERC721A/blob/main/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.selector); 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.selector); 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 Returns whether the ownership slot at `index` is initialized. * An uninitialized slot does not necessarily mean that the slot has no owner. */ function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) { return _packedOwnerships[index] != 0; } /** * @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 packed) { if (_startTokenId() <= tokenId) { packed = _packedOwnerships[tokenId]; // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector); // 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, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = _packedOwnerships[--tokenId]; } if (packed == 0) continue; if (packed & _BITMASK_BURNED == 0) return packed; // Otherwise, the token is burned, and we must revert. // This handles the case of batch burned tokens, where only the burned bit // of the starting slot is set, and remaining slots are left uninitialized. _revert(OwnerQueryForNonexistentToken.selector); } } // Otherwise, the data exists and we can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. // If the token is not burned, return `packed`. Otherwise, revert. if (packed & _BITMASK_BURNED == 0) return packed; } _revert(OwnerQueryForNonexistentToken.selector); } /** * @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. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @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.selector); 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 result) { if (_startTokenId() <= tokenId) { if (tokenId < _currentIndex) { uint256 packed; while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId; result = packed & _BITMASK_BURNED == 0; } } } /** * @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); // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS)); if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector); (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.selector); _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; } } } } // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; assembly { // 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. from, // `from`. toMasked, // `to`. tokenId // `tokenId`. ) } if (toMasked == 0) _revert(TransferToZeroAddress.selector); _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.selector); } } /** * @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.selector); } 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.selector); _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: // - `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) ); // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS; if (toMasked == 0) _revert(MintToZeroAddress.selector); uint256 end = startTokenId + quantity; uint256 tokenId = startTokenId; do { assembly { // 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`. tokenId // `tokenId`. ) } // The `!=` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. } while (++tokenId != end); _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.selector); if (quantity == 0) _revert(MintZeroQuantity.selector); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector); _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.selector); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) _revert(bytes4(0)); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @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: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve( address to, uint256 tokenId, bool approvalCheck ) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck && _msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { _revert(ApprovalCallerNotOwnerNorApproved.selector); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // 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.selector); } _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.selector); 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) } } /** * @dev For more efficient reverts. */ function _revert(bytes4 errorSelector) internal pure { assembly { mstore(0x00, errorSelector) revert(0x00, 0x04) } } } // File: contracts/Misfit Club.sol pragma solidity >=0.8.9 <0.9.0; contract MisfitClub is ERC721A, Ownable, DefaultOperatorFilterer, ReentrancyGuard { using Strings for uint256; uint256 public cost = 0.005 ether; uint256 public maxSupplys = 2200; uint256 public txnMax = 10; uint256 public maxFreeMintEach = 2; uint256 public maxMintAmount = 10; string public uriPrefix = 'https://bafybeicd6p6ez6fojtbjfuiiuabs7fh3u6uhtvehbcetggpjkgebg2e3pq.ipfs.nftstorage.link/'; string public uriSuffix = '.json'; string public hiddenMetadataUri = ""; bool public revealed = true; bool public paused = false; constructor( ) ERC721A("Misfit Club", "MC") { } modifier SupplyCompliance(uint256 _mintAmount) { require(!paused, "sale has not started."); require(tx.origin == msg.sender, "no bots are allowed."); require(_mintAmount > 0 && _mintAmount <= txnMax, "Maximum of 10 per txn!"); require(totalSupply() + _mintAmount <= maxSupplys, "No Supplys lefts!"); require( _mintAmount > 0 && numberMinted(msg.sender) + _mintAmount <= maxMintAmount, "You may have minted max number !" ); _; } modifier SupplyPriceCompliance(uint256 _mintAmount) { uint256 realCost = 0; if (numberMinted(msg.sender) < maxFreeMintEach) { uint256 freeMintsLeft = maxFreeMintEach - numberMinted(msg.sender); realCost = cost * freeMintsLeft; } require(msg.value >= cost * _mintAmount - realCost, "Insufficient/incorrect funds."); _; } function mint(uint256 _mintAmount) public payable SupplyCompliance(_mintAmount) SupplyPriceCompliance(_mintAmount) { _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { require(totalSupply() + _mintAmount <= maxSupplys, "Max supply exceeded!"); _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setmaxFreeMintEach(uint256 _maxFreeMintEach) public onlyOwner { maxFreeMintEach = _maxFreeMintEach; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setMaxSupplys(uint256 _maxSupplys) public onlyOwner { maxSupplys = _maxSupplys; } function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner { maxMintAmount = _maxMintAmount; } function withdraw() public onlyOwner nonReentrant { (bool withdrawFunds, ) = payable(owner()).call{value: address(this).balance}(""); require(withdrawFunds); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintEach","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplys","type":"uint256"}],"name":"setMaxSupplys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMintEach","type":"uint256"}],"name":"setmaxFreeMintEach","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":"txnMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526611c37937e08000600a55610898600b55600a600c556002600d55600a600e55604051806080016040528060598152602001620041e460599139600f90816200004e919062000730565b506040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506010908162000095919062000730565b506040518060200160405280600081525060119081620000b6919062000730565b506001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff021916908315150217905550348015620000fa57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600b81526020017f4d697366697420436c75620000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d4300000000000000000000000000000000000000000000000000000000000081525081600290816200018f919062000730565b508060039081620001a1919062000730565b50620001b2620003df60201b60201c565b6000819055505050620001da620001ce620003e860201b60201c565b620003f060201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003cf57801562000295576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200025b9291906200085c565b600060405180830381600087803b1580156200027657600080fd5b505af11580156200028b573d6000803e3d6000fd5b50505050620003ce565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200034f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620003159291906200085c565b600060405180830381600087803b1580156200033057600080fd5b505af115801562000345573d6000803e3d6000fd5b50505050620003cd565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000398919062000889565b600060405180830381600087803b158015620003b357600080fd5b505af1158015620003c8573d6000803e3d6000fd5b505050505b5b5b50506001600981905550620008a6565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200053857607f821691505b6020821081036200054e576200054d620004f0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005b87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000579565b620005c4868362000579565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006116200060b6200060584620005dc565b620005e6565b620005dc565b9050919050565b6000819050919050565b6200062d83620005f0565b620006456200063c8262000618565b84845462000586565b825550505050565b600090565b6200065c6200064d565b6200066981848462000622565b505050565b5b8181101562000691576200068560008262000652565b6001810190506200066f565b5050565b601f821115620006e057620006aa8162000554565b620006b58462000569565b81016020851015620006c5578190505b620006dd620006d48562000569565b8301826200066e565b50505b505050565b600082821c905092915050565b60006200070560001984600802620006e5565b1980831691505092915050565b6000620007208383620006f2565b9150826002028217905092915050565b6200073b82620004b6565b67ffffffffffffffff811115620007575762000756620004c1565b5b6200076382546200051f565b6200077082828562000695565b600060209050601f831160018114620007a8576000841562000793578287015190505b6200079f858262000712565b8655506200080f565b601f198416620007b88662000554565b60005b82811015620007e257848901518255600182019150602085019450602081019050620007bb565b86831015620008025784890151620007fe601f891682620006f2565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008448262000817565b9050919050565b620008568162000837565b82525050565b60006040820190506200087360008301856200084b565b6200088260208301846200084b565b9392505050565b6000602082019050620008a060008301846200084b565b92915050565b61392e80620008b66000396000f3fe6080604052600436106102465760003560e01c806362b99ad411610139578063a22cb465116100b6578063e0a808531161007a578063e0a8085314610815578063e985e9c51461083e578063ebe2e3aa1461087b578063efbd73f4146108a4578063f2fde38b146108cd578063f9308cc5146108f657610246565b8063a22cb4651461072b578063a45ba8e714610754578063b88d4fde1461077f578063c87b56dd1461079b578063dc33e681146107d857610246565b80638a68d451116100fd5780638a68d451146106635780638da5cb5b1461068e57806395d89b41146106b95780639a85f86d146106e4578063a0712d681461070f57610246565b806362b99ad41461057e5780636352211e146105a957806370a08231146105e6578063715018a6146106235780637ec4a6591461063a57610246565b8063239c70ae116101c757806344a0d68a1161018b57806344a0d68a146104ab5780634fdd43cb146104d457806351830227146104fd5780635503a0e8146105285780635c975abb1461055357610246565b8063239c70ae1461040657806323b872dd146104315780633ccfd60b1461044d57806341f434341461046457806342842e0e1461048f57610246565b806313faede61161020e57806313faede61461033557806316ba10e01461036057806316c38b3c1461038957806318160ddd146103b257806322414323146103dd57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063088a4ed0146102f0578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190612660565b610921565b60405161027f91906126a8565b60405180910390f35b34801561029457600080fd5b5061029d6109b3565b6040516102aa9190612753565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906127ab565b610a45565b6040516102e79190612819565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906127ab565b610aa3565b005b610333600480360381019061032e9190612860565b610ab5565b005b34801561034157600080fd5b5061034a610ac5565b60405161035791906128af565b60405180910390f35b34801561036c57600080fd5b50610387600480360381019061038291906129ff565b610acb565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612a74565b610ae6565b005b3480156103be57600080fd5b506103c7610b0b565b6040516103d491906128af565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906127ab565b610b22565b005b34801561041257600080fd5b5061041b610b34565b60405161042891906128af565b60405180910390f35b61044b60048036038101906104469190612aa1565b610b3a565b005b34801561045957600080fd5b50610462610dfb565b005b34801561047057600080fd5b50610479610e93565b6040516104869190612b53565b60405180910390f35b6104a960048036038101906104a49190612aa1565b610ea5565b005b3480156104b757600080fd5b506104d260048036038101906104cd91906127ab565b610ec5565b005b3480156104e057600080fd5b506104fb60048036038101906104f691906129ff565b610ed7565b005b34801561050957600080fd5b50610512610ef2565b60405161051f91906126a8565b60405180910390f35b34801561053457600080fd5b5061053d610f05565b60405161054a9190612753565b60405180910390f35b34801561055f57600080fd5b50610568610f93565b60405161057591906126a8565b60405180910390f35b34801561058a57600080fd5b50610593610fa6565b6040516105a09190612753565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb91906127ab565b611034565b6040516105dd9190612819565b60405180910390f35b3480156105f257600080fd5b5061060d60048036038101906106089190612b6e565b611046565b60405161061a91906128af565b60405180910390f35b34801561062f57600080fd5b506106386110dd565b005b34801561064657600080fd5b50610661600480360381019061065c91906129ff565b6110f1565b005b34801561066f57600080fd5b5061067861110c565b60405161068591906128af565b60405180910390f35b34801561069a57600080fd5b506106a3611112565b6040516106b09190612819565b60405180910390f35b3480156106c557600080fd5b506106ce61113c565b6040516106db9190612753565b60405180910390f35b3480156106f057600080fd5b506106f96111ce565b60405161070691906128af565b60405180910390f35b610729600480360381019061072491906127ab565b6111d4565b005b34801561073757600080fd5b50610752600480360381019061074d9190612b9b565b611452565b005b34801561076057600080fd5b5061076961146b565b6040516107769190612753565b60405180910390f35b61079960048036038101906107949190612c7c565b6114f9565b005b3480156107a757600080fd5b506107c260048036038101906107bd91906127ab565b61154b565b6040516107cf9190612753565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612b6e565b6116a3565b60405161080c91906128af565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190612a74565b6116b5565b005b34801561084a57600080fd5b5061086560048036038101906108609190612cff565b6116da565b60405161087291906126a8565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d91906127ab565b61176e565b005b3480156108b057600080fd5b506108cb60048036038101906108c69190612d3f565b611780565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190612b6e565b6117ed565b005b34801561090257600080fd5b5061090b611870565b60405161091891906128af565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ac5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109c290612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546109ee90612dae565b8015610a3b5780601f10610a1057610100808354040283529160200191610a3b565b820191906000526020600020905b815481529060010190602001808311610a1e57829003601f168201915b5050505050905090565b6000610a5082611876565b610a6557610a6463cf4700e460e01b6118ef565b5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610aab6118f9565b80600e8190555050565b610ac182826001611977565b5050565b600a5481565b610ad36118f9565b8060109081610ae29190612f81565b5050565b610aee6118f9565b80601260016101000a81548160ff02191690831515021790555050565b6000610b15611aa6565b6001546000540303905090565b610b2a6118f9565b80600b8190555050565b600e5481565b6000610b4582611aaf565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bba57610bb963a114810060e01b6118ef565b5b600080610bc684611b9b565b91509150610bdc8187610bd7611bc2565b611bca565b610c0757610bf186610bec611bc2565b6116da565b610c0657610c056359c896be60e01b6118ef565b5b5b610c148686866001611c0e565b8015610c1f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ced85610cc9888887611c14565b7c020000000000000000000000000000000000000000000000000000000017611c3c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d735760006001850190506000600460008381526020019081526020016000205403610d71576000548114610d70578360046000838152602001908152602001600020819055505b5b505b600073ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460008103610de557610de463ea553b3460e01b6118ef565b5b610df28787876001611c67565b50505050505050565b610e036118f9565b610e0b611c6d565b6000610e15611112565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e3890613084565b60006040518083038185875af1925050503d8060008114610e75576040519150601f19603f3d011682016040523d82523d6000602084013e610e7a565b606091505b5050905080610e8857600080fd5b50610e91611cbc565b565b6daaeb6d7670e522a718067333cd4e81565b610ec0838383604051806020016040528060008152506114f9565b505050565b610ecd6118f9565b80600a8190555050565b610edf6118f9565b8060119081610eee9190612f81565b5050565b601260009054906101000a900460ff1681565b60108054610f1290612dae565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3e90612dae565b8015610f8b5780601f10610f6057610100808354040283529160200191610f8b565b820191906000526020600020905b815481529060010190602001808311610f6e57829003601f168201915b505050505081565b601260019054906101000a900460ff1681565b600f8054610fb390612dae565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf90612dae565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b505050505081565b600061103f82611aaf565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108c5761108b638f4eb60460e01b6118ef565b5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110e56118f9565b6110ef6000611cc6565b565b6110f96118f9565b80600f90816111089190612f81565b5050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461114b90612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461117790612dae565b80156111c45780601f10611199576101008083540402835291602001916111c4565b820191906000526020600020905b8154815290600101906020018083116111a757829003601f168201915b5050505050905090565b600b5481565b80601260019054906101000a900460ff1615611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c906130e5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613151565b60405180910390fd5b6000811180156112a55750600c548111155b6112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db906131bd565b60405180910390fd5b600b54816112f0610b0b565b6112fa919061320c565b111561133b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113329061328c565b60405180910390fd5b6000811180156113605750600e5481611353336116a3565b61135d919061320c565b11155b61139f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611396906132f8565b60405180910390fd5b816000600d546113ae336116a3565b10156113e05760006113bf336116a3565b600d546113cc9190613318565b905080600a546113dc919061334c565b9150505b8082600a546113ef919061334c565b6113f99190613318565b34101561143b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611432906133da565b60405180910390fd5b61144c611446611d8c565b85611d94565b50505050565b8161145c81611db2565b6114668383611eaf565b505050565b6011805461147890612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546114a490612dae565b80156114f15780601f106114c6576101008083540402835291602001916114f1565b820191906000526020600020905b8154815290600101906020018083116114d457829003601f168201915b505050505081565b611504848484610b3a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115455761152f84848484611fba565b6115445761154363d1a57ed660e01b6118ef565b5b5b50505050565b606061155682611876565b611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c9061346c565b60405180910390fd5b60001515601260009054906101000a900460ff1615150361164257601180546115bd90612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546115e990612dae565b80156116365780601f1061160b57610100808354040283529160200191611636565b820191906000526020600020905b81548152906001019060200180831161161957829003601f168201915b5050505050905061169e565b600061164c6120e9565b9050600081511161166c576040518060200160405280600081525061169a565b806116768461217b565b601060405160200161168a9392919061354b565b6040516020818303038152906040525b9150505b919050565b60006116ae82612249565b9050919050565b6116bd6118f9565b80601260006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117766118f9565b80600d8190555050565b6117886118f9565b600b5482611794610b0b565b61179e919061320c565b11156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d6906135c8565b60405180910390fd5b6117e98183611d94565b5050565b6117f56118f9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b9061365a565b60405180910390fd5b61186d81611cc6565b50565b600c5481565b600081611881611aa6565b116118ea576000548210156118e95760005b60006004600085815260200190815260200160002054915081036118c257826118bb9061367a565b9250611893565b60007c01000000000000000000000000000000000000000000000000000000008216149150505b5b919050565b8060005260046000fd5b611901611d8c565b73ffffffffffffffffffffffffffffffffffffffff1661191f611112565b73ffffffffffffffffffffffffffffffffffffffff1614611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c906136ef565b60405180910390fd5b565b600061198283611034565b90508180156119c457508073ffffffffffffffffffffffffffffffffffffffff166119ab611bc2565b73ffffffffffffffffffffffffffffffffffffffff1614155b156119f0576119da816119d5611bc2565b6116da565b6119ef576119ee63cfb3b94260e01b6118ef565b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60006001905090565b600081611aba611aa6565b11611b85576004600083815260200190815260200160002054905060008103611b5c576000548210611af757611af663df2d9b4260e01b6118ef565b5b5b60046000836001900393508381526020019081526020016000205490506000810315611b575760007c010000000000000000000000000000000000000000000000000000000082160315611b9657611b5663df2d9b4260e01b6118ef565b5b611af8565b60007c010000000000000000000000000000000000000000000000000000000082160315611b96575b611b9563df2d9b4260e01b6118ef565b5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c2b8686846122a0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095403611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca99061375b565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611dae8282604051806020016040528060008152506122a9565b5050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611eac576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e2992919061377b565b602060405180830381865afa158015611e46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e6a91906137b9565b611eab57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611ea29190612819565b60405180910390fd5b5b50565b8060076000611ebc611bc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f69611bc2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fae91906126a8565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe0611bc2565b8786866040518563ffffffff1660e01b8152600401612002949392919061383b565b6020604051808303816000875af192505050801561203e57506040513d601f19601f8201168201806040525081019061203b919061389c565b60015b612096573d806000811461206e576040519150601f19603f3d011682016040523d82523d6000602084013e612073565b606091505b50600081510361208e5761208d63d1a57ed660e01b6118ef565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f80546120f890612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461212490612dae565b80156121715780601f1061214657610100808354040283529160200191612171565b820191906000526020600020905b81548152906001019060200180831161215457829003601f168201915b5050505050905090565b60606000600161218a8461232e565b01905060008167ffffffffffffffff8111156121a9576121a86128d4565b5b6040519080825280601f01601f1916602001820160405280156121db5781602001600182028036833780820191505090505b509050600082602001820190505b60011561223e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612232576122316138c9565b5b049450600085036121e9575b819350505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b6122b38383612481565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461232957600080549050600083820390505b6122f36000868380600101945086611fba565b6123085761230763d1a57ed660e01b6118ef565b5b8181106122e057816000541461232657612325600060e01b6118ef565b5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061238c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612382576123816138c9565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123c9576d04ee2d6d415b85acef810000000083816123bf576123be6138c9565b5b0492506020810190505b662386f26fc1000083106123f857662386f26fc1000083816123ee576123ed6138c9565b5b0492506010810190505b6305f5e1008310612421576305f5e1008381612417576124166138c9565b5b0492506008810190505b612710831061244657612710838161243c5761243b6138c9565b5b0492506004810190505b60648310612469576064838161245f5761245e6138c9565b5b0492506002810190505b600a8310612478576001810190505b80915050919050565b600080549050600082036124a05761249f63b562e8dd60e01b6118ef565b5b6124ad6000848385611c0e565b6124cd836124be6000866000611c14565b6124c7856125e4565b17611c3c565b6004600083815260200190815260200160002081905550600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161690506000810361258557612584632e07630060e01b6118ef565b5b6000838301905060008390505b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a481816001019150810361259257816000819055505050506125df6000848385611c67565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61263d81612608565b811461264857600080fd5b50565b60008135905061265a81612634565b92915050565b600060208284031215612676576126756125fe565b5b60006126848482850161264b565b91505092915050565b60008115159050919050565b6126a28161268d565b82525050565b60006020820190506126bd6000830184612699565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126fd5780820151818401526020810190506126e2565b60008484015250505050565b6000601f19601f8301169050919050565b6000612725826126c3565b61272f81856126ce565b935061273f8185602086016126df565b61274881612709565b840191505092915050565b6000602082019050818103600083015261276d818461271a565b905092915050565b6000819050919050565b61278881612775565b811461279357600080fd5b50565b6000813590506127a58161277f565b92915050565b6000602082840312156127c1576127c06125fe565b5b60006127cf84828501612796565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612803826127d8565b9050919050565b612813816127f8565b82525050565b600060208201905061282e600083018461280a565b92915050565b61283d816127f8565b811461284857600080fd5b50565b60008135905061285a81612834565b92915050565b60008060408385031215612877576128766125fe565b5b60006128858582860161284b565b925050602061289685828601612796565b9150509250929050565b6128a981612775565b82525050565b60006020820190506128c460008301846128a0565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61290c82612709565b810181811067ffffffffffffffff8211171561292b5761292a6128d4565b5b80604052505050565b600061293e6125f4565b905061294a8282612903565b919050565b600067ffffffffffffffff82111561296a576129696128d4565b5b61297382612709565b9050602081019050919050565b82818337600083830152505050565b60006129a261299d8461294f565b612934565b9050828152602081018484840111156129be576129bd6128cf565b5b6129c9848285612980565b509392505050565b600082601f8301126129e6576129e56128ca565b5b81356129f684826020860161298f565b91505092915050565b600060208284031215612a1557612a146125fe565b5b600082013567ffffffffffffffff811115612a3357612a32612603565b5b612a3f848285016129d1565b91505092915050565b612a518161268d565b8114612a5c57600080fd5b50565b600081359050612a6e81612a48565b92915050565b600060208284031215612a8a57612a896125fe565b5b6000612a9884828501612a5f565b91505092915050565b600080600060608486031215612aba57612ab96125fe565b5b6000612ac88682870161284b565b9350506020612ad98682870161284b565b9250506040612aea86828701612796565b9150509250925092565b6000819050919050565b6000612b19612b14612b0f846127d8565b612af4565b6127d8565b9050919050565b6000612b2b82612afe565b9050919050565b6000612b3d82612b20565b9050919050565b612b4d81612b32565b82525050565b6000602082019050612b686000830184612b44565b92915050565b600060208284031215612b8457612b836125fe565b5b6000612b928482850161284b565b91505092915050565b60008060408385031215612bb257612bb16125fe565b5b6000612bc08582860161284b565b9250506020612bd185828601612a5f565b9150509250929050565b600067ffffffffffffffff821115612bf657612bf56128d4565b5b612bff82612709565b9050602081019050919050565b6000612c1f612c1a84612bdb565b612934565b905082815260208101848484011115612c3b57612c3a6128cf565b5b612c46848285612980565b509392505050565b600082601f830112612c6357612c626128ca565b5b8135612c73848260208601612c0c565b91505092915050565b60008060008060808587031215612c9657612c956125fe565b5b6000612ca48782880161284b565b9450506020612cb58782880161284b565b9350506040612cc687828801612796565b925050606085013567ffffffffffffffff811115612ce757612ce6612603565b5b612cf387828801612c4e565b91505092959194509250565b60008060408385031215612d1657612d156125fe565b5b6000612d248582860161284b565b9250506020612d358582860161284b565b9150509250929050565b60008060408385031215612d5657612d556125fe565b5b6000612d6485828601612796565b9250506020612d758582860161284b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dc657607f821691505b602082108103612dd957612dd8612d7f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e04565b612e4b8683612e04565b95508019841693508086168417925050509392505050565b6000612e7e612e79612e7484612775565b612af4565b612775565b9050919050565b6000819050919050565b612e9883612e63565b612eac612ea482612e85565b848454612e11565b825550505050565b600090565b612ec1612eb4565b612ecc818484612e8f565b505050565b5b81811015612ef057612ee5600082612eb9565b600181019050612ed2565b5050565b601f821115612f3557612f0681612ddf565b612f0f84612df4565b81016020851015612f1e578190505b612f32612f2a85612df4565b830182612ed1565b50505b505050565b600082821c905092915050565b6000612f5860001984600802612f3a565b1980831691505092915050565b6000612f718383612f47565b9150826002028217905092915050565b612f8a826126c3565b67ffffffffffffffff811115612fa357612fa26128d4565b5b612fad8254612dae565b612fb8828285612ef4565b600060209050601f831160018114612feb5760008415612fd9578287015190505b612fe38582612f65565b86555061304b565b601f198416612ff986612ddf565b60005b8281101561302157848901518255600182019150602085019450602081019050612ffc565b8683101561303e578489015161303a601f891682612f47565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b600061306e600083613053565b91506130798261305e565b600082019050919050565b600061308f82613061565b9150819050919050565b7f73616c6520686173206e6f7420737461727465642e0000000000000000000000600082015250565b60006130cf6015836126ce565b91506130da82613099565b602082019050919050565b600060208201905081810360008301526130fe816130c2565b9050919050565b7f6e6f20626f74732061726520616c6c6f7765642e000000000000000000000000600082015250565b600061313b6014836126ce565b915061314682613105565b602082019050919050565b6000602082019050818103600083015261316a8161312e565b9050919050565b7f4d6178696d756d206f6620313020207065722074786e21000000000000000000600082015250565b60006131a76017836126ce565b91506131b282613171565b602082019050919050565b600060208201905081810360008301526131d68161319a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061321782612775565b915061322283612775565b925082820190508082111561323a576132396131dd565b5b92915050565b7f4e6f20537570706c7973206c6566747321000000000000000000000000000000600082015250565b60006132766011836126ce565b915061328182613240565b602082019050919050565b600060208201905081810360008301526132a581613269565b9050919050565b7f596f75206d61792068617665206d696e746564206d6178206e756d6265722021600082015250565b60006132e26020836126ce565b91506132ed826132ac565b602082019050919050565b60006020820190508181036000830152613311816132d5565b9050919050565b600061332382612775565b915061332e83612775565b9250828203905081811115613346576133456131dd565b5b92915050565b600061335782612775565b915061336283612775565b925082820261337081612775565b91508282048414831517613387576133866131dd565b5b5092915050565b7f496e73756666696369656e742f696e636f72726563742066756e64732e000000600082015250565b60006133c4601d836126ce565b91506133cf8261338e565b602082019050919050565b600060208201905081810360008301526133f3816133b7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613456602f836126ce565b9150613461826133fa565b604082019050919050565b6000602082019050818103600083015261348581613449565b9050919050565b600081905092915050565b60006134a2826126c3565b6134ac818561348c565b93506134bc8185602086016126df565b80840191505092915050565b600081546134d581612dae565b6134df818661348c565b945060018216600081146134fa576001811461350f57613542565b60ff1983168652811515820286019350613542565b61351885612ddf565b60005b8381101561353a5781548189015260018201915060208101905061351b565b838801955050505b50505092915050565b60006135578286613497565b91506135638285613497565b915061356f82846134c8565b9150819050949350505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006135b26014836126ce565b91506135bd8261357c565b602082019050919050565b600060208201905081810360008301526135e1816135a5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136446026836126ce565b915061364f826135e8565b604082019050919050565b6000602082019050818103600083015261367381613637565b9050919050565b600061368582612775565b915060008203613698576136976131dd565b5b600182039050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136d96020836126ce565b91506136e4826136a3565b602082019050919050565b60006020820190508181036000830152613708816136cc565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613745601f836126ce565b91506137508261370f565b602082019050919050565b6000602082019050818103600083015261377481613738565b9050919050565b6000604082019050613790600083018561280a565b61379d602083018461280a565b9392505050565b6000815190506137b381612a48565b92915050565b6000602082840312156137cf576137ce6125fe565b5b60006137dd848285016137a4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b600061380d826137e6565b61381781856137f1565b93506138278185602086016126df565b61383081612709565b840191505092915050565b6000608082019050613850600083018761280a565b61385d602083018661280a565b61386a60408301856128a0565b818103606083015261387c8184613802565b905095945050505050565b60008151905061389681612634565b92915050565b6000602082840312156138b2576138b16125fe565b5b60006138c084828501613887565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212205d64cade8a326708b97d728864ce54384c92cc15e49beb2456132a48b75e75cc64736f6c6343000811003368747470733a2f2f626166796265696364367036657a36666f6a74626a6675696975616273376668337536756874766568626365746767706a6b6765626732653370712e697066732e6e667473746f726167652e6c696e6b2f
Deployed Bytecode
0x6080604052600436106102465760003560e01c806362b99ad411610139578063a22cb465116100b6578063e0a808531161007a578063e0a8085314610815578063e985e9c51461083e578063ebe2e3aa1461087b578063efbd73f4146108a4578063f2fde38b146108cd578063f9308cc5146108f657610246565b8063a22cb4651461072b578063a45ba8e714610754578063b88d4fde1461077f578063c87b56dd1461079b578063dc33e681146107d857610246565b80638a68d451116100fd5780638a68d451146106635780638da5cb5b1461068e57806395d89b41146106b95780639a85f86d146106e4578063a0712d681461070f57610246565b806362b99ad41461057e5780636352211e146105a957806370a08231146105e6578063715018a6146106235780637ec4a6591461063a57610246565b8063239c70ae116101c757806344a0d68a1161018b57806344a0d68a146104ab5780634fdd43cb146104d457806351830227146104fd5780635503a0e8146105285780635c975abb1461055357610246565b8063239c70ae1461040657806323b872dd146104315780633ccfd60b1461044d57806341f434341461046457806342842e0e1461048f57610246565b806313faede61161020e57806313faede61461033557806316ba10e01461036057806316c38b3c1461038957806318160ddd146103b257806322414323146103dd57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063088a4ed0146102f0578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190612660565b610921565b60405161027f91906126a8565b60405180910390f35b34801561029457600080fd5b5061029d6109b3565b6040516102aa9190612753565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906127ab565b610a45565b6040516102e79190612819565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906127ab565b610aa3565b005b610333600480360381019061032e9190612860565b610ab5565b005b34801561034157600080fd5b5061034a610ac5565b60405161035791906128af565b60405180910390f35b34801561036c57600080fd5b50610387600480360381019061038291906129ff565b610acb565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612a74565b610ae6565b005b3480156103be57600080fd5b506103c7610b0b565b6040516103d491906128af565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff91906127ab565b610b22565b005b34801561041257600080fd5b5061041b610b34565b60405161042891906128af565b60405180910390f35b61044b60048036038101906104469190612aa1565b610b3a565b005b34801561045957600080fd5b50610462610dfb565b005b34801561047057600080fd5b50610479610e93565b6040516104869190612b53565b60405180910390f35b6104a960048036038101906104a49190612aa1565b610ea5565b005b3480156104b757600080fd5b506104d260048036038101906104cd91906127ab565b610ec5565b005b3480156104e057600080fd5b506104fb60048036038101906104f691906129ff565b610ed7565b005b34801561050957600080fd5b50610512610ef2565b60405161051f91906126a8565b60405180910390f35b34801561053457600080fd5b5061053d610f05565b60405161054a9190612753565b60405180910390f35b34801561055f57600080fd5b50610568610f93565b60405161057591906126a8565b60405180910390f35b34801561058a57600080fd5b50610593610fa6565b6040516105a09190612753565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb91906127ab565b611034565b6040516105dd9190612819565b60405180910390f35b3480156105f257600080fd5b5061060d60048036038101906106089190612b6e565b611046565b60405161061a91906128af565b60405180910390f35b34801561062f57600080fd5b506106386110dd565b005b34801561064657600080fd5b50610661600480360381019061065c91906129ff565b6110f1565b005b34801561066f57600080fd5b5061067861110c565b60405161068591906128af565b60405180910390f35b34801561069a57600080fd5b506106a3611112565b6040516106b09190612819565b60405180910390f35b3480156106c557600080fd5b506106ce61113c565b6040516106db9190612753565b60405180910390f35b3480156106f057600080fd5b506106f96111ce565b60405161070691906128af565b60405180910390f35b610729600480360381019061072491906127ab565b6111d4565b005b34801561073757600080fd5b50610752600480360381019061074d9190612b9b565b611452565b005b34801561076057600080fd5b5061076961146b565b6040516107769190612753565b60405180910390f35b61079960048036038101906107949190612c7c565b6114f9565b005b3480156107a757600080fd5b506107c260048036038101906107bd91906127ab565b61154b565b6040516107cf9190612753565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612b6e565b6116a3565b60405161080c91906128af565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190612a74565b6116b5565b005b34801561084a57600080fd5b5061086560048036038101906108609190612cff565b6116da565b60405161087291906126a8565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d91906127ab565b61176e565b005b3480156108b057600080fd5b506108cb60048036038101906108c69190612d3f565b611780565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190612b6e565b6117ed565b005b34801561090257600080fd5b5061090b611870565b60405161091891906128af565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ac5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109c290612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546109ee90612dae565b8015610a3b5780601f10610a1057610100808354040283529160200191610a3b565b820191906000526020600020905b815481529060010190602001808311610a1e57829003601f168201915b5050505050905090565b6000610a5082611876565b610a6557610a6463cf4700e460e01b6118ef565b5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610aab6118f9565b80600e8190555050565b610ac182826001611977565b5050565b600a5481565b610ad36118f9565b8060109081610ae29190612f81565b5050565b610aee6118f9565b80601260016101000a81548160ff02191690831515021790555050565b6000610b15611aa6565b6001546000540303905090565b610b2a6118f9565b80600b8190555050565b600e5481565b6000610b4582611aaf565b905073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161693508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bba57610bb963a114810060e01b6118ef565b5b600080610bc684611b9b565b91509150610bdc8187610bd7611bc2565b611bca565b610c0757610bf186610bec611bc2565b6116da565b610c0657610c056359c896be60e01b6118ef565b5b5b610c148686866001611c0e565b8015610c1f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ced85610cc9888887611c14565b7c020000000000000000000000000000000000000000000000000000000017611c3c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d735760006001850190506000600460008381526020019081526020016000205403610d71576000548114610d70578360046000838152602001908152602001600020819055505b5b505b600073ffffffffffffffffffffffffffffffffffffffff8673ffffffffffffffffffffffffffffffffffffffff161690508481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460008103610de557610de463ea553b3460e01b6118ef565b5b610df28787876001611c67565b50505050505050565b610e036118f9565b610e0b611c6d565b6000610e15611112565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e3890613084565b60006040518083038185875af1925050503d8060008114610e75576040519150601f19603f3d011682016040523d82523d6000602084013e610e7a565b606091505b5050905080610e8857600080fd5b50610e91611cbc565b565b6daaeb6d7670e522a718067333cd4e81565b610ec0838383604051806020016040528060008152506114f9565b505050565b610ecd6118f9565b80600a8190555050565b610edf6118f9565b8060119081610eee9190612f81565b5050565b601260009054906101000a900460ff1681565b60108054610f1290612dae565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3e90612dae565b8015610f8b5780601f10610f6057610100808354040283529160200191610f8b565b820191906000526020600020905b815481529060010190602001808311610f6e57829003601f168201915b505050505081565b601260019054906101000a900460ff1681565b600f8054610fb390612dae565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdf90612dae565b801561102c5780601f106110015761010080835404028352916020019161102c565b820191906000526020600020905b81548152906001019060200180831161100f57829003601f168201915b505050505081565b600061103f82611aaf565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361108c5761108b638f4eb60460e01b6118ef565b5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110e56118f9565b6110ef6000611cc6565b565b6110f96118f9565b80600f90816111089190612f81565b5050565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461114b90612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461117790612dae565b80156111c45780601f10611199576101008083540402835291602001916111c4565b820191906000526020600020905b8154815290600101906020018083116111a757829003601f168201915b5050505050905090565b600b5481565b80601260019054906101000a900460ff1615611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c906130e5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613151565b60405180910390fd5b6000811180156112a55750600c548111155b6112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db906131bd565b60405180910390fd5b600b54816112f0610b0b565b6112fa919061320c565b111561133b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113329061328c565b60405180910390fd5b6000811180156113605750600e5481611353336116a3565b61135d919061320c565b11155b61139f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611396906132f8565b60405180910390fd5b816000600d546113ae336116a3565b10156113e05760006113bf336116a3565b600d546113cc9190613318565b905080600a546113dc919061334c565b9150505b8082600a546113ef919061334c565b6113f99190613318565b34101561143b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611432906133da565b60405180910390fd5b61144c611446611d8c565b85611d94565b50505050565b8161145c81611db2565b6114668383611eaf565b505050565b6011805461147890612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546114a490612dae565b80156114f15780601f106114c6576101008083540402835291602001916114f1565b820191906000526020600020905b8154815290600101906020018083116114d457829003601f168201915b505050505081565b611504848484610b3a565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115455761152f84848484611fba565b6115445761154363d1a57ed660e01b6118ef565b5b5b50505050565b606061155682611876565b611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c9061346c565b60405180910390fd5b60001515601260009054906101000a900460ff1615150361164257601180546115bd90612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546115e990612dae565b80156116365780601f1061160b57610100808354040283529160200191611636565b820191906000526020600020905b81548152906001019060200180831161161957829003601f168201915b5050505050905061169e565b600061164c6120e9565b9050600081511161166c576040518060200160405280600081525061169a565b806116768461217b565b601060405160200161168a9392919061354b565b6040516020818303038152906040525b9150505b919050565b60006116ae82612249565b9050919050565b6116bd6118f9565b80601260006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117766118f9565b80600d8190555050565b6117886118f9565b600b5482611794610b0b565b61179e919061320c565b11156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d6906135c8565b60405180910390fd5b6117e98183611d94565b5050565b6117f56118f9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b9061365a565b60405180910390fd5b61186d81611cc6565b50565b600c5481565b600081611881611aa6565b116118ea576000548210156118e95760005b60006004600085815260200190815260200160002054915081036118c257826118bb9061367a565b9250611893565b60007c01000000000000000000000000000000000000000000000000000000008216149150505b5b919050565b8060005260046000fd5b611901611d8c565b73ffffffffffffffffffffffffffffffffffffffff1661191f611112565b73ffffffffffffffffffffffffffffffffffffffff1614611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c906136ef565b60405180910390fd5b565b600061198283611034565b90508180156119c457508073ffffffffffffffffffffffffffffffffffffffff166119ab611bc2565b73ffffffffffffffffffffffffffffffffffffffff1614155b156119f0576119da816119d5611bc2565b6116da565b6119ef576119ee63cfb3b94260e01b6118ef565b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60006001905090565b600081611aba611aa6565b11611b85576004600083815260200190815260200160002054905060008103611b5c576000548210611af757611af663df2d9b4260e01b6118ef565b5b5b60046000836001900393508381526020019081526020016000205490506000810315611b575760007c010000000000000000000000000000000000000000000000000000000082160315611b9657611b5663df2d9b4260e01b6118ef565b5b611af8565b60007c010000000000000000000000000000000000000000000000000000000082160315611b96575b611b9563df2d9b4260e01b6118ef565b5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c2b8686846122a0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095403611cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca99061375b565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611dae8282604051806020016040528060008152506122a9565b5050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611eac576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e2992919061377b565b602060405180830381865afa158015611e46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e6a91906137b9565b611eab57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611ea29190612819565b60405180910390fd5b5b50565b8060076000611ebc611bc2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f69611bc2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fae91906126a8565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe0611bc2565b8786866040518563ffffffff1660e01b8152600401612002949392919061383b565b6020604051808303816000875af192505050801561203e57506040513d601f19601f8201168201806040525081019061203b919061389c565b60015b612096573d806000811461206e576040519150601f19603f3d011682016040523d82523d6000602084013e612073565b606091505b50600081510361208e5761208d63d1a57ed660e01b6118ef565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f80546120f890612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461212490612dae565b80156121715780601f1061214657610100808354040283529160200191612171565b820191906000526020600020905b81548152906001019060200180831161215457829003601f168201915b5050505050905090565b60606000600161218a8461232e565b01905060008167ffffffffffffffff8111156121a9576121a86128d4565b5b6040519080825280601f01601f1916602001820160405280156121db5781602001600182028036833780820191505090505b509050600082602001820190505b60011561223e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612232576122316138c9565b5b049450600085036121e9575b819350505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b6122b38383612481565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461232957600080549050600083820390505b6122f36000868380600101945086611fba565b6123085761230763d1a57ed660e01b6118ef565b5b8181106122e057816000541461232657612325600060e01b6118ef565b5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061238c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612382576123816138c9565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123c9576d04ee2d6d415b85acef810000000083816123bf576123be6138c9565b5b0492506020810190505b662386f26fc1000083106123f857662386f26fc1000083816123ee576123ed6138c9565b5b0492506010810190505b6305f5e1008310612421576305f5e1008381612417576124166138c9565b5b0492506008810190505b612710831061244657612710838161243c5761243b6138c9565b5b0492506004810190505b60648310612469576064838161245f5761245e6138c9565b5b0492506002810190505b600a8310612478576001810190505b80915050919050565b600080549050600082036124a05761249f63b562e8dd60e01b6118ef565b5b6124ad6000848385611c0e565b6124cd836124be6000866000611c14565b6124c7856125e4565b17611c3c565b6004600083815260200190815260200160002081905550600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff8473ffffffffffffffffffffffffffffffffffffffff161690506000810361258557612584632e07630060e01b6118ef565b5b6000838301905060008390505b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a481816001019150810361259257816000819055505050506125df6000848385611c67565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61263d81612608565b811461264857600080fd5b50565b60008135905061265a81612634565b92915050565b600060208284031215612676576126756125fe565b5b60006126848482850161264b565b91505092915050565b60008115159050919050565b6126a28161268d565b82525050565b60006020820190506126bd6000830184612699565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126fd5780820151818401526020810190506126e2565b60008484015250505050565b6000601f19601f8301169050919050565b6000612725826126c3565b61272f81856126ce565b935061273f8185602086016126df565b61274881612709565b840191505092915050565b6000602082019050818103600083015261276d818461271a565b905092915050565b6000819050919050565b61278881612775565b811461279357600080fd5b50565b6000813590506127a58161277f565b92915050565b6000602082840312156127c1576127c06125fe565b5b60006127cf84828501612796565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612803826127d8565b9050919050565b612813816127f8565b82525050565b600060208201905061282e600083018461280a565b92915050565b61283d816127f8565b811461284857600080fd5b50565b60008135905061285a81612834565b92915050565b60008060408385031215612877576128766125fe565b5b60006128858582860161284b565b925050602061289685828601612796565b9150509250929050565b6128a981612775565b82525050565b60006020820190506128c460008301846128a0565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61290c82612709565b810181811067ffffffffffffffff8211171561292b5761292a6128d4565b5b80604052505050565b600061293e6125f4565b905061294a8282612903565b919050565b600067ffffffffffffffff82111561296a576129696128d4565b5b61297382612709565b9050602081019050919050565b82818337600083830152505050565b60006129a261299d8461294f565b612934565b9050828152602081018484840111156129be576129bd6128cf565b5b6129c9848285612980565b509392505050565b600082601f8301126129e6576129e56128ca565b5b81356129f684826020860161298f565b91505092915050565b600060208284031215612a1557612a146125fe565b5b600082013567ffffffffffffffff811115612a3357612a32612603565b5b612a3f848285016129d1565b91505092915050565b612a518161268d565b8114612a5c57600080fd5b50565b600081359050612a6e81612a48565b92915050565b600060208284031215612a8a57612a896125fe565b5b6000612a9884828501612a5f565b91505092915050565b600080600060608486031215612aba57612ab96125fe565b5b6000612ac88682870161284b565b9350506020612ad98682870161284b565b9250506040612aea86828701612796565b9150509250925092565b6000819050919050565b6000612b19612b14612b0f846127d8565b612af4565b6127d8565b9050919050565b6000612b2b82612afe565b9050919050565b6000612b3d82612b20565b9050919050565b612b4d81612b32565b82525050565b6000602082019050612b686000830184612b44565b92915050565b600060208284031215612b8457612b836125fe565b5b6000612b928482850161284b565b91505092915050565b60008060408385031215612bb257612bb16125fe565b5b6000612bc08582860161284b565b9250506020612bd185828601612a5f565b9150509250929050565b600067ffffffffffffffff821115612bf657612bf56128d4565b5b612bff82612709565b9050602081019050919050565b6000612c1f612c1a84612bdb565b612934565b905082815260208101848484011115612c3b57612c3a6128cf565b5b612c46848285612980565b509392505050565b600082601f830112612c6357612c626128ca565b5b8135612c73848260208601612c0c565b91505092915050565b60008060008060808587031215612c9657612c956125fe565b5b6000612ca48782880161284b565b9450506020612cb58782880161284b565b9350506040612cc687828801612796565b925050606085013567ffffffffffffffff811115612ce757612ce6612603565b5b612cf387828801612c4e565b91505092959194509250565b60008060408385031215612d1657612d156125fe565b5b6000612d248582860161284b565b9250506020612d358582860161284b565b9150509250929050565b60008060408385031215612d5657612d556125fe565b5b6000612d6485828601612796565b9250506020612d758582860161284b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dc657607f821691505b602082108103612dd957612dd8612d7f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e04565b612e4b8683612e04565b95508019841693508086168417925050509392505050565b6000612e7e612e79612e7484612775565b612af4565b612775565b9050919050565b6000819050919050565b612e9883612e63565b612eac612ea482612e85565b848454612e11565b825550505050565b600090565b612ec1612eb4565b612ecc818484612e8f565b505050565b5b81811015612ef057612ee5600082612eb9565b600181019050612ed2565b5050565b601f821115612f3557612f0681612ddf565b612f0f84612df4565b81016020851015612f1e578190505b612f32612f2a85612df4565b830182612ed1565b50505b505050565b600082821c905092915050565b6000612f5860001984600802612f3a565b1980831691505092915050565b6000612f718383612f47565b9150826002028217905092915050565b612f8a826126c3565b67ffffffffffffffff811115612fa357612fa26128d4565b5b612fad8254612dae565b612fb8828285612ef4565b600060209050601f831160018114612feb5760008415612fd9578287015190505b612fe38582612f65565b86555061304b565b601f198416612ff986612ddf565b60005b8281101561302157848901518255600182019150602085019450602081019050612ffc565b8683101561303e578489015161303a601f891682612f47565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b600061306e600083613053565b91506130798261305e565b600082019050919050565b600061308f82613061565b9150819050919050565b7f73616c6520686173206e6f7420737461727465642e0000000000000000000000600082015250565b60006130cf6015836126ce565b91506130da82613099565b602082019050919050565b600060208201905081810360008301526130fe816130c2565b9050919050565b7f6e6f20626f74732061726520616c6c6f7765642e000000000000000000000000600082015250565b600061313b6014836126ce565b915061314682613105565b602082019050919050565b6000602082019050818103600083015261316a8161312e565b9050919050565b7f4d6178696d756d206f6620313020207065722074786e21000000000000000000600082015250565b60006131a76017836126ce565b91506131b282613171565b602082019050919050565b600060208201905081810360008301526131d68161319a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061321782612775565b915061322283612775565b925082820190508082111561323a576132396131dd565b5b92915050565b7f4e6f20537570706c7973206c6566747321000000000000000000000000000000600082015250565b60006132766011836126ce565b915061328182613240565b602082019050919050565b600060208201905081810360008301526132a581613269565b9050919050565b7f596f75206d61792068617665206d696e746564206d6178206e756d6265722021600082015250565b60006132e26020836126ce565b91506132ed826132ac565b602082019050919050565b60006020820190508181036000830152613311816132d5565b9050919050565b600061332382612775565b915061332e83612775565b9250828203905081811115613346576133456131dd565b5b92915050565b600061335782612775565b915061336283612775565b925082820261337081612775565b91508282048414831517613387576133866131dd565b5b5092915050565b7f496e73756666696369656e742f696e636f72726563742066756e64732e000000600082015250565b60006133c4601d836126ce565b91506133cf8261338e565b602082019050919050565b600060208201905081810360008301526133f3816133b7565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613456602f836126ce565b9150613461826133fa565b604082019050919050565b6000602082019050818103600083015261348581613449565b9050919050565b600081905092915050565b60006134a2826126c3565b6134ac818561348c565b93506134bc8185602086016126df565b80840191505092915050565b600081546134d581612dae565b6134df818661348c565b945060018216600081146134fa576001811461350f57613542565b60ff1983168652811515820286019350613542565b61351885612ddf565b60005b8381101561353a5781548189015260018201915060208101905061351b565b838801955050505b50505092915050565b60006135578286613497565b91506135638285613497565b915061356f82846134c8565b9150819050949350505050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006135b26014836126ce565b91506135bd8261357c565b602082019050919050565b600060208201905081810360008301526135e1816135a5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136446026836126ce565b915061364f826135e8565b604082019050919050565b6000602082019050818103600083015261367381613637565b9050919050565b600061368582612775565b915060008203613698576136976131dd565b5b600182039050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136d96020836126ce565b91506136e4826136a3565b602082019050919050565b60006020820190508181036000830152613708816136cc565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613745601f836126ce565b91506137508261370f565b602082019050919050565b6000602082019050818103600083015261377481613738565b9050919050565b6000604082019050613790600083018561280a565b61379d602083018461280a565b9392505050565b6000815190506137b381612a48565b92915050565b6000602082840312156137cf576137ce6125fe565b5b60006137dd848285016137a4565b91505092915050565b600081519050919050565b600082825260208201905092915050565b600061380d826137e6565b61381781856137f1565b93506138278185602086016126df565b61383081612709565b840191505092915050565b6000608082019050613850600083018761280a565b61385d602083018661280a565b61386a60408301856128a0565b818103606083015261387c8184613802565b905095945050505050565b60008151905061389681612634565b92915050565b6000602082840312156138b2576138b16125fe565b5b60006138c084828501613887565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212205d64cade8a326708b97d728864ce54384c92cc15e49beb2456132a48b75e75cc64736f6c63430008110033
Deployed Bytecode Sourcemap
89287:3956:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53934:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54836:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61870:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92553:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61587:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89408:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92260:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92366:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50578:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92449:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89553:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65604:3523;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92669:172;;;;;;;;;;;;;:::i;:::-;;7867:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69223:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91724:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;92016:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89795:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89715:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89827:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89593:117;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56238:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51762:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34624:103;;;;;;;;;;;;;:::i;:::-;;92154:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89514:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33976:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55012:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89446:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90786:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93070:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89753:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70014:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91273:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92847:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91928:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62828:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91804:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;90958:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34882:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;89483:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53934:639;54019:4;54358:10;54343:25;;:11;:25;;;;:102;;;;54435:10;54420:25;;:11;:25;;;;54343:102;:179;;;;54512:10;54497:25;;:11;:25;;;;54343:179;54323:199;;53934:639;;;:::o;54836:100::-;54890:13;54923:5;54916:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54836:100;:::o;61870:227::-;61946:7;61971:16;61979:7;61971;:16::i;:::-;61966:73;;61989:50;61997:41;;;61989:7;:50::i;:::-;61966:73;62059:15;:24;62075:7;62059:24;;;;;;;;;;;:30;;;;;;;;;;;;62052:37;;61870:227;;;:::o;92553:110::-;33862:13;:11;:13::i;:::-;92643:14:::1;92627:13;:30;;;;92553:110:::0;:::o;61587:124::-;61676:27;61685:2;61689:7;61698:4;61676:8;:27::i;:::-;61587:124;;:::o;89408:33::-;;;;:::o;92260:100::-;33862:13;:11;:13::i;:::-;92344:10:::1;92332:9;:22;;;;;;:::i;:::-;;92260:100:::0;:::o;92366:77::-;33862:13;:11;:13::i;:::-;92431:6:::1;92422;;:15;;;;;;;;;;;;;;;;;;92366:77:::0;:::o;50578:323::-;50639:7;50867:15;:13;:15::i;:::-;50852:12;;50836:13;;:28;:46;50829:53;;50578:323;:::o;92449:98::-;33862:13;:11;:13::i;:::-;92530:11:::1;92517:10;:24;;;;92449:98:::0;:::o;89553:33::-;;;;:::o;65604:3523::-;65746:27;65776;65795:7;65776:18;:27::i;:::-;65746:57;;47379:14;65947:4;65931:22;;:41;65908:66;;66032:4;65991:45;;66007:19;65991:45;;;65987:95;;66038:44;66046:35;;;66038:7;:44::i;:::-;65987:95;66096:27;66125:23;66152:35;66179:7;66152:26;:35::i;:::-;66095:92;;;;66287:68;66312:15;66329:4;66335:19;:17;:19::i;:::-;66287:24;:68::i;:::-;66282:189;;66375:43;66392:4;66398:19;:17;:19::i;:::-;66375:16;:43::i;:::-;66370:101;;66420:51;66428:42;;;66420:7;:51::i;:::-;66370:101;66282:189;66484:43;66506:4;66512:2;66516:7;66525:1;66484:21;:43::i;:::-;66620:15;66617:160;;;66760:1;66739:19;66732:30;66617:160;67157:18;:24;67176:4;67157:24;;;;;;;;;;;;;;;;67155:26;;;;;;;;;;;;67226:18;:22;67245:2;67226:22;;;;;;;;;;;;;;;;67224:24;;;;;;;;;;;67548:146;67585:2;67634:45;67649:4;67655:2;67659:19;67634:14;:45::i;:::-;46977:8;67606:73;67548:18;:146::i;:::-;67519:17;:26;67537:7;67519:26;;;;;;;;;;;:175;;;;67865:1;46977:8;67814:19;:47;:52;67810:627;;67887:19;67919:1;67909:7;:11;67887:33;;68076:1;68042:17;:30;68060:11;68042:30;;;;;;;;;;;;:35;68038:384;;68180:13;;68165:11;:28;68161:242;;68360:19;68327:17;:30;68345:11;68327:30;;;;;;;;;;;:52;;;;68161:242;68038:384;67868:569;67810:627;68550:16;47379:14;68585:2;68569:20;;:39;68550:58;;68949:7;68913:8;68879:4;68821:25;68766:1;68709;68686:299;69022:1;69010:8;:13;69006:58;;69025:39;69033:30;;;69025:7;:39::i;:::-;69006:58;69077:42;69098:4;69104:2;69108:7;69117:1;69077:20;:42::i;:::-;65735:3392;;;;65604:3523;;;:::o;92669:172::-;33862:13;:11;:13::i;:::-;30847:21:::1;:19;:21::i;:::-;92727:18:::2;92759:7;:5;:7::i;:::-;92751:21;;92780;92751:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92726:80;;;92821:13;92813:22;;;::::0;::::2;;92719:122;30891:20:::1;:18;:20::i;:::-;92669:172::o:0;7867:143::-;195:42;7867:143;:::o;69223:193::-;69369:39;69386:4;69392:2;69396:7;69369:39;;;;;;;;;;;;:16;:39::i;:::-;69223:193;;;:::o;91724:74::-;33862:13;:11;:13::i;:::-;91787:5:::1;91780:4;:12;;;;91724:74:::0;:::o;92016:132::-;33862:13;:11;:13::i;:::-;92124:18:::1;92104:17;:38;;;;;;:::i;:::-;;92016:132:::0;:::o;89795:27::-;;;;;;;;;;;;;:::o;89715:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;89827:26::-;;;;;;;;;;;;;:::o;89593:117::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56238:152::-;56310:7;56353:27;56372:7;56353:18;:27::i;:::-;56330:52;;56238:152;;;:::o;51762:242::-;51834:7;51875:1;51858:19;;:5;:19;;;51854:69;;51879:44;51887:35;;;51879:7;:44::i;:::-;51854:69;45921:13;51941:18;:25;51960:5;51941:25;;;;;;;;;;;;;;;;:55;51934:62;;51762:242;;;:::o;34624:103::-;33862:13;:11;:13::i;:::-;34689:30:::1;34716:1;34689:18;:30::i;:::-;34624:103::o:0;92154:100::-;33862:13;:11;:13::i;:::-;92238:10:::1;92226:9;:22;;;;;;:::i;:::-;;92154:100:::0;:::o;89514:34::-;;;;:::o;33976:87::-;34022:7;34049:6;;;;;;;;;;;34042:13;;33976:87;:::o;55012:104::-;55068:13;55101:7;55094:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55012:104;:::o;89446:32::-;;;;:::o;90786:164::-;90853:11;89984:6;;;;;;;;;;;89983:7;89975:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;90044:10;90031:23;;:9;:23;;;90023:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;90108:1;90094:11;:15;:40;;;;;90128:6;;90113:11;:21;;90094:40;90086:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;90208:10;;90193:11;90177:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;90169:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;90277:1;90263:11;:15;:74;;;;;90324:13;;90309:11;90282:24;90295:10;90282:12;:24::i;:::-;:38;;;;:::i;:::-;:55;;90263:74;90247:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;90888:11:::1;90467:16;90531:15;;90504:24;90517:10;90504:12;:24::i;:::-;:42;90500:171;;;90557:21;90599:24;90612:10;90599:12;:24::i;:::-;90581:15;;:42;;;;:::i;:::-;90557:66;;90650:13;90643:4;;:20;;;;:::i;:::-;90632:31;;90548:123;90500:171;90724:8;90710:11;90703:4;;:18;;;;:::i;:::-;:29;;;;:::i;:::-;90690:9;:42;;90682:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;90908:36:::2;90918:12;:10;:12::i;:::-;90932:11;90908:9;:36::i;:::-;90460:320:::1;90395:1;90786:164:::0;;:::o;93070:170::-;93174:8;9649:30;9670:8;9649:20;:30::i;:::-;93191:43:::1;93215:8;93225;93191:23;:43::i;:::-;93070:170:::0;;;:::o;89753:36::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70014:416::-;70189:31;70202:4;70208:2;70212:7;70189:12;:31::i;:::-;70253:1;70235:2;:14;;;:19;70231:192;;70274:56;70305:4;70311:2;70315:7;70324:5;70274:30;:56::i;:::-;70269:154;;70351:56;70359:47;;;70351:7;:56::i;:::-;70269:154;70231:192;70014:416;;;;:::o;91273:445::-;91347:13;91377:17;91385:8;91377:7;:17::i;:::-;91369:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;91471:5;91459:17;;:8;;;;;;;;;;;:17;;;91455:64;;91494:17;91487:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91455:64;91527:28;91558:10;:8;:10::i;:::-;91527:41;;91613:1;91588:14;91582:28;:32;:130;;;;;;;;;;;;;;;;;91650:14;91666:19;:8;:17;:19::i;:::-;91687:9;91633:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;91582:130;91575:137;;;91273:445;;;;:::o;92847:107::-;92905:7;92928:20;92942:5;92928:13;:20::i;:::-;92921:27;;92847:107;;;:::o;91928:81::-;33862:13;:11;:13::i;:::-;91997:6:::1;91986:8;;:17;;;;;;;;;;;;;;;;;;91928:81:::0;:::o;62828:164::-;62925:4;62949:18;:25;62968:5;62949:25;;;;;;;;;;;;;;;:35;62975:8;62949:35;;;;;;;;;;;;;;;;;;;;;;;;;62942:42;;62828:164;;;;:::o;91804:118::-;33862:13;:11;:13::i;:::-;91900:16:::1;91882:15;:34;;;;91804:118:::0;:::o;90958:208::-;33862:13;:11;:13::i;:::-;91085:10:::1;;91070:11;91054:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;91046:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;91127:33;91137:9;91148:11;91127:9;:33::i;:::-;90958:208:::0;;:::o;34882:201::-;33862:13;:11;:13::i;:::-;34991:1:::1;34971:22;;:8;:22;;::::0;34963:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;35047:28;35066:8;35047:18;:28::i;:::-;34882:201:::0;:::o;89483:26::-;;;;:::o;63250:368::-;63315:11;63362:7;63343:15;:13;:15::i;:::-;:26;63339:272;;63400:13;;63390:7;:23;63386:214;;;63434:14;63467:60;63515:1;63484:17;:26;63502:7;63484:26;;;;;;;;;;;;63475:35;;;63474:42;63467:60;;63518:9;;;;:::i;:::-;;;63467:60;;;63583:1;46697:8;63555:6;:24;:29;63546:38;;63415:185;63386:214;63339:272;63250:368;;;:::o;89028:165::-;89129:13;89123:4;89116:27;89170:4;89164;89157:18;34141:132;34216:12;:10;:12::i;:::-;34205:23;;:7;:5;:7::i;:::-;:23;;;34197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34141:132::o;80461:474::-;80590:13;80606:16;80614:7;80606;:16::i;:::-;80590:32;;80639:13;:45;;;;;80679:5;80656:28;;:19;:17;:19::i;:::-;:28;;;;80639:45;80635:201;;;80704:44;80721:5;80728:19;:17;:19::i;:::-;80704:16;:44::i;:::-;80699:137;;80769:51;80777:42;;;80769:7;:51::i;:::-;80699:137;80635:201;80881:2;80848:15;:24;80864:7;80848:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;80919:7;80915:2;80899:28;;80908:5;80899:28;;;;;;;;;;;;80579:356;80461:474;;;:::o;91172:95::-;91237:7;91260:1;91253:8;;91172:95;:::o;57718:2012::-;57785:14;57835:7;57816:15;:13;:15::i;:::-;:26;57812:1853;;57868:17;:26;57886:7;57868:26;;;;;;;;;;;;57859:35;;58004:1;57994:6;:11;57990:1292;;58041:13;;58030:7;:24;58026:77;;58056:47;58064:38;;;58056:7;:47::i;:::-;58026:77;58660:607;58738:17;:28;58756:9;;;;;;;58738:28;;;;;;;;;;;;58729:37;;58826:1;58816:6;:11;58812:25;58829:8;58812:25;58892:1;46697:8;58864:6;:24;:29;58860:48;58895:13;58860:48;59200:47;59208:38;;;59200:7;:47::i;:::-;58660:607;;;57990:1292;59637:1;46697:8;59609:6;:24;:29;59605:48;59640:13;59605:48;57812:1853;59675:47;59683:38;;;59675:7;:47::i;:::-;57718:2012;;;;:::o;64499:485::-;64601:27;64630:23;64671:38;64712:15;:24;64728:7;64712:24;;;;;;;;;;;64671:65;;64889:18;64866:41;;64946:19;64940:26;64921:45;;64851:126;64499:485;;;:::o;87009:105::-;87069:7;87096:10;87089:17;;87009:105;:::o;63727:659::-;63876:11;64041:16;64034:5;64030:28;64021:37;;64201:16;64190:9;64186:32;64173:45;;64351:15;64340:9;64337:30;64329:5;64318:9;64315:20;64312:56;64302:66;;63727:659;;;;;:::o;71092:159::-;;;;;:::o;86318:311::-;86453:7;86473:16;47101:3;86499:19;:41;;86473:68;;47101:3;86567:31;86578:4;86584:2;86588:9;86567:10;:31::i;:::-;86559:40;;:62;;86552:69;;;86318:311;;;;;:::o;60278:450::-;60358:14;60526:16;60519:5;60515:28;60506:37;;60703:5;60689:11;60664:23;60660:41;60657:52;60650:5;60647:63;60637:73;;60278:450;;;;:::o;71916:158::-;;;;;:::o;30927:293::-;30329:1;31061:7;;:19;31053:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;30329:1;31194:7;:18;;;;30927:293::o;31228:213::-;30285:1;31411:7;:22;;;;31228:213::o;35243:191::-;35317:16;35336:6;;;;;;;;;;;35317:25;;35362:8;35353:6;;:17;;;;;;;;;;;;;;;;;;35417:8;35386:40;;35407:8;35386:40;;;;;;;;;;;;35306:128;35243:191;:::o;32474:98::-;32527:7;32554:10;32547:17;;32474:98;:::o;79543:112::-;79620:27;79630:2;79634:8;79620:27;;;;;;;;;;;;:9;:27::i;:::-;79543:112;;:::o;9792:647::-;10031:1;195:42;9983:45;;;:49;9979:453;;;195:42;10282;;;10333:4;10340:8;10282:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10277:144;;10396:8;10377:28;;;;;;;;;;;:::i;:::-;;;;;;;;10277:144;9979:453;9792:647;:::o;62437:234::-;62584:8;62532:18;:39;62551:19;:17;:19::i;:::-;62532:39;;;;;;;;;;;;;;;:49;62572:8;62532:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;62644:8;62608:55;;62623:19;:17;:19::i;:::-;62608:55;;;62654:8;62608:55;;;;;;:::i;:::-;;;;;;;;62437:234;;:::o;72514:691::-;72677:4;72723:2;72698:45;;;72744:19;:17;:19::i;:::-;72765:4;72771:7;72780:5;72698:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;72694:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72998:1;72981:6;:13;:18;72977:115;;73020:56;73028:47;;;73020:7;:56::i;:::-;72977:115;73164:6;73158:13;73149:6;73145:2;73141:15;73134:38;72694:504;72867:54;;;72857:64;;;:6;:64;;;;72850:71;;;72514:691;;;;;;:::o;92960:104::-;93020:13;93049:9;93042:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92960:104;:::o;26047:716::-;26103:13;26154:14;26191:1;26171:17;26182:5;26171:10;:17::i;:::-;:21;26154:38;;26207:20;26241:6;26230:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26207:41;;26263:11;26392:6;26388:2;26384:15;26376:6;26372:28;26365:35;;26429:288;26436:4;26429:288;;;26461:5;;;;;;;;26603:8;26598:2;26591:5;26587:14;26582:30;26577:3;26569:44;26659:2;26650:11;;;;;;:::i;:::-;;;;;26693:1;26684:5;:10;26429:288;26680:21;26429:288;26738:6;26731:13;;;;;26047:716;;;:::o;52086:178::-;52147:7;45921:13;46059:2;52175:18;:25;52194:5;52175:25;;;;;;;;;;;;;;;;:50;;52174:82;52167:89;;52086:178;;;:::o;86019:147::-;86156:6;86019:147;;;;;:::o;78751:708::-;78882:19;78888:2;78892:8;78882:5;:19::i;:::-;78961:1;78943:2;:14;;;:19;78939:502;;78983:11;78997:13;;78983:27;;79029:13;79051:8;79045:3;:14;79029:30;;79078:242;79109:62;79148:1;79152:2;79156:7;;;;;;79165:5;79109:30;:62::i;:::-;79104:176;;79200:56;79208:47;;;79200:7;:56::i;:::-;79104:176;79315:3;79307:5;:11;79078:242;;79402:3;79385:13;;:20;79381:44;;79407:18;79422:1;79415:9;;79407:7;:18::i;:::-;79381:44;78964:477;;78939:502;78751:708;;;:::o;22828:948::-;22881:7;22901:14;22918:1;22901:18;;22968:8;22959:5;:17;22955:106;;23006:8;22997:17;;;;;;:::i;:::-;;;;;23043:2;23033:12;;;;22955:106;23088:8;23079:5;:17;23075:106;;23126:8;23117:17;;;;;;:::i;:::-;;;;;23163:2;23153:12;;;;23075:106;23208:8;23199:5;:17;23195:106;;23246:8;23237:17;;;;;;:::i;:::-;;;;;23283:2;23273:12;;;;23195:106;23328:7;23319:5;:16;23315:103;;23365:7;23356:16;;;;;;:::i;:::-;;;;;23401:1;23391:11;;;;23315:103;23445:7;23436:5;:16;23432:103;;23482:7;23473:16;;;;;;:::i;:::-;;;;;23518:1;23508:11;;;;23432:103;23562:7;23553:5;:16;23549:103;;23599:7;23590:16;;;;;;:::i;:::-;;;;;23635:1;23625:11;;;;23549:103;23679:7;23670:5;:16;23666:68;;23717:1;23707:11;;;;23666:68;23762:6;23755:13;;;22828:948;;;:::o;73667:2305::-;73740:20;73763:13;;73740:36;;73803:1;73791:8;:13;73787:53;;73806:34;73814:25;;;73806:7;:34::i;:::-;73787:53;73853:61;73883:1;73887:2;73891:12;73905:8;73853:21;:61::i;:::-;74387:139;74424:2;74478:33;74501:1;74505:2;74509:1;74478:14;:33::i;:::-;74445:30;74466:8;74445:20;:30::i;:::-;:66;74387:18;:139::i;:::-;74353:17;:31;74371:12;74353:31;;;;;;;;;;;:173;;;;74813:1;46059:2;74783:1;:26;;74782:32;74770:8;:45;74744:18;:22;74763:2;74744:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;74926:16;47379:14;74961:2;74945:20;;:39;74926:58;;75017:1;75005:8;:13;75001:54;;75020:35;75028:26;;;75020:7;:35::i;:::-;75001:54;75072:11;75101:8;75086:12;:23;75072:37;;75124:15;75142:12;75124:30;;75171:676;75590:7;75546:8;75501:1;75435:25;75372:1;75307;75276:358;75842:3;75829:9;;;;;;:16;75171:676;;75879:3;75863:13;:19;;;;74102:1792;;;75904:60;75933:1;75937:2;75941:12;75955:8;75904:20;:60::i;:::-;73729:2243;73667:2305;;:::o;60830:324::-;60900:14;61133:1;61123:8;61120:15;61094:24;61090:46;61080:56;;60830:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:180;5536:77;5533:1;5526:88;5633:4;5630:1;5623:15;5657:4;5654:1;5647:15;5674:281;5757:27;5779:4;5757:27;:::i;:::-;5749:6;5745:40;5887:6;5875:10;5872:22;5851:18;5839:10;5836:34;5833:62;5830:88;;;5898:18;;:::i;:::-;5830:88;5938:10;5934:2;5927:22;5717:238;5674:281;;:::o;5961:129::-;5995:6;6022:20;;:::i;:::-;6012:30;;6051:33;6079:4;6071:6;6051:33;:::i;:::-;5961:129;;;:::o;6096:308::-;6158:4;6248:18;6240:6;6237:30;6234:56;;;6270:18;;:::i;:::-;6234:56;6308:29;6330:6;6308:29;:::i;:::-;6300:37;;6392:4;6386;6382:15;6374:23;;6096:308;;;:::o;6410:146::-;6507:6;6502:3;6497;6484:30;6548:1;6539:6;6534:3;6530:16;6523:27;6410:146;;;:::o;6562:425::-;6640:5;6665:66;6681:49;6723:6;6681:49;:::i;:::-;6665:66;:::i;:::-;6656:75;;6754:6;6747:5;6740:21;6792:4;6785:5;6781:16;6830:3;6821:6;6816:3;6812:16;6809:25;6806:112;;;6837:79;;:::i;:::-;6806:112;6927:54;6974:6;6969:3;6964;6927:54;:::i;:::-;6646:341;6562:425;;;;;:::o;7007:340::-;7063:5;7112:3;7105:4;7097:6;7093:17;7089:27;7079:122;;7120:79;;:::i;:::-;7079:122;7237:6;7224:20;7262:79;7337:3;7329:6;7322:4;7314:6;7310:17;7262:79;:::i;:::-;7253:88;;7069:278;7007:340;;;;:::o;7353:509::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7625:1;7614:9;7610:17;7597:31;7655:18;7647:6;7644:30;7641:117;;;7677:79;;:::i;:::-;7641:117;7782:63;7837:7;7828:6;7817:9;7813:22;7782:63;:::i;:::-;7772:73;;7568:287;7353:509;;;;:::o;7868:116::-;7938:21;7953:5;7938:21;:::i;:::-;7931:5;7928:32;7918:60;;7974:1;7971;7964:12;7918:60;7868:116;:::o;7990:133::-;8033:5;8071:6;8058:20;8049:29;;8087:30;8111:5;8087:30;:::i;:::-;7990:133;;;;:::o;8129:323::-;8185:6;8234:2;8222:9;8213:7;8209:23;8205:32;8202:119;;;8240:79;;:::i;:::-;8202:119;8360:1;8385:50;8427:7;8418:6;8407:9;8403:22;8385:50;:::i;:::-;8375:60;;8331:114;8129:323;;;;:::o;8458:619::-;8535:6;8543;8551;8600:2;8588:9;8579:7;8575:23;8571:32;8568:119;;;8606:79;;:::i;:::-;8568:119;8726:1;8751:53;8796:7;8787:6;8776:9;8772:22;8751:53;:::i;:::-;8741:63;;8697:117;8853:2;8879:53;8924:7;8915:6;8904:9;8900:22;8879:53;:::i;:::-;8869:63;;8824:118;8981:2;9007:53;9052:7;9043:6;9032:9;9028:22;9007:53;:::i;:::-;8997:63;;8952:118;8458:619;;;;;:::o;9083:60::-;9111:3;9132:5;9125:12;;9083:60;;;:::o;9149:142::-;9199:9;9232:53;9250:34;9259:24;9277:5;9259:24;:::i;:::-;9250:34;:::i;:::-;9232:53;:::i;:::-;9219:66;;9149:142;;;:::o;9297:126::-;9347:9;9380:37;9411:5;9380:37;:::i;:::-;9367:50;;9297:126;;;:::o;9429:157::-;9510:9;9543:37;9574:5;9543:37;:::i;:::-;9530:50;;9429:157;;;:::o;9592:193::-;9710:68;9772:5;9710:68;:::i;:::-;9705:3;9698:81;9592:193;;:::o;9791:284::-;9915:4;9953:2;9942:9;9938:18;9930:26;;9966:102;10065:1;10054:9;10050:17;10041:6;9966:102;:::i;:::-;9791:284;;;;:::o;10081:329::-;10140:6;10189:2;10177:9;10168:7;10164:23;10160:32;10157:119;;;10195:79;;:::i;:::-;10157:119;10315:1;10340:53;10385:7;10376:6;10365:9;10361:22;10340:53;:::i;:::-;10330:63;;10286:117;10081:329;;;;:::o;10416:468::-;10481:6;10489;10538:2;10526:9;10517:7;10513:23;10509:32;10506:119;;;10544:79;;:::i;:::-;10506:119;10664:1;10689:53;10734:7;10725:6;10714:9;10710:22;10689:53;:::i;:::-;10679:63;;10635:117;10791:2;10817:50;10859:7;10850:6;10839:9;10835:22;10817:50;:::i;:::-;10807:60;;10762:115;10416:468;;;;;:::o;10890:307::-;10951:4;11041:18;11033:6;11030:30;11027:56;;;11063:18;;:::i;:::-;11027:56;11101:29;11123:6;11101:29;:::i;:::-;11093:37;;11185:4;11179;11175:15;11167:23;;10890:307;;;:::o;11203:423::-;11280:5;11305:65;11321:48;11362:6;11321:48;:::i;:::-;11305:65;:::i;:::-;11296:74;;11393:6;11386:5;11379:21;11431:4;11424:5;11420:16;11469:3;11460:6;11455:3;11451:16;11448:25;11445:112;;;11476:79;;:::i;:::-;11445:112;11566:54;11613:6;11608:3;11603;11566:54;:::i;:::-;11286:340;11203:423;;;;;:::o;11645:338::-;11700:5;11749:3;11742:4;11734:6;11730:17;11726:27;11716:122;;11757:79;;:::i;:::-;11716:122;11874:6;11861:20;11899:78;11973:3;11965:6;11958:4;11950:6;11946:17;11899:78;:::i;:::-;11890:87;;11706:277;11645:338;;;;:::o;11989:943::-;12084:6;12092;12100;12108;12157:3;12145:9;12136:7;12132:23;12128:33;12125:120;;;12164:79;;:::i;:::-;12125:120;12284:1;12309:53;12354:7;12345:6;12334:9;12330:22;12309:53;:::i;:::-;12299:63;;12255:117;12411:2;12437:53;12482:7;12473:6;12462:9;12458:22;12437:53;:::i;:::-;12427:63;;12382:118;12539:2;12565:53;12610:7;12601:6;12590:9;12586:22;12565:53;:::i;:::-;12555:63;;12510:118;12695:2;12684:9;12680:18;12667:32;12726:18;12718:6;12715:30;12712:117;;;12748:79;;:::i;:::-;12712:117;12853:62;12907:7;12898:6;12887:9;12883:22;12853:62;:::i;:::-;12843:72;;12638:287;11989:943;;;;;;;:::o;12938:474::-;13006:6;13014;13063:2;13051:9;13042:7;13038:23;13034:32;13031:119;;;13069:79;;:::i;:::-;13031:119;13189:1;13214:53;13259:7;13250:6;13239:9;13235:22;13214:53;:::i;:::-;13204:63;;13160:117;13316:2;13342:53;13387:7;13378:6;13367:9;13363:22;13342:53;:::i;:::-;13332:63;;13287:118;12938:474;;;;;:::o;13418:::-;13486:6;13494;13543:2;13531:9;13522:7;13518:23;13514:32;13511:119;;;13549:79;;:::i;:::-;13511:119;13669:1;13694:53;13739:7;13730:6;13719:9;13715:22;13694:53;:::i;:::-;13684:63;;13640:117;13796:2;13822:53;13867:7;13858:6;13847:9;13843:22;13822:53;:::i;:::-;13812:63;;13767:118;13418:474;;;;;:::o;13898:180::-;13946:77;13943:1;13936:88;14043:4;14040:1;14033:15;14067:4;14064:1;14057:15;14084:320;14128:6;14165:1;14159:4;14155:12;14145:22;;14212:1;14206:4;14202:12;14233:18;14223:81;;14289:4;14281:6;14277:17;14267:27;;14223:81;14351:2;14343:6;14340:14;14320:18;14317:38;14314:84;;14370:18;;:::i;:::-;14314:84;14135:269;14084:320;;;:::o;14410:141::-;14459:4;14482:3;14474:11;;14505:3;14502:1;14495:14;14539:4;14536:1;14526:18;14518:26;;14410:141;;;:::o;14557:93::-;14594:6;14641:2;14636;14629:5;14625:14;14621:23;14611:33;;14557:93;;;:::o;14656:107::-;14700:8;14750:5;14744:4;14740:16;14719:37;;14656:107;;;;:::o;14769:393::-;14838:6;14888:1;14876:10;14872:18;14911:97;14941:66;14930:9;14911:97;:::i;:::-;15029:39;15059:8;15048:9;15029:39;:::i;:::-;15017:51;;15101:4;15097:9;15090:5;15086:21;15077:30;;15150:4;15140:8;15136:19;15129:5;15126:30;15116:40;;14845:317;;14769:393;;;;;:::o;15168:142::-;15218:9;15251:53;15269:34;15278:24;15296:5;15278:24;:::i;:::-;15269:34;:::i;:::-;15251:53;:::i;:::-;15238:66;;15168:142;;;:::o;15316:75::-;15359:3;15380:5;15373:12;;15316:75;;;:::o;15397:269::-;15507:39;15538:7;15507:39;:::i;:::-;15568:91;15617:41;15641:16;15617:41;:::i;:::-;15609:6;15602:4;15596:11;15568:91;:::i;:::-;15562:4;15555:105;15473:193;15397:269;;;:::o;15672:73::-;15717:3;15672:73;:::o;15751:189::-;15828:32;;:::i;:::-;15869:65;15927:6;15919;15913:4;15869:65;:::i;:::-;15804:136;15751:189;;:::o;15946:186::-;16006:120;16023:3;16016:5;16013:14;16006:120;;;16077:39;16114:1;16107:5;16077:39;:::i;:::-;16050:1;16043:5;16039:13;16030:22;;16006:120;;;15946:186;;:::o;16138:543::-;16239:2;16234:3;16231:11;16228:446;;;16273:38;16305:5;16273:38;:::i;:::-;16357:29;16375:10;16357:29;:::i;:::-;16347:8;16343:44;16540:2;16528:10;16525:18;16522:49;;;16561:8;16546:23;;16522:49;16584:80;16640:22;16658:3;16640:22;:::i;:::-;16630:8;16626:37;16613:11;16584:80;:::i;:::-;16243:431;;16228:446;16138:543;;;:::o;16687:117::-;16741:8;16791:5;16785:4;16781:16;16760:37;;16687:117;;;;:::o;16810:169::-;16854:6;16887:51;16935:1;16931:6;16923:5;16920:1;16916:13;16887:51;:::i;:::-;16883:56;16968:4;16962;16958:15;16948:25;;16861:118;16810:169;;;;:::o;16984:295::-;17060:4;17206:29;17231:3;17225:4;17206:29;:::i;:::-;17198:37;;17268:3;17265:1;17261:11;17255:4;17252:21;17244:29;;16984:295;;;;:::o;17284:1395::-;17401:37;17434:3;17401:37;:::i;:::-;17503:18;17495:6;17492:30;17489:56;;;17525:18;;:::i;:::-;17489:56;17569:38;17601:4;17595:11;17569:38;:::i;:::-;17654:67;17714:6;17706;17700:4;17654:67;:::i;:::-;17748:1;17772:4;17759:17;;17804:2;17796:6;17793:14;17821:1;17816:618;;;;18478:1;18495:6;18492:77;;;18544:9;18539:3;18535:19;18529:26;18520:35;;18492:77;18595:67;18655:6;18648:5;18595:67;:::i;:::-;18589:4;18582:81;18451:222;17786:887;;17816:618;17868:4;17864:9;17856:6;17852:22;17902:37;17934:4;17902:37;:::i;:::-;17961:1;17975:208;17989:7;17986:1;17983:14;17975:208;;;18068:9;18063:3;18059:19;18053:26;18045:6;18038:42;18119:1;18111:6;18107:14;18097:24;;18166:2;18155:9;18151:18;18138:31;;18012:4;18009:1;18005:12;18000:17;;17975:208;;;18211:6;18202:7;18199:19;18196:179;;;18269:9;18264:3;18260:19;18254:26;18312:48;18354:4;18346:6;18342:17;18331:9;18312:48;:::i;:::-;18304:6;18297:64;18219:156;18196:179;18421:1;18417;18409:6;18405:14;18401:22;18395:4;18388:36;17823:611;;;17786:887;;17376:1303;;;17284:1395;;:::o;18685:147::-;18786:11;18823:3;18808:18;;18685:147;;;;:::o;18838:114::-;;:::o;18958:398::-;19117:3;19138:83;19219:1;19214:3;19138:83;:::i;:::-;19131:90;;19230:93;19319:3;19230:93;:::i;:::-;19348:1;19343:3;19339:11;19332:18;;18958:398;;;:::o;19362:379::-;19546:3;19568:147;19711:3;19568:147;:::i;:::-;19561:154;;19732:3;19725:10;;19362:379;;;:::o;19747:171::-;19887:23;19883:1;19875:6;19871:14;19864:47;19747:171;:::o;19924:366::-;20066:3;20087:67;20151:2;20146:3;20087:67;:::i;:::-;20080:74;;20163:93;20252:3;20163:93;:::i;:::-;20281:2;20276:3;20272:12;20265:19;;19924:366;;;:::o;20296:419::-;20462:4;20500:2;20489:9;20485:18;20477:26;;20549:9;20543:4;20539:20;20535:1;20524:9;20520:17;20513:47;20577:131;20703:4;20577:131;:::i;:::-;20569:139;;20296:419;;;:::o;20721:170::-;20861:22;20857:1;20849:6;20845:14;20838:46;20721:170;:::o;20897:366::-;21039:3;21060:67;21124:2;21119:3;21060:67;:::i;:::-;21053:74;;21136:93;21225:3;21136:93;:::i;:::-;21254:2;21249:3;21245:12;21238:19;;20897:366;;;:::o;21269:419::-;21435:4;21473:2;21462:9;21458:18;21450:26;;21522:9;21516:4;21512:20;21508:1;21497:9;21493:17;21486:47;21550:131;21676:4;21550:131;:::i;:::-;21542:139;;21269:419;;;:::o;21694:173::-;21834:25;21830:1;21822:6;21818:14;21811:49;21694:173;:::o;21873:366::-;22015:3;22036:67;22100:2;22095:3;22036:67;:::i;:::-;22029:74;;22112:93;22201:3;22112:93;:::i;:::-;22230:2;22225:3;22221:12;22214:19;;21873:366;;;:::o;22245:419::-;22411:4;22449:2;22438:9;22434:18;22426:26;;22498:9;22492:4;22488:20;22484:1;22473:9;22469:17;22462:47;22526:131;22652:4;22526:131;:::i;:::-;22518:139;;22245:419;;;:::o;22670:180::-;22718:77;22715:1;22708:88;22815:4;22812:1;22805:15;22839:4;22836:1;22829:15;22856:191;22896:3;22915:20;22933:1;22915:20;:::i;:::-;22910:25;;22949:20;22967:1;22949:20;:::i;:::-;22944:25;;22992:1;22989;22985:9;22978:16;;23013:3;23010:1;23007:10;23004:36;;;23020:18;;:::i;:::-;23004:36;22856:191;;;;:::o;23053:167::-;23193:19;23189:1;23181:6;23177:14;23170:43;23053:167;:::o;23226:366::-;23368:3;23389:67;23453:2;23448:3;23389:67;:::i;:::-;23382:74;;23465:93;23554:3;23465:93;:::i;:::-;23583:2;23578:3;23574:12;23567:19;;23226:366;;;:::o;23598:419::-;23764:4;23802:2;23791:9;23787:18;23779:26;;23851:9;23845:4;23841:20;23837:1;23826:9;23822:17;23815:47;23879:131;24005:4;23879:131;:::i;:::-;23871:139;;23598:419;;;:::o;24023:182::-;24163:34;24159:1;24151:6;24147:14;24140:58;24023:182;:::o;24211:366::-;24353:3;24374:67;24438:2;24433:3;24374:67;:::i;:::-;24367:74;;24450:93;24539:3;24450:93;:::i;:::-;24568:2;24563:3;24559:12;24552:19;;24211:366;;;:::o;24583:419::-;24749:4;24787:2;24776:9;24772:18;24764:26;;24836:9;24830:4;24826:20;24822:1;24811:9;24807:17;24800:47;24864:131;24990:4;24864:131;:::i;:::-;24856:139;;24583:419;;;:::o;25008:194::-;25048:4;25068:20;25086:1;25068:20;:::i;:::-;25063:25;;25102:20;25120:1;25102:20;:::i;:::-;25097:25;;25146:1;25143;25139:9;25131:17;;25170:1;25164:4;25161:11;25158:37;;;25175:18;;:::i;:::-;25158:37;25008:194;;;;:::o;25208:410::-;25248:7;25271:20;25289:1;25271:20;:::i;:::-;25266:25;;25305:20;25323:1;25305:20;:::i;:::-;25300:25;;25360:1;25357;25353:9;25382:30;25400:11;25382:30;:::i;:::-;25371:41;;25561:1;25552:7;25548:15;25545:1;25542:22;25522:1;25515:9;25495:83;25472:139;;25591:18;;:::i;:::-;25472:139;25256:362;25208:410;;;;:::o;25624:179::-;25764:31;25760:1;25752:6;25748:14;25741:55;25624:179;:::o;25809:366::-;25951:3;25972:67;26036:2;26031:3;25972:67;:::i;:::-;25965:74;;26048:93;26137:3;26048:93;:::i;:::-;26166:2;26161:3;26157:12;26150:19;;25809:366;;;:::o;26181:419::-;26347:4;26385:2;26374:9;26370:18;26362:26;;26434:9;26428:4;26424:20;26420:1;26409:9;26405:17;26398:47;26462:131;26588:4;26462:131;:::i;:::-;26454:139;;26181:419;;;:::o;26606:234::-;26746:34;26742:1;26734:6;26730:14;26723:58;26815:17;26810:2;26802:6;26798:15;26791:42;26606:234;:::o;26846:366::-;26988:3;27009:67;27073:2;27068:3;27009:67;:::i;:::-;27002:74;;27085:93;27174:3;27085:93;:::i;:::-;27203:2;27198:3;27194:12;27187:19;;26846:366;;;:::o;27218:419::-;27384:4;27422:2;27411:9;27407:18;27399:26;;27471:9;27465:4;27461:20;27457:1;27446:9;27442:17;27435:47;27499:131;27625:4;27499:131;:::i;:::-;27491:139;;27218:419;;;:::o;27643:148::-;27745:11;27782:3;27767:18;;27643:148;;;;:::o;27797:390::-;27903:3;27931:39;27964:5;27931:39;:::i;:::-;27986:89;28068:6;28063:3;27986:89;:::i;:::-;27979:96;;28084:65;28142:6;28137:3;28130:4;28123:5;28119:16;28084:65;:::i;:::-;28174:6;28169:3;28165:16;28158:23;;27907:280;27797:390;;;;:::o;28217:874::-;28320:3;28357:5;28351:12;28386:36;28412:9;28386:36;:::i;:::-;28438:89;28520:6;28515:3;28438:89;:::i;:::-;28431:96;;28558:1;28547:9;28543:17;28574:1;28569:166;;;;28749:1;28744:341;;;;28536:549;;28569:166;28653:4;28649:9;28638;28634:25;28629:3;28622:38;28715:6;28708:14;28701:22;28693:6;28689:35;28684:3;28680:45;28673:52;;28569:166;;28744:341;28811:38;28843:5;28811:38;:::i;:::-;28871:1;28885:154;28899:6;28896:1;28893:13;28885:154;;;28973:7;28967:14;28963:1;28958:3;28954:11;28947:35;29023:1;29014:7;29010:15;28999:26;;28921:4;28918:1;28914:12;28909:17;;28885:154;;;29068:6;29063:3;29059:16;29052:23;;28751:334;;28536:549;;28324:767;;28217:874;;;;:::o;29097:589::-;29322:3;29344:95;29435:3;29426:6;29344:95;:::i;:::-;29337:102;;29456:95;29547:3;29538:6;29456:95;:::i;:::-;29449:102;;29568:92;29656:3;29647:6;29568:92;:::i;:::-;29561:99;;29677:3;29670:10;;29097:589;;;;;;:::o;29692:170::-;29832:22;29828:1;29820:6;29816:14;29809:46;29692:170;:::o;29868:366::-;30010:3;30031:67;30095:2;30090:3;30031:67;:::i;:::-;30024:74;;30107:93;30196:3;30107:93;:::i;:::-;30225:2;30220:3;30216:12;30209:19;;29868:366;;;:::o;30240:419::-;30406:4;30444:2;30433:9;30429:18;30421:26;;30493:9;30487:4;30483:20;30479:1;30468:9;30464:17;30457:47;30521:131;30647:4;30521:131;:::i;:::-;30513:139;;30240:419;;;:::o;30665:225::-;30805:34;30801:1;30793:6;30789:14;30782:58;30874:8;30869:2;30861:6;30857:15;30850:33;30665:225;:::o;30896:366::-;31038:3;31059:67;31123:2;31118:3;31059:67;:::i;:::-;31052:74;;31135:93;31224:3;31135:93;:::i;:::-;31253:2;31248:3;31244:12;31237:19;;30896:366;;;:::o;31268:419::-;31434:4;31472:2;31461:9;31457:18;31449:26;;31521:9;31515:4;31511:20;31507:1;31496:9;31492:17;31485:47;31549:131;31675:4;31549:131;:::i;:::-;31541:139;;31268:419;;;:::o;31693:171::-;31732:3;31755:24;31773:5;31755:24;:::i;:::-;31746:33;;31801:4;31794:5;31791:15;31788:41;;31809:18;;:::i;:::-;31788:41;31856:1;31849:5;31845:13;31838:20;;31693:171;;;:::o;31870:182::-;32010:34;32006:1;31998:6;31994:14;31987:58;31870:182;:::o;32058:366::-;32200:3;32221:67;32285:2;32280:3;32221:67;:::i;:::-;32214:74;;32297:93;32386:3;32297:93;:::i;:::-;32415:2;32410:3;32406:12;32399:19;;32058:366;;;:::o;32430:419::-;32596:4;32634:2;32623:9;32619:18;32611:26;;32683:9;32677:4;32673:20;32669:1;32658:9;32654:17;32647:47;32711:131;32837:4;32711:131;:::i;:::-;32703:139;;32430:419;;;:::o;32855:181::-;32995:33;32991:1;32983:6;32979:14;32972:57;32855:181;:::o;33042:366::-;33184:3;33205:67;33269:2;33264:3;33205:67;:::i;:::-;33198:74;;33281:93;33370:3;33281:93;:::i;:::-;33399:2;33394:3;33390:12;33383:19;;33042:366;;;:::o;33414:419::-;33580:4;33618:2;33607:9;33603:18;33595:26;;33667:9;33661:4;33657:20;33653:1;33642:9;33638:17;33631:47;33695:131;33821:4;33695:131;:::i;:::-;33687:139;;33414:419;;;:::o;33839:332::-;33960:4;33998:2;33987:9;33983:18;33975:26;;34011:71;34079:1;34068:9;34064:17;34055:6;34011:71;:::i;:::-;34092:72;34160:2;34149:9;34145:18;34136:6;34092:72;:::i;:::-;33839:332;;;;;:::o;34177:137::-;34231:5;34262:6;34256:13;34247:22;;34278:30;34302:5;34278:30;:::i;:::-;34177:137;;;;:::o;34320:345::-;34387:6;34436:2;34424:9;34415:7;34411:23;34407:32;34404:119;;;34442:79;;:::i;:::-;34404:119;34562:1;34587:61;34640:7;34631:6;34620:9;34616:22;34587:61;:::i;:::-;34577:71;;34533:125;34320:345;;;;:::o;34671:98::-;34722:6;34756:5;34750:12;34740:22;;34671:98;;;:::o;34775:168::-;34858:11;34892:6;34887:3;34880:19;34932:4;34927:3;34923:14;34908:29;;34775:168;;;;:::o;34949:373::-;35035:3;35063:38;35095:5;35063:38;:::i;:::-;35117:70;35180:6;35175:3;35117:70;:::i;:::-;35110:77;;35196:65;35254:6;35249:3;35242:4;35235:5;35231:16;35196:65;:::i;:::-;35286:29;35308:6;35286:29;:::i;:::-;35281:3;35277:39;35270:46;;35039:283;34949:373;;;;:::o;35328:640::-;35523:4;35561:3;35550:9;35546:19;35538:27;;35575:71;35643:1;35632:9;35628:17;35619:6;35575:71;:::i;:::-;35656:72;35724:2;35713:9;35709:18;35700:6;35656:72;:::i;:::-;35738;35806:2;35795:9;35791:18;35782:6;35738:72;:::i;:::-;35857:9;35851:4;35847:20;35842:2;35831:9;35827:18;35820:48;35885:76;35956:4;35947:6;35885:76;:::i;:::-;35877:84;;35328:640;;;;;;;:::o;35974:141::-;36030:5;36061:6;36055:13;36046:22;;36077:32;36103:5;36077:32;:::i;:::-;35974:141;;;;:::o;36121:349::-;36190:6;36239:2;36227:9;36218:7;36214:23;36210:32;36207:119;;;36245:79;;:::i;:::-;36207:119;36365:1;36390:63;36445:7;36436:6;36425:9;36421:22;36390:63;:::i;:::-;36380:73;;36336:127;36121:349;;;;:::o;36476:180::-;36524:77;36521:1;36514:88;36621:4;36618:1;36611:15;36645:4;36642:1;36635:15
Swarm Source
ipfs://5d64cade8a326708b97d728864ce54384c92cc15e49beb2456132a48b75e75cc
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.