ERC-721
Overview
Max Total Supply
1,587 SPP
Holders
275
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 SPPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ShitPooPoop
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-04 */ // 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/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // 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. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. 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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: ShitPooPoop.sol pragma solidity >=0.7.0 <0.9.0; contract ShitPooPoop is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public baseURI; string public baseExtension = ""; string public notRevealedUri; uint256 public cost = 0.001 ether; uint256 public maxSupply = 10000; uint256 public FreeSupply = 6000; uint256 public MaxperWallet = 22; uint256 public MaxperWalletFree = 2; bool public paused = false; bool public revealed = true; constructor( string memory _initBaseURI, string memory _notRevealedUri ) ERC721A("ShitPooPoop", "SPP") { setBaseURI(_initBaseURI); setNotRevealedURI(_notRevealedUri); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } // public /// @dev Public mint function mint(uint256 tokens) public payable nonReentrant { require(!paused, "oops contract is paused"); require(tokens <= MaxperWallet, "max mint amount per tx exceeded"); require(totalSupply() + tokens <= maxSupply, "We Soldout"); require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded"); require(msg.value >= cost * tokens, "insufficient funds"); _safeMint(_msgSenderERC721A(), tokens); } function isEOA(address account) internal view returns (bool) { uint256 size; assembly { size := extcodesize(account) } return size == 0; } /// @dev free mint function freemint(uint256 tokens) public nonReentrant { require(!paused, "oops contract is paused"); require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWalletFree, "Max NFT Per Wallet exceeded"); require(tokens <= MaxperWalletFree, "max free mint per Tx exceeded"); require(totalSupply() + tokens <= FreeSupply, "Whitelist MaxSupply exceeded"); require(isEOA(_msgSender()), "Sender is not an EOA"); _safeMint(_msgSenderERC721A(), tokens); } /// @dev use it for giveaway and team mint function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant { require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded"); _safeMint(destination, _mintAmount); } /// @notice returns metadata link of tokenid function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721AMetadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } /// @notice return the number minted by an address function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } /// @notice return the tokens owned by an address function tokensOfOwner(address owner) public view returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } //only owner function reveal(bool _state) public onlyOwner { revealed = _state; } /// @dev change the public max per wallet function setMaxPerWallet(uint256 _limit) public onlyOwner { MaxperWallet = _limit; } /// @dev change the free max per wallet function setFreeMaxPerWallet(uint256 _limit) public onlyOwner { MaxperWalletFree = _limit; } /// @dev change the public price(amount need to be in wei) function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } /// @dev cut the supply if we dont sold out function setMaxsupply(uint256 _newsupply) public onlyOwner { maxSupply = _newsupply; } /// @dev cut the free supply function setFreesupply(uint256 _newsupply) public onlyOwner { FreeSupply = _newsupply; } /// @dev set your baseuri function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } /// @dev set base extension(default is .json) function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } /// @dev set hidden uri function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } /// @dev to pause and unpause your contract(use booleans true or false) function pause(bool _state) public onlyOwner { paused = _state; } function setApprovalForAll(address operator, bool approved) public override { super.setApprovalForAll(operator, approved); } /// @dev withdraw funds from contract function withdraw() public payable onlyOwner nonReentrant { uint256 balance = address(this).balance; payable(_msgSenderERC721A()).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"FreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setFreesupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600b9081620000249190620005ff565b5066038d7ea4c68000600d55612710600e55611770600f55601660105560026011556000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055503480156200008957600080fd5b50604051620046df380380620046df8339818101604052810190620000af91906200084a565b6040518060400160405280600b81526020017f53686974506f6f506f6f700000000000000000000000000000000000000000008152506040518060400160405280600381526020017f535050000000000000000000000000000000000000000000000000000000000081525081600290816200012c9190620005ff565b5080600390816200013e9190620005ff565b506200014f620001a960201b60201c565b6000819055505050620001776200016b620001b260201b60201c565b620001ba60201b60201c565b600160098190555062000190826200028060201b60201c565b620001a181620002a560201b60201c565b505062000952565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000290620002ca60201b60201c565b80600a9081620002a19190620005ff565b5050565b620002b5620002ca60201b60201c565b80600c9081620002c69190620005ff565b5050565b620002da620001b260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003006200035b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000359576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003509062000930565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200040757607f821691505b6020821081036200041d576200041c620003bf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000448565b62000493868362000448565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004e0620004da620004d484620004ab565b620004b5565b620004ab565b9050919050565b6000819050919050565b620004fc83620004bf565b620005146200050b82620004e7565b84845462000455565b825550505050565b600090565b6200052b6200051c565b62000538818484620004f1565b505050565b5b8181101562000560576200055460008262000521565b6001810190506200053e565b5050565b601f821115620005af57620005798162000423565b620005848462000438565b8101602085101562000594578190505b620005ac620005a38562000438565b8301826200053d565b50505b505050565b600082821c905092915050565b6000620005d460001984600802620005b4565b1980831691505092915050565b6000620005ef8383620005c1565b9150826002028217905092915050565b6200060a8262000385565b67ffffffffffffffff81111562000626576200062562000390565b5b620006328254620003ee565b6200063f82828562000564565b600060209050601f83116001811462000677576000841562000662578287015190505b6200066e8582620005e1565b865550620006de565b601f198416620006878662000423565b60005b82811015620006b1578489015182556001820191506020850194506020810190506200068a565b86831015620006d15784890151620006cd601f891682620005c1565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620007208262000704565b810181811067ffffffffffffffff8211171562000742576200074162000390565b5b80604052505050565b600062000757620006e6565b905062000765828262000715565b919050565b600067ffffffffffffffff82111562000788576200078762000390565b5b620007938262000704565b9050602081019050919050565b60005b83811015620007c0578082015181840152602081019050620007a3565b60008484015250505050565b6000620007e3620007dd846200076a565b6200074b565b905082815260208101848484011115620008025762000801620006ff565b5b6200080f848285620007a0565b509392505050565b600082601f8301126200082f576200082e620006fa565b5b815162000841848260208601620007cc565b91505092915050565b60008060408385031215620008645762000863620006f0565b5b600083015167ffffffffffffffff811115620008855762000884620006f5565b5b620008938582860162000817565b925050602083015167ffffffffffffffff811115620008b757620008b6620006f5565b5b620008c58582860162000817565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000918602083620008cf565b91506200092582620008e0565b602082019050919050565b600060208201905081810360008301526200094b8162000909565b9050919050565b613d7d80620009626000396000f3fe60806040526004361061025c5760003560e01c80636c0360eb11610144578063bd7a1998116100b6578063dc33e6811161007a578063dc33e68114610870578063e1cf8baa146108ad578063e268e4d3146108d6578063e985e9c5146108ff578063f2c4ce1e1461093c578063f2fde38b146109655761025c565b8063bd7a199814610789578063c6682862146107b4578063c87b56dd146107df578063d5abeb011461081c578063da3ef23f146108475761025c565b8063940cd05b11610108578063940cd05b146106ab57806395d89b41146106d4578063a0712d68146106ff578063a22cb4651461071b578063b88d4fde14610744578063bc63f02e146107605761025c565b80636c0360eb146105c457806370a08231146105ef578063715018a61461062c5780638462151c146106435780638da5cb5b146106805761025c565b806323b872dd116101dd57806350839bef116101a157806350839bef146104b257806351830227146104dd57806355f804b3146105085780635c975abb14610531578063624208ae1461055c5780636352211e146105875761025c565b806323b872dd1461041e578063351de26e1461043a5780633ccfd60b1461046357806342842e0e1461046d57806344a0d68a146104895761025c565b8063095ea7b311610224578063095ea7b31461035a5780630fbe4fe21461037657806313faede61461039f578063149835a0146103ca57806318160ddd146103f35761025c565b806301ffc9a71461026157806302329a291461029e57806306fdde03146102c7578063081812fc146102f2578063081c8c441461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612a46565b61098e565b6040516102959190612a8e565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190612ad5565b610a20565b005b3480156102d357600080fd5b506102dc610a45565b6040516102e99190612b92565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612bea565b610ad7565b6040516103269190612c58565b60405180910390f35b34801561033b57600080fd5b50610344610b56565b6040516103519190612b92565b60405180910390f35b610374600480360381019061036f9190612c9f565b610be4565b005b34801561038257600080fd5b5061039d60048036038101906103989190612bea565b610d28565b005b3480156103ab57600080fd5b506103b4610ee6565b6040516103c19190612cee565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612bea565b610eec565b005b3480156103ff57600080fd5b50610408610efe565b6040516104159190612cee565b60405180910390f35b61043860048036038101906104339190612d09565b610f15565b005b34801561044657600080fd5b50610461600480360381019061045c9190612bea565b611237565b005b61046b611249565b005b61048760048036038101906104829190612d09565b6112b7565b005b34801561049557600080fd5b506104b060048036038101906104ab9190612bea565b6112d7565b005b3480156104be57600080fd5b506104c76112e9565b6040516104d49190612cee565b60405180910390f35b3480156104e957600080fd5b506104f26112ef565b6040516104ff9190612a8e565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190612e91565b611302565b005b34801561053d57600080fd5b5061054661131d565b6040516105539190612a8e565b60405180910390f35b34801561056857600080fd5b50610571611330565b60405161057e9190612cee565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612bea565b611336565b6040516105bb9190612c58565b60405180910390f35b3480156105d057600080fd5b506105d9611348565b6040516105e69190612b92565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190612eda565b6113d6565b6040516106239190612cee565b60405180910390f35b34801561063857600080fd5b5061064161148e565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612eda565b6114a2565b6040516106779190612fc5565b60405180910390f35b34801561068c57600080fd5b506106956115e5565b6040516106a29190612c58565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190612ad5565b61160f565b005b3480156106e057600080fd5b506106e9611634565b6040516106f69190612b92565b60405180910390f35b61071960048036038101906107149190612bea565b6116c6565b005b34801561072757600080fd5b50610742600480360381019061073d9190612fe7565b611885565b005b61075e600480360381019061075991906130c8565b611893565b005b34801561076c57600080fd5b506107876004803603810190610782919061314b565b611906565b005b34801561079557600080fd5b5061079e611983565b6040516107ab9190612cee565b60405180910390f35b3480156107c057600080fd5b506107c9611989565b6040516107d69190612b92565b60405180910390f35b3480156107eb57600080fd5b5061080660048036038101906108019190612bea565b611a17565b6040516108139190612b92565b60405180910390f35b34801561082857600080fd5b50610831611b6f565b60405161083e9190612cee565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190612e91565b611b75565b005b34801561087c57600080fd5b5061089760048036038101906108929190612eda565b611b90565b6040516108a49190612cee565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf9190612bea565b611ba2565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190612bea565b611bb4565b005b34801561090b57600080fd5b506109266004803603810190610921919061318b565b611bc6565b6040516109339190612a8e565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190612e91565b611c5a565b005b34801561097157600080fd5b5061098c60048036038101906109879190612eda565b611c75565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a195750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a28611cf8565b80601260006101000a81548160ff02191690831515021790555050565b606060028054610a54906131fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610a80906131fa565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b6000610ae282611d76565b610b18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610b63906131fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f906131fa565b8015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b505050505081565b6000610bef82611336565b90508073ffffffffffffffffffffffffffffffffffffffff16610c10611dd5565b73ffffffffffffffffffffffffffffffffffffffff1614610c7357610c3c81610c37611dd5565b611bc6565b610c72576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d30611ddd565b601260009054906101000a900460ff1615610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613277565b60405180910390fd5b60115481610d94610d8f611dd5565b611e2c565b610d9e91906132c6565b1115610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690613346565b60405180910390fd5b601154811115610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906133b2565b60405180910390fd5b600f5481610e30610efe565b610e3a91906132c6565b1115610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e729061341e565b60405180910390fd5b610e8b610e86611e83565b611e8b565b610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec19061348a565b60405180910390fd5b610edb610ed5611dd5565b82611e9e565b610ee3611ebc565b50565b600d5481565b610ef4611cf8565b80600e8190555050565b6000610f08611ec6565b6001546000540303905090565b6000610f2082611ecf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f87576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f9384611f9b565b91509150610fa98187610fa4611dd5565b611fc2565b610ff557610fbe86610fb9611dd5565b611bc6565b610ff4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361105b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110688686866001612006565b801561107357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506111418561111d88888761200c565b7c020000000000000000000000000000000000000000000000000000000017612034565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111c757600060018501905060006004600083815260200190815260200160002054036111c55760005481146111c4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461122f868686600161205f565b505050505050565b61123f611cf8565b8060118190555050565b611251611cf8565b611259611ddd565b6000479050611266611dd5565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112ab573d6000803e3d6000fd5b50506112b5611ebc565b565b6112d283838360405180602001604052806000815250611893565b505050565b6112df611cf8565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b61130a611cf8565b80600a90816113199190613656565b5050565b601260009054906101000a900460ff1681565b60115481565b600061134182611ecf565b9050919050565b600a8054611355906131fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611381906131fa565b80156113ce5780601f106113a3576101008083540402835291602001916113ce565b820191906000526020600020905b8154815290600101906020018083116113b157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361143d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611496611cf8565b6114a06000612065565b565b606060008060006114b2856113d6565b905060008167ffffffffffffffff8111156114d0576114cf612d66565b5b6040519080825280602002602001820160405280156114fe5781602001602082028036833780820191505090505b50905061150961298b565b6000611513611ec6565b90505b8386146115d7576115268161212b565b915081604001516115cc57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461157157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036115cb57808387806001019850815181106115be576115bd613728565b5b6020026020010181815250505b5b806001019050611516565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611617611cf8565b80601260016101000a81548160ff02191690831515021790555050565b606060038054611643906131fa565b80601f016020809104026020016040519081016040528092919081815260200182805461166f906131fa565b80156116bc5780601f10611691576101008083540402835291602001916116bc565b820191906000526020600020905b81548152906001019060200180831161169f57829003601f168201915b5050505050905090565b6116ce611ddd565b601260009054906101000a900460ff161561171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590613277565b60405180910390fd5b601054811115611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a906137a3565b60405180910390fd5b600e548161176f610efe565b61177991906132c6565b11156117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b19061380f565b60405180910390fd5b601054816117ce6117c9611dd5565b611e2c565b6117d891906132c6565b1115611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090613346565b60405180910390fd5b80600d54611827919061382f565b341015611869576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611860906138bd565b60405180910390fd5b61187a611874611dd5565b82611e9e565b611882611ebc565b50565b61188f8282612156565b5050565b61189e848484610f15565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611900576118c984848484612261565b6118ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61190e611cf8565b611916611ddd565b600e5482611922610efe565b61192c91906132c6565b111561196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613929565b60405180910390fd5b6119778183611e9e565b61197f611ebc565b5050565b60105481565b600b8054611996906131fa565b80601f01602080910402602001604051908101604052809291908181526020018280546119c2906131fa565b8015611a0f5780601f106119e457610100808354040283529160200191611a0f565b820191906000526020600020905b8154815290600101906020018083116119f257829003601f168201915b505050505081565b6060611a2282611d76565b611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a58906139bb565b60405180910390fd5b60001515601260019054906101000a900460ff16151503611b0e57600c8054611a89906131fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab5906131fa565b8015611b025780601f10611ad757610100808354040283529160200191611b02565b820191906000526020600020905b815481529060010190602001808311611ae557829003601f168201915b50505050509050611b6a565b6000611b186123b1565b90506000815111611b385760405180602001604052806000815250611b66565b80611b4284612443565b600b604051602001611b5693929190613a9a565b6040516020818303038152906040525b9150505b919050565b600e5481565b611b7d611cf8565b80600b9081611b8c9190613656565b5050565b6000611b9b82611e2c565b9050919050565b611baa611cf8565b80600f8190555050565b611bbc611cf8565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c62611cf8565b80600c9081611c719190613656565b5050565b611c7d611cf8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce390613b3d565b60405180910390fd5b611cf581612065565b50565b611d00611e83565b73ffffffffffffffffffffffffffffffffffffffff16611d1e6115e5565b73ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90613ba9565b60405180910390fd5b565b600081611d81611ec6565b11158015611d90575060005482105b8015611dce575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600260095403611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613c15565b60405180910390fd5b6002600981905550565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b600080823b905060008114915050919050565b611eb8828260405180602001604052806000815250612511565b5050565b6001600981905550565b60006001905090565b60008082905080611ede611ec6565b11611f6457600054811015611f635760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f61575b60008103611f57576004600083600190039350838152602001908152602001600020549050611f2d565b8092505050611f96565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120238686846125ae565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61213361298b565b61214f60046000848152602001908152602001600020546125b7565b9050919050565b8060076000612163611dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612210611dd5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122559190612a8e565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612287611dd5565b8786866040518563ffffffff1660e01b81526004016122a99493929190613c8a565b6020604051808303816000875af19250505080156122e557506040513d601f19601f820116820180604052508101906122e29190613ceb565b60015b61235e573d8060008114612315576040519150601f19603f3d011682016040523d82523d6000602084013e61231a565b606091505b506000815103612356576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546123c0906131fa565b80601f01602080910402602001604051908101604052809291908181526020018280546123ec906131fa565b80156124395780601f1061240e57610100808354040283529160200191612439565b820191906000526020600020905b81548152906001019060200180831161241c57829003601f168201915b5050505050905090565b6060600060016124528461266d565b01905060008167ffffffffffffffff81111561247157612470612d66565b5b6040519080825280601f01601f1916602001820160405280156124a35781602001600182028036833780820191505090505b509050600082602001820190505b600115612506578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816124fa576124f9613d18565b5b049450600085036124b1575b819350505050919050565b61251b83836127c0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125a957600080549050600083820390505b61255b6000868380600101945086612261565b612591576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125485781600054146125a657600080fd5b50505b505050565b60009392505050565b6125bf61298b565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106126cb577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816126c1576126c0613d18565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612708576d04ee2d6d415b85acef810000000083816126fe576126fd613d18565b5b0492506020810190505b662386f26fc10000831061273757662386f26fc10000838161272d5761272c613d18565b5b0492506010810190505b6305f5e1008310612760576305f5e100838161275657612755613d18565b5b0492506008810190505b612710831061278557612710838161277b5761277a613d18565b5b0492506004810190505b606483106127a8576064838161279e5761279d613d18565b5b0492506002810190505b600a83106127b7576001810190505b80915050919050565b60008054905060008203612800576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61280d6000848385612006565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061288483612875600086600061200c565b61287e8561297b565b17612034565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461292557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506128ea565b5060008203612960576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612976600084838561205f565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a23816129ee565b8114612a2e57600080fd5b50565b600081359050612a4081612a1a565b92915050565b600060208284031215612a5c57612a5b6129e4565b5b6000612a6a84828501612a31565b91505092915050565b60008115159050919050565b612a8881612a73565b82525050565b6000602082019050612aa36000830184612a7f565b92915050565b612ab281612a73565b8114612abd57600080fd5b50565b600081359050612acf81612aa9565b92915050565b600060208284031215612aeb57612aea6129e4565b5b6000612af984828501612ac0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b3c578082015181840152602081019050612b21565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b6482612b02565b612b6e8185612b0d565b9350612b7e818560208601612b1e565b612b8781612b48565b840191505092915050565b60006020820190508181036000830152612bac8184612b59565b905092915050565b6000819050919050565b612bc781612bb4565b8114612bd257600080fd5b50565b600081359050612be481612bbe565b92915050565b600060208284031215612c0057612bff6129e4565b5b6000612c0e84828501612bd5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c4282612c17565b9050919050565b612c5281612c37565b82525050565b6000602082019050612c6d6000830184612c49565b92915050565b612c7c81612c37565b8114612c8757600080fd5b50565b600081359050612c9981612c73565b92915050565b60008060408385031215612cb657612cb56129e4565b5b6000612cc485828601612c8a565b9250506020612cd585828601612bd5565b9150509250929050565b612ce881612bb4565b82525050565b6000602082019050612d036000830184612cdf565b92915050565b600080600060608486031215612d2257612d216129e4565b5b6000612d3086828701612c8a565b9350506020612d4186828701612c8a565b9250506040612d5286828701612bd5565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d9e82612b48565b810181811067ffffffffffffffff82111715612dbd57612dbc612d66565b5b80604052505050565b6000612dd06129da565b9050612ddc8282612d95565b919050565b600067ffffffffffffffff821115612dfc57612dfb612d66565b5b612e0582612b48565b9050602081019050919050565b82818337600083830152505050565b6000612e34612e2f84612de1565b612dc6565b905082815260208101848484011115612e5057612e4f612d61565b5b612e5b848285612e12565b509392505050565b600082601f830112612e7857612e77612d5c565b5b8135612e88848260208601612e21565b91505092915050565b600060208284031215612ea757612ea66129e4565b5b600082013567ffffffffffffffff811115612ec557612ec46129e9565b5b612ed184828501612e63565b91505092915050565b600060208284031215612ef057612eef6129e4565b5b6000612efe84828501612c8a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f3c81612bb4565b82525050565b6000612f4e8383612f33565b60208301905092915050565b6000602082019050919050565b6000612f7282612f07565b612f7c8185612f12565b9350612f8783612f23565b8060005b83811015612fb8578151612f9f8882612f42565b9750612faa83612f5a565b925050600181019050612f8b565b5085935050505092915050565b60006020820190508181036000830152612fdf8184612f67565b905092915050565b60008060408385031215612ffe57612ffd6129e4565b5b600061300c85828601612c8a565b925050602061301d85828601612ac0565b9150509250929050565b600067ffffffffffffffff82111561304257613041612d66565b5b61304b82612b48565b9050602081019050919050565b600061306b61306684613027565b612dc6565b90508281526020810184848401111561308757613086612d61565b5b613092848285612e12565b509392505050565b600082601f8301126130af576130ae612d5c565b5b81356130bf848260208601613058565b91505092915050565b600080600080608085870312156130e2576130e16129e4565b5b60006130f087828801612c8a565b945050602061310187828801612c8a565b935050604061311287828801612bd5565b925050606085013567ffffffffffffffff811115613133576131326129e9565b5b61313f8782880161309a565b91505092959194509250565b60008060408385031215613162576131616129e4565b5b600061317085828601612bd5565b925050602061318185828601612c8a565b9150509250929050565b600080604083850312156131a2576131a16129e4565b5b60006131b085828601612c8a565b92505060206131c185828601612c8a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061321257607f821691505b602082108103613225576132246131cb565b5b50919050565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b6000613261601783612b0d565b915061326c8261322b565b602082019050919050565b6000602082019050818103600083015261329081613254565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132d182612bb4565b91506132dc83612bb4565b92508282019050808211156132f4576132f3613297565b5b92915050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b6000613330601b83612b0d565b915061333b826132fa565b602082019050919050565b6000602082019050818103600083015261335f81613323565b9050919050565b7f6d61782066726565206d696e7420706572205478206578636565646564000000600082015250565b600061339c601d83612b0d565b91506133a782613366565b602082019050919050565b600060208201905081810360008301526133cb8161338f565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b6000613408601c83612b0d565b9150613413826133d2565b602082019050919050565b60006020820190508181036000830152613437816133fb565b9050919050565b7f53656e646572206973206e6f7420616e20454f41000000000000000000000000600082015250565b6000613474601483612b0d565b915061347f8261343e565b602082019050919050565b600060208201905081810360008301526134a381613467565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261350c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134cf565b61351686836134cf565b95508019841693508086168417925050509392505050565b6000819050919050565b600061355361354e61354984612bb4565b61352e565b612bb4565b9050919050565b6000819050919050565b61356d83613538565b6135816135798261355a565b8484546134dc565b825550505050565b600090565b613596613589565b6135a1818484613564565b505050565b5b818110156135c5576135ba60008261358e565b6001810190506135a7565b5050565b601f82111561360a576135db816134aa565b6135e4846134bf565b810160208510156135f3578190505b6136076135ff856134bf565b8301826135a6565b50505b505050565b600082821c905092915050565b600061362d6000198460080261360f565b1980831691505092915050565b6000613646838361361c565b9150826002028217905092915050565b61365f82612b02565b67ffffffffffffffff81111561367857613677612d66565b5b61368282546131fa565b61368d8282856135c9565b600060209050601f8311600181146136c057600084156136ae578287015190505b6136b8858261363a565b865550613720565b601f1984166136ce866134aa565b60005b828110156136f6578489015182556001820191506020850194506020810190506136d1565b86831015613713578489015161370f601f89168261361c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b600061378d601f83612b0d565b915061379882613757565b602082019050919050565b600060208201905081810360008301526137bc81613780565b9050919050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b60006137f9600a83612b0d565b9150613804826137c3565b602082019050919050565b60006020820190508181036000830152613828816137ec565b9050919050565b600061383a82612bb4565b915061384583612bb4565b925082820261385381612bb4565b9150828204841483151761386a57613869613297565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006138a7601283612b0d565b91506138b282613871565b602082019050919050565b600060208201905081810360008301526138d68161389a565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613913601683612b0d565b915061391e826138dd565b602082019050919050565b6000602082019050818103600083015261394281613906565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006139a5603083612b0d565b91506139b082613949565b604082019050919050565b600060208201905081810360008301526139d481613998565b9050919050565b600081905092915050565b60006139f182612b02565b6139fb81856139db565b9350613a0b818560208601612b1e565b80840191505092915050565b60008154613a24816131fa565b613a2e81866139db565b94506001821660008114613a495760018114613a5e57613a91565b60ff1983168652811515820286019350613a91565b613a67856134aa565b60005b83811015613a8957815481890152600182019150602081019050613a6a565b838801955050505b50505092915050565b6000613aa682866139e6565b9150613ab282856139e6565b9150613abe8284613a17565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b27602683612b0d565b9150613b3282613acb565b604082019050919050565b60006020820190508181036000830152613b5681613b1a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b93602083612b0d565b9150613b9e82613b5d565b602082019050919050565b60006020820190508181036000830152613bc281613b86565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613bff601f83612b0d565b9150613c0a82613bc9565b602082019050919050565b60006020820190508181036000830152613c2e81613bf2565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c5c82613c35565b613c668185613c40565b9350613c76818560208601612b1e565b613c7f81612b48565b840191505092915050565b6000608082019050613c9f6000830187612c49565b613cac6020830186612c49565b613cb96040830185612cdf565b8181036060830152613ccb8184613c51565b905095945050505050565b600081519050613ce581612a1a565b92915050565b600060208284031215613d0157613d006129e4565b5b6000613d0f84828501613cd6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212206ea6b6d354517cf0dadfaddbf4ef10e3917ad7ea1a86f4766d6ce4e5dcf40c0064736f6c63430008120033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d577079786e39554153766b7742436f79354a7652766974384862764377754a646f366e7975324b6f7a6869482f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d577079786e39554153766b7742436f79354a7652766974384862764377754a646f366e7975324b6f7a6869482f00000000000000000000
Deployed Bytecode
0x60806040526004361061025c5760003560e01c80636c0360eb11610144578063bd7a1998116100b6578063dc33e6811161007a578063dc33e68114610870578063e1cf8baa146108ad578063e268e4d3146108d6578063e985e9c5146108ff578063f2c4ce1e1461093c578063f2fde38b146109655761025c565b8063bd7a199814610789578063c6682862146107b4578063c87b56dd146107df578063d5abeb011461081c578063da3ef23f146108475761025c565b8063940cd05b11610108578063940cd05b146106ab57806395d89b41146106d4578063a0712d68146106ff578063a22cb4651461071b578063b88d4fde14610744578063bc63f02e146107605761025c565b80636c0360eb146105c457806370a08231146105ef578063715018a61461062c5780638462151c146106435780638da5cb5b146106805761025c565b806323b872dd116101dd57806350839bef116101a157806350839bef146104b257806351830227146104dd57806355f804b3146105085780635c975abb14610531578063624208ae1461055c5780636352211e146105875761025c565b806323b872dd1461041e578063351de26e1461043a5780633ccfd60b1461046357806342842e0e1461046d57806344a0d68a146104895761025c565b8063095ea7b311610224578063095ea7b31461035a5780630fbe4fe21461037657806313faede61461039f578063149835a0146103ca57806318160ddd146103f35761025c565b806301ffc9a71461026157806302329a291461029e57806306fdde03146102c7578063081812fc146102f2578063081c8c441461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612a46565b61098e565b6040516102959190612a8e565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190612ad5565b610a20565b005b3480156102d357600080fd5b506102dc610a45565b6040516102e99190612b92565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612bea565b610ad7565b6040516103269190612c58565b60405180910390f35b34801561033b57600080fd5b50610344610b56565b6040516103519190612b92565b60405180910390f35b610374600480360381019061036f9190612c9f565b610be4565b005b34801561038257600080fd5b5061039d60048036038101906103989190612bea565b610d28565b005b3480156103ab57600080fd5b506103b4610ee6565b6040516103c19190612cee565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612bea565b610eec565b005b3480156103ff57600080fd5b50610408610efe565b6040516104159190612cee565b60405180910390f35b61043860048036038101906104339190612d09565b610f15565b005b34801561044657600080fd5b50610461600480360381019061045c9190612bea565b611237565b005b61046b611249565b005b61048760048036038101906104829190612d09565b6112b7565b005b34801561049557600080fd5b506104b060048036038101906104ab9190612bea565b6112d7565b005b3480156104be57600080fd5b506104c76112e9565b6040516104d49190612cee565b60405180910390f35b3480156104e957600080fd5b506104f26112ef565b6040516104ff9190612a8e565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190612e91565b611302565b005b34801561053d57600080fd5b5061054661131d565b6040516105539190612a8e565b60405180910390f35b34801561056857600080fd5b50610571611330565b60405161057e9190612cee565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612bea565b611336565b6040516105bb9190612c58565b60405180910390f35b3480156105d057600080fd5b506105d9611348565b6040516105e69190612b92565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190612eda565b6113d6565b6040516106239190612cee565b60405180910390f35b34801561063857600080fd5b5061064161148e565b005b34801561064f57600080fd5b5061066a60048036038101906106659190612eda565b6114a2565b6040516106779190612fc5565b60405180910390f35b34801561068c57600080fd5b506106956115e5565b6040516106a29190612c58565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190612ad5565b61160f565b005b3480156106e057600080fd5b506106e9611634565b6040516106f69190612b92565b60405180910390f35b61071960048036038101906107149190612bea565b6116c6565b005b34801561072757600080fd5b50610742600480360381019061073d9190612fe7565b611885565b005b61075e600480360381019061075991906130c8565b611893565b005b34801561076c57600080fd5b506107876004803603810190610782919061314b565b611906565b005b34801561079557600080fd5b5061079e611983565b6040516107ab9190612cee565b60405180910390f35b3480156107c057600080fd5b506107c9611989565b6040516107d69190612b92565b60405180910390f35b3480156107eb57600080fd5b5061080660048036038101906108019190612bea565b611a17565b6040516108139190612b92565b60405180910390f35b34801561082857600080fd5b50610831611b6f565b60405161083e9190612cee565b60405180910390f35b34801561085357600080fd5b5061086e60048036038101906108699190612e91565b611b75565b005b34801561087c57600080fd5b5061089760048036038101906108929190612eda565b611b90565b6040516108a49190612cee565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf9190612bea565b611ba2565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190612bea565b611bb4565b005b34801561090b57600080fd5b506109266004803603810190610921919061318b565b611bc6565b6040516109339190612a8e565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190612e91565b611c5a565b005b34801561097157600080fd5b5061098c60048036038101906109879190612eda565b611c75565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a195750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a28611cf8565b80601260006101000a81548160ff02191690831515021790555050565b606060028054610a54906131fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610a80906131fa565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b5050505050905090565b6000610ae282611d76565b610b18576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610b63906131fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8f906131fa565b8015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b505050505081565b6000610bef82611336565b90508073ffffffffffffffffffffffffffffffffffffffff16610c10611dd5565b73ffffffffffffffffffffffffffffffffffffffff1614610c7357610c3c81610c37611dd5565b611bc6565b610c72576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d30611ddd565b601260009054906101000a900460ff1615610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613277565b60405180910390fd5b60115481610d94610d8f611dd5565b611e2c565b610d9e91906132c6565b1115610ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd690613346565b60405180910390fd5b601154811115610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b906133b2565b60405180910390fd5b600f5481610e30610efe565b610e3a91906132c6565b1115610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e729061341e565b60405180910390fd5b610e8b610e86611e83565b611e8b565b610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec19061348a565b60405180910390fd5b610edb610ed5611dd5565b82611e9e565b610ee3611ebc565b50565b600d5481565b610ef4611cf8565b80600e8190555050565b6000610f08611ec6565b6001546000540303905090565b6000610f2082611ecf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f87576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f9384611f9b565b91509150610fa98187610fa4611dd5565b611fc2565b610ff557610fbe86610fb9611dd5565b611bc6565b610ff4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361105b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110688686866001612006565b801561107357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506111418561111d88888761200c565b7c020000000000000000000000000000000000000000000000000000000017612034565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111c757600060018501905060006004600083815260200190815260200160002054036111c55760005481146111c4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461122f868686600161205f565b505050505050565b61123f611cf8565b8060118190555050565b611251611cf8565b611259611ddd565b6000479050611266611dd5565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112ab573d6000803e3d6000fd5b50506112b5611ebc565b565b6112d283838360405180602001604052806000815250611893565b505050565b6112df611cf8565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b61130a611cf8565b80600a90816113199190613656565b5050565b601260009054906101000a900460ff1681565b60115481565b600061134182611ecf565b9050919050565b600a8054611355906131fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611381906131fa565b80156113ce5780601f106113a3576101008083540402835291602001916113ce565b820191906000526020600020905b8154815290600101906020018083116113b157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361143d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611496611cf8565b6114a06000612065565b565b606060008060006114b2856113d6565b905060008167ffffffffffffffff8111156114d0576114cf612d66565b5b6040519080825280602002602001820160405280156114fe5781602001602082028036833780820191505090505b50905061150961298b565b6000611513611ec6565b90505b8386146115d7576115268161212b565b915081604001516115cc57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461157157816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036115cb57808387806001019850815181106115be576115bd613728565b5b6020026020010181815250505b5b806001019050611516565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611617611cf8565b80601260016101000a81548160ff02191690831515021790555050565b606060038054611643906131fa565b80601f016020809104026020016040519081016040528092919081815260200182805461166f906131fa565b80156116bc5780601f10611691576101008083540402835291602001916116bc565b820191906000526020600020905b81548152906001019060200180831161169f57829003601f168201915b5050505050905090565b6116ce611ddd565b601260009054906101000a900460ff161561171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590613277565b60405180910390fd5b601054811115611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a906137a3565b60405180910390fd5b600e548161176f610efe565b61177991906132c6565b11156117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b19061380f565b60405180910390fd5b601054816117ce6117c9611dd5565b611e2c565b6117d891906132c6565b1115611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090613346565b60405180910390fd5b80600d54611827919061382f565b341015611869576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611860906138bd565b60405180910390fd5b61187a611874611dd5565b82611e9e565b611882611ebc565b50565b61188f8282612156565b5050565b61189e848484610f15565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611900576118c984848484612261565b6118ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61190e611cf8565b611916611ddd565b600e5482611922610efe565b61192c91906132c6565b111561196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613929565b60405180910390fd5b6119778183611e9e565b61197f611ebc565b5050565b60105481565b600b8054611996906131fa565b80601f01602080910402602001604051908101604052809291908181526020018280546119c2906131fa565b8015611a0f5780601f106119e457610100808354040283529160200191611a0f565b820191906000526020600020905b8154815290600101906020018083116119f257829003601f168201915b505050505081565b6060611a2282611d76565b611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a58906139bb565b60405180910390fd5b60001515601260019054906101000a900460ff16151503611b0e57600c8054611a89906131fa565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab5906131fa565b8015611b025780601f10611ad757610100808354040283529160200191611b02565b820191906000526020600020905b815481529060010190602001808311611ae557829003601f168201915b50505050509050611b6a565b6000611b186123b1565b90506000815111611b385760405180602001604052806000815250611b66565b80611b4284612443565b600b604051602001611b5693929190613a9a565b6040516020818303038152906040525b9150505b919050565b600e5481565b611b7d611cf8565b80600b9081611b8c9190613656565b5050565b6000611b9b82611e2c565b9050919050565b611baa611cf8565b80600f8190555050565b611bbc611cf8565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c62611cf8565b80600c9081611c719190613656565b5050565b611c7d611cf8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce390613b3d565b60405180910390fd5b611cf581612065565b50565b611d00611e83565b73ffffffffffffffffffffffffffffffffffffffff16611d1e6115e5565b73ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90613ba9565b60405180910390fd5b565b600081611d81611ec6565b11158015611d90575060005482105b8015611dce575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600260095403611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613c15565b60405180910390fd5b6002600981905550565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b600080823b905060008114915050919050565b611eb8828260405180602001604052806000815250612511565b5050565b6001600981905550565b60006001905090565b60008082905080611ede611ec6565b11611f6457600054811015611f635760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611f61575b60008103611f57576004600083600190039350838152602001908152602001600020549050611f2d565b8092505050611f96565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120238686846125ae565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61213361298b565b61214f60046000848152602001908152602001600020546125b7565b9050919050565b8060076000612163611dd5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612210611dd5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122559190612a8e565b60405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612287611dd5565b8786866040518563ffffffff1660e01b81526004016122a99493929190613c8a565b6020604051808303816000875af19250505080156122e557506040513d601f19601f820116820180604052508101906122e29190613ceb565b60015b61235e573d8060008114612315576040519150601f19603f3d011682016040523d82523d6000602084013e61231a565b606091505b506000815103612356576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546123c0906131fa565b80601f01602080910402602001604051908101604052809291908181526020018280546123ec906131fa565b80156124395780601f1061240e57610100808354040283529160200191612439565b820191906000526020600020905b81548152906001019060200180831161241c57829003601f168201915b5050505050905090565b6060600060016124528461266d565b01905060008167ffffffffffffffff81111561247157612470612d66565b5b6040519080825280601f01601f1916602001820160405280156124a35781602001600182028036833780820191505090505b509050600082602001820190505b600115612506578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816124fa576124f9613d18565b5b049450600085036124b1575b819350505050919050565b61251b83836127c0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125a957600080549050600083820390505b61255b6000868380600101945086612261565b612591576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125485781600054146125a657600080fd5b50505b505050565b60009392505050565b6125bf61298b565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106126cb577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816126c1576126c0613d18565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612708576d04ee2d6d415b85acef810000000083816126fe576126fd613d18565b5b0492506020810190505b662386f26fc10000831061273757662386f26fc10000838161272d5761272c613d18565b5b0492506010810190505b6305f5e1008310612760576305f5e100838161275657612755613d18565b5b0492506008810190505b612710831061278557612710838161277b5761277a613d18565b5b0492506004810190505b606483106127a8576064838161279e5761279d613d18565b5b0492506002810190505b600a83106127b7576001810190505b80915050919050565b60008054905060008203612800576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61280d6000848385612006565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061288483612875600086600061200c565b61287e8561297b565b17612034565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461292557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506128ea565b5060008203612960576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612976600084838561205f565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a23816129ee565b8114612a2e57600080fd5b50565b600081359050612a4081612a1a565b92915050565b600060208284031215612a5c57612a5b6129e4565b5b6000612a6a84828501612a31565b91505092915050565b60008115159050919050565b612a8881612a73565b82525050565b6000602082019050612aa36000830184612a7f565b92915050565b612ab281612a73565b8114612abd57600080fd5b50565b600081359050612acf81612aa9565b92915050565b600060208284031215612aeb57612aea6129e4565b5b6000612af984828501612ac0565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b3c578082015181840152602081019050612b21565b60008484015250505050565b6000601f19601f8301169050919050565b6000612b6482612b02565b612b6e8185612b0d565b9350612b7e818560208601612b1e565b612b8781612b48565b840191505092915050565b60006020820190508181036000830152612bac8184612b59565b905092915050565b6000819050919050565b612bc781612bb4565b8114612bd257600080fd5b50565b600081359050612be481612bbe565b92915050565b600060208284031215612c0057612bff6129e4565b5b6000612c0e84828501612bd5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c4282612c17565b9050919050565b612c5281612c37565b82525050565b6000602082019050612c6d6000830184612c49565b92915050565b612c7c81612c37565b8114612c8757600080fd5b50565b600081359050612c9981612c73565b92915050565b60008060408385031215612cb657612cb56129e4565b5b6000612cc485828601612c8a565b9250506020612cd585828601612bd5565b9150509250929050565b612ce881612bb4565b82525050565b6000602082019050612d036000830184612cdf565b92915050565b600080600060608486031215612d2257612d216129e4565b5b6000612d3086828701612c8a565b9350506020612d4186828701612c8a565b9250506040612d5286828701612bd5565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d9e82612b48565b810181811067ffffffffffffffff82111715612dbd57612dbc612d66565b5b80604052505050565b6000612dd06129da565b9050612ddc8282612d95565b919050565b600067ffffffffffffffff821115612dfc57612dfb612d66565b5b612e0582612b48565b9050602081019050919050565b82818337600083830152505050565b6000612e34612e2f84612de1565b612dc6565b905082815260208101848484011115612e5057612e4f612d61565b5b612e5b848285612e12565b509392505050565b600082601f830112612e7857612e77612d5c565b5b8135612e88848260208601612e21565b91505092915050565b600060208284031215612ea757612ea66129e4565b5b600082013567ffffffffffffffff811115612ec557612ec46129e9565b5b612ed184828501612e63565b91505092915050565b600060208284031215612ef057612eef6129e4565b5b6000612efe84828501612c8a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f3c81612bb4565b82525050565b6000612f4e8383612f33565b60208301905092915050565b6000602082019050919050565b6000612f7282612f07565b612f7c8185612f12565b9350612f8783612f23565b8060005b83811015612fb8578151612f9f8882612f42565b9750612faa83612f5a565b925050600181019050612f8b565b5085935050505092915050565b60006020820190508181036000830152612fdf8184612f67565b905092915050565b60008060408385031215612ffe57612ffd6129e4565b5b600061300c85828601612c8a565b925050602061301d85828601612ac0565b9150509250929050565b600067ffffffffffffffff82111561304257613041612d66565b5b61304b82612b48565b9050602081019050919050565b600061306b61306684613027565b612dc6565b90508281526020810184848401111561308757613086612d61565b5b613092848285612e12565b509392505050565b600082601f8301126130af576130ae612d5c565b5b81356130bf848260208601613058565b91505092915050565b600080600080608085870312156130e2576130e16129e4565b5b60006130f087828801612c8a565b945050602061310187828801612c8a565b935050604061311287828801612bd5565b925050606085013567ffffffffffffffff811115613133576131326129e9565b5b61313f8782880161309a565b91505092959194509250565b60008060408385031215613162576131616129e4565b5b600061317085828601612bd5565b925050602061318185828601612c8a565b9150509250929050565b600080604083850312156131a2576131a16129e4565b5b60006131b085828601612c8a565b92505060206131c185828601612c8a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061321257607f821691505b602082108103613225576132246131cb565b5b50919050565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b6000613261601783612b0d565b915061326c8261322b565b602082019050919050565b6000602082019050818103600083015261329081613254565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132d182612bb4565b91506132dc83612bb4565b92508282019050808211156132f4576132f3613297565b5b92915050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b6000613330601b83612b0d565b915061333b826132fa565b602082019050919050565b6000602082019050818103600083015261335f81613323565b9050919050565b7f6d61782066726565206d696e7420706572205478206578636565646564000000600082015250565b600061339c601d83612b0d565b91506133a782613366565b602082019050919050565b600060208201905081810360008301526133cb8161338f565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b6000613408601c83612b0d565b9150613413826133d2565b602082019050919050565b60006020820190508181036000830152613437816133fb565b9050919050565b7f53656e646572206973206e6f7420616e20454f41000000000000000000000000600082015250565b6000613474601483612b0d565b915061347f8261343e565b602082019050919050565b600060208201905081810360008301526134a381613467565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261350c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826134cf565b61351686836134cf565b95508019841693508086168417925050509392505050565b6000819050919050565b600061355361354e61354984612bb4565b61352e565b612bb4565b9050919050565b6000819050919050565b61356d83613538565b6135816135798261355a565b8484546134dc565b825550505050565b600090565b613596613589565b6135a1818484613564565b505050565b5b818110156135c5576135ba60008261358e565b6001810190506135a7565b5050565b601f82111561360a576135db816134aa565b6135e4846134bf565b810160208510156135f3578190505b6136076135ff856134bf565b8301826135a6565b50505b505050565b600082821c905092915050565b600061362d6000198460080261360f565b1980831691505092915050565b6000613646838361361c565b9150826002028217905092915050565b61365f82612b02565b67ffffffffffffffff81111561367857613677612d66565b5b61368282546131fa565b61368d8282856135c9565b600060209050601f8311600181146136c057600084156136ae578287015190505b6136b8858261363a565b865550613720565b601f1984166136ce866134aa565b60005b828110156136f6578489015182556001820191506020850194506020810190506136d1565b86831015613713578489015161370f601f89168261361c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b600061378d601f83612b0d565b915061379882613757565b602082019050919050565b600060208201905081810360008301526137bc81613780565b9050919050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b60006137f9600a83612b0d565b9150613804826137c3565b602082019050919050565b60006020820190508181036000830152613828816137ec565b9050919050565b600061383a82612bb4565b915061384583612bb4565b925082820261385381612bb4565b9150828204841483151761386a57613869613297565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006138a7601283612b0d565b91506138b282613871565b602082019050919050565b600060208201905081810360008301526138d68161389a565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613913601683612b0d565b915061391e826138dd565b602082019050919050565b6000602082019050818103600083015261394281613906565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b60006139a5603083612b0d565b91506139b082613949565b604082019050919050565b600060208201905081810360008301526139d481613998565b9050919050565b600081905092915050565b60006139f182612b02565b6139fb81856139db565b9350613a0b818560208601612b1e565b80840191505092915050565b60008154613a24816131fa565b613a2e81866139db565b94506001821660008114613a495760018114613a5e57613a91565b60ff1983168652811515820286019350613a91565b613a67856134aa565b60005b83811015613a8957815481890152600182019150602081019050613a6a565b838801955050505b50505092915050565b6000613aa682866139e6565b9150613ab282856139e6565b9150613abe8284613a17565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b27602683612b0d565b9150613b3282613acb565b604082019050919050565b60006020820190508181036000830152613b5681613b1a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b93602083612b0d565b9150613b9e82613b5d565b602082019050919050565b60006020820190508181036000830152613bc281613b86565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613bff601f83612b0d565b9150613c0a82613bc9565b602082019050919050565b60006020820190508181036000830152613c2e81613bf2565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c5c82613c35565b613c668185613c40565b9350613c76818560208601612b1e565b613c7f81612b48565b840191505092915050565b6000608082019050613c9f6000830187612c49565b613cac6020830186612c49565b613cb96040830185612cdf565b8181036060830152613ccb8184613c51565b905095945050505050565b600081519050613ce581612a1a565b92915050565b600060208284031215613d0157613d006129e4565b5b6000613d0f84828501613cd6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212206ea6b6d354517cf0dadfaddbf4ef10e3917ad7ea1a86f4766d6ce4e5dcf40c0064736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d577079786e39554153766b7742436f79354a7652766974384862764377754a646f366e7975324b6f7a6869482f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d577079786e39554153766b7742436f79354a7652766974384862764377754a646f366e7975324b6f7a6869482f00000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmWpyxn9UASvkwBCoy5JvRvit8HbvCwuJdo6nyu2KozhiH/
Arg [1] : _notRevealedUri (string): ipfs://QmWpyxn9UASvkwBCoy5JvRvit8HbvCwuJdo6nyu2KozhiH/
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d577079786e39554153766b7742436f79354a7652766974
Arg [4] : 384862764377754a646f366e7975324b6f7a6869482f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d577079786e39554153766b7742436f79354a7652766974
Arg [7] : 384862764377754a646f366e7975324b6f7a6869482f00000000000000000000
Deployed Bytecode Sourcemap
75660:5842:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42552:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81055:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43454:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49945:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75818:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49378:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77250:489;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75851:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80283:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39205:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53584:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79979:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81332:167;;;:::i;:::-;;56505:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80148:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75926:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76071:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80546:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76040:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76000:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44847:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75755:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40389:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23331:103;;;;;;;;;;;;;:::i;:::-;;78804:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22690:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79707:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43630:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76585:471;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81143:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57296:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77794:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75963:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75781;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78069:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75889:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80699:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78632:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80416:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79836:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50894:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80855:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23589:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42552:639;42637:4;42976:10;42961:25;;:11;:25;;;;:102;;;;43053:10;43038:25;;:11;:25;;;;42961:102;:179;;;;43130:10;43115:25;;:11;:25;;;;42961:179;42941:199;;42552:639;;;:::o;81055:73::-;22576:13;:11;:13::i;:::-;81116:6:::1;81107;;:15;;;;;;;;;;;;;;;;;;81055:73:::0;:::o;43454:100::-;43508:13;43541:5;43534:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43454:100;:::o;49945:218::-;50021:7;50046:16;50054:7;50046;:16::i;:::-;50041:64;;50071:34;;;;;;;;;;;;;;50041:64;50125:15;:24;50141:7;50125:24;;;;;;;;;;;:30;;;;;;;;;;;;50118:37;;49945:218;;;:::o;75818:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49378:408::-;49467:13;49483:16;49491:7;49483;:16::i;:::-;49467:32;;49539:5;49516:28;;:19;:17;:19::i;:::-;:28;;;49512:175;;49564:44;49581:5;49588:19;:17;:19::i;:::-;49564:16;:44::i;:::-;49559:128;;49636:35;;;;;;;;;;;;;;49559:128;49512:175;49732:2;49699:15;:24;49715:7;49699:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;49770:7;49766:2;49750:28;;49759:5;49750:28;;;;;;;;;;;;49456:330;49378:408;;:::o;77250:489::-;2345:21;:19;:21::i;:::-;77320:6:::1;;;;;;;;;;;77319:7;77311:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;77416:16;;77406:6;77369:34;77383:19;:17;:19::i;:::-;77369:13;:34::i;:::-;:43;;;;:::i;:::-;:63;;77361:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;77489:16;;77479:6;:26;;77471:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;77580:10;;77570:6;77554:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;77546:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;77638:19;77644:12;:10;:12::i;:::-;77638:5;:19::i;:::-;77630:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;77689:38;77699:19;:17;:19::i;:::-;77720:6;77689:9;:38::i;:::-;2389:20:::0;:18;:20::i;:::-;77250:489;:::o;75851:33::-;;;;:::o;80283:94::-;22576:13;:11;:13::i;:::-;80361:10:::1;80349:9;:22;;;;80283:94:::0;:::o;39205:323::-;39266:7;39494:15;:13;:15::i;:::-;39479:12;;39463:13;;:28;:46;39456:53;;39205:323;:::o;53584:2825::-;53726:27;53756;53775:7;53756:18;:27::i;:::-;53726:57;;53841:4;53800:45;;53816:19;53800:45;;;53796:86;;53854:28;;;;;;;;;;;;;;53796:86;53896:27;53925:23;53952:35;53979:7;53952:26;:35::i;:::-;53895:92;;;;54087:68;54112:15;54129:4;54135:19;:17;:19::i;:::-;54087:24;:68::i;:::-;54082:180;;54175:43;54192:4;54198:19;:17;:19::i;:::-;54175:16;:43::i;:::-;54170:92;;54227:35;;;;;;;;;;;;;;54170:92;54082:180;54293:1;54279:16;;:2;:16;;;54275:52;;54304:23;;;;;;;;;;;;;;54275:52;54340:43;54362:4;54368:2;54372:7;54381:1;54340:21;:43::i;:::-;54476:15;54473:160;;;54616:1;54595:19;54588:30;54473:160;55013:18;:24;55032:4;55013:24;;;;;;;;;;;;;;;;55011:26;;;;;;;;;;;;55082:18;:22;55101:2;55082:22;;;;;;;;;;;;;;;;55080:24;;;;;;;;;;;55404:146;55441:2;55490:45;55505:4;55511:2;55515:19;55490:14;:45::i;:::-;35604:8;55462:73;55404:18;:146::i;:::-;55375:17;:26;55393:7;55375:26;;;;;;;;;;;:175;;;;55721:1;35604:8;55670:19;:47;:52;55666:627;;55743:19;55775:1;55765:7;:11;55743:33;;55932:1;55898:17;:30;55916:11;55898:30;;;;;;;;;;;;:35;55894:384;;56036:13;;56021:11;:28;56017:242;;56216:19;56183:17;:30;56201:11;56183:30;;;;;;;;;;;:52;;;;56017:242;55894:384;55724:569;55666:627;56340:7;56336:2;56321:27;;56330:4;56321:27;;;;;;;;;;;;56359:42;56380:4;56386:2;56390:7;56399:1;56359:20;:42::i;:::-;53715:2694;;;53584:2825;;;:::o;79979:100::-;22576:13;:11;:13::i;:::-;80067:6:::1;80048:16;:25;;;;79979:100:::0;:::o;81332:167::-;22576:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;81399:15:::2;81417:21;81399:39;;81455:19;:17;:19::i;:::-;81447:37;;:46;81485:7;81447:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;81390:109;2389:20:::1;:18;:20::i;:::-;81332:167::o:0;56505:193::-;56651:39;56668:4;56674:2;56678:7;56651:39;;;;;;;;;;;;:16;:39::i;:::-;56505:193;;;:::o;80148:80::-;22576:13;:11;:13::i;:::-;80214:8:::1;80207:4;:15;;;;80148:80:::0;:::o;75926:32::-;;;;:::o;76071:27::-;;;;;;;;;;;;;:::o;80546:98::-;22576:13;:11;:13::i;:::-;80627:11:::1;80617:7;:21;;;;;;:::i;:::-;;80546:98:::0;:::o;76040:26::-;;;;;;;;;;;;;:::o;76000:35::-;;;;:::o;44847:152::-;44919:7;44962:27;44981:7;44962:18;:27::i;:::-;44939:52;;44847:152;;;:::o;75755:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40389:233::-;40461:7;40502:1;40485:19;;:5;:19;;;40481:60;;40513:28;;;;;;;;;;;;;;40481:60;34548:13;40559:18;:25;40578:5;40559:25;;;;;;;;;;;;;;;;:55;40552:62;;40389:233;;;:::o;23331:103::-;22576:13;:11;:13::i;:::-;23396:30:::1;23423:1;23396:18;:30::i;:::-;23331:103::o:0;78804:881::-;78863:16;78917:19;78951:25;78991:22;79016:16;79026:5;79016:9;:16::i;:::-;78991:41;;79047:25;79089:14;79075:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79047:57;;79119:31;;:::i;:::-;79170:9;79182:15;:13;:15::i;:::-;79170:27;;79165:472;79214:14;79199:11;:29;79165:472;;79266:15;79279:1;79266:12;:15::i;:::-;79254:27;;79304:9;:16;;;79345:8;79300:73;79421:1;79395:28;;:9;:14;;;:28;;;79391:111;;79468:9;:14;;;79448:34;;79391:111;79545:5;79524:26;;:17;:26;;;79520:102;;79601:1;79575:8;79584:13;;;;;;79575:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;79520:102;79165:472;79230:3;;;;;79165:472;;;;79658:8;79651:15;;;;;;;78804:881;;;:::o;22690:87::-;22736:7;22763:6;;;;;;;;;;;22756:13;;22690:87;:::o;79707:78::-;22576:13;:11;:13::i;:::-;79773:6:::1;79762:8;;:17;;;;;;;;;;;;;;;;;;79707:78:::0;:::o;43630:104::-;43686:13;43719:7;43712:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43630:104;:::o;76585:471::-;2345:21;:19;:21::i;:::-;76659:6:::1;;;;;;;;;;;76658:7;76650:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;76718:12;;76708:6;:22;;76700:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;76807:9;;76797:6;76781:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;76773:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;76893:12;;76883:6;76846:34;76860:19;:17;:19::i;:::-;76846:13;:34::i;:::-;:43;;;;:::i;:::-;:59;;76838:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;76972:6;76965:4;;:13;;;;:::i;:::-;76952:9;:26;;76944:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;77012:38;77022:19;:17;:19::i;:::-;77043:6;77012:9;:38::i;:::-;2389:20:::0;:18;:20::i;:::-;76585:471;:::o;81143:138::-;81230:43;81254:8;81264;81230:23;:43::i;:::-;81143:138;;:::o;57296:407::-;57471:31;57484:4;57490:2;57494:7;57471:12;:31::i;:::-;57535:1;57517:2;:14;;;:19;57513:183;;57556:56;57587:4;57593:2;57597:7;57606:5;57556:30;:56::i;:::-;57551:145;;57640:40;;;;;;;;;;;;;;57551:145;57513:183;57296:407;;;;:::o;77794:223::-;22576:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;77929:9:::2;;77914:11;77898:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;77890:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;77976:35;77986:11;77999;77976:9;:35::i;:::-;2389:20:::1;:18;:20::i;:::-;77794:223:::0;;:::o;75963:32::-;;;;:::o;75781:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;78069:498::-;78167:13;78208:16;78216:7;78208;:16::i;:::-;78192:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;78318:5;78306:17;;:8;;;;;;;;;;;:17;;;78303:62;;78343:14;78336:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78303:62;78373:28;78404:10;:8;:10::i;:::-;78373:41;;78459:1;78434:14;78428:28;:32;:133;;;;;;;;;;;;;;;;;78496:14;78512:18;:7;:16;:18::i;:::-;78532:13;78479:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78428:133;78421:140;;;78069:498;;;;:::o;75889:32::-;;;;:::o;80699:122::-;22576:13;:11;:13::i;:::-;80798:17:::1;80782:13;:33;;;;;;:::i;:::-;;80699:122:::0;:::o;78632:107::-;78690:7;78713:20;78727:5;78713:13;:20::i;:::-;78706:27;;78632:107;;;:::o;80416:96::-;22576:13;:11;:13::i;:::-;80496:10:::1;80483;:23;;;;80416:96:::0;:::o;79836:92::-;22576:13;:11;:13::i;:::-;79916:6:::1;79901:12;:21;;;;79836:92:::0;:::o;50894:164::-;50991:4;51015:18;:25;51034:5;51015:25;;;;;;;;;;;;;;;:35;51041:8;51015:35;;;;;;;;;;;;;;;;;;;;;;;;;51008:42;;50894:164;;;;:::o;80855:120::-;22576:13;:11;:13::i;:::-;80954:15:::1;80937:14;:32;;;;;;:::i;:::-;;80855:120:::0;:::o;23589:201::-;22576:13;:11;:13::i;:::-;23698:1:::1;23678:22;;:8;:22;;::::0;23670:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23754:28;23773:8;23754:18;:28::i;:::-;23589:201:::0;:::o;22855:132::-;22930:12;:10;:12::i;:::-;22919:23;;:7;:5;:7::i;:::-;:23;;;22911:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22855:132::o;51316:282::-;51381:4;51437:7;51418:15;:13;:15::i;:::-;:26;;:66;;;;;51471:13;;51461:7;:23;51418:66;:153;;;;;51570:1;35324:8;51522:17;:26;51540:7;51522:26;;;;;;;;;;;;:44;:49;51418:153;51398:173;;51316:282;;;:::o;73624:105::-;73684:7;73711:10;73704:17;;73624:105;:::o;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;40704:178::-;40765:7;34548:13;34686:2;40793:18;:25;40812:5;40793:25;;;;;;;;;;;;;;;;:50;;40792:82;40785:89;;40704:178;;;:::o;21241:98::-;21294:7;21321:10;21314:17;;21241:98;:::o;77066:154::-;77121:4;77134:12;77184:7;77172:20;77164:28;;77215:1;77207:4;:9;77200:16;;;77066:154;;;:::o;67456:112::-;67533:27;67543:2;67547:8;67533:27;;;;;;;;;;;;:9;:27::i;:::-;67456:112;;:::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;76432:101::-;76497:7;76524:1;76517:8;;76432:101;:::o;46002:1275::-;46069:7;46089:12;46104:7;46089:22;;46172:4;46153:15;:13;:15::i;:::-;:23;46149:1061;;46206:13;;46199:4;:20;46195:1015;;;46244:14;46261:17;:23;46279:4;46261:23;;;;;;;;;;;;46244:40;;46378:1;35324:8;46350:6;:24;:29;46346:845;;47015:113;47032:1;47022:6;:11;47015:113;;47075:17;:25;47093:6;;;;;;;47075:25;;;;;;;;;;;;47066:34;;47015:113;;;47161:6;47154:13;;;;;;46346:845;46221:989;46195:1015;46149:1061;47238:31;;;;;;;;;;;;;;46002:1275;;;;:::o;52479:485::-;52581:27;52610:23;52651:38;52692:15;:24;52708:7;52692:24;;;;;;;;;;;52651:65;;52869:18;52846:41;;52926:19;52920:26;52901:45;;52831:126;52479:485;;;:::o;51707:659::-;51856:11;52021:16;52014:5;52010:28;52001:37;;52181:16;52170:9;52166:32;52153:45;;52331:15;52320:9;52317:30;52309:5;52298:9;52295:20;52292:56;52282:66;;51707:659;;;;;:::o;58365:159::-;;;;;:::o;72933:311::-;73068:7;73088:16;35728:3;73114:19;:41;;73088:68;;35728:3;73182:31;73193:4;73199:2;73203:9;73182:10;:31::i;:::-;73174:40;;:62;;73167:69;;;72933:311;;;;;:::o;47825:450::-;47905:14;48073:16;48066:5;48062:28;48053:37;;48250:5;48236:11;48211:23;48207:41;48204:52;48197:5;48194:63;48184:73;;47825:450;;;;:::o;59189:158::-;;;;;:::o;23950:191::-;24024:16;24043:6;;;;;;;;;;;24024:25;;24069:8;24060:6;;:17;;;;;;;;;;;;;;;;;;24124:8;24093:40;;24114:8;24093:40;;;;;;;;;;;;24013:128;23950:191;:::o;45450:161::-;45518:21;;:::i;:::-;45559:44;45578:17;:24;45596:5;45578:24;;;;;;;;;;;;45559:18;:44::i;:::-;45552:51;;45450:161;;;:::o;50503:234::-;50650:8;50598:18;:39;50617:19;:17;:19::i;:::-;50598:39;;;;;;;;;;;;;;;:49;50638:8;50598:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;50710:8;50674:55;;50689:19;:17;:19::i;:::-;50674:55;;;50720:8;50674:55;;;;;;:::i;:::-;;;;;;;;50503:234;;:::o;59787:716::-;59950:4;59996:2;59971:45;;;60017:19;:17;:19::i;:::-;60038:4;60044:7;60053:5;59971:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;59967:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60271:1;60254:6;:13;:18;60250:235;;60300:40;;;;;;;;;;;;;;60250:235;60443:6;60437:13;60428:6;60424:2;60420:15;60413:38;59967:529;60140:54;;;60130:64;;;:6;:64;;;;60123:71;;;59787:716;;;;;;:::o;76322:102::-;76382:13;76411:7;76404:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76322:102;:::o;18160:716::-;18216:13;18267:14;18304:1;18284:17;18295:5;18284:10;:17::i;:::-;:21;18267:38;;18320:20;18354:6;18343:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18320:41;;18376:11;18505:6;18501:2;18497:15;18489:6;18485:28;18478:35;;18542:288;18549:4;18542:288;;;18574:5;;;;;;;;18716:8;18711:2;18704:5;18700:14;18695:30;18690:3;18682:44;18772:2;18763:11;;;;;;:::i;:::-;;;;;18806:1;18797:5;:10;18542:288;18793:21;18542:288;18851:6;18844:13;;;;;18160:716;;;:::o;66683:689::-;66814:19;66820:2;66824:8;66814:5;:19::i;:::-;66893:1;66875:2;:14;;;:19;66871:483;;66915:11;66929:13;;66915:27;;66961:13;66983:8;66977:3;:14;66961:30;;67010:233;67041:62;67080:1;67084:2;67088:7;;;;;;67097:5;67041:30;:62::i;:::-;67036:167;;67139:40;;;;;;;;;;;;;;67036:167;67238:3;67230:5;:11;67010:233;;67325:3;67308:13;;:20;67304:34;;67330:8;;;67304:34;66896:458;;66871:483;66683:689;;;:::o;72634:147::-;72771:6;72634:147;;;;;:::o;47376:366::-;47442:31;;:::i;:::-;47519:6;47486:9;:14;;:41;;;;;;;;;;;35207:3;47572:6;:33;;47538:9;:24;;:68;;;;;;;;;;;47664:1;35324:8;47636:6;:24;:29;;47617:9;:16;;:48;;;;;;;;;;;35728:3;47705:6;:28;;47676:9;:19;;:58;;;;;;;;;;;47376:366;;;:::o;14994:948::-;15047:7;15067:14;15084:1;15067:18;;15134:8;15125:5;:17;15121:106;;15172:8;15163:17;;;;;;:::i;:::-;;;;;15209:2;15199:12;;;;15121:106;15254:8;15245:5;:17;15241:106;;15292:8;15283:17;;;;;;:::i;:::-;;;;;15329:2;15319:12;;;;15241:106;15374:8;15365:5;:17;15361:106;;15412:8;15403:17;;;;;;:::i;:::-;;;;;15449:2;15439:12;;;;15361:106;15494:7;15485:5;:16;15481:103;;15531:7;15522:16;;;;;;:::i;:::-;;;;;15567:1;15557:11;;;;15481:103;15611:7;15602:5;:16;15598:103;;15648:7;15639:16;;;;;;:::i;:::-;;;;;15684:1;15674:11;;;;15598:103;15728:7;15719:5;:16;15715:103;;15765:7;15756:16;;;;;;:::i;:::-;;;;;15801:1;15791:11;;;;15715:103;15845:7;15836:5;:16;15832:68;;15883:1;15873:11;;;;15832:68;15928:6;15921:13;;;14994:948;;;:::o;60965:2966::-;61038:20;61061:13;;61038:36;;61101:1;61089:8;:13;61085:44;;61111:18;;;;;;;;;;;;;;61085:44;61142:61;61172:1;61176:2;61180:12;61194:8;61142:21;:61::i;:::-;61686:1;34686:2;61656:1;:26;;61655:32;61643:8;:45;61617:18;:22;61636:2;61617:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;61965:139;62002:2;62056:33;62079:1;62083:2;62087:1;62056:14;:33::i;:::-;62023:30;62044:8;62023:20;:30::i;:::-;:66;61965:18;:139::i;:::-;61931:17;:31;61949:12;61931:31;;;;;;;;;;;:173;;;;62121:16;62152:11;62181:8;62166:12;:23;62152:37;;62702:16;62698:2;62694:25;62682:37;;63074:12;63034:8;62993:1;62931:25;62872:1;62811;62784:335;63445:1;63431:12;63427:20;63385:346;63486:3;63477:7;63474:16;63385:346;;63704:7;63694:8;63691:1;63664:25;63661:1;63658;63653:59;63539:1;63530:7;63526:15;63515:26;;63385:346;;;63389:77;63776:1;63764:8;:13;63760:45;;63786:19;;;;;;;;;;;;;;63760:45;63838:3;63822:13;:19;;;;61391:2462;;63863:60;63892:1;63896:2;63900:12;63914:8;63863:20;:60::i;:::-;61027:2904;60965:2966;;:::o;48377:324::-;48447:14;48680:1;48670:8;48667:15;48641:24;48637:46;48627:56;;48377:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:246::-;2469:1;2479:113;2493:6;2490:1;2487:13;2479:113;;;2578:1;2573:3;2569:11;2563:18;2559:1;2554:3;2550:11;2543:39;2515:2;2512:1;2508:10;2503:15;;2479:113;;;2626:1;2617:6;2612:3;2608:16;2601:27;2450:184;2388:246;;;:::o;2640:102::-;2681:6;2732:2;2728:7;2723:2;2716:5;2712:14;2708:28;2698:38;;2640:102;;;:::o;2748:377::-;2836:3;2864:39;2897:5;2864:39;:::i;:::-;2919:71;2983:6;2978:3;2919:71;:::i;:::-;2912:78;;2999:65;3057:6;3052:3;3045:4;3038:5;3034:16;2999:65;:::i;:::-;3089:29;3111:6;3089:29;:::i;:::-;3084:3;3080:39;3073:46;;2840:285;2748:377;;;;:::o;3131:313::-;3244:4;3282:2;3271:9;3267:18;3259:26;;3331:9;3325:4;3321:20;3317:1;3306:9;3302:17;3295:47;3359:78;3432:4;3423:6;3359:78;:::i;:::-;3351:86;;3131:313;;;;:::o;3450:77::-;3487:7;3516:5;3505:16;;3450:77;;;:::o;3533:122::-;3606:24;3624:5;3606:24;:::i;:::-;3599:5;3596:35;3586:63;;3645:1;3642;3635:12;3586:63;3533:122;:::o;3661:139::-;3707:5;3745:6;3732:20;3723:29;;3761:33;3788:5;3761:33;:::i;:::-;3661:139;;;;:::o;3806:329::-;3865:6;3914:2;3902:9;3893:7;3889:23;3885:32;3882:119;;;3920:79;;:::i;:::-;3882:119;4040:1;4065:53;4110:7;4101:6;4090:9;4086:22;4065:53;:::i;:::-;4055:63;;4011:117;3806:329;;;;:::o;4141:126::-;4178:7;4218:42;4211:5;4207:54;4196:65;;4141:126;;;:::o;4273:96::-;4310:7;4339:24;4357:5;4339:24;:::i;:::-;4328:35;;4273:96;;;:::o;4375:118::-;4462:24;4480:5;4462:24;:::i;:::-;4457:3;4450:37;4375:118;;:::o;4499:222::-;4592:4;4630:2;4619:9;4615:18;4607:26;;4643:71;4711:1;4700:9;4696:17;4687:6;4643:71;:::i;:::-;4499:222;;;;:::o;4727:122::-;4800:24;4818:5;4800:24;:::i;:::-;4793:5;4790:35;4780:63;;4839:1;4836;4829:12;4780:63;4727:122;:::o;4855:139::-;4901:5;4939:6;4926:20;4917:29;;4955:33;4982:5;4955:33;:::i;:::-;4855:139;;;;:::o;5000:474::-;5068:6;5076;5125:2;5113:9;5104:7;5100:23;5096:32;5093:119;;;5131:79;;:::i;:::-;5093:119;5251:1;5276:53;5321:7;5312:6;5301:9;5297:22;5276:53;:::i;:::-;5266:63;;5222:117;5378:2;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5349:118;5000:474;;;;;:::o;5480:118::-;5567:24;5585:5;5567:24;:::i;:::-;5562:3;5555:37;5480:118;;:::o;5604:222::-;5697:4;5735:2;5724:9;5720:18;5712:26;;5748:71;5816:1;5805:9;5801:17;5792:6;5748:71;:::i;:::-;5604:222;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:114::-;9485:6;9519:5;9513:12;9503:22;;9418:114;;;:::o;9538:184::-;9637:11;9671:6;9666:3;9659:19;9711:4;9706:3;9702:14;9687:29;;9538:184;;;;:::o;9728:132::-;9795:4;9818:3;9810:11;;9848:4;9843:3;9839:14;9831:22;;9728:132;;;:::o;9866:108::-;9943:24;9961:5;9943:24;:::i;:::-;9938:3;9931:37;9866:108;;:::o;9980:179::-;10049:10;10070:46;10112:3;10104:6;10070:46;:::i;:::-;10148:4;10143:3;10139:14;10125:28;;9980:179;;;;:::o;10165:113::-;10235:4;10267;10262:3;10258:14;10250:22;;10165:113;;;:::o;10314:732::-;10433:3;10462:54;10510:5;10462:54;:::i;:::-;10532:86;10611:6;10606:3;10532:86;:::i;:::-;10525:93;;10642:56;10692:5;10642:56;:::i;:::-;10721:7;10752:1;10737:284;10762:6;10759:1;10756:13;10737:284;;;10838:6;10832:13;10865:63;10924:3;10909:13;10865:63;:::i;:::-;10858:70;;10951:60;11004:6;10951:60;:::i;:::-;10941:70;;10797:224;10784:1;10781;10777:9;10772:14;;10737:284;;;10741:14;11037:3;11030:10;;10438:608;;;10314:732;;;;:::o;11052:373::-;11195:4;11233:2;11222:9;11218:18;11210:26;;11282:9;11276:4;11272:20;11268:1;11257:9;11253:17;11246:47;11310:108;11413:4;11404:6;11310:108;:::i;:::-;11302:116;;11052:373;;;;:::o;11431:468::-;11496:6;11504;11553:2;11541:9;11532:7;11528:23;11524:32;11521:119;;;11559:79;;:::i;:::-;11521:119;11679:1;11704:53;11749:7;11740:6;11729:9;11725:22;11704:53;:::i;:::-;11694:63;;11650:117;11806:2;11832:50;11874:7;11865:6;11854:9;11850:22;11832:50;:::i;:::-;11822:60;;11777:115;11431:468;;;;;:::o;11905:307::-;11966:4;12056:18;12048:6;12045:30;12042:56;;;12078:18;;:::i;:::-;12042:56;12116:29;12138:6;12116:29;:::i;:::-;12108:37;;12200:4;12194;12190:15;12182:23;;11905:307;;;:::o;12218:423::-;12295:5;12320:65;12336:48;12377:6;12336:48;:::i;:::-;12320:65;:::i;:::-;12311:74;;12408:6;12401:5;12394:21;12446:4;12439:5;12435:16;12484:3;12475:6;12470:3;12466:16;12463:25;12460:112;;;12491:79;;:::i;:::-;12460:112;12581:54;12628:6;12623:3;12618;12581:54;:::i;:::-;12301:340;12218:423;;;;;:::o;12660:338::-;12715:5;12764:3;12757:4;12749:6;12745:17;12741:27;12731:122;;12772:79;;:::i;:::-;12731:122;12889:6;12876:20;12914:78;12988:3;12980:6;12973:4;12965:6;12961:17;12914:78;:::i;:::-;12905:87;;12721:277;12660:338;;;;:::o;13004:943::-;13099:6;13107;13115;13123;13172:3;13160:9;13151:7;13147:23;13143:33;13140:120;;;13179:79;;:::i;:::-;13140:120;13299:1;13324:53;13369:7;13360:6;13349:9;13345:22;13324:53;:::i;:::-;13314:63;;13270:117;13426:2;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13397:118;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13710:2;13699:9;13695:18;13682:32;13741:18;13733:6;13730:30;13727:117;;;13763:79;;:::i;:::-;13727:117;13868:62;13922:7;13913:6;13902:9;13898:22;13868:62;:::i;:::-;13858:72;;13653:287;13004:943;;;;;;;:::o;13953:474::-;14021:6;14029;14078:2;14066:9;14057:7;14053:23;14049:32;14046:119;;;14084:79;;:::i;:::-;14046:119;14204:1;14229:53;14274:7;14265:6;14254:9;14250:22;14229:53;:::i;:::-;14219:63;;14175:117;14331:2;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14302:118;13953:474;;;;;:::o;14433:::-;14501:6;14509;14558:2;14546:9;14537:7;14533:23;14529:32;14526:119;;;14564:79;;:::i;:::-;14526:119;14684:1;14709:53;14754:7;14745:6;14734:9;14730:22;14709:53;:::i;:::-;14699:63;;14655:117;14811:2;14837:53;14882:7;14873:6;14862:9;14858:22;14837:53;:::i;:::-;14827:63;;14782:118;14433:474;;;;;:::o;14913:180::-;14961:77;14958:1;14951:88;15058:4;15055:1;15048:15;15082:4;15079:1;15072:15;15099:320;15143:6;15180:1;15174:4;15170:12;15160:22;;15227:1;15221:4;15217:12;15248:18;15238:81;;15304:4;15296:6;15292:17;15282:27;;15238:81;15366:2;15358:6;15355:14;15335:18;15332:38;15329:84;;15385:18;;:::i;:::-;15329:84;15150:269;15099:320;;;:::o;15425:173::-;15565:25;15561:1;15553:6;15549:14;15542:49;15425:173;:::o;15604:366::-;15746:3;15767:67;15831:2;15826:3;15767:67;:::i;:::-;15760:74;;15843:93;15932:3;15843:93;:::i;:::-;15961:2;15956:3;15952:12;15945:19;;15604:366;;;:::o;15976:419::-;16142:4;16180:2;16169:9;16165:18;16157:26;;16229:9;16223:4;16219:20;16215:1;16204:9;16200:17;16193:47;16257:131;16383:4;16257:131;:::i;:::-;16249:139;;15976:419;;;:::o;16401:180::-;16449:77;16446:1;16439:88;16546:4;16543:1;16536:15;16570:4;16567:1;16560:15;16587:191;16627:3;16646:20;16664:1;16646:20;:::i;:::-;16641:25;;16680:20;16698:1;16680:20;:::i;:::-;16675:25;;16723:1;16720;16716:9;16709:16;;16744:3;16741:1;16738:10;16735:36;;;16751:18;;:::i;:::-;16735:36;16587:191;;;;:::o;16784:177::-;16924:29;16920:1;16912:6;16908:14;16901:53;16784:177;:::o;16967:366::-;17109:3;17130:67;17194:2;17189:3;17130:67;:::i;:::-;17123:74;;17206:93;17295:3;17206:93;:::i;:::-;17324:2;17319:3;17315:12;17308:19;;16967:366;;;:::o;17339:419::-;17505:4;17543:2;17532:9;17528:18;17520:26;;17592:9;17586:4;17582:20;17578:1;17567:9;17563:17;17556:47;17620:131;17746:4;17620:131;:::i;:::-;17612:139;;17339:419;;;:::o;17764:179::-;17904:31;17900:1;17892:6;17888:14;17881:55;17764:179;:::o;17949:366::-;18091:3;18112:67;18176:2;18171:3;18112:67;:::i;:::-;18105:74;;18188:93;18277:3;18188:93;:::i;:::-;18306:2;18301:3;18297:12;18290:19;;17949:366;;;:::o;18321:419::-;18487:4;18525:2;18514:9;18510:18;18502:26;;18574:9;18568:4;18564:20;18560:1;18549:9;18545:17;18538:47;18602:131;18728:4;18602:131;:::i;:::-;18594:139;;18321:419;;;:::o;18746:178::-;18886:30;18882:1;18874:6;18870:14;18863:54;18746:178;:::o;18930:366::-;19072:3;19093:67;19157:2;19152:3;19093:67;:::i;:::-;19086:74;;19169:93;19258:3;19169:93;:::i;:::-;19287:2;19282:3;19278:12;19271:19;;18930:366;;;:::o;19302:419::-;19468:4;19506:2;19495:9;19491:18;19483:26;;19555:9;19549:4;19545:20;19541:1;19530:9;19526:17;19519:47;19583:131;19709:4;19583:131;:::i;:::-;19575:139;;19302:419;;;:::o;19727:170::-;19867:22;19863:1;19855:6;19851:14;19844:46;19727:170;:::o;19903:366::-;20045:3;20066:67;20130:2;20125:3;20066:67;:::i;:::-;20059:74;;20142:93;20231:3;20142:93;:::i;:::-;20260:2;20255:3;20251:12;20244:19;;19903:366;;;:::o;20275:419::-;20441:4;20479:2;20468:9;20464:18;20456:26;;20528:9;20522:4;20518:20;20514:1;20503:9;20499:17;20492:47;20556:131;20682:4;20556:131;:::i;:::-;20548:139;;20275:419;;;:::o;20700:141::-;20749:4;20772:3;20764:11;;20795:3;20792:1;20785:14;20829:4;20826:1;20816:18;20808:26;;20700:141;;;:::o;20847:93::-;20884:6;20931:2;20926;20919:5;20915:14;20911:23;20901:33;;20847:93;;;:::o;20946:107::-;20990:8;21040:5;21034:4;21030:16;21009:37;;20946:107;;;;:::o;21059:393::-;21128:6;21178:1;21166:10;21162:18;21201:97;21231:66;21220:9;21201:97;:::i;:::-;21319:39;21349:8;21338:9;21319:39;:::i;:::-;21307:51;;21391:4;21387:9;21380:5;21376:21;21367:30;;21440:4;21430:8;21426:19;21419:5;21416:30;21406:40;;21135:317;;21059:393;;;;;:::o;21458:60::-;21486:3;21507:5;21500:12;;21458:60;;;:::o;21524:142::-;21574:9;21607:53;21625:34;21634:24;21652:5;21634:24;:::i;:::-;21625:34;:::i;:::-;21607:53;:::i;:::-;21594:66;;21524:142;;;:::o;21672:75::-;21715:3;21736:5;21729:12;;21672:75;;;:::o;21753:269::-;21863:39;21894:7;21863:39;:::i;:::-;21924:91;21973:41;21997:16;21973:41;:::i;:::-;21965:6;21958:4;21952:11;21924:91;:::i;:::-;21918:4;21911:105;21829:193;21753:269;;;:::o;22028:73::-;22073:3;22028:73;:::o;22107:189::-;22184:32;;:::i;:::-;22225:65;22283:6;22275;22269:4;22225:65;:::i;:::-;22160:136;22107:189;;:::o;22302:186::-;22362:120;22379:3;22372:5;22369:14;22362:120;;;22433:39;22470:1;22463:5;22433:39;:::i;:::-;22406:1;22399:5;22395:13;22386:22;;22362:120;;;22302:186;;:::o;22494:543::-;22595:2;22590:3;22587:11;22584:446;;;22629:38;22661:5;22629:38;:::i;:::-;22713:29;22731:10;22713:29;:::i;:::-;22703:8;22699:44;22896:2;22884:10;22881:18;22878:49;;;22917:8;22902:23;;22878:49;22940:80;22996:22;23014:3;22996:22;:::i;:::-;22986:8;22982:37;22969:11;22940:80;:::i;:::-;22599:431;;22584:446;22494:543;;;:::o;23043:117::-;23097:8;23147:5;23141:4;23137:16;23116:37;;23043:117;;;;:::o;23166:169::-;23210:6;23243:51;23291:1;23287:6;23279:5;23276:1;23272:13;23243:51;:::i;:::-;23239:56;23324:4;23318;23314:15;23304:25;;23217:118;23166:169;;;;:::o;23340:295::-;23416:4;23562:29;23587:3;23581:4;23562:29;:::i;:::-;23554:37;;23624:3;23621:1;23617:11;23611:4;23608:21;23600:29;;23340:295;;;;:::o;23640:1395::-;23757:37;23790:3;23757:37;:::i;:::-;23859:18;23851:6;23848:30;23845:56;;;23881:18;;:::i;:::-;23845:56;23925:38;23957:4;23951:11;23925:38;:::i;:::-;24010:67;24070:6;24062;24056:4;24010:67;:::i;:::-;24104:1;24128:4;24115:17;;24160:2;24152:6;24149:14;24177:1;24172:618;;;;24834:1;24851:6;24848:77;;;24900:9;24895:3;24891:19;24885:26;24876:35;;24848:77;24951:67;25011:6;25004:5;24951:67;:::i;:::-;24945:4;24938:81;24807:222;24142:887;;24172:618;24224:4;24220:9;24212:6;24208:22;24258:37;24290:4;24258:37;:::i;:::-;24317:1;24331:208;24345:7;24342:1;24339:14;24331:208;;;24424:9;24419:3;24415:19;24409:26;24401:6;24394:42;24475:1;24467:6;24463:14;24453:24;;24522:2;24511:9;24507:18;24494:31;;24368:4;24365:1;24361:12;24356:17;;24331:208;;;24567:6;24558:7;24555:19;24552:179;;;24625:9;24620:3;24616:19;24610:26;24668:48;24710:4;24702:6;24698:17;24687:9;24668:48;:::i;:::-;24660:6;24653:64;24575:156;24552:179;24777:1;24773;24765:6;24761:14;24757:22;24751:4;24744:36;24179:611;;;24142:887;;23732:1303;;;23640:1395;;:::o;25041:180::-;25089:77;25086:1;25079:88;25186:4;25183:1;25176:15;25210:4;25207:1;25200:15;25227:181;25367:33;25363:1;25355:6;25351:14;25344:57;25227:181;:::o;25414:366::-;25556:3;25577:67;25641:2;25636:3;25577:67;:::i;:::-;25570:74;;25653:93;25742:3;25653:93;:::i;:::-;25771:2;25766:3;25762:12;25755:19;;25414:366;;;:::o;25786:419::-;25952:4;25990:2;25979:9;25975:18;25967:26;;26039:9;26033:4;26029:20;26025:1;26014:9;26010:17;26003:47;26067:131;26193:4;26067:131;:::i;:::-;26059:139;;25786:419;;;:::o;26211:160::-;26351:12;26347:1;26339:6;26335:14;26328:36;26211:160;:::o;26377:366::-;26519:3;26540:67;26604:2;26599:3;26540:67;:::i;:::-;26533:74;;26616:93;26705:3;26616:93;:::i;:::-;26734:2;26729:3;26725:12;26718:19;;26377:366;;;:::o;26749:419::-;26915:4;26953:2;26942:9;26938:18;26930:26;;27002:9;26996:4;26992:20;26988:1;26977:9;26973:17;26966:47;27030:131;27156:4;27030:131;:::i;:::-;27022:139;;26749:419;;;:::o;27174:410::-;27214:7;27237:20;27255:1;27237:20;:::i;:::-;27232:25;;27271:20;27289:1;27271:20;:::i;:::-;27266:25;;27326:1;27323;27319:9;27348:30;27366:11;27348:30;:::i;:::-;27337:41;;27527:1;27518:7;27514:15;27511:1;27508:22;27488:1;27481:9;27461:83;27438:139;;27557:18;;:::i;:::-;27438:139;27222:362;27174:410;;;;:::o;27590:168::-;27730:20;27726:1;27718:6;27714:14;27707:44;27590:168;:::o;27764:366::-;27906:3;27927:67;27991:2;27986:3;27927:67;:::i;:::-;27920:74;;28003:93;28092:3;28003:93;:::i;:::-;28121:2;28116:3;28112:12;28105:19;;27764:366;;;:::o;28136:419::-;28302:4;28340:2;28329:9;28325:18;28317:26;;28389:9;28383:4;28379:20;28375:1;28364:9;28360:17;28353:47;28417:131;28543:4;28417:131;:::i;:::-;28409:139;;28136:419;;;:::o;28561:172::-;28701:24;28697:1;28689:6;28685:14;28678:48;28561:172;:::o;28739:366::-;28881:3;28902:67;28966:2;28961:3;28902:67;:::i;:::-;28895:74;;28978:93;29067:3;28978:93;:::i;:::-;29096:2;29091:3;29087:12;29080:19;;28739:366;;;:::o;29111:419::-;29277:4;29315:2;29304:9;29300:18;29292:26;;29364:9;29358:4;29354:20;29350:1;29339:9;29335:17;29328:47;29392:131;29518:4;29392:131;:::i;:::-;29384:139;;29111:419;;;:::o;29536:235::-;29676:34;29672:1;29664:6;29660:14;29653:58;29745:18;29740:2;29732:6;29728:15;29721:43;29536:235;:::o;29777:366::-;29919:3;29940:67;30004:2;29999:3;29940:67;:::i;:::-;29933:74;;30016:93;30105:3;30016:93;:::i;:::-;30134:2;30129:3;30125:12;30118:19;;29777:366;;;:::o;30149:419::-;30315:4;30353:2;30342:9;30338:18;30330:26;;30402:9;30396:4;30392:20;30388:1;30377:9;30373:17;30366:47;30430:131;30556:4;30430:131;:::i;:::-;30422:139;;30149:419;;;:::o;30574:148::-;30676:11;30713:3;30698:18;;30574:148;;;;:::o;30728:390::-;30834:3;30862:39;30895:5;30862:39;:::i;:::-;30917:89;30999:6;30994:3;30917:89;:::i;:::-;30910:96;;31015:65;31073:6;31068:3;31061:4;31054:5;31050:16;31015:65;:::i;:::-;31105:6;31100:3;31096:16;31089:23;;30838:280;30728:390;;;;:::o;31148:874::-;31251:3;31288:5;31282:12;31317:36;31343:9;31317:36;:::i;:::-;31369:89;31451:6;31446:3;31369:89;:::i;:::-;31362:96;;31489:1;31478:9;31474:17;31505:1;31500:166;;;;31680:1;31675:341;;;;31467:549;;31500:166;31584:4;31580:9;31569;31565:25;31560:3;31553:38;31646:6;31639:14;31632:22;31624:6;31620:35;31615:3;31611:45;31604:52;;31500:166;;31675:341;31742:38;31774:5;31742:38;:::i;:::-;31802:1;31816:154;31830:6;31827:1;31824:13;31816:154;;;31904:7;31898:14;31894:1;31889:3;31885:11;31878:35;31954:1;31945:7;31941:15;31930:26;;31852:4;31849:1;31845:12;31840:17;;31816:154;;;31999:6;31994:3;31990:16;31983:23;;31682:334;;31467:549;;31255:767;;31148:874;;;;:::o;32028:589::-;32253:3;32275:95;32366:3;32357:6;32275:95;:::i;:::-;32268:102;;32387:95;32478:3;32469:6;32387:95;:::i;:::-;32380:102;;32499:92;32587:3;32578:6;32499:92;:::i;:::-;32492:99;;32608:3;32601:10;;32028:589;;;;;;:::o;32623:225::-;32763:34;32759:1;32751:6;32747:14;32740:58;32832:8;32827:2;32819:6;32815:15;32808:33;32623:225;:::o;32854:366::-;32996:3;33017:67;33081:2;33076:3;33017:67;:::i;:::-;33010:74;;33093:93;33182:3;33093:93;:::i;:::-;33211:2;33206:3;33202:12;33195:19;;32854:366;;;:::o;33226:419::-;33392:4;33430:2;33419:9;33415:18;33407:26;;33479:9;33473:4;33469:20;33465:1;33454:9;33450:17;33443:47;33507:131;33633:4;33507:131;:::i;:::-;33499:139;;33226:419;;;:::o;33651:182::-;33791:34;33787:1;33779:6;33775:14;33768:58;33651:182;:::o;33839:366::-;33981:3;34002:67;34066:2;34061:3;34002:67;:::i;:::-;33995:74;;34078:93;34167:3;34078:93;:::i;:::-;34196:2;34191:3;34187:12;34180:19;;33839:366;;;:::o;34211:419::-;34377:4;34415:2;34404:9;34400:18;34392:26;;34464:9;34458:4;34454:20;34450:1;34439:9;34435:17;34428:47;34492:131;34618:4;34492:131;:::i;:::-;34484:139;;34211:419;;;:::o;34636:181::-;34776:33;34772:1;34764:6;34760:14;34753:57;34636:181;:::o;34823:366::-;34965:3;34986:67;35050:2;35045:3;34986:67;:::i;:::-;34979:74;;35062:93;35151:3;35062:93;:::i;:::-;35180:2;35175:3;35171:12;35164:19;;34823:366;;;:::o;35195:419::-;35361:4;35399:2;35388:9;35384:18;35376:26;;35448:9;35442:4;35438:20;35434:1;35423:9;35419:17;35412:47;35476:131;35602:4;35476:131;:::i;:::-;35468:139;;35195:419;;;:::o;35620:98::-;35671:6;35705:5;35699:12;35689:22;;35620:98;;;:::o;35724:168::-;35807:11;35841:6;35836:3;35829:19;35881:4;35876:3;35872:14;35857:29;;35724:168;;;;:::o;35898:373::-;35984:3;36012:38;36044:5;36012:38;:::i;:::-;36066:70;36129:6;36124:3;36066:70;:::i;:::-;36059:77;;36145:65;36203:6;36198:3;36191:4;36184:5;36180:16;36145:65;:::i;:::-;36235:29;36257:6;36235:29;:::i;:::-;36230:3;36226:39;36219:46;;35988:283;35898:373;;;;:::o;36277:640::-;36472:4;36510:3;36499:9;36495:19;36487:27;;36524:71;36592:1;36581:9;36577:17;36568:6;36524:71;:::i;:::-;36605:72;36673:2;36662:9;36658:18;36649:6;36605:72;:::i;:::-;36687;36755:2;36744:9;36740:18;36731:6;36687:72;:::i;:::-;36806:9;36800:4;36796:20;36791:2;36780:9;36776:18;36769:48;36834:76;36905:4;36896:6;36834:76;:::i;:::-;36826:84;;36277:640;;;;;;;:::o;36923:141::-;36979:5;37010:6;37004:13;36995:22;;37026:32;37052:5;37026:32;:::i;:::-;36923:141;;;;:::o;37070:349::-;37139:6;37188:2;37176:9;37167:7;37163:23;37159:32;37156:119;;;37194:79;;:::i;:::-;37156:119;37314:1;37339:63;37394:7;37385:6;37374:9;37370:22;37339:63;:::i;:::-;37329:73;;37285:127;37070:349;;;;:::o;37425:180::-;37473:77;37470:1;37463:88;37570:4;37567:1;37560:15;37594:4;37591:1;37584:15
Swarm Source
ipfs://6ea6b6d354517cf0dadfaddbf4ef10e3917ad7ea1a86f4766d6ce4e5dcf40c00
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.