Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
222 Riot
Holders
68
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 RiotLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RiotGeneration
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-12 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the 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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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 (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} } // File: contracts/RiotGeneration.sol pragma solidity >=0.7.0 <0.9.0; contract RiotGeneration is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0 ether; uint256 public maxSupply = 2222; uint256 public maxMintAmountPerTx = 3; bool public paused = true; bool public revealed = false; constructor() ERC721("Riot Generation", "Riot") { setHiddenMetadataUri("ipfs://QmNqcB3WH6WjFzUoDBzUaCD9AYNCcy17jB9K3qgcj9jh2z/META.json"); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function totalSupply() public view returns (uint256) { return supply.current(); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); require(balanceOf(msg.sender) <= maxMintAmountPerTx, "Max Mint per wallet reached"); _mintLoop(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { // This will pay HashLips 5% of the initial sale. // You can remove this if you want, or keep it in to support HashLips and his channel. // ============================================================================= // ============================================================================= // This will transfer the remaining contract balance to the owner. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); // ============================================================================= } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600890805190602001906200002b92919062000373565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000373565b506000600b556108ae600c556003600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550348015620000cd57600080fd5b506040518060400160405280600f81526020017f52696f742047656e65726174696f6e00000000000000000000000000000000008152506040518060400160405280600481526020017f52696f740000000000000000000000000000000000000000000000000000000081525081600090805190602001906200015292919062000373565b5080600190805190602001906200016b92919062000373565b5050506200018e62000182620001be60201b60201c565b620001c660201b60201c565b620001b86040518060600160405280603f815260200162004412603f91396200028c60201b60201c565b6200050b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200029c620002b860201b60201c565b80600a9080519060200190620002b492919062000373565b5050565b620002c8620001be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ee6200034960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200033e906200044a565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000381906200047d565b90600052602060002090601f016020900481019282620003a55760008555620003f1565b82601f10620003c057805160ff1916838001178555620003f1565b82800160010185558215620003f1579182015b82811115620003f0578251825591602001919060010190620003d3565b5b50905062000400919062000404565b5090565b5b808211156200041f57600081600090555060010162000405565b5090565b6000620004326020836200046c565b91506200043f82620004e2565b602082019050919050565b60006020820190508181036000830152620004658162000423565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200049657607f821691505b60208210811415620004ad57620004ac620004b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613ef7806200051b6000396000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb0114610768578063e0a8085314610793578063e985e9c5146107bc578063efbd73f4146107f9578063f2fde38b146108225761020f565b8063a45ba8e7146106ae578063b071401b146106d9578063b88d4fde14610702578063c87b56dd1461072b5761020f565b80638da5cb5b116100e75780638da5cb5b146105e857806394354fd01461061357806395d89b411461063e578063a0712d6814610669578063a22cb465146106855761020f565b80636352211e1461052e57806370a082311461056b578063715018a6146105a85780637ec4a659146105bf5761020f565b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb1461045957806351830227146104825780635503a0e8146104ad5780635c975abb146104d857806362b99ad4146105035761020f565b80633ccfd60b146103b357806342842e0e146103ca578063438b6300146103f357806344a0d68a146104305761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612c61565b61084b565b60405161024891906132d0565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b60405161027391906132eb565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612d04565b6109bf565b6040516102b09190613247565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612bf4565b610a05565b005b3480156102ee57600080fd5b506102f7610b1d565b604051610304919061356d565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612cbb565b610b23565b005b34801561034257600080fd5b5061035d60048036038101906103589190612c34565b610b45565b005b34801561036b57600080fd5b50610374610b6a565b604051610381919061356d565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612ade565b610b7b565b005b3480156103bf57600080fd5b506103c8610bdb565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612ade565b610c63565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612a71565b610c83565b60405161042791906132ae565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612d04565b610d8e565b005b34801561046557600080fd5b50610480600480360381019061047b9190612cbb565b610da0565b005b34801561048e57600080fd5b50610497610dc2565b6040516104a491906132d0565b60405180910390f35b3480156104b957600080fd5b506104c2610dd5565b6040516104cf91906132eb565b60405180910390f35b3480156104e457600080fd5b506104ed610e63565b6040516104fa91906132d0565b60405180910390f35b34801561050f57600080fd5b50610518610e76565b60405161052591906132eb565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612d04565b610f04565b6040516105629190613247565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190612a71565b610f8b565b60405161059f919061356d565b60405180910390f35b3480156105b457600080fd5b506105bd611043565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612cbb565b611057565b005b3480156105f457600080fd5b506105fd611079565b60405161060a9190613247565b60405180910390f35b34801561061f57600080fd5b506106286110a3565b604051610635919061356d565b60405180910390f35b34801561064a57600080fd5b506106536110a9565b60405161066091906132eb565b60405180910390f35b610683600480360381019061067e9190612d04565b61113b565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612bb4565b6112e1565b005b3480156106ba57600080fd5b506106c36112f7565b6040516106d091906132eb565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612d04565b611385565b005b34801561070e57600080fd5b5061072960048036038101906107249190612b31565b611397565b005b34801561073757600080fd5b50610752600480360381019061074d9190612d04565b6113f9565b60405161075f91906132eb565b60405180910390f35b34801561077457600080fd5b5061077d611552565b60405161078a919061356d565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612c34565b611558565b005b3480156107c857600080fd5b506107e360048036038101906107de9190612a9e565b61157d565b6040516107f091906132d0565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612d31565b611611565b005b34801561082e57600080fd5b5061084960048036038101906108449190612a71565b6116d3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610926575061092582611757565b5b9050919050565b60606000805461093c90613845565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613845565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca826117c1565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1082610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a78906134cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa061180c565b73ffffffffffffffffffffffffffffffffffffffff161480610acf5750610ace81610ac961180c565b61157d565b5b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b059061350d565b60405180910390fd5b610b188383611814565b505050565b600b5481565b610b2b6118cd565b8060099080519060200190610b41929190612885565b5050565b610b4d6118cd565b80600e60006101000a81548160ff02191690831515021790555050565b6000610b76600761194b565b905090565b610b8c610b8661180c565b82611959565b610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc29061330d565b60405180910390fd5b610bd68383836119ee565b505050565b610be36118cd565b6000610bed611079565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c1090613232565b60006040518083038185875af1925050503d8060008114610c4d576040519150601f19603f3d011682016040523d82523d6000602084013e610c52565b606091505b5050905080610c6057600080fd5b50565b610c7e83838360405180602001604052806000815250611397565b505050565b60606000610c9083610f8b565b905060008167ffffffffffffffff811115610cae57610cad6139ad565b5b604051908082528060200260200182016040528015610cdc5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610cf95750600c548211155b15610d82576000610d0983610f04565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d6e5782848381518110610d5357610d5261397e565b5b6020026020010181815250508180610d6a906138a8565b9250505b8280610d79906138a8565b93505050610ce8565b82945050505050919050565b610d966118cd565b80600b8190555050565b610da86118cd565b80600a9080519060200190610dbe929190612885565b5050565b600e60019054906101000a900460ff1681565b60098054610de290613845565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0e90613845565b8015610e5b5780601f10610e3057610100808354040283529160200191610e5b565b820191906000526020600020905b815481529060010190602001808311610e3e57829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610e8390613845565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf90613845565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b505050505081565b600080610f1083611ce8565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f79906134ad565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff39061340d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61104b6118cd565b6110556000611d25565b565b61105f6118cd565b8060089080519060200190611075929190612885565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546110b890613845565b80601f01602080910402602001604051908101604052809291908181526020018280546110e490613845565b80156111315780601f1061110657610100808354040283529160200191611131565b820191906000526020600020905b81548152906001019060200180831161111457829003601f168201915b5050505050905090565b8060008111801561114e5750600d548111155b61118d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611184906133ad565b60405180910390fd5b600c548161119b600761194b565b6111a591906136ab565b11156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd906134ed565b60405180910390fd5b600e60009054906101000a900460ff1615611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d9061346d565b60405180910390fd5b81600b546112449190613701565b341015611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d9061354d565b60405180910390fd5b600d5461129233610f8b565b11156112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca9061352d565b60405180910390fd5b6112dd3383611deb565b5050565b6112f36112ec61180c565b8383611e2b565b5050565b600a805461130490613845565b80601f016020809104026020016040519081016040528092919081815260200182805461133090613845565b801561137d5780601f106113525761010080835404028352916020019161137d565b820191906000526020600020905b81548152906001019060200180831161136057829003601f168201915b505050505081565b61138d6118cd565b80600d8190555050565b6113a86113a261180c565b83611959565b6113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de9061330d565b60405180910390fd5b6113f384848484611f98565b50505050565b606061140482611ff4565b611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a9061348d565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514156114f157600a805461146c90613845565b80601f016020809104026020016040519081016040528092919081815260200182805461149890613845565b80156114e55780601f106114ba576101008083540402835291602001916114e5565b820191906000526020600020905b8154815290600101906020018083116114c857829003601f168201915b5050505050905061154d565b60006114fb612035565b9050600081511161151b5760405180602001604052806000815250611549565b80611525846120c7565b600960405160200161153993929190613201565b6040516020818303038152906040525b9150505b919050565b600c5481565b6115606118cd565b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156116245750600d548111155b611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a906133ad565b60405180910390fd5b600c5481611671600761194b565b61167b91906136ab565b11156116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b3906134ed565b60405180910390fd5b6116c46118cd565b6116ce8284611deb565b505050565b6116db6118cd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561174b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117429061334d565b60405180910390fd5b61175481611d25565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117ca81611ff4565b611809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611800906134ad565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661188783610f04565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118d561180c565b73ffffffffffffffffffffffffffffffffffffffff166118f3611079565b73ffffffffffffffffffffffffffffffffffffffff1614611949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119409061344d565b60405180910390fd5b565b600081600001549050919050565b60008061196583610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119a757506119a6818561157d565b5b806119e557508373ffffffffffffffffffffffffffffffffffffffff166119cd846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a0e82610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b9061336d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb906133cd565b60405180910390fd5b611ae1838383600161219f565b8273ffffffffffffffffffffffffffffffffffffffff16611b0182610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e9061336d565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ce383838360016122c5565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611e2657611e0060076122cb565b611e1383611e0e600761194b565b6122e1565b8080611e1e906138a8565b915050611dee565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906133ed565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f8b91906132d0565b60405180910390a3505050565b611fa38484846119ee565b611faf848484846122ff565b611fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe59061332d565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661201683611ce8565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606008805461204490613845565b80601f016020809104026020016040519081016040528092919081815260200182805461207090613845565b80156120bd5780601f10612092576101008083540402835291602001916120bd565b820191906000526020600020905b8154815290600101906020018083116120a057829003601f168201915b5050505050905090565b6060600060016120d684612496565b01905060008167ffffffffffffffff8111156120f5576120f46139ad565b5b6040519080825280601f01601f1916602001820160405280156121275781602001600182028036833780820191505090505b509050600082602001820190505b600115612194578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161217e5761217d613920565b5b049450600085141561218f57612194565b612135565b819350505050919050565b60018111156122bf57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146122335780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222b919061375b565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122be5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b691906136ab565b925050819055505b5b50505050565b50505050565b6001816000016000828254019250508190555050565b6122fb8282604051806020016040528060008152506125e9565b5050565b60006123208473ffffffffffffffffffffffffffffffffffffffff16612644565b15612489578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261234961180c565b8786866040518563ffffffff1660e01b815260040161236b9493929190613262565b602060405180830381600087803b15801561238557600080fd5b505af19250505080156123b657506040513d601f19601f820116820180604052508101906123b39190612c8e565b60015b612439573d80600081146123e6576040519150601f19603f3d011682016040523d82523d6000602084013e6123eb565b606091505b50600081511415612431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124289061332d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061248e565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106124f4577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124ea576124e9613920565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612531576d04ee2d6d415b85acef8100000000838161252757612526613920565b5b0492506020810190505b662386f26fc10000831061256057662386f26fc10000838161255657612555613920565b5b0492506010810190505b6305f5e1008310612589576305f5e100838161257f5761257e613920565b5b0492506008810190505b61271083106125ae5761271083816125a4576125a3613920565b5b0492506004810190505b606483106125d157606483816125c7576125c6613920565b5b0492506002810190505b600a83106125e0576001810190505b80915050919050565b6125f38383612667565b61260060008484846122ff565b61263f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126369061332d565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce9061342d565b60405180910390fd5b6126e081611ff4565b15612720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127179061338d565b60405180910390fd5b61272e60008383600161219f565b61273781611ff4565b15612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e9061338d565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128816000838360016122c5565b5050565b82805461289190613845565b90600052602060002090601f0160209004810192826128b357600085556128fa565b82601f106128cc57805160ff19168380011785556128fa565b828001600101855582156128fa579182015b828111156128f95782518255916020019190600101906128de565b5b509050612907919061290b565b5090565b5b8082111561292457600081600090555060010161290c565b5090565b600061293b612936846135ad565b613588565b905082815260208101848484011115612957576129566139e1565b5b612962848285613803565b509392505050565b600061297d612978846135de565b613588565b905082815260208101848484011115612999576129986139e1565b5b6129a4848285613803565b509392505050565b6000813590506129bb81613e65565b92915050565b6000813590506129d081613e7c565b92915050565b6000813590506129e581613e93565b92915050565b6000815190506129fa81613e93565b92915050565b600082601f830112612a1557612a146139dc565b5b8135612a25848260208601612928565b91505092915050565b600082601f830112612a4357612a426139dc565b5b8135612a5384826020860161296a565b91505092915050565b600081359050612a6b81613eaa565b92915050565b600060208284031215612a8757612a866139eb565b5b6000612a95848285016129ac565b91505092915050565b60008060408385031215612ab557612ab46139eb565b5b6000612ac3858286016129ac565b9250506020612ad4858286016129ac565b9150509250929050565b600080600060608486031215612af757612af66139eb565b5b6000612b05868287016129ac565b9350506020612b16868287016129ac565b9250506040612b2786828701612a5c565b9150509250925092565b60008060008060808587031215612b4b57612b4a6139eb565b5b6000612b59878288016129ac565b9450506020612b6a878288016129ac565b9350506040612b7b87828801612a5c565b925050606085013567ffffffffffffffff811115612b9c57612b9b6139e6565b5b612ba887828801612a00565b91505092959194509250565b60008060408385031215612bcb57612bca6139eb565b5b6000612bd9858286016129ac565b9250506020612bea858286016129c1565b9150509250929050565b60008060408385031215612c0b57612c0a6139eb565b5b6000612c19858286016129ac565b9250506020612c2a85828601612a5c565b9150509250929050565b600060208284031215612c4a57612c496139eb565b5b6000612c58848285016129c1565b91505092915050565b600060208284031215612c7757612c766139eb565b5b6000612c85848285016129d6565b91505092915050565b600060208284031215612ca457612ca36139eb565b5b6000612cb2848285016129eb565b91505092915050565b600060208284031215612cd157612cd06139eb565b5b600082013567ffffffffffffffff811115612cef57612cee6139e6565b5b612cfb84828501612a2e565b91505092915050565b600060208284031215612d1a57612d196139eb565b5b6000612d2884828501612a5c565b91505092915050565b60008060408385031215612d4857612d476139eb565b5b6000612d5685828601612a5c565b9250506020612d67858286016129ac565b9150509250929050565b6000612d7d83836131e3565b60208301905092915050565b612d928161378f565b82525050565b6000612da382613634565b612dad8185613662565b9350612db88361360f565b8060005b83811015612de9578151612dd08882612d71565b9750612ddb83613655565b925050600181019050612dbc565b5085935050505092915050565b612dff816137a1565b82525050565b6000612e108261363f565b612e1a8185613673565b9350612e2a818560208601613812565b612e33816139f0565b840191505092915050565b6000612e498261364a565b612e53818561368f565b9350612e63818560208601613812565b612e6c816139f0565b840191505092915050565b6000612e828261364a565b612e8c81856136a0565b9350612e9c818560208601613812565b80840191505092915050565b60008154612eb581613845565b612ebf81866136a0565b94506001821660008114612eda5760018114612eeb57612f1e565b60ff19831686528186019350612f1e565b612ef48561361f565b60005b83811015612f1657815481890152600182019150602081019050612ef7565b838801955050505b50505092915050565b6000612f34602d8361368f565b9150612f3f82613a01565b604082019050919050565b6000612f5760328361368f565b9150612f6282613a50565b604082019050919050565b6000612f7a60268361368f565b9150612f8582613a9f565b604082019050919050565b6000612f9d60258361368f565b9150612fa882613aee565b604082019050919050565b6000612fc0601c8361368f565b9150612fcb82613b3d565b602082019050919050565b6000612fe360148361368f565b9150612fee82613b66565b602082019050919050565b600061300660248361368f565b915061301182613b8f565b604082019050919050565b600061302960198361368f565b915061303482613bde565b602082019050919050565b600061304c60298361368f565b915061305782613c07565b604082019050919050565b600061306f60208361368f565b915061307a82613c56565b602082019050919050565b600061309260208361368f565b915061309d82613c7f565b602082019050919050565b60006130b560178361368f565b91506130c082613ca8565b602082019050919050565b60006130d8602f8361368f565b91506130e382613cd1565b604082019050919050565b60006130fb60188361368f565b915061310682613d20565b602082019050919050565b600061311e60218361368f565b915061312982613d49565b604082019050919050565b6000613141600083613684565b915061314c82613d98565b600082019050919050565b600061316460148361368f565b915061316f82613d9b565b602082019050919050565b6000613187603d8361368f565b915061319282613dc4565b604082019050919050565b60006131aa601b8361368f565b91506131b582613e13565b602082019050919050565b60006131cd60138361368f565b91506131d882613e3c565b602082019050919050565b6131ec816137f9565b82525050565b6131fb816137f9565b82525050565b600061320d8286612e77565b91506132198285612e77565b91506132258284612ea8565b9150819050949350505050565b600061323d82613134565b9150819050919050565b600060208201905061325c6000830184612d89565b92915050565b60006080820190506132776000830187612d89565b6132846020830186612d89565b61329160408301856131f2565b81810360608301526132a38184612e05565b905095945050505050565b600060208201905081810360008301526132c88184612d98565b905092915050565b60006020820190506132e56000830184612df6565b92915050565b600060208201905081810360008301526133058184612e3e565b905092915050565b6000602082019050818103600083015261332681612f27565b9050919050565b6000602082019050818103600083015261334681612f4a565b9050919050565b6000602082019050818103600083015261336681612f6d565b9050919050565b6000602082019050818103600083015261338681612f90565b9050919050565b600060208201905081810360008301526133a681612fb3565b9050919050565b600060208201905081810360008301526133c681612fd6565b9050919050565b600060208201905081810360008301526133e681612ff9565b9050919050565b600060208201905081810360008301526134068161301c565b9050919050565b600060208201905081810360008301526134268161303f565b9050919050565b6000602082019050818103600083015261344681613062565b9050919050565b6000602082019050818103600083015261346681613085565b9050919050565b60006020820190508181036000830152613486816130a8565b9050919050565b600060208201905081810360008301526134a6816130cb565b9050919050565b600060208201905081810360008301526134c6816130ee565b9050919050565b600060208201905081810360008301526134e681613111565b9050919050565b6000602082019050818103600083015261350681613157565b9050919050565b600060208201905081810360008301526135268161317a565b9050919050565b600060208201905081810360008301526135468161319d565b9050919050565b60006020820190508181036000830152613566816131c0565b9050919050565b600060208201905061358260008301846131f2565b92915050565b60006135926135a3565b905061359e8282613877565b919050565b6000604051905090565b600067ffffffffffffffff8211156135c8576135c76139ad565b5b6135d1826139f0565b9050602081019050919050565b600067ffffffffffffffff8211156135f9576135f86139ad565b5b613602826139f0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136b6826137f9565b91506136c1836137f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136f6576136f56138f1565b5b828201905092915050565b600061370c826137f9565b9150613717836137f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137505761374f6138f1565b5b828202905092915050565b6000613766826137f9565b9150613771836137f9565b925082821015613784576137836138f1565b5b828203905092915050565b600061379a826137d9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613830578082015181840152602081019050613815565b8381111561383f576000848401525b50505050565b6000600282049050600182168061385d57607f821691505b602082108114156138715761387061394f565b5b50919050565b613880826139f0565b810181811067ffffffffffffffff8211171561389f5761389e6139ad565b5b80604052505050565b60006138b3826137f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138e6576138e56138f1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f4d6178204d696e74207065722077616c6c657420726561636865640000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613e6e8161378f565b8114613e7957600080fd5b50565b613e85816137a1565b8114613e9057600080fd5b50565b613e9c816137ad565b8114613ea757600080fd5b50565b613eb3816137f9565b8114613ebe57600080fd5b5056fea26469706673582212207495cf499ca630eed493e1c0c90e11ea50fa6aab0a0752ec506e1f1fc093238a64736f6c63430008070033697066733a2f2f516d4e71634233574836576a467a556f44427a556143443941594e43637931376a42394b337167636a396a68327a2f4d4554412e6a736f6e
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636352211e11610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb0114610768578063e0a8085314610793578063e985e9c5146107bc578063efbd73f4146107f9578063f2fde38b146108225761020f565b8063a45ba8e7146106ae578063b071401b146106d9578063b88d4fde14610702578063c87b56dd1461072b5761020f565b80638da5cb5b116100e75780638da5cb5b146105e857806394354fd01461061357806395d89b411461063e578063a0712d6814610669578063a22cb465146106855761020f565b80636352211e1461052e57806370a082311461056b578063715018a6146105a85780637ec4a659146105bf5761020f565b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb1461045957806351830227146104825780635503a0e8146104ad5780635c975abb146104d857806362b99ad4146105035761020f565b80633ccfd60b146103b357806342842e0e146103ca578063438b6300146103f357806344a0d68a146104305761020f565b806313faede6116101e257806313faede6146102e257806316ba10e01461030d57806316c38b3c1461033657806318160ddd1461035f57806323b872dd1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612c61565b61084b565b60405161024891906132d0565b60405180910390f35b34801561025d57600080fd5b5061026661092d565b60405161027391906132eb565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612d04565b6109bf565b6040516102b09190613247565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612bf4565b610a05565b005b3480156102ee57600080fd5b506102f7610b1d565b604051610304919061356d565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612cbb565b610b23565b005b34801561034257600080fd5b5061035d60048036038101906103589190612c34565b610b45565b005b34801561036b57600080fd5b50610374610b6a565b604051610381919061356d565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612ade565b610b7b565b005b3480156103bf57600080fd5b506103c8610bdb565b005b3480156103d657600080fd5b506103f160048036038101906103ec9190612ade565b610c63565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612a71565b610c83565b60405161042791906132ae565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190612d04565b610d8e565b005b34801561046557600080fd5b50610480600480360381019061047b9190612cbb565b610da0565b005b34801561048e57600080fd5b50610497610dc2565b6040516104a491906132d0565b60405180910390f35b3480156104b957600080fd5b506104c2610dd5565b6040516104cf91906132eb565b60405180910390f35b3480156104e457600080fd5b506104ed610e63565b6040516104fa91906132d0565b60405180910390f35b34801561050f57600080fd5b50610518610e76565b60405161052591906132eb565b60405180910390f35b34801561053a57600080fd5b5061055560048036038101906105509190612d04565b610f04565b6040516105629190613247565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190612a71565b610f8b565b60405161059f919061356d565b60405180910390f35b3480156105b457600080fd5b506105bd611043565b005b3480156105cb57600080fd5b506105e660048036038101906105e19190612cbb565b611057565b005b3480156105f457600080fd5b506105fd611079565b60405161060a9190613247565b60405180910390f35b34801561061f57600080fd5b506106286110a3565b604051610635919061356d565b60405180910390f35b34801561064a57600080fd5b506106536110a9565b60405161066091906132eb565b60405180910390f35b610683600480360381019061067e9190612d04565b61113b565b005b34801561069157600080fd5b506106ac60048036038101906106a79190612bb4565b6112e1565b005b3480156106ba57600080fd5b506106c36112f7565b6040516106d091906132eb565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190612d04565b611385565b005b34801561070e57600080fd5b5061072960048036038101906107249190612b31565b611397565b005b34801561073757600080fd5b50610752600480360381019061074d9190612d04565b6113f9565b60405161075f91906132eb565b60405180910390f35b34801561077457600080fd5b5061077d611552565b60405161078a919061356d565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190612c34565b611558565b005b3480156107c857600080fd5b506107e360048036038101906107de9190612a9e565b61157d565b6040516107f091906132d0565b60405180910390f35b34801561080557600080fd5b50610820600480360381019061081b9190612d31565b611611565b005b34801561082e57600080fd5b5061084960048036038101906108449190612a71565b6116d3565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610926575061092582611757565b5b9050919050565b60606000805461093c90613845565b80601f016020809104026020016040519081016040528092919081815260200182805461096890613845565b80156109b55780601f1061098a576101008083540402835291602001916109b5565b820191906000526020600020905b81548152906001019060200180831161099857829003601f168201915b5050505050905090565b60006109ca826117c1565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1082610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a78906134cd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa061180c565b73ffffffffffffffffffffffffffffffffffffffff161480610acf5750610ace81610ac961180c565b61157d565b5b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b059061350d565b60405180910390fd5b610b188383611814565b505050565b600b5481565b610b2b6118cd565b8060099080519060200190610b41929190612885565b5050565b610b4d6118cd565b80600e60006101000a81548160ff02191690831515021790555050565b6000610b76600761194b565b905090565b610b8c610b8661180c565b82611959565b610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc29061330d565b60405180910390fd5b610bd68383836119ee565b505050565b610be36118cd565b6000610bed611079565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c1090613232565b60006040518083038185875af1925050503d8060008114610c4d576040519150601f19603f3d011682016040523d82523d6000602084013e610c52565b606091505b5050905080610c6057600080fd5b50565b610c7e83838360405180602001604052806000815250611397565b505050565b60606000610c9083610f8b565b905060008167ffffffffffffffff811115610cae57610cad6139ad565b5b604051908082528060200260200182016040528015610cdc5781602001602082028036833780820191505090505b50905060006001905060005b8381108015610cf95750600c548211155b15610d82576000610d0983610f04565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d6e5782848381518110610d5357610d5261397e565b5b6020026020010181815250508180610d6a906138a8565b9250505b8280610d79906138a8565b93505050610ce8565b82945050505050919050565b610d966118cd565b80600b8190555050565b610da86118cd565b80600a9080519060200190610dbe929190612885565b5050565b600e60019054906101000a900460ff1681565b60098054610de290613845565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0e90613845565b8015610e5b5780601f10610e3057610100808354040283529160200191610e5b565b820191906000526020600020905b815481529060010190602001808311610e3e57829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b60088054610e8390613845565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaf90613845565b8015610efc5780601f10610ed157610100808354040283529160200191610efc565b820191906000526020600020905b815481529060010190602001808311610edf57829003601f168201915b505050505081565b600080610f1083611ce8565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f79906134ad565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff39061340d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61104b6118cd565b6110556000611d25565b565b61105f6118cd565b8060089080519060200190611075929190612885565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546110b890613845565b80601f01602080910402602001604051908101604052809291908181526020018280546110e490613845565b80156111315780601f1061110657610100808354040283529160200191611131565b820191906000526020600020905b81548152906001019060200180831161111457829003601f168201915b5050505050905090565b8060008111801561114e5750600d548111155b61118d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611184906133ad565b60405180910390fd5b600c548161119b600761194b565b6111a591906136ab565b11156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd906134ed565b60405180910390fd5b600e60009054906101000a900460ff1615611236576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122d9061346d565b60405180910390fd5b81600b546112449190613701565b341015611286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127d9061354d565b60405180910390fd5b600d5461129233610f8b565b11156112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca9061352d565b60405180910390fd5b6112dd3383611deb565b5050565b6112f36112ec61180c565b8383611e2b565b5050565b600a805461130490613845565b80601f016020809104026020016040519081016040528092919081815260200182805461133090613845565b801561137d5780601f106113525761010080835404028352916020019161137d565b820191906000526020600020905b81548152906001019060200180831161136057829003601f168201915b505050505081565b61138d6118cd565b80600d8190555050565b6113a86113a261180c565b83611959565b6113e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113de9061330d565b60405180910390fd5b6113f384848484611f98565b50505050565b606061140482611ff4565b611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a9061348d565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514156114f157600a805461146c90613845565b80601f016020809104026020016040519081016040528092919081815260200182805461149890613845565b80156114e55780601f106114ba576101008083540402835291602001916114e5565b820191906000526020600020905b8154815290600101906020018083116114c857829003601f168201915b5050505050905061154d565b60006114fb612035565b9050600081511161151b5760405180602001604052806000815250611549565b80611525846120c7565b600960405160200161153993929190613201565b6040516020818303038152906040525b9150505b919050565b600c5481565b6115606118cd565b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156116245750600d548111155b611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a906133ad565b60405180910390fd5b600c5481611671600761194b565b61167b91906136ab565b11156116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b3906134ed565b60405180910390fd5b6116c46118cd565b6116ce8284611deb565b505050565b6116db6118cd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561174b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117429061334d565b60405180910390fd5b61175481611d25565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117ca81611ff4565b611809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611800906134ad565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661188783610f04565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118d561180c565b73ffffffffffffffffffffffffffffffffffffffff166118f3611079565b73ffffffffffffffffffffffffffffffffffffffff1614611949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119409061344d565b60405180910390fd5b565b600081600001549050919050565b60008061196583610f04565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806119a757506119a6818561157d565b5b806119e557508373ffffffffffffffffffffffffffffffffffffffff166119cd846109bf565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a0e82610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b9061336d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acb906133cd565b60405180910390fd5b611ae1838383600161219f565b8273ffffffffffffffffffffffffffffffffffffffff16611b0182610f04565b73ffffffffffffffffffffffffffffffffffffffff1614611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e9061336d565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ce383838360016122c5565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611e2657611e0060076122cb565b611e1383611e0e600761194b565b6122e1565b8080611e1e906138a8565b915050611dee565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906133ed565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f8b91906132d0565b60405180910390a3505050565b611fa38484846119ee565b611faf848484846122ff565b611fee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe59061332d565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661201683611ce8565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606008805461204490613845565b80601f016020809104026020016040519081016040528092919081815260200182805461207090613845565b80156120bd5780601f10612092576101008083540402835291602001916120bd565b820191906000526020600020905b8154815290600101906020018083116120a057829003601f168201915b5050505050905090565b6060600060016120d684612496565b01905060008167ffffffffffffffff8111156120f5576120f46139ad565b5b6040519080825280601f01601f1916602001820160405280156121275781602001600182028036833780820191505090505b509050600082602001820190505b600115612194578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161217e5761217d613920565b5b049450600085141561218f57612194565b612135565b819350505050919050565b60018111156122bf57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146122335780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222b919061375b565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122be5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b691906136ab565b925050819055505b5b50505050565b50505050565b6001816000016000828254019250508190555050565b6122fb8282604051806020016040528060008152506125e9565b5050565b60006123208473ffffffffffffffffffffffffffffffffffffffff16612644565b15612489578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261234961180c565b8786866040518563ffffffff1660e01b815260040161236b9493929190613262565b602060405180830381600087803b15801561238557600080fd5b505af19250505080156123b657506040513d601f19601f820116820180604052508101906123b39190612c8e565b60015b612439573d80600081146123e6576040519150601f19603f3d011682016040523d82523d6000602084013e6123eb565b606091505b50600081511415612431576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124289061332d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061248e565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106124f4577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124ea576124e9613920565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612531576d04ee2d6d415b85acef8100000000838161252757612526613920565b5b0492506020810190505b662386f26fc10000831061256057662386f26fc10000838161255657612555613920565b5b0492506010810190505b6305f5e1008310612589576305f5e100838161257f5761257e613920565b5b0492506008810190505b61271083106125ae5761271083816125a4576125a3613920565b5b0492506004810190505b606483106125d157606483816125c7576125c6613920565b5b0492506002810190505b600a83106125e0576001810190505b80915050919050565b6125f38383612667565b61260060008484846122ff565b61263f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126369061332d565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ce9061342d565b60405180910390fd5b6126e081611ff4565b15612720576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127179061338d565b60405180910390fd5b61272e60008383600161219f565b61273781611ff4565b15612777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276e9061338d565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128816000838360016122c5565b5050565b82805461289190613845565b90600052602060002090601f0160209004810192826128b357600085556128fa565b82601f106128cc57805160ff19168380011785556128fa565b828001600101855582156128fa579182015b828111156128f95782518255916020019190600101906128de565b5b509050612907919061290b565b5090565b5b8082111561292457600081600090555060010161290c565b5090565b600061293b612936846135ad565b613588565b905082815260208101848484011115612957576129566139e1565b5b612962848285613803565b509392505050565b600061297d612978846135de565b613588565b905082815260208101848484011115612999576129986139e1565b5b6129a4848285613803565b509392505050565b6000813590506129bb81613e65565b92915050565b6000813590506129d081613e7c565b92915050565b6000813590506129e581613e93565b92915050565b6000815190506129fa81613e93565b92915050565b600082601f830112612a1557612a146139dc565b5b8135612a25848260208601612928565b91505092915050565b600082601f830112612a4357612a426139dc565b5b8135612a5384826020860161296a565b91505092915050565b600081359050612a6b81613eaa565b92915050565b600060208284031215612a8757612a866139eb565b5b6000612a95848285016129ac565b91505092915050565b60008060408385031215612ab557612ab46139eb565b5b6000612ac3858286016129ac565b9250506020612ad4858286016129ac565b9150509250929050565b600080600060608486031215612af757612af66139eb565b5b6000612b05868287016129ac565b9350506020612b16868287016129ac565b9250506040612b2786828701612a5c565b9150509250925092565b60008060008060808587031215612b4b57612b4a6139eb565b5b6000612b59878288016129ac565b9450506020612b6a878288016129ac565b9350506040612b7b87828801612a5c565b925050606085013567ffffffffffffffff811115612b9c57612b9b6139e6565b5b612ba887828801612a00565b91505092959194509250565b60008060408385031215612bcb57612bca6139eb565b5b6000612bd9858286016129ac565b9250506020612bea858286016129c1565b9150509250929050565b60008060408385031215612c0b57612c0a6139eb565b5b6000612c19858286016129ac565b9250506020612c2a85828601612a5c565b9150509250929050565b600060208284031215612c4a57612c496139eb565b5b6000612c58848285016129c1565b91505092915050565b600060208284031215612c7757612c766139eb565b5b6000612c85848285016129d6565b91505092915050565b600060208284031215612ca457612ca36139eb565b5b6000612cb2848285016129eb565b91505092915050565b600060208284031215612cd157612cd06139eb565b5b600082013567ffffffffffffffff811115612cef57612cee6139e6565b5b612cfb84828501612a2e565b91505092915050565b600060208284031215612d1a57612d196139eb565b5b6000612d2884828501612a5c565b91505092915050565b60008060408385031215612d4857612d476139eb565b5b6000612d5685828601612a5c565b9250506020612d67858286016129ac565b9150509250929050565b6000612d7d83836131e3565b60208301905092915050565b612d928161378f565b82525050565b6000612da382613634565b612dad8185613662565b9350612db88361360f565b8060005b83811015612de9578151612dd08882612d71565b9750612ddb83613655565b925050600181019050612dbc565b5085935050505092915050565b612dff816137a1565b82525050565b6000612e108261363f565b612e1a8185613673565b9350612e2a818560208601613812565b612e33816139f0565b840191505092915050565b6000612e498261364a565b612e53818561368f565b9350612e63818560208601613812565b612e6c816139f0565b840191505092915050565b6000612e828261364a565b612e8c81856136a0565b9350612e9c818560208601613812565b80840191505092915050565b60008154612eb581613845565b612ebf81866136a0565b94506001821660008114612eda5760018114612eeb57612f1e565b60ff19831686528186019350612f1e565b612ef48561361f565b60005b83811015612f1657815481890152600182019150602081019050612ef7565b838801955050505b50505092915050565b6000612f34602d8361368f565b9150612f3f82613a01565b604082019050919050565b6000612f5760328361368f565b9150612f6282613a50565b604082019050919050565b6000612f7a60268361368f565b9150612f8582613a9f565b604082019050919050565b6000612f9d60258361368f565b9150612fa882613aee565b604082019050919050565b6000612fc0601c8361368f565b9150612fcb82613b3d565b602082019050919050565b6000612fe360148361368f565b9150612fee82613b66565b602082019050919050565b600061300660248361368f565b915061301182613b8f565b604082019050919050565b600061302960198361368f565b915061303482613bde565b602082019050919050565b600061304c60298361368f565b915061305782613c07565b604082019050919050565b600061306f60208361368f565b915061307a82613c56565b602082019050919050565b600061309260208361368f565b915061309d82613c7f565b602082019050919050565b60006130b560178361368f565b91506130c082613ca8565b602082019050919050565b60006130d8602f8361368f565b91506130e382613cd1565b604082019050919050565b60006130fb60188361368f565b915061310682613d20565b602082019050919050565b600061311e60218361368f565b915061312982613d49565b604082019050919050565b6000613141600083613684565b915061314c82613d98565b600082019050919050565b600061316460148361368f565b915061316f82613d9b565b602082019050919050565b6000613187603d8361368f565b915061319282613dc4565b604082019050919050565b60006131aa601b8361368f565b91506131b582613e13565b602082019050919050565b60006131cd60138361368f565b91506131d882613e3c565b602082019050919050565b6131ec816137f9565b82525050565b6131fb816137f9565b82525050565b600061320d8286612e77565b91506132198285612e77565b91506132258284612ea8565b9150819050949350505050565b600061323d82613134565b9150819050919050565b600060208201905061325c6000830184612d89565b92915050565b60006080820190506132776000830187612d89565b6132846020830186612d89565b61329160408301856131f2565b81810360608301526132a38184612e05565b905095945050505050565b600060208201905081810360008301526132c88184612d98565b905092915050565b60006020820190506132e56000830184612df6565b92915050565b600060208201905081810360008301526133058184612e3e565b905092915050565b6000602082019050818103600083015261332681612f27565b9050919050565b6000602082019050818103600083015261334681612f4a565b9050919050565b6000602082019050818103600083015261336681612f6d565b9050919050565b6000602082019050818103600083015261338681612f90565b9050919050565b600060208201905081810360008301526133a681612fb3565b9050919050565b600060208201905081810360008301526133c681612fd6565b9050919050565b600060208201905081810360008301526133e681612ff9565b9050919050565b600060208201905081810360008301526134068161301c565b9050919050565b600060208201905081810360008301526134268161303f565b9050919050565b6000602082019050818103600083015261344681613062565b9050919050565b6000602082019050818103600083015261346681613085565b9050919050565b60006020820190508181036000830152613486816130a8565b9050919050565b600060208201905081810360008301526134a6816130cb565b9050919050565b600060208201905081810360008301526134c6816130ee565b9050919050565b600060208201905081810360008301526134e681613111565b9050919050565b6000602082019050818103600083015261350681613157565b9050919050565b600060208201905081810360008301526135268161317a565b9050919050565b600060208201905081810360008301526135468161319d565b9050919050565b60006020820190508181036000830152613566816131c0565b9050919050565b600060208201905061358260008301846131f2565b92915050565b60006135926135a3565b905061359e8282613877565b919050565b6000604051905090565b600067ffffffffffffffff8211156135c8576135c76139ad565b5b6135d1826139f0565b9050602081019050919050565b600067ffffffffffffffff8211156135f9576135f86139ad565b5b613602826139f0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136b6826137f9565b91506136c1836137f9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136f6576136f56138f1565b5b828201905092915050565b600061370c826137f9565b9150613717836137f9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137505761374f6138f1565b5b828202905092915050565b6000613766826137f9565b9150613771836137f9565b925082821015613784576137836138f1565b5b828203905092915050565b600061379a826137d9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613830578082015181840152602081019050613815565b8381111561383f576000848401525b50505050565b6000600282049050600182168061385d57607f821691505b602082108114156138715761387061394f565b5b50919050565b613880826139f0565b810181811067ffffffffffffffff8211171561389f5761389e6139ad565b5b80604052505050565b60006138b3826137f9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138e6576138e56138f1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b7f4d6178204d696e74207065722077616c6c657420726561636865640000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613e6e8161378f565b8114613e7957600080fd5b50565b613e85816137a1565b8114613e9057600080fd5b50565b613e9c816137ad565b8114613ea757600080fd5b50565b613eb3816137f9565b8114613ebe57600080fd5b5056fea26469706673582212207495cf499ca630eed493e1c0c90e11ea50fa6aab0a0752ec506e1f1fc093238a64736f6c63430008070033
Deployed Bytecode Sourcemap
55937:4424:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40009:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40937:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42449:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41967:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56206:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59066:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59172:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56779:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43149:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59255:783;;;;;;;;;;;;;:::i;:::-;;43555:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57378:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58606:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58822:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56350:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56128:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56320:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56095:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40647:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40378:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19440:103;;;;;;;;;;;;;:::i;:::-;;58960:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18792:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56276:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41106:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56874:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42692:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56166:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58686:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43811:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58019:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56240:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58519:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42918:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57217:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19698:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40009:305;40111:4;40163:25;40148:40;;;:11;:40;;;;:105;;;;40220:33;40205:48;;;:11;:48;;;;40148:105;:158;;;;40270:36;40294:11;40270:23;:36::i;:::-;40148:158;40128:178;;40009:305;;;:::o;40937:100::-;40991:13;41024:5;41017:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40937:100;:::o;42449:171::-;42525:7;42545:23;42560:7;42545:14;:23::i;:::-;42588:15;:24;42604:7;42588:24;;;;;;;;;;;;;;;;;;;;;42581:31;;42449:171;;;:::o;41967:416::-;42048:13;42064:23;42079:7;42064:14;:23::i;:::-;42048:39;;42112:5;42106:11;;:2;:11;;;;42098:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;42206:5;42190:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;42215:37;42232:5;42239:12;:10;:12::i;:::-;42215:16;:37::i;:::-;42190:62;42168:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;42354:21;42363:2;42367:7;42354:8;:21::i;:::-;42037:346;41967:416;;:::o;56206:29::-;;;;:::o;59066:100::-;18678:13;:11;:13::i;:::-;59150:10:::1;59138:9;:22;;;;;;;;;;;;:::i;:::-;;59066:100:::0;:::o;59172:77::-;18678:13;:11;:13::i;:::-;59237:6:::1;59228;;:15;;;;;;;;;;;;;;;;;;59172:77:::0;:::o;56779:89::-;56823:7;56846:16;:6;:14;:16::i;:::-;56839:23;;56779:89;:::o;43149:335::-;43344:41;43363:12;:10;:12::i;:::-;43377:7;43344:18;:41::i;:::-;43336:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;43448:28;43458:4;43464:2;43468:7;43448:9;:28::i;:::-;43149:335;;;:::o;59255:783::-;18678:13;:11;:13::i;:::-;59860:7:::1;59881;:5;:7::i;:::-;59873:21;;59902;59873:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59859:69;;;59943:2;59935:11;;;::::0;::::1;;59292:746;59255:783::o:0;43555:185::-;43693:39;43710:4;43716:2;43720:7;43693:39;;;;;;;;;;;;:16;:39::i;:::-;43555:185;;;:::o;57378:635::-;57453:16;57481:23;57507:17;57517:6;57507:9;:17::i;:::-;57481:43;;57531:30;57578:15;57564:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57531:63;;57601:22;57626:1;57601:26;;57634:23;57670:309;57695:15;57677;:33;:64;;;;;57732:9;;57714:14;:27;;57677:64;57670:309;;;57752:25;57780:23;57788:14;57780:7;:23::i;:::-;57752:51;;57839:6;57818:27;;:17;:27;;;57814:131;;;57891:14;57858:13;57872:15;57858:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;57918:17;;;;;:::i;:::-;;;;57814:131;57955:16;;;;;:::i;:::-;;;;57743:236;57670:309;;;57994:13;57987:20;;;;;;57378:635;;;:::o;58606:74::-;18678:13;:11;:13::i;:::-;58669:5:::1;58662:4;:12;;;;58606:74:::0;:::o;58822:132::-;18678:13;:11;:13::i;:::-;58930:18:::1;58910:17;:38;;;;;;;;;;;;:::i;:::-;;58822:132:::0;:::o;56350:28::-;;;;;;;;;;;;;:::o;56128:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56320:25::-;;;;;;;;;;;;;:::o;56095:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40647:223::-;40719:7;40739:13;40755:17;40764:7;40755:8;:17::i;:::-;40739:33;;40808:1;40791:19;;:5;:19;;;;40783:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;40857:5;40850:12;;;40647:223;;;:::o;40378:207::-;40450:7;40495:1;40478:19;;:5;:19;;;;40470:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40561:9;:16;40571:5;40561:16;;;;;;;;;;;;;;;;40554:23;;40378:207;;;:::o;19440:103::-;18678:13;:11;:13::i;:::-;19505:30:::1;19532:1;19505:18;:30::i;:::-;19440:103::o:0;58960:100::-;18678:13;:11;:13::i;:::-;59044:10:::1;59032:9;:22;;;;;;;;;;;;:::i;:::-;;58960:100:::0;:::o;18792:87::-;18838:7;18865:6;;;;;;;;;;;18858:13;;18792:87;:::o;56276:37::-;;;;:::o;41106:104::-;41162:13;41195:7;41188:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41106:104;:::o;56874:335::-;56939:11;56613:1;56599:11;:15;:52;;;;;56633:18;;56618:11;:33;;56599:52;56591:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;56725:9;;56710:11;56691:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;56683:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56968:6:::1;;;;;;;;;;;56967:7;56959:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;57037:11;57030:4;;:18;;;;:::i;:::-;57017:9;:31;;57009:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;57112:18;;57087:21;57097:10;57087:9;:21::i;:::-;:43;;57079:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;57169:34;57179:10;57191:11;57169:9;:34::i;:::-;56874:335:::0;;:::o;42692:155::-;42787:52;42806:12;:10;:12::i;:::-;42820:8;42830;42787:18;:52::i;:::-;42692:155;;:::o;56166:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58686:130::-;18678:13;:11;:13::i;:::-;58791:19:::1;58770:18;:40;;;;58686:130:::0;:::o;43811:322::-;43985:41;44004:12;:10;:12::i;:::-;44018:7;43985:18;:41::i;:::-;43977:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;44087:38;44101:4;44107:2;44111:7;44120:4;44087:13;:38::i;:::-;43811:322;;;;:::o;58019:494::-;58118:13;58159:17;58167:8;58159:7;:17::i;:::-;58143:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;58266:5;58254:17;;:8;;;;;;;;;;;:17;;;58250:64;;;58289:17;58282:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58250:64;58322:28;58353:10;:8;:10::i;:::-;58322:41;;58408:1;58383:14;58377:28;:32;:130;;;;;;;;;;;;;;;;;58445:14;58461:19;:8;:17;:19::i;:::-;58482:9;58428:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58377:130;58370:137;;;58019:494;;;;:::o;56240:31::-;;;;:::o;58519:81::-;18678:13;:11;:13::i;:::-;58588:6:::1;58577:8;;:17;;;;;;;;;;;;;;;;;;58519:81:::0;:::o;42918:164::-;43015:4;43039:18;:25;43058:5;43039:25;;;;;;;;;;;;;;;:35;43065:8;43039:35;;;;;;;;;;;;;;;;;;;;;;;;;43032:42;;42918:164;;;;:::o;57217:155::-;57303:11;56613:1;56599:11;:15;:52;;;;;56633:18;;56618:11;:33;;56599:52;56591:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;56725:9;;56710:11;56691:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;56683:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;18678:13:::1;:11;:13::i;:::-;57333:33:::2;57343:9;57354:11;57333:9;:33::i;:::-;57217:155:::0;;;:::o;19698:201::-;18678:13;:11;:13::i;:::-;19807:1:::1;19787:22;;:8;:22;;;;19779:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19863:28;19882:8;19863:18;:28::i;:::-;19698:201:::0;:::o;32521:157::-;32606:4;32645:25;32630:40;;;:11;:40;;;;32623:47;;32521:157;;;:::o;52268:135::-;52350:16;52358:7;52350;:16::i;:::-;52342:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52268:135;:::o;17343:98::-;17396:7;17423:10;17416:17;;17343:98;:::o;51547:174::-;51649:2;51622:15;:24;51638:7;51622:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51705:7;51701:2;51667:46;;51676:23;51691:7;51676:14;:23::i;:::-;51667:46;;;;;;;;;;;;51547:174;;:::o;18957:132::-;19032:12;:10;:12::i;:::-;19021:23;;:7;:5;:7::i;:::-;:23;;;19013:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18957:132::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;46166:264::-;46259:4;46276:13;46292:23;46307:7;46292:14;:23::i;:::-;46276:39;;46345:5;46334:16;;:7;:16;;;:52;;;;46354:32;46371:5;46378:7;46354:16;:32::i;:::-;46334:52;:87;;;;46414:7;46390:31;;:20;46402:7;46390:11;:20::i;:::-;:31;;;46334:87;46326:96;;;46166:264;;;;:::o;50165:1263::-;50324:4;50297:31;;:23;50312:7;50297:14;:23::i;:::-;:31;;;50289:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50403:1;50389:16;;:2;:16;;;;50381:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50459:42;50480:4;50486:2;50490:7;50499:1;50459:20;:42::i;:::-;50631:4;50604:31;;:23;50619:7;50604:14;:23::i;:::-;:31;;;50596:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;50749:15;:24;50765:7;50749:24;;;;;;;;;;;;50742:31;;;;;;;;;;;51244:1;51225:9;:15;51235:4;51225:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;51277:1;51260:9;:13;51270:2;51260:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;51319:2;51300:7;:16;51308:7;51300:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;51358:7;51354:2;51339:27;;51348:4;51339:27;;;;;;;;;;;;51379:41;51399:4;51405:2;51409:7;51418:1;51379:19;:41::i;:::-;50165:1263;;;:::o;45441:117::-;45507:7;45534;:16;45542:7;45534:16;;;;;;;;;;;;;;;;;;;;;45527:23;;45441:117;;;:::o;20059:191::-;20133:16;20152:6;;;;;;;;;;;20133:25;;20178:8;20169:6;;:17;;;;;;;;;;;;;;;;;;20233:8;20202:40;;20223:8;20202:40;;;;;;;;;;;;20122:128;20059:191;:::o;60044:204::-;60124:9;60119:124;60143:11;60139:1;:15;60119:124;;;60170:18;:6;:16;:18::i;:::-;60197:38;60207:9;60218:16;:6;:14;:16::i;:::-;60197:9;:38::i;:::-;60156:3;;;;;:::i;:::-;;;;60119:124;;;;60044:204;;:::o;51864:315::-;52019:8;52010:17;;:5;:17;;;;52002:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;52106:8;52068:18;:25;52087:5;52068:25;;;;;;;;;;;;;;;:35;52094:8;52068:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;52152:8;52130:41;;52145:5;52130:41;;;52162:8;52130:41;;;;;;:::i;:::-;;;;;;;;51864:315;;;:::o;45014:313::-;45170:28;45180:4;45186:2;45190:7;45170:9;:28::i;:::-;45217:47;45240:4;45246:2;45250:7;45259:4;45217:22;:47::i;:::-;45209:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;45014:313;;;;:::o;45871:128::-;45936:4;45989:1;45960:31;;:17;45969:7;45960:8;:17::i;:::-;:31;;;;45953:38;;45871:128;;;:::o;60254:104::-;60314:13;60343:9;60336:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60254:104;:::o;14770:716::-;14826:13;14877:14;14914:1;14894:17;14905:5;14894:10;:17::i;:::-;:21;14877:38;;14930:20;14964:6;14953:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14930:41;;14986:11;15115:6;15111:2;15107:15;15099:6;15095:28;15088:35;;15152:288;15159:4;15152:288;;;15184:5;;;;;;;;15326:8;15321:2;15314:5;15310:14;15305:30;15300:3;15292:44;15382:2;15373:11;;;;;;:::i;:::-;;;;;15416:1;15407:5;:10;15403:21;;;15419:5;;15403:21;15152:288;;;15461:6;15454:13;;;;;14770:716;;;:::o;54552:410::-;54742:1;54730:9;:13;54726:229;;;54780:1;54764:18;;:4;:18;;;54760:87;;54822:9;54803;:15;54813:4;54803:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;54760:87;54879:1;54865:16;;:2;:16;;;54861:83;;54919:9;54902;:13;54912:2;54902:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;54861:83;54726:229;54552:410;;;;:::o;55684:158::-;;;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;46772:110::-;46848:26;46858:2;46862:7;46848:26;;;;;;;;;;;;:9;:26::i;:::-;46772:110;;:::o;52967:853::-;53121:4;53142:15;:2;:13;;;:15::i;:::-;53138:675;;;53194:2;53178:36;;;53215:12;:10;:12::i;:::-;53229:4;53235:7;53244:4;53178:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53174:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53436:1;53419:6;:13;:18;53415:328;;;53462:60;;;;;;;;;;:::i;:::-;;;;;;;;53415:328;53693:6;53687:13;53678:6;53674:2;53670:15;53663:38;53174:584;53310:41;;;53300:51;;;:6;:51;;;;53293:58;;;;;53138:675;53797:4;53790:11;;52967:853;;;;;;;:::o;11636:922::-;11689:7;11709:14;11726:1;11709:18;;11776:6;11767:5;:15;11763:102;;11812:6;11803:15;;;;;;:::i;:::-;;;;;11847:2;11837:12;;;;11763:102;11892:6;11883:5;:15;11879:102;;11928:6;11919:15;;;;;;:::i;:::-;;;;;11963:2;11953:12;;;;11879:102;12008:6;11999:5;:15;11995:102;;12044:6;12035:15;;;;;;:::i;:::-;;;;;12079:2;12069:12;;;;11995:102;12124:5;12115;:14;12111:99;;12159:5;12150:14;;;;;;:::i;:::-;;;;;12193:1;12183:11;;;;12111:99;12237:5;12228;:14;12224:99;;12272:5;12263:14;;;;;;:::i;:::-;;;;;12306:1;12296:11;;;;12224:99;12350:5;12341;:14;12337:99;;12385:5;12376:14;;;;;;:::i;:::-;;;;;12419:1;12409:11;;;;12337:99;12463:5;12454;:14;12450:66;;12499:1;12489:11;;;;12450:66;12544:6;12537:13;;;11636:922;;;:::o;47109:319::-;47238:18;47244:2;47248:7;47238:5;:18::i;:::-;47289:53;47320:1;47324:2;47328:7;47337:4;47289:22;:53::i;:::-;47267:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;47109:319;;;:::o;21490:326::-;21550:4;21807:1;21785:7;:19;;;:23;21778:30;;21490:326;;;:::o;47764:942::-;47858:1;47844:16;;:2;:16;;;;47836:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47917:16;47925:7;47917;:16::i;:::-;47916:17;47908:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47979:48;48008:1;48012:2;48016:7;48025:1;47979:20;:48::i;:::-;48126:16;48134:7;48126;:16::i;:::-;48125:17;48117:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48541:1;48524:9;:13;48534:2;48524:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;48585:2;48566:7;:16;48574:7;48566:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;48630:7;48626:2;48605:33;;48622:1;48605:33;;;;;;;;;;;;48651:47;48679:1;48683:2;48687:7;48696:1;48651:19;:47::i;:::-;47764:942;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:::-;13527:3;13548:67;13612:2;13607:3;13548:67;:::i;:::-;13541:74;;13624:93;13713:3;13624:93;:::i;:::-;13742:2;13737:3;13733:12;13726:19;;13385:366;;;:::o;13757:::-;13899:3;13920:67;13984:2;13979:3;13920:67;:::i;:::-;13913:74;;13996:93;14085:3;13996:93;:::i;:::-;14114:2;14109:3;14105:12;14098:19;;13757:366;;;:::o;14129:::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:::-;15015:3;15036:67;15100:2;15095:3;15036:67;:::i;:::-;15029:74;;15112:93;15201:3;15112:93;:::i;:::-;15230:2;15225:3;15221:12;15214:19;;14873:366;;;:::o;15245:::-;15387:3;15408:67;15472:2;15467:3;15408:67;:::i;:::-;15401:74;;15484:93;15573:3;15484:93;:::i;:::-;15602:2;15597:3;15593:12;15586:19;;15245:366;;;:::o;15617:::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:::-;16131:3;16152:67;16216:2;16211:3;16152:67;:::i;:::-;16145:74;;16228:93;16317:3;16228:93;:::i;:::-;16346:2;16341:3;16337:12;16330:19;;15989:366;;;:::o;16361:::-;16503:3;16524:67;16588:2;16583:3;16524:67;:::i;:::-;16517:74;;16600:93;16689:3;16600:93;:::i;:::-;16718:2;16713:3;16709:12;16702:19;;16361:366;;;:::o;16733:398::-;16892:3;16913:83;16994:1;16989:3;16913:83;:::i;:::-;16906:90;;17005:93;17094:3;17005:93;:::i;:::-;17123:1;17118:3;17114:11;17107:18;;16733:398;;;:::o;17137:366::-;17279:3;17300:67;17364:2;17359:3;17300:67;:::i;:::-;17293:74;;17376:93;17465:3;17376:93;:::i;:::-;17494:2;17489:3;17485:12;17478:19;;17137:366;;;:::o;17509:::-;17651:3;17672:67;17736:2;17731:3;17672:67;:::i;:::-;17665:74;;17748:93;17837:3;17748:93;:::i;:::-;17866:2;17861:3;17857:12;17850:19;;17509:366;;;:::o;17881:::-;18023:3;18044:67;18108:2;18103:3;18044:67;:::i;:::-;18037:74;;18120:93;18209:3;18120:93;:::i;:::-;18238:2;18233:3;18229:12;18222:19;;17881:366;;;:::o;18253:::-;18395:3;18416:67;18480:2;18475:3;18416:67;:::i;:::-;18409:74;;18492:93;18581:3;18492:93;:::i;:::-;18610:2;18605:3;18601:12;18594:19;;18253:366;;;:::o;18625:108::-;18702:24;18720:5;18702:24;:::i;:::-;18697:3;18690:37;18625:108;;:::o;18739:118::-;18826:24;18844:5;18826:24;:::i;:::-;18821:3;18814:37;18739:118;;:::o;18863:589::-;19088:3;19110:95;19201:3;19192:6;19110:95;:::i;:::-;19103:102;;19222:95;19313:3;19304:6;19222:95;:::i;:::-;19215:102;;19334:92;19422:3;19413:6;19334:92;:::i;:::-;19327:99;;19443:3;19436:10;;18863:589;;;;;;:::o;19458:379::-;19642:3;19664:147;19807:3;19664:147;:::i;:::-;19657:154;;19828:3;19821:10;;19458:379;;;:::o;19843:222::-;19936:4;19974:2;19963:9;19959:18;19951:26;;19987:71;20055:1;20044:9;20040:17;20031:6;19987:71;:::i;:::-;19843:222;;;;:::o;20071:640::-;20266:4;20304:3;20293:9;20289:19;20281:27;;20318:71;20386:1;20375:9;20371:17;20362:6;20318:71;:::i;:::-;20399:72;20467:2;20456:9;20452:18;20443:6;20399:72;:::i;:::-;20481;20549:2;20538:9;20534:18;20525:6;20481:72;:::i;:::-;20600:9;20594:4;20590:20;20585:2;20574:9;20570:18;20563:48;20628:76;20699:4;20690:6;20628:76;:::i;:::-;20620:84;;20071:640;;;;;;;:::o;20717:373::-;20860:4;20898:2;20887:9;20883:18;20875:26;;20947:9;20941:4;20937:20;20933:1;20922:9;20918:17;20911:47;20975:108;21078:4;21069:6;20975:108;:::i;:::-;20967:116;;20717:373;;;;:::o;21096:210::-;21183:4;21221:2;21210:9;21206:18;21198:26;;21234:65;21296:1;21285:9;21281:17;21272:6;21234:65;:::i;:::-;21096:210;;;;:::o;21312:313::-;21425:4;21463:2;21452:9;21448:18;21440:26;;21512:9;21506:4;21502:20;21498:1;21487:9;21483:17;21476:47;21540:78;21613:4;21604:6;21540:78;:::i;:::-;21532:86;;21312:313;;;;:::o;21631:419::-;21797:4;21835:2;21824:9;21820:18;21812:26;;21884:9;21878:4;21874:20;21870:1;21859:9;21855:17;21848:47;21912:131;22038:4;21912:131;:::i;:::-;21904:139;;21631:419;;;:::o;22056:::-;22222:4;22260:2;22249:9;22245:18;22237:26;;22309:9;22303:4;22299:20;22295:1;22284:9;22280:17;22273:47;22337:131;22463:4;22337:131;:::i;:::-;22329:139;;22056:419;;;:::o;22481:::-;22647:4;22685:2;22674:9;22670:18;22662:26;;22734:9;22728:4;22724:20;22720:1;22709:9;22705:17;22698:47;22762:131;22888:4;22762:131;:::i;:::-;22754:139;;22481:419;;;:::o;22906:::-;23072:4;23110:2;23099:9;23095:18;23087:26;;23159:9;23153:4;23149:20;23145:1;23134:9;23130:17;23123:47;23187:131;23313:4;23187:131;:::i;:::-;23179:139;;22906:419;;;:::o;23331:::-;23497:4;23535:2;23524:9;23520:18;23512:26;;23584:9;23578:4;23574:20;23570:1;23559:9;23555:17;23548:47;23612:131;23738:4;23612:131;:::i;:::-;23604:139;;23331:419;;;:::o;23756:::-;23922:4;23960:2;23949:9;23945:18;23937:26;;24009:9;24003:4;23999:20;23995:1;23984:9;23980:17;23973:47;24037:131;24163:4;24037:131;:::i;:::-;24029:139;;23756:419;;;:::o;24181:::-;24347:4;24385:2;24374:9;24370:18;24362:26;;24434:9;24428:4;24424:20;24420:1;24409:9;24405:17;24398:47;24462:131;24588:4;24462:131;:::i;:::-;24454:139;;24181:419;;;:::o;24606:::-;24772:4;24810:2;24799:9;24795:18;24787:26;;24859:9;24853:4;24849:20;24845:1;24834:9;24830:17;24823:47;24887:131;25013:4;24887:131;:::i;:::-;24879:139;;24606:419;;;:::o;25031:::-;25197:4;25235:2;25224:9;25220:18;25212:26;;25284:9;25278:4;25274:20;25270:1;25259:9;25255:17;25248:47;25312:131;25438:4;25312:131;:::i;:::-;25304:139;;25031:419;;;:::o;25456:::-;25622:4;25660:2;25649:9;25645:18;25637:26;;25709:9;25703:4;25699:20;25695:1;25684:9;25680:17;25673:47;25737:131;25863:4;25737:131;:::i;:::-;25729:139;;25456:419;;;:::o;25881:::-;26047:4;26085:2;26074:9;26070:18;26062:26;;26134:9;26128:4;26124:20;26120:1;26109:9;26105:17;26098:47;26162:131;26288:4;26162:131;:::i;:::-;26154:139;;25881:419;;;:::o;26306:::-;26472:4;26510:2;26499:9;26495:18;26487:26;;26559:9;26553:4;26549:20;26545:1;26534:9;26530:17;26523:47;26587:131;26713:4;26587:131;:::i;:::-;26579:139;;26306:419;;;:::o;26731:::-;26897:4;26935:2;26924:9;26920:18;26912:26;;26984:9;26978:4;26974:20;26970:1;26959:9;26955:17;26948:47;27012:131;27138:4;27012:131;:::i;:::-;27004:139;;26731:419;;;:::o;27156:::-;27322:4;27360:2;27349:9;27345:18;27337:26;;27409:9;27403:4;27399:20;27395:1;27384:9;27380:17;27373:47;27437:131;27563:4;27437:131;:::i;:::-;27429:139;;27156:419;;;:::o;27581:::-;27747:4;27785:2;27774:9;27770:18;27762:26;;27834:9;27828:4;27824:20;27820:1;27809:9;27805:17;27798:47;27862:131;27988:4;27862:131;:::i;:::-;27854:139;;27581:419;;;:::o;28006:::-;28172:4;28210:2;28199:9;28195:18;28187:26;;28259:9;28253:4;28249:20;28245:1;28234:9;28230:17;28223:47;28287:131;28413:4;28287:131;:::i;:::-;28279:139;;28006:419;;;:::o;28431:::-;28597:4;28635:2;28624:9;28620:18;28612:26;;28684:9;28678:4;28674:20;28670:1;28659:9;28655:17;28648:47;28712:131;28838:4;28712:131;:::i;:::-;28704:139;;28431:419;;;:::o;28856:::-;29022:4;29060:2;29049:9;29045:18;29037:26;;29109:9;29103:4;29099:20;29095:1;29084:9;29080:17;29073:47;29137:131;29263:4;29137:131;:::i;:::-;29129:139;;28856:419;;;:::o;29281:::-;29447:4;29485:2;29474:9;29470:18;29462:26;;29534:9;29528:4;29524:20;29520:1;29509:9;29505:17;29498:47;29562:131;29688:4;29562:131;:::i;:::-;29554:139;;29281:419;;;:::o;29706:222::-;29799:4;29837:2;29826:9;29822:18;29814:26;;29850:71;29918:1;29907:9;29903:17;29894:6;29850:71;:::i;:::-;29706:222;;;;:::o;29934:129::-;29968:6;29995:20;;:::i;:::-;29985:30;;30024:33;30052:4;30044:6;30024:33;:::i;:::-;29934:129;;;:::o;30069:75::-;30102:6;30135:2;30129:9;30119:19;;30069:75;:::o;30150:307::-;30211:4;30301:18;30293:6;30290:30;30287:56;;;30323:18;;:::i;:::-;30287:56;30361:29;30383:6;30361:29;:::i;:::-;30353:37;;30445:4;30439;30435:15;30427:23;;30150:307;;;:::o;30463:308::-;30525:4;30615:18;30607:6;30604:30;30601:56;;;30637:18;;:::i;:::-;30601:56;30675:29;30697:6;30675:29;:::i;:::-;30667:37;;30759:4;30753;30749:15;30741:23;;30463:308;;;:::o;30777:132::-;30844:4;30867:3;30859:11;;30897:4;30892:3;30888:14;30880:22;;30777:132;;;:::o;30915:141::-;30964:4;30987:3;30979:11;;31010:3;31007:1;31000:14;31044:4;31041:1;31031:18;31023:26;;30915:141;;;:::o;31062:114::-;31129:6;31163:5;31157:12;31147:22;;31062:114;;;:::o;31182:98::-;31233:6;31267:5;31261:12;31251:22;;31182:98;;;:::o;31286:99::-;31338:6;31372:5;31366:12;31356:22;;31286:99;;;:::o;31391:113::-;31461:4;31493;31488:3;31484:14;31476:22;;31391:113;;;:::o;31510:184::-;31609:11;31643:6;31638:3;31631:19;31683:4;31678:3;31674:14;31659:29;;31510:184;;;;:::o;31700:168::-;31783:11;31817:6;31812:3;31805:19;31857:4;31852:3;31848:14;31833:29;;31700:168;;;;:::o;31874:147::-;31975:11;32012:3;31997:18;;31874:147;;;;:::o;32027:169::-;32111:11;32145:6;32140:3;32133:19;32185:4;32180:3;32176:14;32161:29;;32027:169;;;;:::o;32202:148::-;32304:11;32341:3;32326:18;;32202:148;;;;:::o;32356:305::-;32396:3;32415:20;32433:1;32415:20;:::i;:::-;32410:25;;32449:20;32467:1;32449:20;:::i;:::-;32444:25;;32603:1;32535:66;32531:74;32528:1;32525:81;32522:107;;;32609:18;;:::i;:::-;32522:107;32653:1;32650;32646:9;32639:16;;32356:305;;;;:::o;32667:348::-;32707:7;32730:20;32748:1;32730:20;:::i;:::-;32725:25;;32764:20;32782:1;32764:20;:::i;:::-;32759:25;;32952:1;32884:66;32880:74;32877:1;32874:81;32869:1;32862:9;32855:17;32851:105;32848:131;;;32959:18;;:::i;:::-;32848:131;33007:1;33004;33000:9;32989:20;;32667:348;;;;:::o;33021:191::-;33061:4;33081:20;33099:1;33081:20;:::i;:::-;33076:25;;33115:20;33133:1;33115:20;:::i;:::-;33110:25;;33154:1;33151;33148:8;33145:34;;;33159:18;;:::i;:::-;33145:34;33204:1;33201;33197:9;33189:17;;33021:191;;;;:::o;33218:96::-;33255:7;33284:24;33302:5;33284:24;:::i;:::-;33273:35;;33218:96;;;:::o;33320:90::-;33354:7;33397:5;33390:13;33383:21;33372:32;;33320:90;;;:::o;33416:149::-;33452:7;33492:66;33485:5;33481:78;33470:89;;33416:149;;;:::o;33571:126::-;33608:7;33648:42;33641:5;33637:54;33626:65;;33571:126;;;:::o;33703:77::-;33740:7;33769:5;33758:16;;33703:77;;;:::o;33786:154::-;33870:6;33865:3;33860;33847:30;33932:1;33923:6;33918:3;33914:16;33907:27;33786:154;;;:::o;33946:307::-;34014:1;34024:113;34038:6;34035:1;34032:13;34024:113;;;34123:1;34118:3;34114:11;34108:18;34104:1;34099:3;34095:11;34088:39;34060:2;34057:1;34053:10;34048:15;;34024:113;;;34155:6;34152:1;34149:13;34146:101;;;34235:1;34226:6;34221:3;34217:16;34210:27;34146:101;33995:258;33946:307;;;:::o;34259:320::-;34303:6;34340:1;34334:4;34330:12;34320:22;;34387:1;34381:4;34377:12;34408:18;34398:81;;34464:4;34456:6;34452:17;34442:27;;34398:81;34526:2;34518:6;34515:14;34495:18;34492:38;34489:84;;;34545:18;;:::i;:::-;34489:84;34310:269;34259:320;;;:::o;34585:281::-;34668:27;34690:4;34668:27;:::i;:::-;34660:6;34656:40;34798:6;34786:10;34783:22;34762:18;34750:10;34747:34;34744:62;34741:88;;;34809:18;;:::i;:::-;34741:88;34849:10;34845:2;34838:22;34628:238;34585:281;;:::o;34872:233::-;34911:3;34934:24;34952:5;34934:24;:::i;:::-;34925:33;;34980:66;34973:5;34970:77;34967:103;;;35050:18;;:::i;:::-;34967:103;35097:1;35090:5;35086:13;35079:20;;34872:233;;;:::o;35111:180::-;35159:77;35156:1;35149:88;35256:4;35253:1;35246:15;35280:4;35277:1;35270:15;35297:180;35345:77;35342:1;35335:88;35442:4;35439:1;35432:15;35466:4;35463:1;35456:15;35483:180;35531:77;35528:1;35521:88;35628:4;35625:1;35618:15;35652:4;35649:1;35642:15;35669:180;35717:77;35714:1;35707:88;35814:4;35811:1;35804:15;35838:4;35835:1;35828:15;35855:180;35903:77;35900:1;35893:88;36000:4;35997:1;35990:15;36024:4;36021:1;36014:15;36041:117;36150:1;36147;36140:12;36164:117;36273:1;36270;36263:12;36287:117;36396:1;36393;36386:12;36410:117;36519:1;36516;36509:12;36533:102;36574:6;36625:2;36621:7;36616:2;36609:5;36605:14;36601:28;36591:38;;36533:102;;;:::o;36641:232::-;36781:34;36777:1;36769:6;36765:14;36758:58;36850:15;36845:2;36837:6;36833:15;36826:40;36641:232;:::o;36879:237::-;37019:34;37015:1;37007:6;37003:14;36996:58;37088:20;37083:2;37075:6;37071:15;37064:45;36879:237;:::o;37122:225::-;37262:34;37258:1;37250:6;37246:14;37239:58;37331:8;37326:2;37318:6;37314:15;37307:33;37122:225;:::o;37353:224::-;37493:34;37489:1;37481:6;37477:14;37470:58;37562:7;37557:2;37549:6;37545:15;37538:32;37353:224;:::o;37583:178::-;37723:30;37719:1;37711:6;37707:14;37700:54;37583:178;:::o;37767:170::-;37907:22;37903:1;37895:6;37891:14;37884:46;37767:170;:::o;37943:223::-;38083:34;38079:1;38071:6;38067:14;38060:58;38152:6;38147:2;38139:6;38135:15;38128:31;37943:223;:::o;38172:175::-;38312:27;38308:1;38300:6;38296:14;38289:51;38172:175;:::o;38353:228::-;38493:34;38489:1;38481:6;38477:14;38470:58;38562:11;38557:2;38549:6;38545:15;38538:36;38353:228;:::o;38587:182::-;38727:34;38723:1;38715:6;38711:14;38704:58;38587:182;:::o;38775:::-;38915:34;38911:1;38903:6;38899:14;38892:58;38775:182;:::o;38963:173::-;39103:25;39099:1;39091:6;39087:14;39080:49;38963:173;:::o;39142:234::-;39282:34;39278:1;39270:6;39266:14;39259:58;39351:17;39346:2;39338:6;39334:15;39327:42;39142:234;:::o;39382:174::-;39522:26;39518:1;39510:6;39506:14;39499:50;39382:174;:::o;39562:220::-;39702:34;39698:1;39690:6;39686:14;39679:58;39771:3;39766:2;39758:6;39754:15;39747:28;39562:220;:::o;39788:114::-;;:::o;39908:170::-;40048:22;40044:1;40036:6;40032:14;40025:46;39908:170;:::o;40084:248::-;40224:34;40220:1;40212:6;40208:14;40201:58;40293:31;40288:2;40280:6;40276:15;40269:56;40084:248;:::o;40338:177::-;40478:29;40474:1;40466:6;40462:14;40455:53;40338:177;:::o;40521:169::-;40661:21;40657:1;40649:6;40645:14;40638:45;40521:169;:::o;40696:122::-;40769:24;40787:5;40769:24;:::i;:::-;40762:5;40759:35;40749:63;;40808:1;40805;40798:12;40749:63;40696:122;:::o;40824:116::-;40894:21;40909:5;40894:21;:::i;:::-;40887:5;40884:32;40874:60;;40930:1;40927;40920:12;40874:60;40824:116;:::o;40946:120::-;41018:23;41035:5;41018:23;:::i;:::-;41011:5;41008:34;40998:62;;41056:1;41053;41046:12;40998:62;40946:120;:::o;41072:122::-;41145:24;41163:5;41145:24;:::i;:::-;41138:5;41135:35;41125:63;;41184:1;41181;41174:12;41125:63;41072:122;:::o
Swarm Source
ipfs://7495cf499ca630eed493e1c0c90e11ea50fa6aab0a0752ec506e1f1fc093238a
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.