ERC-721
Overview
Max Total Supply
4,288 PAA
Holders
233
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
11 PAALoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
S3APORT
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2024-10-24 */ // 🄿🄸🅇🄴🄻 🄰🄿🄴🄳 🄿🄸🄽🅂 //Unique Pixel Collection on APECHAIN. // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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`. * * 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 calldata data) external; /** * @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 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) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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; /** * @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; /** * @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 address zero. * * 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); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be * reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.20; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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 towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (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 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 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. uint256 twos = denominator & (0 - denominator); 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 (unsignedRoundsUp(rounding) && 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 * towards zero. * * 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } } // File: @openzeppelin/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @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: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @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), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(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) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } 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 bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.20; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors { using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; mapping(uint256 tokenId => address) private _owners; mapping(address owner => uint256) private _balances; mapping(uint256 tokenId => address) private _tokenApprovals; mapping(address owner => mapping(address operator => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual returns (uint256) { if (owner == address(0)) { revert ERC721InvalidOwner(address(0)); } return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual returns (address) { return _requireOwned(tokenId); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual returns (string memory) { _requireOwned(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : ""; } /** * @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, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual { _approve(to, tokenId, _msgSender()); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual returns (address) { _requireOwned(tokenId); return _getApproved(tokenId); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. address previousOwner = _update(to, tokenId, _msgSender()); if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual { transferFrom(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`. */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted. */ function _getApproved(uint256 tokenId) internal view virtual returns (address) { return _tokenApprovals[tokenId]; } /** * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in * particular (ignoring whether it is owned by `owner`). * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) { return spender != address(0) && (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender); } /** * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner. * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets * the `spender` for the specific `tokenId`. * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual { if (!_isAuthorized(owner, spender, tokenId)) { if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } else { revert ERC721InsufficientApproval(spender, tokenId); } } } /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that * a uint256 would ever overflow from increments when these increments are bounded to uint128 values. * * WARNING: Increasing an account's balance using this function tends to be paired with an override of the * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership * remain consistent with one another. */ function _increaseBalance(address account, uint128 value) internal virtual { unchecked { _balances[account] += value; } } /** * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update. * * The `auth` argument is optional. If the value passed is non 0, then this function will check that * `auth` is either the owner of the token, or approved to operate on the token (by the owner). * * Emits a {Transfer} event. * * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}. */ function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) { address from = _ownerOf(tokenId); // Perform (optional) operator check if (auth != address(0)) { _checkAuthorized(from, auth, tokenId); } // Execute the update if (from != address(0)) { // Clear approval. No need to re-authorize or emit the Approval event _approve(address(0), tokenId, address(0), false); unchecked { _balances[from] -= 1; } } if (to != address(0)) { unchecked { _balances[to] += 1; } } _owners[tokenId] = to; emit Transfer(from, to, tokenId); return from; } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner != address(0)) { revert ERC721InvalidSender(address(0)); } } /** * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); _checkOnERC721Received(address(0), to, tokenId, data); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal { address previousOwner = _update(address(0), tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } else if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients * are aware of the ERC721 standard to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is like {safeTransferFrom} in the sense that it invokes * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `tokenId` token must exist and be owned by `from`. * - `to` cannot be the zero address. * - `from` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId) internal { _safeTransfer(from, to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Approve `to` to operate on `tokenId` * * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is * either the owner of the token, or approved to operate on all tokens held by this owner. * * Emits an {Approval} event. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address to, uint256 tokenId, address auth) internal { _approve(to, tokenId, auth, true); } /** * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not * emitted in the context of transfers. */ function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual { // Avoid reading the owner unless necessary if (emitEvent || auth != address(0)) { address owner = _requireOwned(tokenId); // We do not use _isAuthorized because single-token approvals should not be able to call approve if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) { revert ERC721InvalidApprover(auth); } if (emitEvent) { emit Approval(owner, to, tokenId); } } _tokenApprovals[tokenId] = to; } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Requirements: * - operator can't be the address zero. * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC721InvalidOperator(operator); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned). * Returns the owner. * * Overrides to ownership logic should be done to {_ownerOf}. */ function _requireOwned(uint256 tokenId) internal view returns (address) { address owner = _ownerOf(tokenId); if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } return owner; } /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the * recipient doesn't accept the token transfer. The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private { if (to.code.length > 0) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { if (retval != IERC721Receiver.onERC721Received.selector) { revert ERC721InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { revert ERC721InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.20; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.20; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds enumerability * of all the token ids in the contract as well as all token ids owned by each account. * * CAUTION: `ERC721` extensions that implement custom `balanceOf` logic, such as `ERC721Consecutive`, * interfere with enumerability and should not be used together with `ERC721Enumerable`. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens; mapping(uint256 tokenId => uint256) private _ownedTokensIndex; uint256[] private _allTokens; mapping(uint256 tokenId => uint256) private _allTokensIndex; /** * @dev An `owner`'s token query was out of bounds for `index`. * * NOTE: The owner being `address(0)` indicates a global out of bounds index. */ error ERC721OutOfBoundsIndex(address owner, uint256 index); /** * @dev Batch mint is not allowed. */ error ERC721EnumerableForbiddenBatchMint(); /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns (uint256) { if (index >= balanceOf(owner)) { revert ERC721OutOfBoundsIndex(owner, index); } return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual returns (uint256) { if (index >= totalSupply()) { revert ERC721OutOfBoundsIndex(address(0), index); } return _allTokens[index]; } /** * @dev See {ERC721-_update}. */ function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) { address previousOwner = super._update(to, tokenId, auth); if (previousOwner == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (previousOwner != to) { _removeTokenFromOwnerEnumeration(previousOwner, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (previousOwner != to) { _addTokenToOwnerEnumeration(to, tokenId); } return previousOwner; } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = balanceOf(to) - 1; _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = balanceOf(from); uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } /** * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch */ function _increaseBalance(address account, uint128 amount) internal virtual override { if (amount > 0) { revert ERC721EnumerableForbiddenBatchMint(); } super._increaseBalance(account, amount); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.9.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: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } } // File: whitelisted72§.sol // 🄿🄸🅇🄴🄻 🄰🄿🄴🄳 🄿🄸🄽🅂 //Unique Pixel Collection on APECHAIN. pragma solidity ^0.8.20; contract S3APORT is ERC721Enumerable, Ownable, ReentrancyGuard { using Address for address; using Strings for uint256; string public baseTokenURI = "ipfs://bafybeicfvjd3633nlymqy2jxrfhgafwev53xkou3zrp2o2uwn2zdzkus3e"; uint256 public maxSupply = 2222; uint256 public MAX_MINTS_PER_TX = 300; uint256 public PUBLIC_SALE_PRICE = 0.0025 ether; uint256 public WHITELIST_SALE_PRICE = 0 ether; uint256 public NUM_FREE_MINTS = 1500; uint256 public MAX_FREE_PER_WALLET = 1; uint256 public freeNFTAlreadyMinted = 0; bool public isPublicSaleActive = true; mapping(address => bool) public whitelist; // Pass msg.sender as the initial owner to the Ownable constructor constructor() ERC721("Pixel Aped Pins", "PAA") Ownable(msg.sender) {} function calculateMintingPrice(uint256 quantity) public view returns (uint256) { if (quantity == 10) { return 0.025 ether; } else if (quantity == 100) { return 0.2 ether; } else { return PUBLIC_SALE_PRICE * quantity; } } function mint(uint256 numberOfTokens) external payable nonReentrant { require(isPublicSaleActive, "Public sale is not open"); require(totalSupply() + numberOfTokens <= maxSupply, "No more tokens available"); uint256 totalPrice = calculateMintingPrice(numberOfTokens); if (whitelist[msg.sender]) { totalPrice = WHITELIST_SALE_PRICE * numberOfTokens; } address feeWallet = 0x8018Ef1762eD7Ce9e57356fb0017606dC2b3af15; if (freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS) { require(totalPrice <= msg.value, "Incorrect ETH value sent"); payable(feeWallet).transfer(totalPrice); } else { if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) { require(totalPrice <= msg.value, "Incorrect ETH value sent"); require(numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded"); payable(feeWallet).transfer(totalPrice); } else { require(numberOfTokens <= MAX_FREE_PER_WALLET, "Max mints per transaction exceeded"); freeNFTAlreadyMinted += numberOfTokens; } } for (uint256 i = 0; i < numberOfTokens; i++) { _safeMint(msg.sender, totalSupply() + 1); } } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function treasuryMint(uint256 quantity) public onlyOwner { require(quantity > 0, "Invalid mint amount"); require(totalSupply() + quantity <= maxSupply, "Maximum supply exceeded"); for (uint256 i = 0; i < quantity; i++) { _safeMint(msg.sender, totalSupply() + 1); } } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { // Instead of using _exists, we ensure the token has an owner, indirectly checking existence. address owner = ownerOf(tokenId); require(owner != address(0), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, "/", tokenId.toString(), ".json")) : ""; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setIsPublicSaleActive(bool isPublicSaleActive_) external onlyOwner { isPublicSaleActive = isPublicSaleActive_; } function setNumFreeMints(uint256 numFreeMints) external onlyOwner { NUM_FREE_MINTS = numFreeMints; } function setMaxSupply(uint256 maxSupply_) external onlyOwner { maxSupply = maxSupply_; } function setSalePrice(uint256 price) external onlyOwner { PUBLIC_SALE_PRICE = price; } function setMaxLimitPerTransaction(uint256 limit) external onlyOwner { MAX_MINTS_PER_TX = limit; } function setFreeLimitPerWallet(uint256 limit) external onlyOwner { MAX_FREE_PER_WALLET = limit; } function setWhitelistSalePrice(uint256 price) external onlyOwner { WHITELIST_SALE_PRICE = price; } function addToWhitelist(address addr) external onlyOwner { whitelist[addr] = true; } function removeFromWhitelist(address addr) external onlyOwner { whitelist[addr] = false; } function addMultipleToWhitelist(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { whitelist[addresses[i]] = true; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addMultipleToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"calculateMintingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isPublicSaleActive_","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numFreeMints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setWhitelistSalePrice","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180608001604052806042815260200161451860429139600c908161002b9190610494565b506108ae600d5561012c600e556608e1bc9bf04000600f555f6010556105dc60115560016012555f601355600160145f6101000a81548160ff02191690831515021790555034801561007b575f80fd5b50336040518060400160405280600f81526020017f506978656c20417065642050696e7300000000000000000000000000000000008152506040518060400160405280600381526020017f5041410000000000000000000000000000000000000000000000000000000000815250815f90816100f79190610494565b5080600190816101079190610494565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361017a575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161017191906105a2565b60405180910390fd5b6101898161019760201b60201c565b506001600b819055506105bb565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806102d557607f821691505b6020821081036102e8576102e7610291565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261034a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261030f565b610354868361030f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61039861039361038e8461036c565b610375565b61036c565b9050919050565b5f819050919050565b6103b18361037e565b6103c56103bd8261039f565b84845461031b565b825550505050565b5f90565b6103d96103cd565b6103e48184846103a8565b505050565b5b81811015610407576103fc5f826103d1565b6001810190506103ea565b5050565b601f82111561044c5761041d816102ee565b61042684610300565b81016020851015610435578190505b61044961044185610300565b8301826103e9565b50505b505050565b5f82821c905092915050565b5f61046c5f1984600802610451565b1980831691505092915050565b5f610484838361045d565b9150826002028217905092915050565b61049d8261025a565b67ffffffffffffffff8111156104b6576104b5610264565b5b6104c082546102be565b6104cb82828561040b565b5f60209050601f8311600181146104fc575f84156104ea578287015190505b6104f48582610479565b86555061055b565b601f19841661050a866102ee565b5f5b828110156105315784890151825560018201915060208501945060208101905061050c565b8683101561054e578489015161054a601f89168261045d565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61058c82610563565b9050919050565b61059c81610582565b82525050565b5f6020820190506105b55f830184610593565b92915050565b613f50806105c85f395ff3fe608060405260043610610266575f3560e01c8063715018a611610143578063b88d4fde116100b5578063d5abeb0111610079578063d5abeb01146108e2578063e43252d71461090c578063e985e9c514610934578063efdc778814610970578063f2fde38b14610998578063f6511f93146109c057610266565b8063b88d4fde14610800578063bc912e1a14610828578063c6a91b4214610852578063c87b56dd1461087c578063d547cfb7146108b857610266565b8063982d669e11610107578063982d669e1461070457806398710d1e1461072e5780639b19251a146107585780639e9fcffc14610794578063a0712d68146107bc578063a22cb465146107d857610266565b8063715018a61461064a5780638401f8d1146106605780638ab1d681146106885780638da5cb5b146106b057806395d89b41146106da57610266565b806323b872dd116101dc57806342842e0e116101a057806342842e0e1461051e5780634f6ccce71461054657806355f804b3146105825780636352211e146105aa5780636f8b44b0146105e657806370a082311461060e57610266565b806323b872dd1461045457806328cad13d1461047c5780632f745c59146104a45780633515fbdb146104e05780633ccfd60b1461050857610266565b80630a00ae831161022e5780630a00ae831461035e57806318160ddd146103865780631919fed7146103b0578063193ad7b4146103d85780631e84c41314610402578063202f298a1461042c57610266565b806301ffc9a71461026a57806306fdde03146102a657806307e89ec0146102d0578063081812fc146102fa578063095ea7b314610336575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612e32565b6109fc565b60405161029d9190612e77565b60405180910390f35b3480156102b1575f80fd5b506102ba610a75565b6040516102c79190612f00565b60405180910390f35b3480156102db575f80fd5b506102e4610b04565b6040516102f19190612f38565b60405180910390f35b348015610305575f80fd5b50610320600480360381019061031b9190612f7b565b610b0a565b60405161032d9190612fe5565b60405180910390f35b348015610341575f80fd5b5061035c60048036038101906103579190613028565b610b25565b005b348015610369575f80fd5b50610384600480360381019061037f9190612f7b565b610b3b565b005b348015610391575f80fd5b5061039a610b4d565b6040516103a79190612f38565b60405180910390f35b3480156103bb575f80fd5b506103d660048036038101906103d19190612f7b565b610b59565b005b3480156103e3575f80fd5b506103ec610b6b565b6040516103f99190612f38565b60405180910390f35b34801561040d575f80fd5b50610416610b71565b6040516104239190612e77565b60405180910390f35b348015610437575f80fd5b50610452600480360381019061044d9190612f7b565b610b83565b005b34801561045f575f80fd5b5061047a60048036038101906104759190613066565b610b95565b005b348015610487575f80fd5b506104a2600480360381019061049d91906130e0565b610c94565b005b3480156104af575f80fd5b506104ca60048036038101906104c59190613028565b610cb8565b6040516104d79190612f38565b60405180910390f35b3480156104eb575f80fd5b5061050660048036038101906105019190612f7b565b610d5c565b005b348015610513575f80fd5b5061051c610d6e565b005b348015610529575f80fd5b50610544600480360381019061053f9190613066565b610d92565b005b348015610551575f80fd5b5061056c60048036038101906105679190612f7b565b610db1565b6040516105799190612f38565b60405180910390f35b34801561058d575f80fd5b506105a860048036038101906105a39190613237565b610e23565b005b3480156105b5575f80fd5b506105d060048036038101906105cb9190612f7b565b610e3e565b6040516105dd9190612fe5565b60405180910390f35b3480156105f1575f80fd5b5061060c60048036038101906106079190612f7b565b610e4f565b005b348015610619575f80fd5b50610634600480360381019061062f919061327e565b610e61565b6040516106419190612f38565b60405180910390f35b348015610655575f80fd5b5061065e610f17565b005b34801561066b575f80fd5b5061068660048036038101906106819190613306565b610f2a565b005b348015610693575f80fd5b506106ae60048036038101906106a9919061327e565b610fcd565b005b3480156106bb575f80fd5b506106c461102c565b6040516106d19190612fe5565b60405180910390f35b3480156106e5575f80fd5b506106ee611054565b6040516106fb9190612f00565b60405180910390f35b34801561070f575f80fd5b506107186110e4565b6040516107259190612f38565b60405180910390f35b348015610739575f80fd5b506107426110ea565b60405161074f9190612f38565b60405180910390f35b348015610763575f80fd5b5061077e6004803603810190610779919061327e565b6110f0565b60405161078b9190612e77565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b59190612f7b565b61110d565b005b6107d660048036038101906107d19190612f7b565b61111f565b005b3480156107e3575f80fd5b506107fe60048036038101906107f99190613351565b611482565b005b34801561080b575f80fd5b506108266004803603810190610821919061342d565b611498565b005b348015610833575f80fd5b5061083c6114b5565b6040516108499190612f38565b60405180910390f35b34801561085d575f80fd5b506108666114bb565b6040516108739190612f38565b60405180910390f35b348015610887575f80fd5b506108a2600480360381019061089d9190612f7b565b6114c1565b6040516108af9190612f00565b60405180910390f35b3480156108c3575f80fd5b506108cc611598565b6040516108d99190612f00565b60405180910390f35b3480156108ed575f80fd5b506108f6611624565b6040516109039190612f38565b60405180910390f35b348015610917575f80fd5b50610932600480360381019061092d919061327e565b61162a565b005b34801561093f575f80fd5b5061095a600480360381019061095591906134ad565b61168a565b6040516109679190612e77565b60405180910390f35b34801561097b575f80fd5b5061099660048036038101906109919190612f7b565b611718565b005b3480156109a3575f80fd5b506109be60048036038101906109b9919061327e565b6117f1565b005b3480156109cb575f80fd5b506109e660048036038101906109e19190612f7b565b611875565b6040516109f39190612f38565b60405180910390f35b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6e5750610a6d826118bb565b5b9050919050565b60605f8054610a8390613518565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf90613518565b8015610afa5780601f10610ad157610100808354040283529160200191610afa565b820191905f5260205f20905b815481529060010190602001808311610add57829003601f168201915b5050505050905090565b600f5481565b5f610b148261199c565b50610b1e82611a22565b9050919050565b610b378282610b32611a5b565b611a62565b5050565b610b43611a74565b8060118190555050565b5f600880549050905090565b610b61611a74565b80600f8190555050565b60135481565b60145f9054906101000a900460ff1681565b610b8b611a74565b8060128190555050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c05575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610bfc9190612fe5565b60405180910390fd5b5f610c188383610c13611a5b565b611afb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c8e578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610c8593929190613548565b60405180910390fd5b50505050565b610c9c611a74565b8060145f6101000a81548160ff02191690831515021790555050565b5f610cc283610e61565b8210610d075782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610cfe92919061357d565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610d64611a74565b8060108190555050565b610d76611a74565b610d7e611c15565b610d883347611c64565b610d90611d4d565b565b610dac83838360405180602001604052805f815250611498565b505050565b5f610dba610b4d565b8210610dff575f826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610df692919061357d565b60405180910390fd5b60088281548110610e1357610e126135a4565b5b905f5260205f2001549050919050565b610e2b611a74565b80600c9081610e3a919061376e565b5050565b5f610e488261199c565b9050919050565b610e57611a74565b80600d8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed2575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610ec99190612fe5565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f1f611a74565b610f285f611d57565b565b610f32611a74565b5f5b82829050811015610fc857600160155f858585818110610f5757610f566135a4565b5b9050602002016020810190610f6c919061327e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610f34565b505050565b610fd5611a74565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461106390613518565b80601f016020809104026020016040519081016040528092919081815260200182805461108f90613518565b80156110da5780601f106110b1576101008083540402835291602001916110da565b820191905f5260205f20905b8154815290600101906020018083116110bd57829003601f168201915b5050505050905090565b60115481565b60125481565b6015602052805f5260405f205f915054906101000a900460ff1681565b611115611a74565b80600e8190555050565b611127611c15565b60145f9054906101000a900460ff16611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90613887565b60405180910390fd5b600d5481611181610b4d565b61118b91906138d2565b11156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c39061394f565b60405180910390fd5b5f6111d682611875565b905060155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156112385781601054611235919061396d565b90505b5f738018ef1762ed7ce9e57356fb0017606dc2b3af1590506011548360135461126191906138d2565b11156112f357348211156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a1906139f8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156112ed573d5f803e3d5ffd5b50611440565b6012548361130033610e61565b61130a91906138d2565b11156113e15734821115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906139f8565b60405180910390fd5b600e54831115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613a86565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156113db573d5f803e3d5ffd5b5061143f565b601254831115611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613a86565b60405180910390fd5b8260135f82825461143791906138d2565b925050819055505b5b5f5b8381101561147457611467336001611458610b4d565b61146291906138d2565b611e1a565b8080600101915050611442565b50505061147f611d4d565b50565b61149461148d611a5b565b8383611e37565b5050565b6114a3848484610b95565b6114af84848484611fa0565b50505050565b60105481565b600e5481565b60605f6114cd83610e3e565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613b14565b60405180910390fd5b5f611546612152565b90505f8151116115645760405180602001604052805f81525061158f565b8061156e856121e2565b60405160200161157f929190613c00565b6040516020818303038152906040525b92505050919050565b600c80546115a590613518565b80601f01602080910402602001604051908101604052809291908181526020018280546115d190613518565b801561161c5780601f106115f35761010080835404028352916020019161161c565b820191905f5260205f20905b8154815290600101906020018083116115ff57829003601f168201915b505050505081565b600d5481565b611632611a74565b600160155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611720611a74565b5f8111611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613c83565b60405180910390fd5b600d548161176e610b4d565b61177891906138d2565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613ceb565b60405180910390fd5b5f5b818110156117ed576117e03360016117d1610b4d565b6117db91906138d2565b611e1a565b80806001019150506117bb565b5050565b6117f9611a74565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611869575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118609190612fe5565b60405180910390fd5b61187281611d57565b50565b5f600a820361188d576658d15e1762800090506118b6565b606482036118a5576702c68af0bb14000090506118b6565b81600f546118b3919061396d565b90505b919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119955750611994826122ac565b5b9050919050565b5f806119a783612315565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a1957826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611a109190612f38565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b611a6f838383600161234e565b505050565b611a7c611a5b565b73ffffffffffffffffffffffffffffffffffffffff16611a9a61102c565b73ffffffffffffffffffffffffffffffffffffffff1614611af957611abd611a5b565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611af09190612fe5565b60405180910390fd5b565b5f80611b0885858561250d565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b4b57611b4684612718565b611b8a565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b8957611b88818561275c565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611bcb57611bc6846128a6565b611c0a565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c0957611c088585612966565b5b5b809150509392505050565b6002600b5403611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613d53565b60405180910390fd5b6002600b81905550565b80471015611ca957306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611ca09190612fe5565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051611cce90613d9e565b5f6040518083038185875af1925050503d805f8114611d08576040519150601f19603f3d011682016040523d82523d5f602084013e611d0d565b606091505b5050905080611d48576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b6001600b81905550565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e33828260405180602001604052805f8152506129ea565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ea757816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611e9e9190612fe5565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f939190612e77565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b111561214c578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe3611a5b565b8685856040518563ffffffff1660e01b81526004016120059493929190613e04565b6020604051808303815f875af192505050801561204057506040513d601f19601f8201168201806040525081019061203d9190613e62565b60015b6120c1573d805f811461206e576040519150601f19603f3d011682016040523d82523d5f602084013e612073565b606091505b505f8151036120b957836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016120b09190612fe5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461214a57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016121419190612fe5565b60405180910390fd5b505b50505050565b6060600c805461216190613518565b80601f016020809104026020016040519081016040528092919081815260200182805461218d90613518565b80156121d85780601f106121af576101008083540402835291602001916121d8565b820191905f5260205f20905b8154815290600101906020018083116121bb57829003601f168201915b5050505050905090565b60605f60016121f084612a05565b0190505f8167ffffffffffffffff81111561220e5761220d613113565b5b6040519080825280601f01601f1916602001820160405280156122405781602001600182028036833780820191505090505b5090505f82602001820190505b6001156122a1578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161229657612295613e8d565b5b0494505f850361224d575b819350505050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061238657505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124b8575f6123958461199c565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123ff57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156124125750612410818461168a565b155b1561245457826040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815260040161244b9190612fe5565b60405180910390fd5b81156124b657838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f8061251884612315565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461255957612558818486612b56565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146125e4576125985f855f8061234e565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461266357600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f61276683610e61565b90505f60075f8481526020019081526020015f2054905081811461283d575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f60016008805490506128b99190613eba565b90505f60095f8481526020019081526020015f205490505f600883815481106128e5576128e46135a4565b5b905f5260205f20015490508060088381548110612905576129046135a4565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f9055600880548061294d5761294c613eed565b5b600190038181905f5260205f20015f9055905550505050565b5f600161297284610e61565b61297c9190613eba565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b6129f48383612c19565b612a005f848484611fa0565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a61577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a5757612a56613e8d565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a9e576d04ee2d6d415b85acef81000000008381612a9457612a93613e8d565b5b0492506020810190505b662386f26fc100008310612acd57662386f26fc100008381612ac357612ac2613e8d565b5b0492506010810190505b6305f5e1008310612af6576305f5e1008381612aec57612aeb613e8d565b5b0492506008810190505b6127108310612b1b576127108381612b1157612b10613e8d565b5b0492506004810190505b60648310612b3e5760648381612b3457612b33613e8d565b5b0492506002810190505b600a8310612b4d576001810190505b80915050919050565b612b61838383612d0c565b612c14575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bd557806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401612bcc9190612f38565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401612c0b92919061357d565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c89575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612c809190612fe5565b60405180910390fd5b5f612c9583835f611afb565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612d07575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612cfe9190612fe5565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dc357508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d845750612d83848461168a565b5b80612dc257508273ffffffffffffffffffffffffffffffffffffffff16612daa83611a22565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1181612ddd565b8114612e1b575f80fd5b50565b5f81359050612e2c81612e08565b92915050565b5f60208284031215612e4757612e46612dd5565b5b5f612e5484828501612e1e565b91505092915050565b5f8115159050919050565b612e7181612e5d565b82525050565b5f602082019050612e8a5f830184612e68565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ed282612e90565b612edc8185612e9a565b9350612eec818560208601612eaa565b612ef581612eb8565b840191505092915050565b5f6020820190508181035f830152612f188184612ec8565b905092915050565b5f819050919050565b612f3281612f20565b82525050565b5f602082019050612f4b5f830184612f29565b92915050565b612f5a81612f20565b8114612f64575f80fd5b50565b5f81359050612f7581612f51565b92915050565b5f60208284031215612f9057612f8f612dd5565b5b5f612f9d84828501612f67565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612fcf82612fa6565b9050919050565b612fdf81612fc5565b82525050565b5f602082019050612ff85f830184612fd6565b92915050565b61300781612fc5565b8114613011575f80fd5b50565b5f8135905061302281612ffe565b92915050565b5f806040838503121561303e5761303d612dd5565b5b5f61304b85828601613014565b925050602061305c85828601612f67565b9150509250929050565b5f805f6060848603121561307d5761307c612dd5565b5b5f61308a86828701613014565b935050602061309b86828701613014565b92505060406130ac86828701612f67565b9150509250925092565b6130bf81612e5d565b81146130c9575f80fd5b50565b5f813590506130da816130b6565b92915050565b5f602082840312156130f5576130f4612dd5565b5b5f613102848285016130cc565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61314982612eb8565b810181811067ffffffffffffffff8211171561316857613167613113565b5b80604052505050565b5f61317a612dcc565b90506131868282613140565b919050565b5f67ffffffffffffffff8211156131a5576131a4613113565b5b6131ae82612eb8565b9050602081019050919050565b828183375f83830152505050565b5f6131db6131d68461318b565b613171565b9050828152602081018484840111156131f7576131f661310f565b5b6132028482856131bb565b509392505050565b5f82601f83011261321e5761321d61310b565b5b813561322e8482602086016131c9565b91505092915050565b5f6020828403121561324c5761324b612dd5565b5b5f82013567ffffffffffffffff81111561326957613268612dd9565b5b6132758482850161320a565b91505092915050565b5f6020828403121561329357613292612dd5565b5b5f6132a084828501613014565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126132c6576132c561310b565b5b8235905067ffffffffffffffff8111156132e3576132e26132a9565b5b6020830191508360208202830111156132ff576132fe6132ad565b5b9250929050565b5f806020838503121561331c5761331b612dd5565b5b5f83013567ffffffffffffffff81111561333957613338612dd9565b5b613345858286016132b1565b92509250509250929050565b5f806040838503121561336757613366612dd5565b5b5f61337485828601613014565b9250506020613385858286016130cc565b9150509250929050565b5f67ffffffffffffffff8211156133a9576133a8613113565b5b6133b282612eb8565b9050602081019050919050565b5f6133d16133cc8461338f565b613171565b9050828152602081018484840111156133ed576133ec61310f565b5b6133f88482856131bb565b509392505050565b5f82601f8301126134145761341361310b565b5b81356134248482602086016133bf565b91505092915050565b5f805f806080858703121561344557613444612dd5565b5b5f61345287828801613014565b945050602061346387828801613014565b935050604061347487828801612f67565b925050606085013567ffffffffffffffff81111561349557613494612dd9565b5b6134a187828801613400565b91505092959194509250565b5f80604083850312156134c3576134c2612dd5565b5b5f6134d085828601613014565b92505060206134e185828601613014565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061352f57607f821691505b602082108103613542576135416134eb565b5b50919050565b5f60608201905061355b5f830186612fd6565b6135686020830185612f29565b6135756040830184612fd6565b949350505050565b5f6040820190506135905f830185612fd6565b61359d6020830184612f29565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261362d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135f2565b61363786836135f2565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61367261366d61366884612f20565b61364f565b612f20565b9050919050565b5f819050919050565b61368b83613658565b61369f61369782613679565b8484546135fe565b825550505050565b5f90565b6136b36136a7565b6136be818484613682565b505050565b5b818110156136e1576136d65f826136ab565b6001810190506136c4565b5050565b601f821115613726576136f7816135d1565b613700846135e3565b8101602085101561370f578190505b61372361371b856135e3565b8301826136c3565b50505b505050565b5f82821c905092915050565b5f6137465f198460080261372b565b1980831691505092915050565b5f61375e8383613737565b9150826002028217905092915050565b61377782612e90565b67ffffffffffffffff8111156137905761378f613113565b5b61379a8254613518565b6137a58282856136e5565b5f60209050601f8311600181146137d6575f84156137c4578287015190505b6137ce8582613753565b865550613835565b601f1984166137e4866135d1565b5f5b8281101561380b578489015182556001820191506020850194506020810190506137e6565b868310156138285784890151613824601f891682613737565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e0000000000000000005f82015250565b5f613871601783612e9a565b915061387c8261383d565b602082019050919050565b5f6020820190508181035f83015261389e81613865565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138dc82612f20565b91506138e783612f20565b92508282019050808211156138ff576138fe6138a5565b5b92915050565b7f4e6f206d6f726520746f6b656e7320617661696c61626c6500000000000000005f82015250565b5f613939601883612e9a565b915061394482613905565b602082019050919050565b5f6020820190508181035f8301526139668161392d565b9050919050565b5f61397782612f20565b915061398283612f20565b925082820261399081612f20565b915082820484148315176139a7576139a66138a5565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e7400000000000000005f82015250565b5f6139e2601883612e9a565b91506139ed826139ae565b602082019050919050565b5f6020820190508181035f830152613a0f816139d6565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a70602283612e9a565b9150613a7b82613a16565b604082019050919050565b5f6020820190508181035f830152613a9d81613a64565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613afe602f83612e9a565b9150613b0982613aa4565b604082019050919050565b5f6020820190508181035f830152613b2b81613af2565b9050919050565b5f81905092915050565b5f613b4682612e90565b613b508185613b32565b9350613b60818560208601612eaa565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f613ba0600183613b32565b9150613bab82613b6c565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613bea600583613b32565b9150613bf582613bb6565b600582019050919050565b5f613c0b8285613b3c565b9150613c1682613b94565b9150613c228284613b3c565b9150613c2d82613bde565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e74000000000000000000000000005f82015250565b5f613c6d601383612e9a565b9150613c7882613c39565b602082019050919050565b5f6020820190508181035f830152613c9a81613c61565b9050919050565b7f4d6178696d756d20737570706c792065786365656465640000000000000000005f82015250565b5f613cd5601783612e9a565b9150613ce082613ca1565b602082019050919050565b5f6020820190508181035f830152613d0281613cc9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613d3d601f83612e9a565b9150613d4882613d09565b602082019050919050565b5f6020820190508181035f830152613d6a81613d31565b9050919050565b5f81905092915050565b50565b5f613d895f83613d71565b9150613d9482613d7b565b5f82019050919050565b5f613da882613d7e565b9150819050919050565b5f81519050919050565b5f82825260208201905092915050565b5f613dd682613db2565b613de08185613dbc565b9350613df0818560208601612eaa565b613df981612eb8565b840191505092915050565b5f608082019050613e175f830187612fd6565b613e246020830186612fd6565b613e316040830185612f29565b8181036060830152613e438184613dcc565b905095945050505050565b5f81519050613e5c81612e08565b92915050565b5f60208284031215613e7757613e76612dd5565b5b5f613e8484828501613e4e565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613ec482612f20565b9150613ecf83612f20565b9250828203905081811115613ee757613ee66138a5565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea26469706673582212201c8526c3043cf8063d8ddf8b7c13db1cb988574949257c4b23a9459850604c0b64736f6c634300081a0033697066733a2f2f626166796265696366766a64333633336e6c796d7179326a787266686761667765763533786b6f75337a7270326f3275776e327a647a6b75733365
Deployed Bytecode
0x608060405260043610610266575f3560e01c8063715018a611610143578063b88d4fde116100b5578063d5abeb0111610079578063d5abeb01146108e2578063e43252d71461090c578063e985e9c514610934578063efdc778814610970578063f2fde38b14610998578063f6511f93146109c057610266565b8063b88d4fde14610800578063bc912e1a14610828578063c6a91b4214610852578063c87b56dd1461087c578063d547cfb7146108b857610266565b8063982d669e11610107578063982d669e1461070457806398710d1e1461072e5780639b19251a146107585780639e9fcffc14610794578063a0712d68146107bc578063a22cb465146107d857610266565b8063715018a61461064a5780638401f8d1146106605780638ab1d681146106885780638da5cb5b146106b057806395d89b41146106da57610266565b806323b872dd116101dc57806342842e0e116101a057806342842e0e1461051e5780634f6ccce71461054657806355f804b3146105825780636352211e146105aa5780636f8b44b0146105e657806370a082311461060e57610266565b806323b872dd1461045457806328cad13d1461047c5780632f745c59146104a45780633515fbdb146104e05780633ccfd60b1461050857610266565b80630a00ae831161022e5780630a00ae831461035e57806318160ddd146103865780631919fed7146103b0578063193ad7b4146103d85780631e84c41314610402578063202f298a1461042c57610266565b806301ffc9a71461026a57806306fdde03146102a657806307e89ec0146102d0578063081812fc146102fa578063095ea7b314610336575b5f80fd5b348015610275575f80fd5b50610290600480360381019061028b9190612e32565b6109fc565b60405161029d9190612e77565b60405180910390f35b3480156102b1575f80fd5b506102ba610a75565b6040516102c79190612f00565b60405180910390f35b3480156102db575f80fd5b506102e4610b04565b6040516102f19190612f38565b60405180910390f35b348015610305575f80fd5b50610320600480360381019061031b9190612f7b565b610b0a565b60405161032d9190612fe5565b60405180910390f35b348015610341575f80fd5b5061035c60048036038101906103579190613028565b610b25565b005b348015610369575f80fd5b50610384600480360381019061037f9190612f7b565b610b3b565b005b348015610391575f80fd5b5061039a610b4d565b6040516103a79190612f38565b60405180910390f35b3480156103bb575f80fd5b506103d660048036038101906103d19190612f7b565b610b59565b005b3480156103e3575f80fd5b506103ec610b6b565b6040516103f99190612f38565b60405180910390f35b34801561040d575f80fd5b50610416610b71565b6040516104239190612e77565b60405180910390f35b348015610437575f80fd5b50610452600480360381019061044d9190612f7b565b610b83565b005b34801561045f575f80fd5b5061047a60048036038101906104759190613066565b610b95565b005b348015610487575f80fd5b506104a2600480360381019061049d91906130e0565b610c94565b005b3480156104af575f80fd5b506104ca60048036038101906104c59190613028565b610cb8565b6040516104d79190612f38565b60405180910390f35b3480156104eb575f80fd5b5061050660048036038101906105019190612f7b565b610d5c565b005b348015610513575f80fd5b5061051c610d6e565b005b348015610529575f80fd5b50610544600480360381019061053f9190613066565b610d92565b005b348015610551575f80fd5b5061056c60048036038101906105679190612f7b565b610db1565b6040516105799190612f38565b60405180910390f35b34801561058d575f80fd5b506105a860048036038101906105a39190613237565b610e23565b005b3480156105b5575f80fd5b506105d060048036038101906105cb9190612f7b565b610e3e565b6040516105dd9190612fe5565b60405180910390f35b3480156105f1575f80fd5b5061060c60048036038101906106079190612f7b565b610e4f565b005b348015610619575f80fd5b50610634600480360381019061062f919061327e565b610e61565b6040516106419190612f38565b60405180910390f35b348015610655575f80fd5b5061065e610f17565b005b34801561066b575f80fd5b5061068660048036038101906106819190613306565b610f2a565b005b348015610693575f80fd5b506106ae60048036038101906106a9919061327e565b610fcd565b005b3480156106bb575f80fd5b506106c461102c565b6040516106d19190612fe5565b60405180910390f35b3480156106e5575f80fd5b506106ee611054565b6040516106fb9190612f00565b60405180910390f35b34801561070f575f80fd5b506107186110e4565b6040516107259190612f38565b60405180910390f35b348015610739575f80fd5b506107426110ea565b60405161074f9190612f38565b60405180910390f35b348015610763575f80fd5b5061077e6004803603810190610779919061327e565b6110f0565b60405161078b9190612e77565b60405180910390f35b34801561079f575f80fd5b506107ba60048036038101906107b59190612f7b565b61110d565b005b6107d660048036038101906107d19190612f7b565b61111f565b005b3480156107e3575f80fd5b506107fe60048036038101906107f99190613351565b611482565b005b34801561080b575f80fd5b506108266004803603810190610821919061342d565b611498565b005b348015610833575f80fd5b5061083c6114b5565b6040516108499190612f38565b60405180910390f35b34801561085d575f80fd5b506108666114bb565b6040516108739190612f38565b60405180910390f35b348015610887575f80fd5b506108a2600480360381019061089d9190612f7b565b6114c1565b6040516108af9190612f00565b60405180910390f35b3480156108c3575f80fd5b506108cc611598565b6040516108d99190612f00565b60405180910390f35b3480156108ed575f80fd5b506108f6611624565b6040516109039190612f38565b60405180910390f35b348015610917575f80fd5b50610932600480360381019061092d919061327e565b61162a565b005b34801561093f575f80fd5b5061095a600480360381019061095591906134ad565b61168a565b6040516109679190612e77565b60405180910390f35b34801561097b575f80fd5b5061099660048036038101906109919190612f7b565b611718565b005b3480156109a3575f80fd5b506109be60048036038101906109b9919061327e565b6117f1565b005b3480156109cb575f80fd5b506109e660048036038101906109e19190612f7b565b611875565b6040516109f39190612f38565b60405180910390f35b5f7f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6e5750610a6d826118bb565b5b9050919050565b60605f8054610a8390613518565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf90613518565b8015610afa5780601f10610ad157610100808354040283529160200191610afa565b820191905f5260205f20905b815481529060010190602001808311610add57829003601f168201915b5050505050905090565b600f5481565b5f610b148261199c565b50610b1e82611a22565b9050919050565b610b378282610b32611a5b565b611a62565b5050565b610b43611a74565b8060118190555050565b5f600880549050905090565b610b61611a74565b80600f8190555050565b60135481565b60145f9054906101000a900460ff1681565b610b8b611a74565b8060128190555050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c05575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401610bfc9190612fe5565b60405180910390fd5b5f610c188383610c13611a5b565b611afb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c8e578382826040517f64283d7b000000000000000000000000000000000000000000000000000000008152600401610c8593929190613548565b60405180910390fd5b50505050565b610c9c611a74565b8060145f6101000a81548160ff02191690831515021790555050565b5f610cc283610e61565b8210610d075782826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610cfe92919061357d565b60405180910390fd5b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f2054905092915050565b610d64611a74565b8060108190555050565b610d76611a74565b610d7e611c15565b610d883347611c64565b610d90611d4d565b565b610dac83838360405180602001604052805f815250611498565b505050565b5f610dba610b4d565b8210610dff575f826040517fa57d13dc000000000000000000000000000000000000000000000000000000008152600401610df692919061357d565b60405180910390fd5b60088281548110610e1357610e126135a4565b5b905f5260205f2001549050919050565b610e2b611a74565b80600c9081610e3a919061376e565b5050565b5f610e488261199c565b9050919050565b610e57611a74565b80600d8190555050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ed2575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610ec99190612fe5565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f1f611a74565b610f285f611d57565b565b610f32611a74565b5f5b82829050811015610fc857600160155f858585818110610f5757610f566135a4565b5b9050602002016020810190610f6c919061327e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610f34565b505050565b610fd5611a74565b5f60155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461106390613518565b80601f016020809104026020016040519081016040528092919081815260200182805461108f90613518565b80156110da5780601f106110b1576101008083540402835291602001916110da565b820191905f5260205f20905b8154815290600101906020018083116110bd57829003601f168201915b5050505050905090565b60115481565b60125481565b6015602052805f5260405f205f915054906101000a900460ff1681565b611115611a74565b80600e8190555050565b611127611c15565b60145f9054906101000a900460ff16611175576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116c90613887565b60405180910390fd5b600d5481611181610b4d565b61118b91906138d2565b11156111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c39061394f565b60405180910390fd5b5f6111d682611875565b905060155f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156112385781601054611235919061396d565b90505b5f738018ef1762ed7ce9e57356fb0017606dc2b3af1590506011548360135461126191906138d2565b11156112f357348211156112aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a1906139f8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156112ed573d5f803e3d5ffd5b50611440565b6012548361130033610e61565b61130a91906138d2565b11156113e15734821115611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a906139f8565b60405180910390fd5b600e54831115611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f90613a86565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc8390811502906040515f60405180830381858888f193505050501580156113db573d5f803e3d5ffd5b5061143f565b601254831115611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90613a86565b60405180910390fd5b8260135f82825461143791906138d2565b925050819055505b5b5f5b8381101561147457611467336001611458610b4d565b61146291906138d2565b611e1a565b8080600101915050611442565b50505061147f611d4d565b50565b61149461148d611a5b565b8383611e37565b5050565b6114a3848484610b95565b6114af84848484611fa0565b50505050565b60105481565b600e5481565b60605f6114cd83610e3e565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613b14565b60405180910390fd5b5f611546612152565b90505f8151116115645760405180602001604052805f81525061158f565b8061156e856121e2565b60405160200161157f929190613c00565b6040516020818303038152906040525b92505050919050565b600c80546115a590613518565b80601f01602080910402602001604051908101604052809291908181526020018280546115d190613518565b801561161c5780601f106115f35761010080835404028352916020019161161c565b820191905f5260205f20905b8154815290600101906020018083116115ff57829003601f168201915b505050505081565b600d5481565b611632611a74565b600160155f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b611720611a74565b5f8111611762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175990613c83565b60405180910390fd5b600d548161176e610b4d565b61177891906138d2565b11156117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b090613ceb565b60405180910390fd5b5f5b818110156117ed576117e03360016117d1610b4d565b6117db91906138d2565b611e1a565b80806001019150506117bb565b5050565b6117f9611a74565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611869575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118609190612fe5565b60405180910390fd5b61187281611d57565b50565b5f600a820361188d576658d15e1762800090506118b6565b606482036118a5576702c68af0bb14000090506118b6565b81600f546118b3919061396d565b90505b919050565b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119955750611994826122ac565b5b9050919050565b5f806119a783612315565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a1957826040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611a109190612f38565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b611a6f838383600161234e565b505050565b611a7c611a5b565b73ffffffffffffffffffffffffffffffffffffffff16611a9a61102c565b73ffffffffffffffffffffffffffffffffffffffff1614611af957611abd611a5b565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611af09190612fe5565b60405180910390fd5b565b5f80611b0885858561250d565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b4b57611b4684612718565b611b8a565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b8957611b88818561275c565b5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611bcb57611bc6846128a6565b611c0a565b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c0957611c088585612966565b5b5b809150509392505050565b6002600b5403611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613d53565b60405180910390fd5b6002600b81905550565b80471015611ca957306040517fcd786059000000000000000000000000000000000000000000000000000000008152600401611ca09190612fe5565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff1682604051611cce90613d9e565b5f6040518083038185875af1925050503d805f8114611d08576040519150601f19603f3d011682016040523d82523d5f602084013e611d0d565b606091505b5050905080611d48576040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b6001600b81905550565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e33828260405180602001604052805f8152506129ea565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ea757816040517f5b08ba18000000000000000000000000000000000000000000000000000000008152600401611e9e9190612fe5565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f939190612e77565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b111561214c578273ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe3611a5b565b8685856040518563ffffffff1660e01b81526004016120059493929190613e04565b6020604051808303815f875af192505050801561204057506040513d601f19601f8201168201806040525081019061203d9190613e62565b60015b6120c1573d805f811461206e576040519150601f19603f3d011682016040523d82523d5f602084013e612073565b606091505b505f8151036120b957836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016120b09190612fe5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461214a57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016121419190612fe5565b60405180910390fd5b505b50505050565b6060600c805461216190613518565b80601f016020809104026020016040519081016040528092919081815260200182805461218d90613518565b80156121d85780601f106121af576101008083540402835291602001916121d8565b820191905f5260205f20905b8154815290600101906020018083116121bb57829003601f168201915b5050505050905090565b60605f60016121f084612a05565b0190505f8167ffffffffffffffff81111561220e5761220d613113565b5b6040519080825280601f01601f1916602001820160405280156122405781602001600182028036833780820191505090505b5090505f82602001820190505b6001156122a1578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161229657612295613e8d565b5b0494505f850361224d575b819350505050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b808061238657505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124b8575f6123958461199c565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156123ff57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b80156124125750612410818461168a565b155b1561245457826040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815260040161244b9190612fe5565b60405180910390fd5b81156124b657838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b5f8061251884612315565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461255957612558818486612b56565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146125e4576125985f855f8061234e565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461266357600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b60088054905060095f8381526020019081526020015f2081905550600881908060018154018082558091505060019003905f5260205f20015f909190919091505550565b5f61276683610e61565b90505f60075f8481526020019081526020015f2054905081811461283d575f60065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205490508060065f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20819055508160075f8381526020019081526020015f2081905550505b60075f8481526020019081526020015f205f905560065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f205f905550505050565b5f60016008805490506128b99190613eba565b90505f60095f8481526020019081526020015f205490505f600883815481106128e5576128e46135a4565b5b905f5260205f20015490508060088381548110612905576129046135a4565b5b905f5260205f2001819055508160095f8381526020019081526020015f208190555060095f8581526020019081526020015f205f9055600880548061294d5761294c613eed565b5b600190038181905f5260205f20015f9055905550505050565b5f600161297284610e61565b61297c9190613eba565b90508160065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8381526020019081526020015f20819055508060075f8481526020019081526020015f2081905550505050565b6129f48383612c19565b612a005f848484611fa0565b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a61577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a5757612a56613e8d565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a9e576d04ee2d6d415b85acef81000000008381612a9457612a93613e8d565b5b0492506020810190505b662386f26fc100008310612acd57662386f26fc100008381612ac357612ac2613e8d565b5b0492506010810190505b6305f5e1008310612af6576305f5e1008381612aec57612aeb613e8d565b5b0492506008810190505b6127108310612b1b576127108381612b1157612b10613e8d565b5b0492506004810190505b60648310612b3e5760648381612b3457612b33613e8d565b5b0492506002810190505b600a8310612b4d576001810190505b80915050919050565b612b61838383612d0c565b612c14575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612bd557806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401612bcc9190612f38565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401612c0b92919061357d565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c89575f6040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600401612c809190612fe5565b60405180910390fd5b5f612c9583835f611afb565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612d07575f6040517f73c6ac6e000000000000000000000000000000000000000000000000000000008152600401612cfe9190612fe5565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612dc357508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d845750612d83848461168a565b5b80612dc257508273ffffffffffffffffffffffffffffffffffffffff16612daa83611a22565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e1181612ddd565b8114612e1b575f80fd5b50565b5f81359050612e2c81612e08565b92915050565b5f60208284031215612e4757612e46612dd5565b5b5f612e5484828501612e1e565b91505092915050565b5f8115159050919050565b612e7181612e5d565b82525050565b5f602082019050612e8a5f830184612e68565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ed282612e90565b612edc8185612e9a565b9350612eec818560208601612eaa565b612ef581612eb8565b840191505092915050565b5f6020820190508181035f830152612f188184612ec8565b905092915050565b5f819050919050565b612f3281612f20565b82525050565b5f602082019050612f4b5f830184612f29565b92915050565b612f5a81612f20565b8114612f64575f80fd5b50565b5f81359050612f7581612f51565b92915050565b5f60208284031215612f9057612f8f612dd5565b5b5f612f9d84828501612f67565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612fcf82612fa6565b9050919050565b612fdf81612fc5565b82525050565b5f602082019050612ff85f830184612fd6565b92915050565b61300781612fc5565b8114613011575f80fd5b50565b5f8135905061302281612ffe565b92915050565b5f806040838503121561303e5761303d612dd5565b5b5f61304b85828601613014565b925050602061305c85828601612f67565b9150509250929050565b5f805f6060848603121561307d5761307c612dd5565b5b5f61308a86828701613014565b935050602061309b86828701613014565b92505060406130ac86828701612f67565b9150509250925092565b6130bf81612e5d565b81146130c9575f80fd5b50565b5f813590506130da816130b6565b92915050565b5f602082840312156130f5576130f4612dd5565b5b5f613102848285016130cc565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61314982612eb8565b810181811067ffffffffffffffff8211171561316857613167613113565b5b80604052505050565b5f61317a612dcc565b90506131868282613140565b919050565b5f67ffffffffffffffff8211156131a5576131a4613113565b5b6131ae82612eb8565b9050602081019050919050565b828183375f83830152505050565b5f6131db6131d68461318b565b613171565b9050828152602081018484840111156131f7576131f661310f565b5b6132028482856131bb565b509392505050565b5f82601f83011261321e5761321d61310b565b5b813561322e8482602086016131c9565b91505092915050565b5f6020828403121561324c5761324b612dd5565b5b5f82013567ffffffffffffffff81111561326957613268612dd9565b5b6132758482850161320a565b91505092915050565b5f6020828403121561329357613292612dd5565b5b5f6132a084828501613014565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126132c6576132c561310b565b5b8235905067ffffffffffffffff8111156132e3576132e26132a9565b5b6020830191508360208202830111156132ff576132fe6132ad565b5b9250929050565b5f806020838503121561331c5761331b612dd5565b5b5f83013567ffffffffffffffff81111561333957613338612dd9565b5b613345858286016132b1565b92509250509250929050565b5f806040838503121561336757613366612dd5565b5b5f61337485828601613014565b9250506020613385858286016130cc565b9150509250929050565b5f67ffffffffffffffff8211156133a9576133a8613113565b5b6133b282612eb8565b9050602081019050919050565b5f6133d16133cc8461338f565b613171565b9050828152602081018484840111156133ed576133ec61310f565b5b6133f88482856131bb565b509392505050565b5f82601f8301126134145761341361310b565b5b81356134248482602086016133bf565b91505092915050565b5f805f806080858703121561344557613444612dd5565b5b5f61345287828801613014565b945050602061346387828801613014565b935050604061347487828801612f67565b925050606085013567ffffffffffffffff81111561349557613494612dd9565b5b6134a187828801613400565b91505092959194509250565b5f80604083850312156134c3576134c2612dd5565b5b5f6134d085828601613014565b92505060206134e185828601613014565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061352f57607f821691505b602082108103613542576135416134eb565b5b50919050565b5f60608201905061355b5f830186612fd6565b6135686020830185612f29565b6135756040830184612fd6565b949350505050565b5f6040820190506135905f830185612fd6565b61359d6020830184612f29565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261362d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135f2565b61363786836135f2565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61367261366d61366884612f20565b61364f565b612f20565b9050919050565b5f819050919050565b61368b83613658565b61369f61369782613679565b8484546135fe565b825550505050565b5f90565b6136b36136a7565b6136be818484613682565b505050565b5b818110156136e1576136d65f826136ab565b6001810190506136c4565b5050565b601f821115613726576136f7816135d1565b613700846135e3565b8101602085101561370f578190505b61372361371b856135e3565b8301826136c3565b50505b505050565b5f82821c905092915050565b5f6137465f198460080261372b565b1980831691505092915050565b5f61375e8383613737565b9150826002028217905092915050565b61377782612e90565b67ffffffffffffffff8111156137905761378f613113565b5b61379a8254613518565b6137a58282856136e5565b5f60209050601f8311600181146137d6575f84156137c4578287015190505b6137ce8582613753565b865550613835565b601f1984166137e4866135d1565b5f5b8281101561380b578489015182556001820191506020850194506020810190506137e6565b868310156138285784890151613824601f891682613737565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e0000000000000000005f82015250565b5f613871601783612e9a565b915061387c8261383d565b602082019050919050565b5f6020820190508181035f83015261389e81613865565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138dc82612f20565b91506138e783612f20565b92508282019050808211156138ff576138fe6138a5565b5b92915050565b7f4e6f206d6f726520746f6b656e7320617661696c61626c6500000000000000005f82015250565b5f613939601883612e9a565b915061394482613905565b602082019050919050565b5f6020820190508181035f8301526139668161392d565b9050919050565b5f61397782612f20565b915061398283612f20565b925082820261399081612f20565b915082820484148315176139a7576139a66138a5565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e7400000000000000005f82015250565b5f6139e2601883612e9a565b91506139ed826139ae565b602082019050919050565b5f6020820190508181035f830152613a0f816139d6565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f613a70602283612e9a565b9150613a7b82613a16565b604082019050919050565b5f6020820190508181035f830152613a9d81613a64565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f613afe602f83612e9a565b9150613b0982613aa4565b604082019050919050565b5f6020820190508181035f830152613b2b81613af2565b9050919050565b5f81905092915050565b5f613b4682612e90565b613b508185613b32565b9350613b60818560208601612eaa565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f613ba0600183613b32565b9150613bab82613b6c565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613bea600583613b32565b9150613bf582613bb6565b600582019050919050565b5f613c0b8285613b3c565b9150613c1682613b94565b9150613c228284613b3c565b9150613c2d82613bde565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e74000000000000000000000000005f82015250565b5f613c6d601383612e9a565b9150613c7882613c39565b602082019050919050565b5f6020820190508181035f830152613c9a81613c61565b9050919050565b7f4d6178696d756d20737570706c792065786365656465640000000000000000005f82015250565b5f613cd5601783612e9a565b9150613ce082613ca1565b602082019050919050565b5f6020820190508181035f830152613d0281613cc9565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613d3d601f83612e9a565b9150613d4882613d09565b602082019050919050565b5f6020820190508181035f830152613d6a81613d31565b9050919050565b5f81905092915050565b50565b5f613d895f83613d71565b9150613d9482613d7b565b5f82019050919050565b5f613da882613d7e565b9150819050919050565b5f81519050919050565b5f82825260208201905092915050565b5f613dd682613db2565b613de08185613dbc565b9350613df0818560208601612eaa565b613df981612eb8565b840191505092915050565b5f608082019050613e175f830187612fd6565b613e246020830186612fd6565b613e316040830185612f29565b8181036060830152613e438184613dcc565b905095945050505050565b5f81519050613e5c81612e08565b92915050565b5f60208284031215613e7757613e76612dd5565b5b5f613e8484828501613e4e565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613ec482612f20565b9150613ecf83612f20565b9250828203905081811115613ee757613ee66138a5565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea26469706673582212201c8526c3043cf8063d8ddf8b7c13db1cb988574949257c4b23a9459850604c0b64736f6c634300081a0033
Deployed Bytecode Sourcemap
75972:4980:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56941:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38748:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76294:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39920:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39739:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79829:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57585:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80061:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76488:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76534:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80289:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40589:588;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79686:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57249:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80408:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78894:130;;;;;;;;;;;;;:::i;:::-;;41248:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57766:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78457:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38561:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79951:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38286:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65273:103;;;;;;;;;;;;;:::i;:::-;;80746:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80634:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64598:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38908:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76400:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76443:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76580:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80169:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77087:1362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40150:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41453:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76348:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76250:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79032:525;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76108:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76212:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80528:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40367:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78566:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65531:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76779:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56941:224;57043:4;57082:35;57067:50;;;:11;:50;;;;:90;;;;57121:36;57145:11;57121:23;:36::i;:::-;57067:90;57060:97;;56941:224;;;:::o;38748:91::-;38793:13;38826:5;38819:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38748:91;:::o;76294:47::-;;;;:::o;39920:158::-;39987:7;40007:22;40021:7;40007:13;:22::i;:::-;;40049:21;40062:7;40049:12;:21::i;:::-;40042:28;;39920:158;;;:::o;39739:115::-;39811:35;39820:2;39824:7;39833:12;:10;:12::i;:::-;39811:8;:35::i;:::-;39739:115;;:::o;79829:114::-;64484:13;:11;:13::i;:::-;79923:12:::1;79906:14;:29;;;;79829:114:::0;:::o;57585:104::-;57637:7;57664:10;:17;;;;57657:24;;57585:104;:::o;80061:100::-;64484:13;:11;:13::i;:::-;80148:5:::1;80128:17;:25;;;;80061:100:::0;:::o;76488:39::-;;;;:::o;76534:37::-;;;;;;;;;;;;;:::o;80289:111::-;64484:13;:11;:13::i;:::-;80387:5:::1;80365:19;:27;;;;80289:111:::0;:::o;40589:588::-;40698:1;40684:16;;:2;:16;;;40680:89;;40754:1;40724:33;;;;;;;;;;;:::i;:::-;;;;;;;;40680:89;40990:21;41014:34;41022:2;41026:7;41035:12;:10;:12::i;:::-;41014:7;:34::i;:::-;40990:58;;41080:4;41063:21;;:13;:21;;;41059:111;;41129:4;41135:7;41144:13;41108:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;41059:111;40669:508;40589:588;;;:::o;79686:135::-;64484:13;:11;:13::i;:::-;79794:19:::1;79773:18;;:40;;;;;;;;;;;;;;;;;;79686:135:::0;:::o;57249:260::-;57337:7;57370:16;57380:5;57370:9;:16::i;:::-;57361:5;:25;57357:101;;57433:5;57440;57410:36;;;;;;;;;;;;:::i;:::-;;;;;;;;57357:101;57475:12;:19;57488:5;57475:19;;;;;;;;;;;;;;;:26;57495:5;57475:26;;;;;;;;;;;;57468:33;;57249:260;;;;:::o;80408:112::-;64484:13;:11;:13::i;:::-;80507:5:::1;80484:20;:28;;;;80408:112:::0;:::o;78894:130::-;64484:13;:11;:13::i;:::-;68454:21:::1;:19;:21::i;:::-;78955:61:::2;78981:10;78994:21;78955:17;:61::i;:::-;68498:20:::1;:18;:20::i;:::-;78894:130::o:0;41248:134::-;41335:39;41352:4;41358:2;41362:7;41335:39;;;;;;;;;;;;:16;:39::i;:::-;41248:134;;;:::o;57766:231::-;57832:7;57865:13;:11;:13::i;:::-;57856:5;:22;57852:103;;57933:1;57937:5;57902:41;;;;;;;;;;;;:::i;:::-;;;;;;;;57852:103;57972:10;57983:5;57972:17;;;;;;;;:::i;:::-;;;;;;;;;;57965:24;;57766:231;;;:::o;78457:101::-;64484:13;:11;:13::i;:::-;78543:7:::1;78528:12;:22;;;;;;:::i;:::-;;78457:101:::0;:::o;38561:120::-;38624:7;38651:22;38665:7;38651:13;:22::i;:::-;38644:29;;38561:120;;;:::o;79951:102::-;64484:13;:11;:13::i;:::-;80035:10:::1;80023:9;:22;;;;79951:102:::0;:::o;38286:213::-;38349:7;38390:1;38373:19;;:5;:19;;;38369:89;;38443:1;38416:30;;;;;;;;;;;:::i;:::-;;;;;;;;38369:89;38475:9;:16;38485:5;38475:16;;;;;;;;;;;;;;;;38468:23;;38286:213;;;:::o;65273:103::-;64484:13;:11;:13::i;:::-;65338:30:::1;65365:1;65338:18;:30::i;:::-;65273:103::o:0;80746:203::-;64484:13;:11;:13::i;:::-;80843:9:::1;80838:104;80862:9;;:16;;80858:1;:20;80838:104;;;80926:4;80900:9;:23;80910:9;;80920:1;80910:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;80900:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;80880:3;;;;;;;80838:104;;;;80746:203:::0;;:::o;80634:104::-;64484:13;:11;:13::i;:::-;80725:5:::1;80707:9;:15;80717:4;80707:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;80634:104:::0;:::o;64598:87::-;64644:7;64671:6;;;;;;;;;;;64664:13;;64598:87;:::o;38908:95::-;38955:13;38988:7;38981:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38908:95;:::o;76400:36::-;;;;:::o;76443:38::-;;;;:::o;76580:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;80169:112::-;64484:13;:11;:13::i;:::-;80268:5:::1;80249:16;:24;;;;80169:112:::0;:::o;77087:1362::-;68454:21;:19;:21::i;:::-;77174:18:::1;;;;;;;;;;;77166:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;77273:9;;77255:14;77239:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;77231:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;77324:18;77345:37;77367:14;77345:21;:37::i;:::-;77324:58;;77397:9;:21;77407:10;77397:21;;;;;;;;;;;;;;;;;;;;;;;;;77393:104;;;77471:14;77448:20;;:37;;;;:::i;:::-;77435:50;;77393:104;77509:17;77529:42;77509:62;;77628:14;;77611;77588:20;;:37;;;;:::i;:::-;:54;77584:734;;;77681:9;77667:10;:23;;77659:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;77742:9;77734:27;;:39;77762:10;77734:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77584:734;;;77851:19;;77834:14;77810:21;77820:10;77810:9;:21::i;:::-;:38;;;;:::i;:::-;:60;77806:501;;;77913:9;77899:10;:23;;77891:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;77996:16;;77978:14;:34;;77970:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;78078:9;78070:27;;:39;78098:10;78070:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;77806:501;;;78176:19;;78158:14;:37;;78150:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;78277:14;78253:20;;:38;;;;;;;:::i;:::-;;;;;;;;77806:501;77584:734;78335:9;78330:112;78354:14;78350:1;:18;78330:112;;;78390:40;78400:10;78428:1;78412:13;:11;:13::i;:::-;:17;;;;:::i;:::-;78390:9;:40::i;:::-;78370:3;;;;;;;78330:112;;;;77155:1294;;68498:20:::0;:18;:20::i;:::-;77087:1362;:::o;40150:146::-;40236:52;40255:12;:10;:12::i;:::-;40269:8;40279;40236:18;:52::i;:::-;40150:146;;:::o;41453:211::-;41567:31;41580:4;41586:2;41590:7;41567:12;:31::i;:::-;41609:47;41632:4;41638:2;41642:7;41651:4;41609:22;:47::i;:::-;41453:211;;;;:::o;76348:45::-;;;;:::o;76250:37::-;;;;:::o;79032:525::-;79105:13;79234;79250:16;79258:7;79250;:16::i;:::-;79234:32;;79302:1;79285:19;;:5;:19;;;79277:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;79369:21;79393:10;:8;:10::i;:::-;79369:34;;79445:1;79427:7;79421:21;:25;:128;;;;;;;;;;;;;;;;;79487:7;79501:18;:7;:16;:18::i;:::-;79470:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79421:128;79414:135;;;;79032:525;;;:::o;76108:97::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;76212:31::-;;;;:::o;80528:98::-;64484:13;:11;:13::i;:::-;80614:4:::1;80596:9;:15;80606:4;80596:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;80528:98:::0;:::o;40367:155::-;40455:4;40479:18;:25;40498:5;40479:25;;;;;;;;;;;;;;;:35;40505:8;40479:35;;;;;;;;;;;;;;;;;;;;;;;;;40472:42;;40367:155;;;;:::o;78566:320::-;64484:13;:11;:13::i;:::-;78653:1:::1;78642:8;:12;78634:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;78725:9;;78713:8;78697:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;78689:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;78778:9;78773:106;78797:8;78793:1;:12;78773:106;;;78827:40;78837:10;78865:1;78849:13;:11;:13::i;:::-;:17;;;;:::i;:::-;78827:9;:40::i;:::-;78807:3;;;;;;;78773:106;;;;78566:320:::0;:::o;65531:220::-;64484:13;:11;:13::i;:::-;65636:1:::1;65616:22;;:8;:22;;::::0;65612:93:::1;;65690:1;65662:31;;;;;;;;;;;:::i;:::-;;;;;;;;65612:93;65715:28;65734:8;65715:18;:28::i;:::-;65531:220:::0;:::o;76779:300::-;76849:7;76885:2;76873:8;:14;76869:203;;76911:11;76904:18;;;;76869:203;76956:3;76944:8;:15;76940:132;;76983:9;76976:16;;;;76940:132;77052:8;77032:17;;:28;;;;:::i;:::-;77025:35;;76779:300;;;;:::o;37917:305::-;38019:4;38071:25;38056:40;;;:11;:40;;;;:105;;;;38128:33;38113:48;;;:11;:48;;;;38056:105;:158;;;;38178:36;38202:11;38178:23;:36::i;:::-;38056:158;38036:178;;37917:305;;;:::o;52895:247::-;52958:7;52978:13;52994:17;53003:7;52994:8;:17::i;:::-;52978:33;;53043:1;53026:19;;:5;:19;;;53022:90;;53092:7;53069:31;;;;;;;;;;;:::i;:::-;;;;;;;;53022:90;53129:5;53122:12;;;52895:247;;;:::o;42426:129::-;42496:7;42523:15;:24;42539:7;42523:24;;;;;;;;;;;;;;;;;;;;;42516:31;;42426:129;;;:::o;8654:98::-;8707:7;8734:10;8727:17;;8654:98;:::o;51127:122::-;51208:33;51217:2;51221:7;51230:4;51236;51208:8;:33::i;:::-;51127:122;;;:::o;64763:166::-;64834:12;:10;:12::i;:::-;64823:23;;:7;:5;:7::i;:::-;:23;;;64819:103;;64897:12;:10;:12::i;:::-;64870:40;;;;;;;;;;;:::i;:::-;;;;;;;;64819:103;64763:166::o;58058:640::-;58153:7;58173:21;58197:32;58211:2;58215:7;58224:4;58197:13;:32::i;:::-;58173:56;;58271:1;58246:27;;:13;:27;;;58242:214;;58290:40;58322:7;58290:31;:40::i;:::-;58242:214;;;58369:2;58352:19;;:13;:19;;;58348:108;;58388:56;58421:13;58436:7;58388:32;:56::i;:::-;58348:108;58242:214;58484:1;58470:16;;:2;:16;;;58466:192;;58503:45;58540:7;58503:36;:45::i;:::-;58466:192;;;58587:2;58570:19;;:13;:19;;;58566:92;;58606:40;58634:2;58638:7;58606:27;:40::i;:::-;58566:92;58466:192;58677:13;58670:20;;;58058:640;;;;;:::o;68534:293::-;67936:1;68668:7;;:19;68660:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;67936:1;68801:7;:18;;;;68534:293::o;70943:340::-;71053:6;71029:21;:30;71025:111;;;71118:4;71083:41;;;;;;;;;;;:::i;:::-;;;;;;;;71025:111;71149:12;71167:9;:14;;71189:6;71167:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71148:52;;;71216:7;71211:65;;71247:17;;;;;;;;;;;;;;71211:65;71014:269;70943:340;;:::o;68835:213::-;67892:1;69018:7;:22;;;;68835:213::o;65911:191::-;65985:16;66004:6;;;;;;;;;;;65985:25;;66030:8;66021:6;;:17;;;;;;;;;;;;;;;;;;66085:8;66054:40;;66075:8;66054:40;;;;;;;;;;;;65974:128;65911:191;:::o;47246:102::-;47314:26;47324:2;47328:7;47314:26;;;;;;;;;;;;:9;:26::i;:::-;47246:102;;:::o;52334:318::-;52462:1;52442:22;;:8;:22;;;52438:93;;52510:8;52488:31;;;;;;;;;;;:::i;:::-;;;;;;;;52438:93;52579:8;52541:18;:25;52560:5;52541:25;;;;;;;;;;;;;;;:35;52567:8;52541:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;52625:8;52603:41;;52618:5;52603:41;;;52635:8;52603:41;;;;;;:::i;:::-;;;;;;;;52334:318;;;:::o;53692:799::-;53826:1;53809:2;:14;;;:18;53805:679;;;53864:2;53848:36;;;53885:12;:10;:12::i;:::-;53899:4;53905:7;53914:4;53848:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53844:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54179:1;54162:6;:13;:18;54158:300;;54234:2;54212:25;;;;;;;;;;;:::i;:::-;;;;;;;;54158:300;54408:6;54402:13;54393:6;54389:2;54385:15;54378:38;53844:629;53977:41;;;53967:51;;;:6;:51;;;;53963:132;;54072:2;54050:25;;;;;;;;;;;:::i;:::-;;;;;;;;53963:132;53920:190;53805:679;53692:799;;;;:::o;79565:113::-;79625:13;79658:12;79651:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79565:113;:::o;26470:718::-;26526:13;26577:14;26614:1;26594:17;26605:5;26594:10;:17::i;:::-;:21;26577:38;;26630:20;26664:6;26653:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26630:41;;26686:11;26815:6;26811:2;26807:15;26799:6;26795:28;26788:35;;26852:290;26859:4;26852:290;;;26884:5;;;;;;;;27026:10;27021:2;27014:5;27010:14;27005:32;27000:3;26992:46;27084:2;27075:11;;;;;;:::i;:::-;;;;;27118:1;27109:5;:10;26852:290;27105:21;26852:290;27163:6;27156:13;;;;;26470:718;;;:::o;29786:148::-;29862:4;29901:25;29886:40;;;:11;:40;;;;29879:47;;29786:148;;;:::o;42188:117::-;42254:7;42281;:16;42289:7;42281:16;;;;;;;;;;;;;;;;;;;;;42274:23;;42188:117;;;:::o;51437:678::-;51599:9;:31;;;;51628:1;51612:18;;:4;:18;;;;51599:31;51595:471;;;51647:13;51663:22;51677:7;51663:13;:22::i;:::-;51647:38;;51832:1;51816:18;;:4;:18;;;;:35;;;;;51847:4;51838:13;;:5;:13;;;;51816:35;:69;;;;;51856:29;51873:5;51880:4;51856:16;:29::i;:::-;51855:30;51816:69;51812:144;;;51935:4;51913:27;;;;;;;;;;;:::i;:::-;;;;;;;;51812:144;51976:9;51972:83;;;52031:7;52027:2;52011:28;;52020:5;52011:28;;;;;;;;;;;;51972:83;51632:434;51595:471;52105:2;52078:15;:24;52094:7;52078:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51437:678;;;;:::o;45388:824::-;45474:7;45494:12;45509:17;45518:7;45509:8;:17::i;:::-;45494:32;;45605:1;45589:18;;:4;:18;;;45585:88;;45624:37;45641:4;45647;45653:7;45624:16;:37::i;:::-;45585:88;45736:1;45720:18;;:4;:18;;;45716:263;;45838:48;45855:1;45859:7;45876:1;45880:5;45838:8;:48::i;:::-;45951:1;45932:9;:15;45942:4;45932:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;45716:263;46009:1;45995:16;;:2;:16;;;45991:111;;46074:1;46057:9;:13;46067:2;46057:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;45991:111;46133:2;46114:7;:16;46122:7;46114:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;46172:7;46168:2;46153:27;;46162:4;46153:27;;;;;;;;;;;;46200:4;46193:11;;;45388:824;;;;;:::o;59418:164::-;59522:10;:17;;;;59495:15;:24;59511:7;59495:24;;;;;;;;;;;:44;;;;59550:10;59566:7;59550:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59418:164;:::o;60209:977::-;60475:22;60500:15;60510:4;60500:9;:15::i;:::-;60475:40;;60526:18;60547:17;:26;60565:7;60547:26;;;;;;;;;;;;60526:47;;60694:14;60680:10;:28;60676:328;;60725:19;60747:12;:18;60760:4;60747:18;;;;;;;;;;;;;;;:34;60766:14;60747:34;;;;;;;;;;;;60725:56;;60831:11;60798:12;:18;60811:4;60798:18;;;;;;;;;;;;;;;:30;60817:10;60798:30;;;;;;;;;;;:44;;;;60948:10;60915:17;:30;60933:11;60915:30;;;;;;;;;;;:43;;;;60710:294;60676:328;61100:17;:26;61118:7;61100:26;;;;;;;;;;;61093:33;;;61144:12;:18;61157:4;61144:18;;;;;;;;;;;;;;;:34;61163:14;61144:34;;;;;;;;;;;61137:41;;;60290:896;;60209:977;;:::o;61481:1079::-;61734:22;61779:1;61759:10;:17;;;;:21;;;;:::i;:::-;61734:46;;61791:18;61812:15;:24;61828:7;61812:24;;;;;;;;;;;;61791:45;;62163:19;62185:10;62196:14;62185:26;;;;;;;;:::i;:::-;;;;;;;;;;62163:48;;62249:11;62224:10;62235;62224:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;62360:10;62329:15;:28;62345:11;62329:28;;;;;;;;;;;:41;;;;62501:15;:24;62517:7;62501:24;;;;;;;;;;;62494:31;;;62536:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;61552:1008;;;61481:1079;:::o;58999:218::-;59084:14;59117:1;59101:13;59111:2;59101:9;:13::i;:::-;:17;;;;:::i;:::-;59084:34;;59156:7;59129:12;:16;59142:2;59129:16;;;;;;;;;;;;;;;:24;59146:6;59129:24;;;;;;;;;;;:34;;;;59203:6;59174:17;:26;59192:7;59174:26;;;;;;;;;;;:35;;;;59073:144;58999:218;;:::o;47575:185::-;47670:18;47676:2;47680:7;47670:5;:18::i;:::-;47699:53;47730:1;47734:2;47738:7;47747:4;47699:22;:53::i;:::-;47575:185;;;:::o;21534:948::-;21587:7;21607:14;21624:1;21607:18;;21674:8;21665:5;:17;21661:106;;21712:8;21703:17;;;;;;:::i;:::-;;;;;21749:2;21739:12;;;;21661:106;21794:8;21785:5;:17;21781:106;;21832:8;21823:17;;;;;;:::i;:::-;;;;;21869:2;21859:12;;;;21781:106;21914:8;21905:5;:17;21901:106;;21952:8;21943:17;;;;;;:::i;:::-;;;;;21989:2;21979:12;;;;21901:106;22034:7;22025:5;:16;22021:103;;22071:7;22062:16;;;;;;:::i;:::-;;;;;22107:1;22097:11;;;;22021:103;22151:7;22142:5;:16;22138:103;;22188:7;22179:16;;;;;;:::i;:::-;;;;;22224:1;22214:11;;;;22138:103;22268:7;22259:5;:16;22255:103;;22305:7;22296:16;;;;;;:::i;:::-;;;;;22341:1;22331:11;;;;22255:103;22385:7;22376:5;:16;22372:68;;22423:1;22413:11;;;;22372:68;22468:6;22461:13;;;21534:948;;;:::o;43595:376::-;43708:38;43722:5;43729:7;43738;43708:13;:38::i;:::-;43703:261;;43784:1;43767:19;;:5;:19;;;43763:190;;43837:7;43814:31;;;;;;;;;;;:::i;:::-;;;;;;;;43763:190;43920:7;43929;43893:44;;;;;;;;;;;;:::i;:::-;;;;;;;;43703:261;43595:376;;;:::o;46548:335::-;46630:1;46616:16;;:2;:16;;;46612:89;;46686:1;46656:33;;;;;;;;;;;:::i;:::-;;;;;;;;46612:89;46711:21;46735:32;46743:2;46747:7;46764:1;46735:7;:32::i;:::-;46711:56;;46807:1;46782:27;;:13;:27;;;46778:98;;46861:1;46833:31;;;;;;;;;;;:::i;:::-;;;;;;;;46778:98;46601:282;46548:335;;:::o;42875:276::-;42978:4;43034:1;43015:21;;:7;:21;;;;:128;;;;;43063:7;43054:16;;:5;:16;;;:52;;;;43074:32;43091:5;43098:7;43074:16;:32::i;:::-;43054:52;:88;;;;43135:7;43110:32;;:21;43123:7;43110:12;:21::i;:::-;:32;;;43054:88;43015:128;42995:148;;42875:276;;;;;:::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:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:118::-;2923:24;2941:5;2923:24;:::i;:::-;2918:3;2911:37;2836:118;;:::o;2960:222::-;3053:4;3091:2;3080:9;3076:18;3068:26;;3104:71;3172:1;3161:9;3157:17;3148:6;3104:71;:::i;:::-;2960:222;;;;:::o;3188:122::-;3261:24;3279:5;3261:24;:::i;:::-;3254:5;3251:35;3241:63;;3300:1;3297;3290:12;3241:63;3188:122;:::o;3316:139::-;3362:5;3400:6;3387:20;3378:29;;3416:33;3443:5;3416:33;:::i;:::-;3316:139;;;;:::o;3461:329::-;3520:6;3569:2;3557:9;3548:7;3544:23;3540:32;3537:119;;;3575:79;;:::i;:::-;3537:119;3695:1;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3666:117;3461:329;;;;:::o;3796:126::-;3833:7;3873:42;3866:5;3862:54;3851:65;;3796:126;;;:::o;3928:96::-;3965:7;3994:24;4012:5;3994:24;:::i;:::-;3983:35;;3928:96;;;:::o;4030:118::-;4117:24;4135:5;4117:24;:::i;:::-;4112:3;4105:37;4030:118;;:::o;4154:222::-;4247:4;4285:2;4274:9;4270:18;4262:26;;4298:71;4366:1;4355:9;4351:17;4342:6;4298:71;:::i;:::-;4154:222;;;;:::o;4382:122::-;4455:24;4473:5;4455:24;:::i;:::-;4448:5;4445:35;4435:63;;4494:1;4491;4484:12;4435:63;4382:122;:::o;4510:139::-;4556:5;4594:6;4581:20;4572:29;;4610:33;4637:5;4610:33;:::i;:::-;4510:139;;;;:::o;4655:474::-;4723:6;4731;4780:2;4768:9;4759:7;4755:23;4751:32;4748:119;;;4786:79;;:::i;:::-;4748:119;4906:1;4931:53;4976:7;4967:6;4956:9;4952:22;4931:53;:::i;:::-;4921:63;;4877:117;5033:2;5059:53;5104:7;5095:6;5084:9;5080:22;5059:53;:::i;:::-;5049:63;;5004:118;4655:474;;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:116::-;5830:21;5845:5;5830:21;:::i;:::-;5823:5;5820:32;5810:60;;5866:1;5863;5856:12;5810:60;5760:116;:::o;5882:133::-;5925:5;5963:6;5950:20;5941:29;;5979:30;6003:5;5979:30;:::i;:::-;5882:133;;;;:::o;6021:323::-;6077:6;6126:2;6114:9;6105:7;6101:23;6097:32;6094:119;;;6132:79;;:::i;:::-;6094:119;6252:1;6277:50;6319:7;6310:6;6299:9;6295:22;6277:50;:::i;:::-;6267:60;;6223:114;6021:323;;;;:::o;6350:117::-;6459:1;6456;6449:12;6473:117;6582:1;6579;6572:12;6596:180;6644:77;6641:1;6634:88;6741:4;6738:1;6731:15;6765:4;6762:1;6755:15;6782:281;6865:27;6887:4;6865:27;:::i;:::-;6857:6;6853:40;6995:6;6983:10;6980:22;6959:18;6947:10;6944:34;6941:62;6938:88;;;7006:18;;:::i;:::-;6938:88;7046:10;7042:2;7035:22;6825:238;6782:281;;:::o;7069:129::-;7103:6;7130:20;;:::i;:::-;7120:30;;7159:33;7187:4;7179:6;7159:33;:::i;:::-;7069:129;;;:::o;7204:308::-;7266:4;7356:18;7348:6;7345:30;7342:56;;;7378:18;;:::i;:::-;7342:56;7416:29;7438:6;7416:29;:::i;:::-;7408:37;;7500:4;7494;7490:15;7482:23;;7204:308;;;:::o;7518:148::-;7616:6;7611:3;7606;7593:30;7657:1;7648:6;7643:3;7639:16;7632:27;7518:148;;;:::o;7672:425::-;7750:5;7775:66;7791:49;7833:6;7791:49;:::i;:::-;7775:66;:::i;:::-;7766:75;;7864:6;7857:5;7850:21;7902:4;7895:5;7891:16;7940:3;7931:6;7926:3;7922:16;7919:25;7916:112;;;7947:79;;:::i;:::-;7916:112;8037:54;8084:6;8079:3;8074;8037:54;:::i;:::-;7756:341;7672:425;;;;;:::o;8117:340::-;8173:5;8222:3;8215:4;8207:6;8203:17;8199:27;8189:122;;8230:79;;:::i;:::-;8189:122;8347:6;8334:20;8372:79;8447:3;8439:6;8432:4;8424:6;8420:17;8372:79;:::i;:::-;8363:88;;8179:278;8117:340;;;;:::o;8463:509::-;8532:6;8581:2;8569:9;8560:7;8556:23;8552:32;8549:119;;;8587:79;;:::i;:::-;8549:119;8735:1;8724:9;8720:17;8707:31;8765:18;8757:6;8754:30;8751:117;;;8787:79;;:::i;:::-;8751:117;8892:63;8947:7;8938:6;8927:9;8923:22;8892:63;:::i;:::-;8882:73;;8678:287;8463:509;;;;:::o;8978:329::-;9037:6;9086:2;9074:9;9065:7;9061:23;9057:32;9054:119;;;9092:79;;:::i;:::-;9054:119;9212:1;9237:53;9282:7;9273:6;9262:9;9258:22;9237:53;:::i;:::-;9227:63;;9183:117;8978:329;;;;:::o;9313:117::-;9422:1;9419;9412:12;9436:117;9545:1;9542;9535:12;9576:568;9649:8;9659:6;9709:3;9702:4;9694:6;9690:17;9686:27;9676:122;;9717:79;;:::i;:::-;9676:122;9830:6;9817:20;9807:30;;9860:18;9852:6;9849:30;9846:117;;;9882:79;;:::i;:::-;9846:117;9996:4;9988:6;9984:17;9972:29;;10050:3;10042:4;10034:6;10030:17;10020:8;10016:32;10013:41;10010:128;;;10057:79;;:::i;:::-;10010:128;9576:568;;;;;:::o;10150:559::-;10236:6;10244;10293:2;10281:9;10272:7;10268:23;10264:32;10261:119;;;10299:79;;:::i;:::-;10261:119;10447:1;10436:9;10432:17;10419:31;10477:18;10469:6;10466:30;10463:117;;;10499:79;;:::i;:::-;10463:117;10612:80;10684:7;10675:6;10664:9;10660:22;10612:80;:::i;:::-;10594:98;;;;10390:312;10150:559;;;;;:::o;10715:468::-;10780:6;10788;10837:2;10825:9;10816:7;10812:23;10808:32;10805:119;;;10843:79;;:::i;:::-;10805:119;10963:1;10988:53;11033:7;11024:6;11013:9;11009:22;10988:53;:::i;:::-;10978:63;;10934:117;11090:2;11116:50;11158:7;11149:6;11138:9;11134:22;11116:50;:::i;:::-;11106:60;;11061:115;10715:468;;;;;:::o;11189:307::-;11250:4;11340:18;11332:6;11329:30;11326:56;;;11362:18;;:::i;:::-;11326:56;11400:29;11422:6;11400:29;:::i;:::-;11392:37;;11484:4;11478;11474:15;11466:23;;11189:307;;;:::o;11502:423::-;11579:5;11604:65;11620:48;11661:6;11620:48;:::i;:::-;11604:65;:::i;:::-;11595:74;;11692:6;11685:5;11678:21;11730:4;11723:5;11719:16;11768:3;11759:6;11754:3;11750:16;11747:25;11744:112;;;11775:79;;:::i;:::-;11744:112;11865:54;11912:6;11907:3;11902;11865:54;:::i;:::-;11585:340;11502:423;;;;;:::o;11944:338::-;11999:5;12048:3;12041:4;12033:6;12029:17;12025:27;12015:122;;12056:79;;:::i;:::-;12015:122;12173:6;12160:20;12198:78;12272:3;12264:6;12257:4;12249:6;12245:17;12198:78;:::i;:::-;12189:87;;12005:277;11944:338;;;;:::o;12288:943::-;12383:6;12391;12399;12407;12456:3;12444:9;12435:7;12431:23;12427:33;12424:120;;;12463:79;;:::i;:::-;12424:120;12583:1;12608:53;12653:7;12644:6;12633:9;12629:22;12608:53;:::i;:::-;12598:63;;12554:117;12710:2;12736:53;12781:7;12772:6;12761:9;12757:22;12736:53;:::i;:::-;12726:63;;12681:118;12838:2;12864:53;12909:7;12900:6;12889:9;12885:22;12864:53;:::i;:::-;12854:63;;12809:118;12994:2;12983:9;12979:18;12966:32;13025:18;13017:6;13014:30;13011:117;;;13047:79;;:::i;:::-;13011:117;13152:62;13206:7;13197:6;13186:9;13182:22;13152:62;:::i;:::-;13142:72;;12937:287;12288:943;;;;;;;:::o;13237:474::-;13305:6;13313;13362:2;13350:9;13341:7;13337:23;13333:32;13330:119;;;13368:79;;:::i;:::-;13330:119;13488:1;13513:53;13558:7;13549:6;13538:9;13534:22;13513:53;:::i;:::-;13503:63;;13459:117;13615:2;13641:53;13686:7;13677:6;13666:9;13662:22;13641:53;:::i;:::-;13631:63;;13586:118;13237:474;;;;;:::o;13717:180::-;13765:77;13762:1;13755:88;13862:4;13859:1;13852:15;13886:4;13883:1;13876:15;13903:320;13947:6;13984:1;13978:4;13974:12;13964:22;;14031:1;14025:4;14021:12;14052:18;14042:81;;14108:4;14100:6;14096:17;14086:27;;14042:81;14170:2;14162:6;14159:14;14139:18;14136:38;14133:84;;14189:18;;:::i;:::-;14133:84;13954:269;13903:320;;;:::o;14229:442::-;14378:4;14416:2;14405:9;14401:18;14393:26;;14429:71;14497:1;14486:9;14482:17;14473:6;14429:71;:::i;:::-;14510:72;14578:2;14567:9;14563:18;14554:6;14510:72;:::i;:::-;14592;14660:2;14649:9;14645:18;14636:6;14592:72;:::i;:::-;14229:442;;;;;;:::o;14677:332::-;14798:4;14836:2;14825:9;14821:18;14813:26;;14849:71;14917:1;14906:9;14902:17;14893:6;14849:71;:::i;:::-;14930:72;14998:2;14987:9;14983:18;14974:6;14930:72;:::i;:::-;14677:332;;;;;:::o;15015:180::-;15063:77;15060:1;15053:88;15160:4;15157:1;15150:15;15184:4;15181:1;15174:15;15201:141;15250:4;15273:3;15265:11;;15296:3;15293:1;15286:14;15330:4;15327:1;15317:18;15309:26;;15201:141;;;:::o;15348:93::-;15385:6;15432:2;15427;15420:5;15416:14;15412:23;15402:33;;15348:93;;;:::o;15447:107::-;15491:8;15541:5;15535:4;15531:16;15510:37;;15447:107;;;;:::o;15560:393::-;15629:6;15679:1;15667:10;15663:18;15702:97;15732:66;15721:9;15702:97;:::i;:::-;15820:39;15850:8;15839:9;15820:39;:::i;:::-;15808:51;;15892:4;15888:9;15881:5;15877:21;15868:30;;15941:4;15931:8;15927:19;15920:5;15917:30;15907:40;;15636:317;;15560:393;;;;;:::o;15959:60::-;15987:3;16008:5;16001:12;;15959:60;;;:::o;16025:142::-;16075:9;16108:53;16126:34;16135:24;16153:5;16135:24;:::i;:::-;16126:34;:::i;:::-;16108:53;:::i;:::-;16095:66;;16025:142;;;:::o;16173:75::-;16216:3;16237:5;16230:12;;16173:75;;;:::o;16254:269::-;16364:39;16395:7;16364:39;:::i;:::-;16425:91;16474:41;16498:16;16474:41;:::i;:::-;16466:6;16459:4;16453:11;16425:91;:::i;:::-;16419:4;16412:105;16330:193;16254:269;;;:::o;16529:73::-;16574:3;16529:73;:::o;16608:189::-;16685:32;;:::i;:::-;16726:65;16784:6;16776;16770:4;16726:65;:::i;:::-;16661:136;16608:189;;:::o;16803:186::-;16863:120;16880:3;16873:5;16870:14;16863:120;;;16934:39;16971:1;16964:5;16934:39;:::i;:::-;16907:1;16900:5;16896:13;16887:22;;16863:120;;;16803:186;;:::o;16995:543::-;17096:2;17091:3;17088:11;17085:446;;;17130:38;17162:5;17130:38;:::i;:::-;17214:29;17232:10;17214:29;:::i;:::-;17204:8;17200:44;17397:2;17385:10;17382:18;17379:49;;;17418:8;17403:23;;17379:49;17441:80;17497:22;17515:3;17497:22;:::i;:::-;17487:8;17483:37;17470:11;17441:80;:::i;:::-;17100:431;;17085:446;16995:543;;;:::o;17544:117::-;17598:8;17648:5;17642:4;17638:16;17617:37;;17544:117;;;;:::o;17667:169::-;17711:6;17744:51;17792:1;17788:6;17780:5;17777:1;17773:13;17744:51;:::i;:::-;17740:56;17825:4;17819;17815:15;17805:25;;17718:118;17667:169;;;;:::o;17841:295::-;17917:4;18063:29;18088:3;18082:4;18063:29;:::i;:::-;18055:37;;18125:3;18122:1;18118:11;18112:4;18109:21;18101:29;;17841:295;;;;:::o;18141:1395::-;18258:37;18291:3;18258:37;:::i;:::-;18360:18;18352:6;18349:30;18346:56;;;18382:18;;:::i;:::-;18346:56;18426:38;18458:4;18452:11;18426:38;:::i;:::-;18511:67;18571:6;18563;18557:4;18511:67;:::i;:::-;18605:1;18629:4;18616:17;;18661:2;18653:6;18650:14;18678:1;18673:618;;;;19335:1;19352:6;19349:77;;;19401:9;19396:3;19392:19;19386:26;19377:35;;19349:77;19452:67;19512:6;19505:5;19452:67;:::i;:::-;19446:4;19439:81;19308:222;18643:887;;18673:618;18725:4;18721:9;18713:6;18709:22;18759:37;18791:4;18759:37;:::i;:::-;18818:1;18832:208;18846:7;18843:1;18840:14;18832:208;;;18925:9;18920:3;18916:19;18910:26;18902:6;18895:42;18976:1;18968:6;18964:14;18954:24;;19023:2;19012:9;19008:18;18995:31;;18869:4;18866:1;18862:12;18857:17;;18832:208;;;19068:6;19059:7;19056:19;19053:179;;;19126:9;19121:3;19117:19;19111:26;19169:48;19211:4;19203:6;19199:17;19188:9;19169:48;:::i;:::-;19161:6;19154:64;19076:156;19053:179;19278:1;19274;19266:6;19262:14;19258:22;19252:4;19245:36;18680:611;;;18643:887;;18233:1303;;;18141:1395;;:::o;19542:173::-;19682:25;19678:1;19670:6;19666:14;19659:49;19542:173;:::o;19721:366::-;19863:3;19884:67;19948:2;19943:3;19884:67;:::i;:::-;19877:74;;19960:93;20049:3;19960:93;:::i;:::-;20078:2;20073:3;20069:12;20062:19;;19721:366;;;:::o;20093:419::-;20259:4;20297:2;20286:9;20282:18;20274:26;;20346:9;20340:4;20336:20;20332:1;20321:9;20317:17;20310:47;20374:131;20500:4;20374:131;:::i;:::-;20366:139;;20093:419;;;:::o;20518:180::-;20566:77;20563:1;20556:88;20663:4;20660:1;20653:15;20687:4;20684:1;20677:15;20704:191;20744:3;20763:20;20781:1;20763:20;:::i;:::-;20758:25;;20797:20;20815:1;20797:20;:::i;:::-;20792:25;;20840:1;20837;20833:9;20826:16;;20861:3;20858:1;20855:10;20852:36;;;20868:18;;:::i;:::-;20852:36;20704:191;;;;:::o;20901:174::-;21041:26;21037:1;21029:6;21025:14;21018:50;20901:174;:::o;21081:366::-;21223:3;21244:67;21308:2;21303:3;21244:67;:::i;:::-;21237:74;;21320:93;21409:3;21320:93;:::i;:::-;21438:2;21433:3;21429:12;21422:19;;21081:366;;;:::o;21453:419::-;21619:4;21657:2;21646:9;21642:18;21634:26;;21706:9;21700:4;21696:20;21692:1;21681:9;21677:17;21670:47;21734:131;21860:4;21734:131;:::i;:::-;21726:139;;21453:419;;;:::o;21878:410::-;21918:7;21941:20;21959:1;21941:20;:::i;:::-;21936:25;;21975:20;21993:1;21975:20;:::i;:::-;21970:25;;22030:1;22027;22023:9;22052:30;22070:11;22052:30;:::i;:::-;22041:41;;22231:1;22222:7;22218:15;22215:1;22212:22;22192:1;22185:9;22165:83;22142:139;;22261:18;;:::i;:::-;22142:139;21926:362;21878:410;;;;:::o;22294:174::-;22434:26;22430:1;22422:6;22418:14;22411:50;22294:174;:::o;22474:366::-;22616:3;22637:67;22701:2;22696:3;22637:67;:::i;:::-;22630:74;;22713:93;22802:3;22713:93;:::i;:::-;22831:2;22826:3;22822:12;22815:19;;22474:366;;;:::o;22846:419::-;23012:4;23050:2;23039:9;23035:18;23027:26;;23099:9;23093:4;23089:20;23085:1;23074:9;23070:17;23063:47;23127:131;23253:4;23127:131;:::i;:::-;23119:139;;22846:419;;;:::o;23271:221::-;23411:34;23407:1;23399:6;23395:14;23388:58;23480:4;23475:2;23467:6;23463:15;23456:29;23271:221;:::o;23498:366::-;23640:3;23661:67;23725:2;23720:3;23661:67;:::i;:::-;23654:74;;23737:93;23826:3;23737:93;:::i;:::-;23855:2;23850:3;23846:12;23839:19;;23498:366;;;:::o;23870:419::-;24036:4;24074:2;24063:9;24059:18;24051:26;;24123:9;24117:4;24113:20;24109:1;24098:9;24094:17;24087:47;24151:131;24277:4;24151:131;:::i;:::-;24143:139;;23870:419;;;:::o;24295:234::-;24435:34;24431:1;24423:6;24419:14;24412:58;24504:17;24499:2;24491:6;24487:15;24480:42;24295:234;:::o;24535:366::-;24677:3;24698:67;24762:2;24757:3;24698:67;:::i;:::-;24691:74;;24774:93;24863:3;24774:93;:::i;:::-;24892:2;24887:3;24883:12;24876:19;;24535:366;;;:::o;24907:419::-;25073:4;25111:2;25100:9;25096:18;25088:26;;25160:9;25154:4;25150:20;25146:1;25135:9;25131:17;25124:47;25188:131;25314:4;25188:131;:::i;:::-;25180:139;;24907:419;;;:::o;25332:148::-;25434:11;25471:3;25456:18;;25332:148;;;;:::o;25486:390::-;25592:3;25620:39;25653:5;25620:39;:::i;:::-;25675:89;25757:6;25752:3;25675:89;:::i;:::-;25668:96;;25773:65;25831:6;25826:3;25819:4;25812:5;25808:16;25773:65;:::i;:::-;25863:6;25858:3;25854:16;25847:23;;25596:280;25486:390;;;;:::o;25882:151::-;26022:3;26018:1;26010:6;26006:14;25999:27;25882:151;:::o;26039:400::-;26199:3;26220:84;26302:1;26297:3;26220:84;:::i;:::-;26213:91;;26313:93;26402:3;26313:93;:::i;:::-;26431:1;26426:3;26422:11;26415:18;;26039:400;;;:::o;26445:155::-;26585:7;26581:1;26573:6;26569:14;26562:31;26445:155;:::o;26606:400::-;26766:3;26787:84;26869:1;26864:3;26787:84;:::i;:::-;26780:91;;26880:93;26969:3;26880:93;:::i;:::-;26998:1;26993:3;26989:11;26982:18;;26606:400;;;:::o;27012:967::-;27394:3;27416:95;27507:3;27498:6;27416:95;:::i;:::-;27409:102;;27528:148;27672:3;27528:148;:::i;:::-;27521:155;;27693:95;27784:3;27775:6;27693:95;:::i;:::-;27686:102;;27805:148;27949:3;27805:148;:::i;:::-;27798:155;;27970:3;27963:10;;27012:967;;;;;:::o;27985:169::-;28125:21;28121:1;28113:6;28109:14;28102:45;27985:169;:::o;28160:366::-;28302:3;28323:67;28387:2;28382:3;28323:67;:::i;:::-;28316:74;;28399:93;28488:3;28399:93;:::i;:::-;28517:2;28512:3;28508:12;28501:19;;28160:366;;;:::o;28532:419::-;28698:4;28736:2;28725:9;28721:18;28713:26;;28785:9;28779:4;28775:20;28771:1;28760:9;28756:17;28749:47;28813:131;28939:4;28813:131;:::i;:::-;28805:139;;28532:419;;;:::o;28957:173::-;29097:25;29093:1;29085:6;29081:14;29074:49;28957:173;:::o;29136:366::-;29278:3;29299:67;29363:2;29358:3;29299:67;:::i;:::-;29292:74;;29375:93;29464:3;29375:93;:::i;:::-;29493:2;29488:3;29484:12;29477:19;;29136:366;;;:::o;29508:419::-;29674:4;29712:2;29701:9;29697:18;29689:26;;29761:9;29755:4;29751:20;29747:1;29736:9;29732:17;29725:47;29789:131;29915:4;29789:131;:::i;:::-;29781:139;;29508:419;;;:::o;29933:181::-;30073:33;30069:1;30061:6;30057:14;30050:57;29933:181;:::o;30120:366::-;30262:3;30283:67;30347:2;30342:3;30283:67;:::i;:::-;30276:74;;30359:93;30448:3;30359:93;:::i;:::-;30477:2;30472:3;30468:12;30461:19;;30120:366;;;:::o;30492:419::-;30658:4;30696:2;30685:9;30681:18;30673:26;;30745:9;30739:4;30735:20;30731:1;30720:9;30716:17;30709:47;30773:131;30899:4;30773:131;:::i;:::-;30765:139;;30492:419;;;:::o;30917:147::-;31018:11;31055:3;31040:18;;30917:147;;;;:::o;31070:114::-;;:::o;31190:398::-;31349:3;31370:83;31451:1;31446:3;31370:83;:::i;:::-;31363:90;;31462:93;31551:3;31462:93;:::i;:::-;31580:1;31575:3;31571:11;31564:18;;31190:398;;;:::o;31594:379::-;31778:3;31800:147;31943:3;31800:147;:::i;:::-;31793:154;;31964:3;31957:10;;31594:379;;;:::o;31979:98::-;32030:6;32064:5;32058:12;32048:22;;31979:98;;;:::o;32083:168::-;32166:11;32200:6;32195:3;32188:19;32240:4;32235:3;32231:14;32216:29;;32083:168;;;;:::o;32257:373::-;32343:3;32371:38;32403:5;32371:38;:::i;:::-;32425:70;32488:6;32483:3;32425:70;:::i;:::-;32418:77;;32504:65;32562:6;32557:3;32550:4;32543:5;32539:16;32504:65;:::i;:::-;32594:29;32616:6;32594:29;:::i;:::-;32589:3;32585:39;32578:46;;32347:283;32257:373;;;;:::o;32636:640::-;32831:4;32869:3;32858:9;32854:19;32846:27;;32883:71;32951:1;32940:9;32936:17;32927:6;32883:71;:::i;:::-;32964:72;33032:2;33021:9;33017:18;33008:6;32964:72;:::i;:::-;33046;33114:2;33103:9;33099:18;33090:6;33046:72;:::i;:::-;33165:9;33159:4;33155:20;33150:2;33139:9;33135:18;33128:48;33193:76;33264:4;33255:6;33193:76;:::i;:::-;33185:84;;32636:640;;;;;;;:::o;33282:141::-;33338:5;33369:6;33363:13;33354:22;;33385:32;33411:5;33385:32;:::i;:::-;33282:141;;;;:::o;33429:349::-;33498:6;33547:2;33535:9;33526:7;33522:23;33518:32;33515:119;;;33553:79;;:::i;:::-;33515:119;33673:1;33698:63;33753:7;33744:6;33733:9;33729:22;33698:63;:::i;:::-;33688:73;;33644:127;33429:349;;;;:::o;33784:180::-;33832:77;33829:1;33822:88;33929:4;33926:1;33919:15;33953:4;33950:1;33943:15;33970:194;34010:4;34030:20;34048:1;34030:20;:::i;:::-;34025:25;;34064:20;34082:1;34064:20;:::i;:::-;34059:25;;34108:1;34105;34101:9;34093:17;;34132:1;34126:4;34123:11;34120:37;;;34137:18;;:::i;:::-;34120:37;33970:194;;;;:::o;34170:180::-;34218:77;34215:1;34208:88;34315:4;34312:1;34305:15;34339:4;34336:1;34329:15
Swarm Source
ipfs://1c8526c3043cf8063d8ddf8b7c13db1cb988574949257c4b23a9459850604c0b
[ 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.