Overview
TokenID
22
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RoverXEarlyAccess
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-23 */ // File: deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol // SPDX-License-Identifier: MIT // 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: deps/github/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC1155/IERC1155.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch( address[] calldata accounts, uint256[] calldata ids ) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } // File: deps/github/OpenZeppelin/openzeppelin-contracts/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: deps/github/OpenZeppelin/openzeppelin-contracts/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: deps/github/OpenZeppelin/openzeppelin-contracts/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: deps/github/OpenZeppelin/openzeppelin-contracts/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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [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://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.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: deps/github/OpenZeppelin/openzeppelin-contracts/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: deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } } // File: deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/math/SignedMath.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } } // File: deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } } // File: deps/github/OpenZeppelin/openzeppelin-contracts/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: deps/github/OpenZeppelin/openzeppelin-contracts/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: deps/github/OpenZeppelin/openzeppelin-contracts/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: deps/github/OpenZeppelin/openzeppelin-contracts/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: deps/github/OpenZeppelin/openzeppelin-contracts/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: contracts/RoverXEarlyAccess.sol pragma solidity ^0.8.14; contract RoverXEarlyAccess is ERC721, Pausable, Ownable { struct Collab { uint tokenCount; uint endTime; uint[] tokenIds; bool isEnabled; bool isErc721; } using Counters for Counters.Counter; Counters.Counter public lastTokenId; bool allowPublicMint = false; string private _baseUri = ""; mapping(address => bool) whitelist; mapping(address => Collab) collabsByAddress; mapping(address => Counters.Counter) mintByCollab; mapping(address => bool) accessClaimed; event BaseUri(string _from, string _to); error NotWhitelistedAddress(); error OneMintPerWalletAddress(); error CollabError(string errorCode); constructor(string memory baseUri_) ERC721("RoverX Early Access", "RVRXEA") { require(keccak256(abi.encodePacked((baseUri_))) != keccak256(abi.encodePacked((""))), "Base uri cannot be empty"); emit BaseUri(_baseUri, baseUri_); _baseUri = baseUri_; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function setBaseURI(string memory baseUri_) external whenNotPaused onlyOwner { require(keccak256(abi.encodePacked((baseUri_))) != keccak256(abi.encodePacked((""))), "Base uri cannot be empty"); emit BaseUri(_baseUri, baseUri_); _baseUri = baseUri_; } function setPublicMint(bool _allowPublicMint) external whenNotPaused onlyOwner { allowPublicMint = _allowPublicMint; } function whitelistAddresses(address[] calldata addresses) public whenNotPaused onlyOwner { uint addressesLength = addresses.length; for (uint256 i = 0; i < addressesLength; i++) { if (!_isWhitelisted(addresses[i])) { whitelist[addresses[i]] = true; } } } function getCollabByAddress(address _collectionAddress) public view returns (address collectionAddress, uint tokenCount, uint mintCount, uint endTime, uint[] memory ids, bool enabled, bool isErc721) { Collab memory collab = collabsByAddress[_collectionAddress]; return (_collectionAddress, collab.tokenCount, mintByCollab[_collectionAddress].current(), collab.endTime, collab.tokenIds, collab.isEnabled, collab.isErc721); } function upsertCollab(address collectionAddress, uint tokenCount, uint endTime, uint[] calldata tokenIds, bool isEnabled, bool isErc721) public whenNotPaused onlyOwner { collabsByAddress[collectionAddress] = Collab(tokenCount, endTime, tokenIds, isEnabled, isErc721); } function mint(address collectionAddress) public whenNotPaused returns (uint256) { return _mint(collectionAddress, _msgSender()); } function transferEA(address to) public onlyOwner whenNotPaused returns (uint256) { return _mint(address(0), to); } function isEligible(address collectionAddress, address walletAddress) external view returns (bool canMint, string memory errorCode) { if (_isAccessClaimed(walletAddress)) return (false, "RXEA01"); if (allowPublicMint) return (true, ""); if (_isWhitelisted(walletAddress)) return (true, ""); if (collectionAddress == address(0)) return (false, "RXEA02"); bool isCollabMember; (isCollabMember, errorCode) = _isCollabMember(collectionAddress, walletAddress); if (isCollabMember) { return (true, ""); } else { return (false, errorCode); } } function _baseURI() internal view virtual override returns (string memory) { return _baseUri; } function _mint(address _collectionAddress, address _msgSender) private returns (uint256) { if (_isAccessClaimed(_msgSender)) { revert OneMintPerWalletAddress(); } if (!allowPublicMint && !_isWhitelisted(_msgSender)) { if (_collectionAddress != address(0)) { bool isCollabMember; string memory errorCode; (isCollabMember, errorCode) = _isCollabMember(_collectionAddress, _msgSender); if (!isCollabMember) { revert CollabError(errorCode); } mintByCollab[_collectionAddress].increment(); } else { revert NotWhitelistedAddress(); } } lastTokenId.increment(); uint256 id = lastTokenId.current(); accessClaimed[_msgSender] = true; _safeMint(_msgSender, id); return id; } function _isAccessClaimed(address _walletAddress) private view returns (bool) { return accessClaimed[_walletAddress]; } function _isWhitelisted(address _walletAddress) private view returns (bool) { return whitelist[_walletAddress]; } function _isCollabMember(address _collectionAddress, address _walletAddress) private view returns (bool, string memory) { Collab memory collab = collabsByAddress[_collectionAddress]; if (collab.tokenCount == 0 || collab.endTime == 0) return (false, "RXEA03"); if (!_checkCollectionHolding(_collectionAddress, _walletAddress, collab.tokenIds, collab.isErc721)) { return (false, "RXEA04"); } if (mintByCollab[_collectionAddress].current() < collab.tokenCount && block.timestamp < collab.endTime && collab.isEnabled) { return (true, ""); } if (!collab.isEnabled) { return (false, "RXEA07"); } if (block.timestamp >= collab.endTime) { return (false, "RXEA06"); } if (mintByCollab[_collectionAddress].current() >= collab.tokenCount) { return (false, "RXEA05"); } return (false, "RXEA04"); } function _checkCollectionHolding(address _collectionAddress, address _walletAddress, uint[] memory ids, bool isErc721) private view returns (bool) { if (isErc721) { return (IERC721(_collectionAddress).balanceOf(_walletAddress) != 0); } for (uint256 i = 0; i < ids.length; i++) { if (IERC1155(_collectionAddress).balanceOf(_walletAddress, ids[i]) != 0) { return true; } } return false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseUri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"string","name":"errorCode","type":"string"}],"name":"CollabError","type":"error"},{"inputs":[],"name":"NotWhitelistedAddress","type":"error"},{"inputs":[],"name":"OneMintPerWalletAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_from","type":"string"},{"indexed":false,"internalType":"string","name":"_to","type":"string"}],"name":"BaseUri","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_collectionAddress","type":"address"}],"name":"getCollabByAddress","outputs":[{"internalType":"address","name":"collectionAddress","type":"address"},{"internalType":"uint256","name":"tokenCount","type":"uint256"},{"internalType":"uint256","name":"mintCount","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"bool","name":"enabled","type":"bool"},{"internalType":"bool","name":"isErc721","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collectionAddress","type":"address"},{"internalType":"address","name":"walletAddress","type":"address"}],"name":"isEligible","outputs":[{"internalType":"bool","name":"canMint","type":"bool"},{"internalType":"string","name":"errorCode","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTokenId","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collectionAddress","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_allowPublicMint","type":"bool"}],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"transferEA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collectionAddress","type":"address"},{"internalType":"uint256","name":"tokenCount","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"bool","name":"isEnabled","type":"bool"},{"internalType":"bool","name":"isErc721","type":"bool"}],"name":"upsertCollab","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600860006101000a81548160ff02191690831515021790555060405180602001604052806000815250600990816200003f919062000570565b503480156200004d57600080fd5b50604051620050e1380380620050e18339818101604052810190620000739190620007bb565b6040518060400160405280601381526020017f526f76657258204561726c7920416363657373000000000000000000000000008152506040518060400160405280600681526020017f52565258454100000000000000000000000000000000000000000000000000008152508160009081620000f0919062000570565b50806001908162000102919062000570565b5050506000600660006101000a81548160ff02191690831515021790555062000140620001346200022860201b60201c565b6200023060201b60201c565b604051602001620001519062000841565b60405160208183030381529060405280519060200120816040516020016200017a91906200088f565b6040516020818303038152906040528051906020012003620001d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001ca9062000909565b60405180910390fd5b7f9e30389099fbd0cfa7f14f27328e45e857b8d582d70741dde100593ab60d3cc760098260405162000207929190620009fc565b60405180910390a1806009908162000220919062000570565b505062000a37565b600033905090565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200037857607f821691505b6020821081036200038e576200038d62000330565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003f87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003b9565b620004048683620003b9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004516200044b62000445846200041c565b62000426565b6200041c565b9050919050565b6000819050919050565b6200046d8362000430565b620004856200047c8262000458565b848454620003c6565b825550505050565b600090565b6200049c6200048d565b620004a981848462000462565b505050565b5b81811015620004d157620004c560008262000492565b600181019050620004af565b5050565b601f8211156200052057620004ea8162000394565b620004f584620003a9565b8101602085101562000505578190505b6200051d6200051485620003a9565b830182620004ae565b50505b505050565b600082821c905092915050565b6000620005456000198460080262000525565b1980831691505092915050565b600062000560838362000532565b9150826002028217905092915050565b6200057b82620002f6565b67ffffffffffffffff81111562000597576200059662000301565b5b620005a382546200035f565b620005b0828285620004d5565b600060209050601f831160018114620005e85760008415620005d3578287015190505b620005df858262000552565b8655506200064f565b601f198416620005f88662000394565b60005b828110156200062257848901518255600182019150602085019450602081019050620005fb565b868310156200064257848901516200063e601f89168262000532565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620006918262000675565b810181811067ffffffffffffffff82111715620006b357620006b262000301565b5b80604052505050565b6000620006c862000657565b9050620006d6828262000686565b919050565b600067ffffffffffffffff821115620006f957620006f862000301565b5b620007048262000675565b9050602081019050919050565b60005b838110156200073157808201518184015260208101905062000714565b60008484015250505050565b6000620007546200074e84620006db565b620006bc565b90508281526020810184848401111562000773576200077262000670565b5b6200078084828562000711565b509392505050565b600082601f830112620007a0576200079f6200066b565b5b8151620007b28482602086016200073d565b91505092915050565b600060208284031215620007d457620007d362000661565b5b600082015167ffffffffffffffff811115620007f557620007f462000666565b5b620008038482850162000788565b91505092915050565b600081905092915050565b50565b6000620008296000836200080c565b9150620008368262000817565b600082019050919050565b60006200084e826200081a565b9150819050919050565b60006200086582620002f6565b6200087181856200080c565b93506200088381856020860162000711565b80840191505092915050565b60006200089d828462000858565b915081905092915050565b600082825260208201905092915050565b7f42617365207572692063616e6e6f7420626520656d7074790000000000000000600082015250565b6000620008f1601883620008a8565b9150620008fe82620008b9565b602082019050919050565b600060208201905081810360008301526200092481620008e2565b9050919050565b600081546200093a816200035f565b620009468186620008a8565b945060018216600081146200096457600181146200097b57620009b2565b60ff198316865281151560200286019350620009b2565b620009868562000394565b60005b83811015620009aa5781548189015260018201915060208101905062000989565b808801955050505b50505092915050565b6000620009c882620002f6565b620009d48185620008a8565b9350620009e681856020860162000711565b620009f18162000675565b840191505092915050565b6000604082019050818103600083015262000a1881856200092b565b9050818103602083015262000a2e8184620009bb565b90509392505050565b61469a8062000a476000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063b88d4fde11610097578063eae1dd5411610071578063eae1dd54146104db578063f2fde38b14610511578063f3fb9a181461052d578063f84ddf0b1461055e576101c4565b8063b88d4fde1461045f578063c87b56dd1461047b578063e985e9c5146104ab576101c4565b80638da5cb5b116100d35780638da5cb5b146103eb57806395d89b4114610409578063a22cb46514610427578063a2bb662f14610443576101c4565b806370a08231146103a7578063715018a6146103d75780638456cb59146103e1576101c4565b80633f4ba83a1161016657806355f804b31161014057806355f804b31461030d5780635c975abb146103295780636352211e146103475780636a62784214610377576101c4565b80633f4ba83a146102b757806342842e0e146102c15780635337c896146102dd576101c4565b8063095ea7b3116101a2578063095ea7b3146102475780630e2d56cf1461026357806323b872dd1461027f5780632bf043041461029b576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de9190612e23565b61057c565b6040516101f09190612e6b565b60405180910390f35b61020161065e565b60405161020e9190612f16565b60405180910390f35b610231600480360381019061022c9190612f6e565b6106f0565b60405161023e9190612fdc565b60405180910390f35b610261600480360381019061025c9190613023565b610736565b005b61027d6004803603810190610278919061308f565b61084d565b005b610299600480360381019061029491906130bc565b61087a565b005b6102b560048036038101906102b09190613174565b6108da565b005b6102bf6109ca565b005b6102db60048036038101906102d691906130bc565b6109dc565b005b6102f760048036038101906102f291906131c1565b6109fc565b60405161030491906131fd565b60405180910390f35b61032760048036038101906103229190613348565b610a20565b005b610331610b09565b60405161033e9190612e6b565b60405180910390f35b610361600480360381019061035c9190612f6e565b610b20565b60405161036e9190612fdc565b60405180910390f35b610391600480360381019061038c91906131c1565b610ba6565b60405161039e91906131fd565b60405180910390f35b6103c160048036038101906103bc91906131c1565b610bc8565b6040516103ce91906131fd565b60405180910390f35b6103df610c7f565b005b6103e9610c93565b005b6103f3610ca5565b6040516104009190612fdc565b60405180910390f35b610411610ccf565b60405161041e9190612f16565b60405180910390f35b610441600480360381019061043c9190613391565b610d61565b005b61045d60048036038101906104589190613427565b610d77565b005b61047960048036038101906104749190613577565b610eaf565b005b61049560048036038101906104909190612f6e565b610f11565b6040516104a29190612f16565b60405180910390f35b6104c560048036038101906104c091906135fa565b610f79565b6040516104d29190612e6b565b60405180910390f35b6104f560048036038101906104f091906131c1565b61100d565b60405161050897969594939291906136f8565b60405180910390f35b61052b600480360381019061052691906131c1565b611183565b005b610547600480360381019061054291906135fa565b611206565b60405161055592919061376e565b60405180910390f35b61056661136a565b60405161057391906131fd565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610657575061065682611376565b5b9050919050565b60606000805461066d906137cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610699906137cd565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b60006106fb826113e0565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061074182610b20565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a890613870565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107d061142b565b73ffffffffffffffffffffffffffffffffffffffff1614806107ff57506107fe816107f961142b565b610f79565b5b61083e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083590613902565b60405180910390fd5b6108488383611433565b505050565b6108556114ec565b61085d611536565b80600860006101000a81548160ff02191690831515021790555050565b61088b61088561142b565b826115b4565b6108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190613994565b60405180910390fd5b6108d5838383611649565b505050565b6108e26114ec565b6108ea611536565b600082829050905060005b818110156109c45761092d848483818110610913576109126139b4565b5b905060200201602081019061092891906131c1565b611942565b6109b1576001600a600086868581811061094a576109496139b4565b5b905060200201602081019061095f91906131c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80806109bc90613a12565b9150506108f5565b50505050565b6109d2611536565b6109da611998565b565b6109f783838360405180602001604052806000815250610eaf565b505050565b6000610a06611536565b610a0e6114ec565b610a196000836119fb565b9050919050565b610a286114ec565b610a30611536565b604051602001610a3f90613a8b565b6040516020818303038152906040528051906020012081604051602001610a669190613ad1565b6040516020818303038152906040528051906020012003610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390613b34565b60405180910390fd5b7f9e30389099fbd0cfa7f14f27328e45e857b8d582d70741dde100593ab60d3cc7600982604051610aee929190613bed565b60405180910390a18060099081610b059190613dbb565b5050565b6000600660009054906101000a900460ff16905090565b600080610b2c83611bf6565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9490613ed9565b60405180910390fd5b80915050919050565b6000610bb06114ec565b610bc182610bbc61142b565b6119fb565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f90613f6b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c87611536565b610c916000611c33565b565b610c9b611536565b610ca3611cf9565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610cde906137cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0a906137cd565b8015610d575780601f10610d2c57610100808354040283529160200191610d57565b820191906000526020600020905b815481529060010190602001808311610d3a57829003601f168201915b5050505050905090565b610d73610d6c61142b565b8383611d5c565b5050565b610d7f6114ec565b610d87611536565b6040518060a00160405280878152602001868152602001858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505081526020018315158152602001821515815250600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002019080519060200190610e62929190612d4d565b5060608201518160030160006101000a81548160ff02191690831515021790555060808201518160030160016101000a81548160ff02191690831515021790555090505050505050505050565b610ec0610eba61142b565b836115b4565b610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690613994565b60405180910390fd5b610f0b84848484611ec8565b50505050565b6060610f1c826113e0565b6000610f26611f24565b90506000815111610f465760405180602001604052806000815250610f71565b80610f5084611fb6565b604051602001610f61929190613f8b565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008060008060606000806000600b60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282018054806020026020016040519081016040528092919081815260200182805480156110c757602002820191906000526020600020905b8154815260200190600101908083116110b3575b505050505081526020016003820160009054906101000a900460ff161515151581526020016003820160019054906101000a900460ff1615151515815250509050888160000151611155600c60008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612084565b8360200151846040015185606001518660800151975097509750975097509750975050919395979092949650565b61118b611536565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190614021565b60405180910390fd5b61120381611c33565b50565b6000606061121383612092565b156112595760006040518060400160405280600681526020017f525845413031000000000000000000000000000000000000000000000000000081525091509150611363565b600860009054906101000a900460ff16156112895760016040518060200160405280600081525091509150611363565b61129283611942565b156112b25760016040518060200160405280600081525091509150611363565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113275760006040518060400160405280600681526020017f525845413032000000000000000000000000000000000000000000000000000081525091509150611363565b600061133385856120e8565b8093508192505050801561135d576001604051806020016040528060008152509250925050611363565b60009250505b9250929050565b60078060000154905081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6113e98161248e565b611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90613ed9565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114a683610b20565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6114f4610b09565b15611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b9061408d565b60405180910390fd5b565b61153e61142b565b73ffffffffffffffffffffffffffffffffffffffff1661155c610ca5565b73ffffffffffffffffffffffffffffffffffffffff16146115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a9906140f9565b60405180910390fd5b565b6000806115c083610b20565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160257506116018185610f79565b5b8061164057508373ffffffffffffffffffffffffffffffffffffffff16611628846106f0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661166982610b20565b73ffffffffffffffffffffffffffffffffffffffff16146116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b69061418b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361172e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117259061421d565b60405180910390fd5b61173b83838360016124cf565b8273ffffffffffffffffffffffffffffffffffffffff1661175b82610b20565b73ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a89061418b565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461193d83838360016125f5565b505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6119a06125fb565b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6119e461142b565b6040516119f19190612fdc565b60405180910390a1565b6000611a0682612092565b15611a3d576040517f735fd43900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860009054906101000a900460ff16158015611a605750611a5e82611942565b155b15611b7257600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b3f5760006060611aa785856120e8565b809250819350505081611af157806040517fb2938d84000000000000000000000000000000000000000000000000000000008152600401611ae89190612f16565b60405180910390fd5b611b38600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612644565b5050611b71565b6040517f6663d43000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b611b7c6007612644565b6000611b886007612084565b90506001600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611bec838261265a565b8091505092915050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d016114ec565b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d4561142b565b604051611d529190612fdc565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc190614289565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ebb9190612e6b565b60405180910390a3505050565b611ed3848484611649565b611edf84848484612678565b611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f159061431b565b60405180910390fd5b50505050565b606060098054611f33906137cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5f906137cd565b8015611fac5780601f10611f8157610100808354040283529160200191611fac565b820191906000526020600020905b815481529060010190602001808311611f8f57829003601f168201915b5050505050905090565b606060006001611fc5846127ff565b01905060008167ffffffffffffffff811115611fe457611fe361321d565b5b6040519080825280601f01601f1916602001820160405280156120165781602001600182028036833780820191505090505b509050600082602001820190505b600115612079578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161206d5761206c61433b565b5b04945060008503612024575b819350505050919050565b600081600001549050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600060606000600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a001604052908160008201548152602001600182015481526020016002820180548060200260200160405190810160405280929190818152602001828054801561219b57602002820191906000526020600020905b815481526020019060010190808311612187575b505050505081526020016003820160009054906101000a900460ff161515151581526020016003820160019054906101000a900460ff16151515158152505090506000816000015114806121f3575060008160200151145b1561223a5760006040518060400160405280600681526020017f52584541303300000000000000000000000000000000000000000000000000008152509250925050612487565b61224e858583604001518460800151612952565b6122945760006040518060400160405280600681526020017f52584541303400000000000000000000000000000000000000000000000000008152509250925050612487565b80600001516122e0600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612084565b1080156122f05750806020015142105b80156122fd575080606001515b1561231e576001604051806020016040528060008152509250925050612487565b80606001516123695760006040518060400160405280600681526020017f52584541303700000000000000000000000000000000000000000000000000008152509250925050612487565b806020015142106123b65760006040518060400160405280600681526020017f52584541303600000000000000000000000000000000000000000000000000008152509250925050612487565b8060000151612402600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612084565b106124495760006040518060400160405280600681526020017f52584541303500000000000000000000000000000000000000000000000000008152509250925050612487565b60006040518060400160405280600681526020017f525845413034000000000000000000000000000000000000000000000000000081525092509250505b9250929050565b60008073ffffffffffffffffffffffffffffffffffffffff166124b083611bf6565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60018111156125ef57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146125635780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461255b919061436a565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125ee5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125e6919061439e565b925050819055505b5b50505050565b50505050565b612603610b09565b612642576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126399061441e565b60405180910390fd5b565b6001816000016000828254019250508190555050565b612674828260405180602001604052806000815250612ab2565b5050565b60006126998473ffffffffffffffffffffffffffffffffffffffff16612b0d565b156127f2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126c261142b565b8786866040518563ffffffff1660e01b81526004016126e49493929190614493565b6020604051808303816000875af192505050801561272057506040513d601f19601f8201168201806040525081019061271d91906144f4565b60015b6127a2573d8060008114612750576040519150601f19603f3d011682016040523d82523d6000602084013e612755565b606091505b50600081510361279a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127919061431b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f7565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061285d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816128535761285261433b565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061289a576d04ee2d6d415b85acef810000000083816128905761288f61433b565b5b0492506020810190505b662386f26fc1000083106128c957662386f26fc1000083816128bf576128be61433b565b5b0492506010810190505b6305f5e10083106128f2576305f5e10083816128e8576128e761433b565b5b0492506008810190505b612710831061291757612710838161290d5761290c61433b565b5b0492506004810190505b6064831061293a57606483816129305761292f61433b565b5b0492506002810190505b600a8310612949576001810190505b80915050919050565b600081156129df5760008573ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b81526004016129959190612fdc565b602060405180830381865afa1580156129b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d69190614536565b14159050612aaa565b60005b8351811015612aa45760008673ffffffffffffffffffffffffffffffffffffffff1662fdd58e87878581518110612a1c57612a1b6139b4565b5b60200260200101516040518363ffffffff1660e01b8152600401612a41929190614563565b602060405180830381865afa158015612a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a829190614536565b14612a91576001915050612aaa565b8080612a9c90613a12565b9150506129e2565b50600090505b949350505050565b612abc8383612b30565b612ac96000848484612678565b612b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aff9061431b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b96906145d8565b60405180910390fd5b612ba88161248e565b15612be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdf90614644565b60405180910390fd5b612bf66000838360016124cf565b612bff8161248e565b15612c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3690614644565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d496000838360016125f5565b5050565b828054828255906000526020600020908101928215612d89579160200282015b82811115612d88578251825591602001919060010190612d6d565b5b509050612d969190612d9a565b5090565b5b80821115612db3576000816000905550600101612d9b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e0081612dcb565b8114612e0b57600080fd5b50565b600081359050612e1d81612df7565b92915050565b600060208284031215612e3957612e38612dc1565b5b6000612e4784828501612e0e565b91505092915050565b60008115159050919050565b612e6581612e50565b82525050565b6000602082019050612e806000830184612e5c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ec0578082015181840152602081019050612ea5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ee882612e86565b612ef28185612e91565b9350612f02818560208601612ea2565b612f0b81612ecc565b840191505092915050565b60006020820190508181036000830152612f308184612edd565b905092915050565b6000819050919050565b612f4b81612f38565b8114612f5657600080fd5b50565b600081359050612f6881612f42565b92915050565b600060208284031215612f8457612f83612dc1565b5b6000612f9284828501612f59565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fc682612f9b565b9050919050565b612fd681612fbb565b82525050565b6000602082019050612ff16000830184612fcd565b92915050565b61300081612fbb565b811461300b57600080fd5b50565b60008135905061301d81612ff7565b92915050565b6000806040838503121561303a57613039612dc1565b5b60006130488582860161300e565b925050602061305985828601612f59565b9150509250929050565b61306c81612e50565b811461307757600080fd5b50565b60008135905061308981613063565b92915050565b6000602082840312156130a5576130a4612dc1565b5b60006130b38482850161307a565b91505092915050565b6000806000606084860312156130d5576130d4612dc1565b5b60006130e38682870161300e565b93505060206130f48682870161300e565b925050604061310586828701612f59565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126131345761313361310f565b5b8235905067ffffffffffffffff81111561315157613150613114565b5b60208301915083602082028301111561316d5761316c613119565b5b9250929050565b6000806020838503121561318b5761318a612dc1565b5b600083013567ffffffffffffffff8111156131a9576131a8612dc6565b5b6131b58582860161311e565b92509250509250929050565b6000602082840312156131d7576131d6612dc1565b5b60006131e58482850161300e565b91505092915050565b6131f781612f38565b82525050565b600060208201905061321260008301846131ee565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61325582612ecc565b810181811067ffffffffffffffff821117156132745761327361321d565b5b80604052505050565b6000613287612db7565b9050613293828261324c565b919050565b600067ffffffffffffffff8211156132b3576132b261321d565b5b6132bc82612ecc565b9050602081019050919050565b82818337600083830152505050565b60006132eb6132e684613298565b61327d565b90508281526020810184848401111561330757613306613218565b5b6133128482856132c9565b509392505050565b600082601f83011261332f5761332e61310f565b5b813561333f8482602086016132d8565b91505092915050565b60006020828403121561335e5761335d612dc1565b5b600082013567ffffffffffffffff81111561337c5761337b612dc6565b5b6133888482850161331a565b91505092915050565b600080604083850312156133a8576133a7612dc1565b5b60006133b68582860161300e565b92505060206133c78582860161307a565b9150509250929050565b60008083601f8401126133e7576133e661310f565b5b8235905067ffffffffffffffff81111561340457613403613114565b5b6020830191508360208202830111156134205761341f613119565b5b9250929050565b600080600080600080600060c0888a03121561344657613445612dc1565b5b60006134548a828b0161300e565b97505060206134658a828b01612f59565b96505060406134768a828b01612f59565b955050606088013567ffffffffffffffff81111561349757613496612dc6565b5b6134a38a828b016133d1565b945094505060806134b68a828b0161307a565b92505060a06134c78a828b0161307a565b91505092959891949750929550565b600067ffffffffffffffff8211156134f1576134f061321d565b5b6134fa82612ecc565b9050602081019050919050565b600061351a613515846134d6565b61327d565b90508281526020810184848401111561353657613535613218565b5b6135418482856132c9565b509392505050565b600082601f83011261355e5761355d61310f565b5b813561356e848260208601613507565b91505092915050565b6000806000806080858703121561359157613590612dc1565b5b600061359f8782880161300e565b94505060206135b08782880161300e565b93505060406135c187828801612f59565b925050606085013567ffffffffffffffff8111156135e2576135e1612dc6565b5b6135ee87828801613549565b91505092959194509250565b6000806040838503121561361157613610612dc1565b5b600061361f8582860161300e565b92505060206136308582860161300e565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61366f81612f38565b82525050565b60006136818383613666565b60208301905092915050565b6000602082019050919050565b60006136a58261363a565b6136af8185613645565b93506136ba83613656565b8060005b838110156136eb5781516136d28882613675565b97506136dd8361368d565b9250506001810190506136be565b5085935050505092915050565b600060e08201905061370d600083018a612fcd565b61371a60208301896131ee565b61372760408301886131ee565b61373460608301876131ee565b8181036080830152613746818661369a565b905061375560a0830185612e5c565b61376260c0830184612e5c565b98975050505050505050565b60006040820190506137836000830185612e5c565b81810360208301526137958184612edd565b90509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137e557607f821691505b6020821081036137f8576137f761379e565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061385a602183612e91565b9150613865826137fe565b604082019050919050565b600060208201905081810360008301526138898161384d565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006138ec603d83612e91565b91506138f782613890565b604082019050919050565b6000602082019050818103600083015261391b816138df565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061397e602d83612e91565b915061398982613922565b604082019050919050565b600060208201905081810360008301526139ad81613971565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a1d82612f38565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a4f57613a4e6139e3565b5b600182019050919050565b600081905092915050565b50565b6000613a75600083613a5a565b9150613a8082613a65565b600082019050919050565b6000613a9682613a68565b9150819050919050565b6000613aab82612e86565b613ab58185613a5a565b9350613ac5818560208601612ea2565b80840191505092915050565b6000613add8284613aa0565b915081905092915050565b7f42617365207572692063616e6e6f7420626520656d7074790000000000000000600082015250565b6000613b1e601883612e91565b9150613b2982613ae8565b602082019050919050565b60006020820190508181036000830152613b4d81613b11565b9050919050565b60008190508160005260206000209050919050565b60008154613b76816137cd565b613b808186612e91565b94506001821660008114613b9b5760018114613bb157613be4565b60ff198316865281151560200286019350613be4565b613bba85613b54565b60005b83811015613bdc57815481890152600182019150602081019050613bbd565b808801955050505b50505092915050565b60006040820190508181036000830152613c078185613b69565b90508181036020830152613c1b8184612edd565b90509392505050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613c717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c34565b613c7b8683613c34565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613cb8613cb3613cae84612f38565b613c93565b612f38565b9050919050565b6000819050919050565b613cd283613c9d565b613ce6613cde82613cbf565b848454613c41565b825550505050565b600090565b613cfb613cee565b613d06818484613cc9565b505050565b5b81811015613d2a57613d1f600082613cf3565b600181019050613d0c565b5050565b601f821115613d6f57613d4081613b54565b613d4984613c24565b81016020851015613d58578190505b613d6c613d6485613c24565b830182613d0b565b50505b505050565b600082821c905092915050565b6000613d9260001984600802613d74565b1980831691505092915050565b6000613dab8383613d81565b9150826002028217905092915050565b613dc482612e86565b67ffffffffffffffff811115613ddd57613ddc61321d565b5b613de782546137cd565b613df2828285613d2e565b600060209050601f831160018114613e255760008415613e13578287015190505b613e1d8582613d9f565b865550613e85565b601f198416613e3386613b54565b60005b82811015613e5b57848901518255600182019150602085019450602081019050613e36565b86831015613e785784890151613e74601f891682613d81565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613ec3601883612e91565b9150613ece82613e8d565b602082019050919050565b60006020820190508181036000830152613ef281613eb6565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613f55602983612e91565b9150613f6082613ef9565b604082019050919050565b60006020820190508181036000830152613f8481613f48565b9050919050565b6000613f978285613aa0565b9150613fa38284613aa0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061400b602683612e91565b915061401682613faf565b604082019050919050565b6000602082019050818103600083015261403a81613ffe565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614077601083612e91565b915061408282614041565b602082019050919050565b600060208201905081810360008301526140a68161406a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140e3602083612e91565b91506140ee826140ad565b602082019050919050565b60006020820190508181036000830152614112816140d6565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614175602583612e91565b915061418082614119565b604082019050919050565b600060208201905081810360008301526141a481614168565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614207602483612e91565b9150614212826141ab565b604082019050919050565b60006020820190508181036000830152614236816141fa565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614273601983612e91565b915061427e8261423d565b602082019050919050565b600060208201905081810360008301526142a281614266565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614305603283612e91565b9150614310826142a9565b604082019050919050565b60006020820190508181036000830152614334816142f8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061437582612f38565b915061438083612f38565b9250828203905081811115614398576143976139e3565b5b92915050565b60006143a982612f38565b91506143b483612f38565b92508282019050808211156143cc576143cb6139e3565b5b92915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614408601483612e91565b9150614413826143d2565b602082019050919050565b60006020820190508181036000830152614437816143fb565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006144658261443e565b61446f8185614449565b935061447f818560208601612ea2565b61448881612ecc565b840191505092915050565b60006080820190506144a86000830187612fcd565b6144b56020830186612fcd565b6144c260408301856131ee565b81810360608301526144d4818461445a565b905095945050505050565b6000815190506144ee81612df7565b92915050565b60006020828403121561450a57614509612dc1565b5b6000614518848285016144df565b91505092915050565b60008151905061453081612f42565b92915050565b60006020828403121561454c5761454b612dc1565b5b600061455a84828501614521565b91505092915050565b60006040820190506145786000830185612fcd565b61458560208301846131ee565b9392505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006145c2602083612e91565b91506145cd8261458c565b602082019050919050565b600060208201905081810360008301526145f1816145b5565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061462e601c83612e91565b9150614639826145f8565b602082019050919050565b6000602082019050818103600083015261465d81614621565b905091905056fea2646970667358221220dce7cdd7d35004ead51f0496a09872d1c6ec7893f1011b90fff3c7512eab593b64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5479366f3145597977594559356e515543464b5668345436664c527445477963526e416552623764375a6a332f00000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063b88d4fde11610097578063eae1dd5411610071578063eae1dd54146104db578063f2fde38b14610511578063f3fb9a181461052d578063f84ddf0b1461055e576101c4565b8063b88d4fde1461045f578063c87b56dd1461047b578063e985e9c5146104ab576101c4565b80638da5cb5b116100d35780638da5cb5b146103eb57806395d89b4114610409578063a22cb46514610427578063a2bb662f14610443576101c4565b806370a08231146103a7578063715018a6146103d75780638456cb59146103e1576101c4565b80633f4ba83a1161016657806355f804b31161014057806355f804b31461030d5780635c975abb146103295780636352211e146103475780636a62784214610377576101c4565b80633f4ba83a146102b757806342842e0e146102c15780635337c896146102dd576101c4565b8063095ea7b3116101a2578063095ea7b3146102475780630e2d56cf1461026357806323b872dd1461027f5780632bf043041461029b576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de9190612e23565b61057c565b6040516101f09190612e6b565b60405180910390f35b61020161065e565b60405161020e9190612f16565b60405180910390f35b610231600480360381019061022c9190612f6e565b6106f0565b60405161023e9190612fdc565b60405180910390f35b610261600480360381019061025c9190613023565b610736565b005b61027d6004803603810190610278919061308f565b61084d565b005b610299600480360381019061029491906130bc565b61087a565b005b6102b560048036038101906102b09190613174565b6108da565b005b6102bf6109ca565b005b6102db60048036038101906102d691906130bc565b6109dc565b005b6102f760048036038101906102f291906131c1565b6109fc565b60405161030491906131fd565b60405180910390f35b61032760048036038101906103229190613348565b610a20565b005b610331610b09565b60405161033e9190612e6b565b60405180910390f35b610361600480360381019061035c9190612f6e565b610b20565b60405161036e9190612fdc565b60405180910390f35b610391600480360381019061038c91906131c1565b610ba6565b60405161039e91906131fd565b60405180910390f35b6103c160048036038101906103bc91906131c1565b610bc8565b6040516103ce91906131fd565b60405180910390f35b6103df610c7f565b005b6103e9610c93565b005b6103f3610ca5565b6040516104009190612fdc565b60405180910390f35b610411610ccf565b60405161041e9190612f16565b60405180910390f35b610441600480360381019061043c9190613391565b610d61565b005b61045d60048036038101906104589190613427565b610d77565b005b61047960048036038101906104749190613577565b610eaf565b005b61049560048036038101906104909190612f6e565b610f11565b6040516104a29190612f16565b60405180910390f35b6104c560048036038101906104c091906135fa565b610f79565b6040516104d29190612e6b565b60405180910390f35b6104f560048036038101906104f091906131c1565b61100d565b60405161050897969594939291906136f8565b60405180910390f35b61052b600480360381019061052691906131c1565b611183565b005b610547600480360381019061054291906135fa565b611206565b60405161055592919061376e565b60405180910390f35b61056661136a565b60405161057391906131fd565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610657575061065682611376565b5b9050919050565b60606000805461066d906137cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610699906137cd565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b60006106fb826113e0565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061074182610b20565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a890613870565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107d061142b565b73ffffffffffffffffffffffffffffffffffffffff1614806107ff57506107fe816107f961142b565b610f79565b5b61083e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083590613902565b60405180910390fd5b6108488383611433565b505050565b6108556114ec565b61085d611536565b80600860006101000a81548160ff02191690831515021790555050565b61088b61088561142b565b826115b4565b6108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190613994565b60405180910390fd5b6108d5838383611649565b505050565b6108e26114ec565b6108ea611536565b600082829050905060005b818110156109c45761092d848483818110610913576109126139b4565b5b905060200201602081019061092891906131c1565b611942565b6109b1576001600a600086868581811061094a576109496139b4565b5b905060200201602081019061095f91906131c1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80806109bc90613a12565b9150506108f5565b50505050565b6109d2611536565b6109da611998565b565b6109f783838360405180602001604052806000815250610eaf565b505050565b6000610a06611536565b610a0e6114ec565b610a196000836119fb565b9050919050565b610a286114ec565b610a30611536565b604051602001610a3f90613a8b565b6040516020818303038152906040528051906020012081604051602001610a669190613ad1565b6040516020818303038152906040528051906020012003610abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab390613b34565b60405180910390fd5b7f9e30389099fbd0cfa7f14f27328e45e857b8d582d70741dde100593ab60d3cc7600982604051610aee929190613bed565b60405180910390a18060099081610b059190613dbb565b5050565b6000600660009054906101000a900460ff16905090565b600080610b2c83611bf6565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9490613ed9565b60405180910390fd5b80915050919050565b6000610bb06114ec565b610bc182610bbc61142b565b6119fb565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f90613f6b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c87611536565b610c916000611c33565b565b610c9b611536565b610ca3611cf9565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610cde906137cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0a906137cd565b8015610d575780601f10610d2c57610100808354040283529160200191610d57565b820191906000526020600020905b815481529060010190602001808311610d3a57829003601f168201915b5050505050905090565b610d73610d6c61142b565b8383611d5c565b5050565b610d7f6114ec565b610d87611536565b6040518060a00160405280878152602001868152602001858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505081526020018315158152602001821515815250600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101556040820151816002019080519060200190610e62929190612d4d565b5060608201518160030160006101000a81548160ff02191690831515021790555060808201518160030160016101000a81548160ff02191690831515021790555090505050505050505050565b610ec0610eba61142b565b836115b4565b610eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef690613994565b60405180910390fd5b610f0b84848484611ec8565b50505050565b6060610f1c826113e0565b6000610f26611f24565b90506000815111610f465760405180602001604052806000815250610f71565b80610f5084611fb6565b604051602001610f61929190613f8b565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008060008060606000806000600b60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282018054806020026020016040519081016040528092919081815260200182805480156110c757602002820191906000526020600020905b8154815260200190600101908083116110b3575b505050505081526020016003820160009054906101000a900460ff161515151581526020016003820160019054906101000a900460ff1615151515815250509050888160000151611155600c60008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612084565b8360200151846040015185606001518660800151975097509750975097509750975050919395979092949650565b61118b611536565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190614021565b60405180910390fd5b61120381611c33565b50565b6000606061121383612092565b156112595760006040518060400160405280600681526020017f525845413031000000000000000000000000000000000000000000000000000081525091509150611363565b600860009054906101000a900460ff16156112895760016040518060200160405280600081525091509150611363565b61129283611942565b156112b25760016040518060200160405280600081525091509150611363565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113275760006040518060400160405280600681526020017f525845413032000000000000000000000000000000000000000000000000000081525091509150611363565b600061133385856120e8565b8093508192505050801561135d576001604051806020016040528060008152509250925050611363565b60009250505b9250929050565b60078060000154905081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6113e98161248e565b611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f90613ed9565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166114a683610b20565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6114f4610b09565b15611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b9061408d565b60405180910390fd5b565b61153e61142b565b73ffffffffffffffffffffffffffffffffffffffff1661155c610ca5565b73ffffffffffffffffffffffffffffffffffffffff16146115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a9906140f9565b60405180910390fd5b565b6000806115c083610b20565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061160257506116018185610f79565b5b8061164057508373ffffffffffffffffffffffffffffffffffffffff16611628846106f0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661166982610b20565b73ffffffffffffffffffffffffffffffffffffffff16146116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b69061418b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361172e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117259061421d565b60405180910390fd5b61173b83838360016124cf565b8273ffffffffffffffffffffffffffffffffffffffff1661175b82610b20565b73ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a89061418b565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461193d83838360016125f5565b505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6119a06125fb565b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6119e461142b565b6040516119f19190612fdc565b60405180910390a1565b6000611a0682612092565b15611a3d576040517f735fd43900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600860009054906101000a900460ff16158015611a605750611a5e82611942565b155b15611b7257600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b3f5760006060611aa785856120e8565b809250819350505081611af157806040517fb2938d84000000000000000000000000000000000000000000000000000000008152600401611ae89190612f16565b60405180910390fd5b611b38600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612644565b5050611b71565b6040517f6663d43000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b611b7c6007612644565b6000611b886007612084565b90506001600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611bec838261265a565b8091505092915050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d016114ec565b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d4561142b565b604051611d529190612fdc565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc190614289565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ebb9190612e6b565b60405180910390a3505050565b611ed3848484611649565b611edf84848484612678565b611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f159061431b565b60405180910390fd5b50505050565b606060098054611f33906137cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5f906137cd565b8015611fac5780601f10611f8157610100808354040283529160200191611fac565b820191906000526020600020905b815481529060010190602001808311611f8f57829003601f168201915b5050505050905090565b606060006001611fc5846127ff565b01905060008167ffffffffffffffff811115611fe457611fe361321d565b5b6040519080825280601f01601f1916602001820160405280156120165781602001600182028036833780820191505090505b509050600082602001820190505b600115612079578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161206d5761206c61433b565b5b04945060008503612024575b819350505050919050565b600081600001549050919050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600060606000600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a001604052908160008201548152602001600182015481526020016002820180548060200260200160405190810160405280929190818152602001828054801561219b57602002820191906000526020600020905b815481526020019060010190808311612187575b505050505081526020016003820160009054906101000a900460ff161515151581526020016003820160019054906101000a900460ff16151515158152505090506000816000015114806121f3575060008160200151145b1561223a5760006040518060400160405280600681526020017f52584541303300000000000000000000000000000000000000000000000000008152509250925050612487565b61224e858583604001518460800151612952565b6122945760006040518060400160405280600681526020017f52584541303400000000000000000000000000000000000000000000000000008152509250925050612487565b80600001516122e0600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612084565b1080156122f05750806020015142105b80156122fd575080606001515b1561231e576001604051806020016040528060008152509250925050612487565b80606001516123695760006040518060400160405280600681526020017f52584541303700000000000000000000000000000000000000000000000000008152509250925050612487565b806020015142106123b65760006040518060400160405280600681526020017f52584541303600000000000000000000000000000000000000000000000000008152509250925050612487565b8060000151612402600c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612084565b106124495760006040518060400160405280600681526020017f52584541303500000000000000000000000000000000000000000000000000008152509250925050612487565b60006040518060400160405280600681526020017f525845413034000000000000000000000000000000000000000000000000000081525092509250505b9250929050565b60008073ffffffffffffffffffffffffffffffffffffffff166124b083611bf6565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60018111156125ef57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146125635780600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461255b919061436a565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125ee5780600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125e6919061439e565b925050819055505b5b50505050565b50505050565b612603610b09565b612642576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126399061441e565b60405180910390fd5b565b6001816000016000828254019250508190555050565b612674828260405180602001604052806000815250612ab2565b5050565b60006126998473ffffffffffffffffffffffffffffffffffffffff16612b0d565b156127f2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126c261142b565b8786866040518563ffffffff1660e01b81526004016126e49493929190614493565b6020604051808303816000875af192505050801561272057506040513d601f19601f8201168201806040525081019061271d91906144f4565b60015b6127a2573d8060008114612750576040519150601f19603f3d011682016040523d82523d6000602084013e612755565b606091505b50600081510361279a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127919061431b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f7565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061285d577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816128535761285261433b565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061289a576d04ee2d6d415b85acef810000000083816128905761288f61433b565b5b0492506020810190505b662386f26fc1000083106128c957662386f26fc1000083816128bf576128be61433b565b5b0492506010810190505b6305f5e10083106128f2576305f5e10083816128e8576128e761433b565b5b0492506008810190505b612710831061291757612710838161290d5761290c61433b565b5b0492506004810190505b6064831061293a57606483816129305761292f61433b565b5b0492506002810190505b600a8310612949576001810190505b80915050919050565b600081156129df5760008573ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b81526004016129959190612fdc565b602060405180830381865afa1580156129b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d69190614536565b14159050612aaa565b60005b8351811015612aa45760008673ffffffffffffffffffffffffffffffffffffffff1662fdd58e87878581518110612a1c57612a1b6139b4565b5b60200260200101516040518363ffffffff1660e01b8152600401612a41929190614563565b602060405180830381865afa158015612a5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a829190614536565b14612a91576001915050612aaa565b8080612a9c90613a12565b9150506129e2565b50600090505b949350505050565b612abc8383612b30565b612ac96000848484612678565b612b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aff9061431b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b96906145d8565b60405180910390fd5b612ba88161248e565b15612be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdf90614644565b60405180910390fd5b612bf66000838360016124cf565b612bff8161248e565b15612c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3690614644565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d496000838360016125f5565b5050565b828054828255906000526020600020908101928215612d89579160200282015b82811115612d88578251825591602001919060010190612d6d565b5b509050612d969190612d9a565b5090565b5b80821115612db3576000816000905550600101612d9b565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e0081612dcb565b8114612e0b57600080fd5b50565b600081359050612e1d81612df7565b92915050565b600060208284031215612e3957612e38612dc1565b5b6000612e4784828501612e0e565b91505092915050565b60008115159050919050565b612e6581612e50565b82525050565b6000602082019050612e806000830184612e5c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ec0578082015181840152602081019050612ea5565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ee882612e86565b612ef28185612e91565b9350612f02818560208601612ea2565b612f0b81612ecc565b840191505092915050565b60006020820190508181036000830152612f308184612edd565b905092915050565b6000819050919050565b612f4b81612f38565b8114612f5657600080fd5b50565b600081359050612f6881612f42565b92915050565b600060208284031215612f8457612f83612dc1565b5b6000612f9284828501612f59565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fc682612f9b565b9050919050565b612fd681612fbb565b82525050565b6000602082019050612ff16000830184612fcd565b92915050565b61300081612fbb565b811461300b57600080fd5b50565b60008135905061301d81612ff7565b92915050565b6000806040838503121561303a57613039612dc1565b5b60006130488582860161300e565b925050602061305985828601612f59565b9150509250929050565b61306c81612e50565b811461307757600080fd5b50565b60008135905061308981613063565b92915050565b6000602082840312156130a5576130a4612dc1565b5b60006130b38482850161307a565b91505092915050565b6000806000606084860312156130d5576130d4612dc1565b5b60006130e38682870161300e565b93505060206130f48682870161300e565b925050604061310586828701612f59565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126131345761313361310f565b5b8235905067ffffffffffffffff81111561315157613150613114565b5b60208301915083602082028301111561316d5761316c613119565b5b9250929050565b6000806020838503121561318b5761318a612dc1565b5b600083013567ffffffffffffffff8111156131a9576131a8612dc6565b5b6131b58582860161311e565b92509250509250929050565b6000602082840312156131d7576131d6612dc1565b5b60006131e58482850161300e565b91505092915050565b6131f781612f38565b82525050565b600060208201905061321260008301846131ee565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61325582612ecc565b810181811067ffffffffffffffff821117156132745761327361321d565b5b80604052505050565b6000613287612db7565b9050613293828261324c565b919050565b600067ffffffffffffffff8211156132b3576132b261321d565b5b6132bc82612ecc565b9050602081019050919050565b82818337600083830152505050565b60006132eb6132e684613298565b61327d565b90508281526020810184848401111561330757613306613218565b5b6133128482856132c9565b509392505050565b600082601f83011261332f5761332e61310f565b5b813561333f8482602086016132d8565b91505092915050565b60006020828403121561335e5761335d612dc1565b5b600082013567ffffffffffffffff81111561337c5761337b612dc6565b5b6133888482850161331a565b91505092915050565b600080604083850312156133a8576133a7612dc1565b5b60006133b68582860161300e565b92505060206133c78582860161307a565b9150509250929050565b60008083601f8401126133e7576133e661310f565b5b8235905067ffffffffffffffff81111561340457613403613114565b5b6020830191508360208202830111156134205761341f613119565b5b9250929050565b600080600080600080600060c0888a03121561344657613445612dc1565b5b60006134548a828b0161300e565b97505060206134658a828b01612f59565b96505060406134768a828b01612f59565b955050606088013567ffffffffffffffff81111561349757613496612dc6565b5b6134a38a828b016133d1565b945094505060806134b68a828b0161307a565b92505060a06134c78a828b0161307a565b91505092959891949750929550565b600067ffffffffffffffff8211156134f1576134f061321d565b5b6134fa82612ecc565b9050602081019050919050565b600061351a613515846134d6565b61327d565b90508281526020810184848401111561353657613535613218565b5b6135418482856132c9565b509392505050565b600082601f83011261355e5761355d61310f565b5b813561356e848260208601613507565b91505092915050565b6000806000806080858703121561359157613590612dc1565b5b600061359f8782880161300e565b94505060206135b08782880161300e565b93505060406135c187828801612f59565b925050606085013567ffffffffffffffff8111156135e2576135e1612dc6565b5b6135ee87828801613549565b91505092959194509250565b6000806040838503121561361157613610612dc1565b5b600061361f8582860161300e565b92505060206136308582860161300e565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61366f81612f38565b82525050565b60006136818383613666565b60208301905092915050565b6000602082019050919050565b60006136a58261363a565b6136af8185613645565b93506136ba83613656565b8060005b838110156136eb5781516136d28882613675565b97506136dd8361368d565b9250506001810190506136be565b5085935050505092915050565b600060e08201905061370d600083018a612fcd565b61371a60208301896131ee565b61372760408301886131ee565b61373460608301876131ee565b8181036080830152613746818661369a565b905061375560a0830185612e5c565b61376260c0830184612e5c565b98975050505050505050565b60006040820190506137836000830185612e5c565b81810360208301526137958184612edd565b90509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806137e557607f821691505b6020821081036137f8576137f761379e565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061385a602183612e91565b9150613865826137fe565b604082019050919050565b600060208201905081810360008301526138898161384d565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b60006138ec603d83612e91565b91506138f782613890565b604082019050919050565b6000602082019050818103600083015261391b816138df565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b600061397e602d83612e91565b915061398982613922565b604082019050919050565b600060208201905081810360008301526139ad81613971565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a1d82612f38565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a4f57613a4e6139e3565b5b600182019050919050565b600081905092915050565b50565b6000613a75600083613a5a565b9150613a8082613a65565b600082019050919050565b6000613a9682613a68565b9150819050919050565b6000613aab82612e86565b613ab58185613a5a565b9350613ac5818560208601612ea2565b80840191505092915050565b6000613add8284613aa0565b915081905092915050565b7f42617365207572692063616e6e6f7420626520656d7074790000000000000000600082015250565b6000613b1e601883612e91565b9150613b2982613ae8565b602082019050919050565b60006020820190508181036000830152613b4d81613b11565b9050919050565b60008190508160005260206000209050919050565b60008154613b76816137cd565b613b808186612e91565b94506001821660008114613b9b5760018114613bb157613be4565b60ff198316865281151560200286019350613be4565b613bba85613b54565b60005b83811015613bdc57815481890152600182019150602081019050613bbd565b808801955050505b50505092915050565b60006040820190508181036000830152613c078185613b69565b90508181036020830152613c1b8184612edd565b90509392505050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613c717fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613c34565b613c7b8683613c34565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613cb8613cb3613cae84612f38565b613c93565b612f38565b9050919050565b6000819050919050565b613cd283613c9d565b613ce6613cde82613cbf565b848454613c41565b825550505050565b600090565b613cfb613cee565b613d06818484613cc9565b505050565b5b81811015613d2a57613d1f600082613cf3565b600181019050613d0c565b5050565b601f821115613d6f57613d4081613b54565b613d4984613c24565b81016020851015613d58578190505b613d6c613d6485613c24565b830182613d0b565b50505b505050565b600082821c905092915050565b6000613d9260001984600802613d74565b1980831691505092915050565b6000613dab8383613d81565b9150826002028217905092915050565b613dc482612e86565b67ffffffffffffffff811115613ddd57613ddc61321d565b5b613de782546137cd565b613df2828285613d2e565b600060209050601f831160018114613e255760008415613e13578287015190505b613e1d8582613d9f565b865550613e85565b601f198416613e3386613b54565b60005b82811015613e5b57848901518255600182019150602085019450602081019050613e36565b86831015613e785784890151613e74601f891682613d81565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613ec3601883612e91565b9150613ece82613e8d565b602082019050919050565b60006020820190508181036000830152613ef281613eb6565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000613f55602983612e91565b9150613f6082613ef9565b604082019050919050565b60006020820190508181036000830152613f8481613f48565b9050919050565b6000613f978285613aa0565b9150613fa38284613aa0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061400b602683612e91565b915061401682613faf565b604082019050919050565b6000602082019050818103600083015261403a81613ffe565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614077601083612e91565b915061408282614041565b602082019050919050565b600060208201905081810360008301526140a68161406a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140e3602083612e91565b91506140ee826140ad565b602082019050919050565b60006020820190508181036000830152614112816140d6565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614175602583612e91565b915061418082614119565b604082019050919050565b600060208201905081810360008301526141a481614168565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614207602483612e91565b9150614212826141ab565b604082019050919050565b60006020820190508181036000830152614236816141fa565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614273601983612e91565b915061427e8261423d565b602082019050919050565b600060208201905081810360008301526142a281614266565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614305603283612e91565b9150614310826142a9565b604082019050919050565b60006020820190508181036000830152614334816142f8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061437582612f38565b915061438083612f38565b9250828203905081811115614398576143976139e3565b5b92915050565b60006143a982612f38565b91506143b483612f38565b92508282019050808211156143cc576143cb6139e3565b5b92915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614408601483612e91565b9150614413826143d2565b602082019050919050565b60006020820190508181036000830152614437816143fb565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006144658261443e565b61446f8185614449565b935061447f818560208601612ea2565b61448881612ecc565b840191505092915050565b60006080820190506144a86000830187612fcd565b6144b56020830186612fcd565b6144c260408301856131ee565b81810360608301526144d4818461445a565b905095945050505050565b6000815190506144ee81612df7565b92915050565b60006020828403121561450a57614509612dc1565b5b6000614518848285016144df565b91505092915050565b60008151905061453081612f42565b92915050565b60006020828403121561454c5761454b612dc1565b5b600061455a84828501614521565b91505092915050565b60006040820190506145786000830185612fcd565b61458560208301846131ee565b9392505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006145c2602083612e91565b91506145cd8261458c565b602082019050919050565b600060208201905081810360008301526145f1816145b5565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061462e601c83612e91565b9150614639826145f8565b602082019050919050565b6000602082019050818103600083015261465d81614621565b905091905056fea2646970667358221220dce7cdd7d35004ead51f0496a09872d1c6ec7893f1011b90fff3c7512eab593b64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5479366f3145597977594559356e515543464b5668345436664c527445477963526e416552623764375a6a332f00000000000000000000
-----Decoded View---------------
Arg [0] : baseUri_ (string): ipfs://QmTy6o1EYywYEY5nQUCFKVh4T6fLRtEGycRnAeRb7d7Zj3/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5479366f3145597977594559356e515543464b56683454
Arg [3] : 36664c527445477963526e416552623764375a6a332f00000000000000000000
Deployed Bytecode Sourcemap
64863:6579:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42322:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43250:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44762:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44280:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66319:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45462:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66459:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65956:65;;;:::i;:::-;;45834:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67758:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66029:282;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59568:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42960:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67606:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42691:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62465:103;;;:::i;:::-;;65887:61;;;:::i;:::-;;61817:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43419:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45005:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67302:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46056:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43594:281;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45231:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66796:498;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;62723:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67894:661;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;65126:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42322:305;42424:4;42476:25;42461:40;;;:11;:40;;;;:105;;;;42533:33;42518:48;;;:11;:48;;;;42461:105;:158;;;;42583:36;42607:11;42583:23;:36::i;:::-;42461:158;42441:178;;42322:305;;;:::o;43250:100::-;43304:13;43337:5;43330:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43250:100;:::o;44762:171::-;44838:7;44858:23;44873:7;44858:14;:23::i;:::-;44901:15;:24;44917:7;44901:24;;;;;;;;;;;;;;;;;;;;;44894:31;;44762:171;;;:::o;44280:416::-;44361:13;44377:23;44392:7;44377:14;:23::i;:::-;44361:39;;44425:5;44419:11;;:2;:11;;;44411:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44519:5;44503:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44528:37;44545:5;44552:12;:10;:12::i;:::-;44528:16;:37::i;:::-;44503:62;44481:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;44667:21;44676:2;44680:7;44667:8;:21::i;:::-;44350:346;44280:416;;:::o;66319:132::-;59173:19;:17;:19::i;:::-;61703:13:::1;:11;:13::i;:::-;66427:16:::2;66409:15;;:34;;;;;;;;;;;;;;;;;;66319:132:::0;:::o;45462:301::-;45623:41;45642:12;:10;:12::i;:::-;45656:7;45623:18;:41::i;:::-;45615:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;45727:28;45737:4;45743:2;45747:7;45727:9;:28::i;:::-;45462:301;;;:::o;66459:329::-;59173:19;:17;:19::i;:::-;61703:13:::1;:11;:13::i;:::-;66559:20:::2;66582:9;;:16;;66559:39;;66614:9;66609:172;66633:15;66629:1;:19;66609:172;;;66675:28;66690:9;;66700:1;66690:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;66675:14;:28::i;:::-;66670:100;;66750:4;66724:9;:23;66734:9;;66744:1;66734:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;66724:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;66670:100;66650:3;;;;;:::i;:::-;;;;66609:172;;;;66548:240;66459:329:::0;;:::o;65956:65::-;61703:13;:11;:13::i;:::-;66003:10:::1;:8;:10::i;:::-;65956:65::o:0;45834:151::-;45938:39;45955:4;45961:2;45965:7;45938:39;;;;;;;;;;;;:16;:39::i;:::-;45834:151;;;:::o;67758:128::-;67830:7;61703:13;:11;:13::i;:::-;59173:19:::1;:17;:19::i;:::-;67857:21:::2;67871:1;67875:2;67857:5;:21::i;:::-;67850:28;;67758:128:::0;;;:::o;66029:282::-;59173:19;:17;:19::i;:::-;61703:13:::1;:11;:13::i;:::-;66178:22:::2;;;;;;;:::i;:::-;;;;;;;;;;;;;66168:33;;;;;;66153:8;66135:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;66125:39;;;;;;:76:::0;66117:113:::2;;;;;;;;;;;;:::i;:::-;;;;;;;;;66246:27;66254:8;66264;66246:27;;;;;;;:::i;:::-;;;;;;;;66295:8;66284;:19;;;;;;:::i;:::-;;66029:282:::0;:::o;59568:86::-;59615:4;59639:7;;;;;;;;;;;59632:14;;59568:86;:::o;42960:223::-;43032:7;43052:13;43068:17;43077:7;43068:8;:17::i;:::-;43052:33;;43121:1;43104:19;;:5;:19;;;43096:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;43170:5;43163:12;;;42960:223;;;:::o;67606:144::-;67677:7;59173:19;:17;:19::i;:::-;67704:38:::1;67710:17;67729:12;:10;:12::i;:::-;67704:5;:38::i;:::-;67697:45;;67606:144:::0;;;:::o;42691:207::-;42763:7;42808:1;42791:19;;:5;:19;;;42783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42874:9;:16;42884:5;42874:16;;;;;;;;;;;;;;;;42867:23;;42691:207;;;:::o;62465:103::-;61703:13;:11;:13::i;:::-;62530:30:::1;62557:1;62530:18;:30::i;:::-;62465:103::o:0;65887:61::-;61703:13;:11;:13::i;:::-;65932:8:::1;:6;:8::i;:::-;65887:61::o:0;61817:87::-;61863:7;61890:6;;;;;;;;;;;61883:13;;61817:87;:::o;43419:104::-;43475:13;43508:7;43501:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43419:104;:::o;45005:155::-;45100:52;45119:12;:10;:12::i;:::-;45133:8;45143;45100:18;:52::i;:::-;45005:155;;:::o;67302:296::-;59173:19;:17;:19::i;:::-;61703:13:::1;:11;:13::i;:::-;67532:58:::2;;;;;;;;67539:10;67532:58;;;;67551:7;67532:58;;;;67560:8;;67532:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67570:9;67532:58;;;;;;67581:8;67532:58;;;;::::0;67494:16:::2;:35;67511:17;67494:35;;;;;;;;;;;;;;;:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67302:296:::0;;;;;;;:::o;46056:279::-;46187:41;46206:12;:10;:12::i;:::-;46220:7;46187:18;:41::i;:::-;46179:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;46289:38;46303:4;46309:2;46313:7;46322:4;46289:13;:38::i;:::-;46056:279;;;;:::o;43594:281::-;43667:13;43693:23;43708:7;43693:14;:23::i;:::-;43729:21;43753:10;:8;:10::i;:::-;43729:34;;43805:1;43787:7;43781:21;:25;:86;;;;;;;;;;;;;;;;;43833:7;43842:18;:7;:16;:18::i;:::-;43816:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43781:86;43774:93;;;43594:281;;;:::o;45231:164::-;45328:4;45352:18;:25;45371:5;45352:25;;;;;;;;;;;;;;;:35;45378:8;45352:35;;;;;;;;;;;;;;;;;;;;;;;;;45345:42;;45231:164;;;;:::o;66796:498::-;66886:25;66913:15;66930:14;66946:12;66960:17;66992:12;67006:13;67032:20;67055:16;:36;67072:18;67055:36;;;;;;;;;;;;;;;67032:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67110:18;67130:6;:17;;;67162:42;:12;:32;67175:18;67162:32;;;;;;;;;;;;;;;:40;:42::i;:::-;67206:6;:14;;;67235:6;:15;;;67252:6;:16;;;67270:6;:15;;;67102:184;;;;;;;;;;;;;;;66796:498;;;;;;;;;:::o;62723:201::-;61703:13;:11;:13::i;:::-;62832:1:::1;62812:22;;:8;:22;;::::0;62804:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;62888:28;62907:8;62888:18;:28::i;:::-;62723:201:::0;:::o;67894:661::-;68000:12;68014:23;68054:31;68071:13;68054:16;:31::i;:::-;68050:61;;;68095:5;68087:24;;;;;;;;;;;;;;;;;;;;;;;68050:61;68126:15;;;;;;;;;;;68122:38;;;68151:4;68143:17;;;;;;;;;;;;;;;;;;68122:38;68175:29;68190:13;68175:14;:29::i;:::-;68171:52;;;68214:4;68206:17;;;;;;;;;;;;;;;;;;68171:52;68267:1;68238:31;;:17;:31;;;68234:61;;68279:5;68271:24;;;;;;;;;;;;;;;;;;;;;;;68234:61;68306:19;68366:49;68382:17;68401:13;68366:15;:49::i;:::-;68336:79;;;;;;;;68430:14;68426:122;;;68469:4;68461:17;;;;;;;;;;;;;;;;;;;68426:122;68519:5;68511:25;;;67894:661;;;;;;:::o;65126:35::-;;;;;;;;;:::o;40719:157::-;40804:4;40843:25;40828:40;;;:11;:40;;;;40821:47;;40719:157;;;:::o;54325:135::-;54407:16;54415:7;54407;:16::i;:::-;54399:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;54325:135;:::o;22482:98::-;22535:7;22562:10;22555:17;;22482:98;:::o;53638:174::-;53740:2;53713:15;:24;53729:7;53713:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;53796:7;53792:2;53758:46;;53767:23;53782:7;53767:14;:23::i;:::-;53758:46;;;;;;;;;;;;53638:174;;:::o;59727:108::-;59798:8;:6;:8::i;:::-;59797:9;59789:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;59727:108::o;61982:132::-;62057:12;:10;:12::i;:::-;62046:23;;:7;:5;:7::i;:::-;:23;;;62038:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61982:132::o;48325:264::-;48418:4;48435:13;48451:23;48466:7;48451:14;:23::i;:::-;48435:39;;48504:5;48493:16;;:7;:16;;;:52;;;;48513:32;48530:5;48537:7;48513:16;:32::i;:::-;48493:52;:87;;;;48573:7;48549:31;;:20;48561:7;48549:11;:20::i;:::-;:31;;;48493:87;48485:96;;;48325:264;;;;:::o;52290:1229::-;52415:4;52388:31;;:23;52403:7;52388:14;:23::i;:::-;:31;;;52380:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;52494:1;52480:16;;:2;:16;;;52472:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;52550:42;52571:4;52577:2;52581:7;52590:1;52550:20;:42::i;:::-;52722:4;52695:31;;:23;52710:7;52695:14;:23::i;:::-;:31;;;52687:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;52840:15;:24;52856:7;52840:24;;;;;;;;;;;;52833:31;;;;;;;;;;;53335:1;53316:9;:15;53326:4;53316:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;53368:1;53351:9;:13;53361:2;53351:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;53410:2;53391:7;:16;53399:7;53391:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;53449:7;53445:2;53430:27;;53439:4;53430:27;;;;;;;;;;;;53470:41;53490:4;53496:2;53500:7;53509:1;53470:19;:41::i;:::-;52290:1229;;;:::o;69772:127::-;69842:4;69866:9;:25;69876:14;69866:25;;;;;;;;;;;;;;;;;;;;;;;;;69859:32;;69772:127;;;:::o;60423:120::-;59432:16;:14;:16::i;:::-;60492:5:::1;60482:7;;:15;;;;;;;;;;;;;;;;;;60513:22;60522:12;:10;:12::i;:::-;60513:22;;;;;;:::i;:::-;;;;;;;;60423:120::o:0;68680:942::-;68760:7;68784:28;68801:10;68784:16;:28::i;:::-;68780:93;;;68836:25;;;;;;;;;;;;;;68780:93;68888:15;;;;;;;;;;;68887:16;:47;;;;;68908:26;68923:10;68908:14;:26::i;:::-;68907:27;68887:47;68883:554;;;68985:1;68955:32;;:18;:32;;;68951:475;;69008:19;69046:23;69118:47;69134:18;69154:10;69118:15;:47::i;:::-;69088:77;;;;;;;;69189:14;69184:93;;69247:9;69235:22;;;;;;;;;;;:::i;:::-;;;;;;;;69184:93;69295:44;:12;:32;69308:18;69295:32;;;;;;;;;;;;;;;:42;:44::i;:::-;68989:366;;68951:475;;;69387:23;;;;;;;;;;;;;;68951:475;68883:554;69447:23;:11;:21;:23::i;:::-;69481:10;69494:21;:11;:19;:21::i;:::-;69481:34;;69554:4;69526:13;:25;69540:10;69526:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;69569:25;69579:10;69591:2;69569:9;:25::i;:::-;69612:2;69605:9;;;68680:942;;;;:::o;47600:117::-;47666:7;47693;:16;47701:7;47693:16;;;;;;;;;;;;;;;;;;;;;47686:23;;47600:117;;;:::o;63084:191::-;63158:16;63177:6;;;;;;;;;;;63158:25;;63203:8;63194:6;;:17;;;;;;;;;;;;;;;;;;63258:8;63227:40;;63248:8;63227:40;;;;;;;;;;;;63147:128;63084:191;:::o;60164:118::-;59173:19;:17;:19::i;:::-;60234:4:::1;60224:7;;:14;;;;;;;;;;;;;;;;;;60254:20;60261:12;:10;:12::i;:::-;60254:20;;;;;;:::i;:::-;;;;;;;;60164:118::o:0;53955:281::-;54076:8;54067:17;;:5;:17;;;54059:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;54163:8;54125:18;:25;54144:5;54125:25;;;;;;;;;;;;;;;:35;54151:8;54125:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;54209:8;54187:41;;54202:5;54187:41;;;54219:8;54187:41;;;;;;:::i;:::-;;;;;;;;53955:281;;;:::o;47216:270::-;47329:28;47339:4;47345:2;47349:7;47329:9;:28::i;:::-;47376:47;47399:4;47405:2;47409:7;47418:4;47376:22;:47::i;:::-;47368:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;47216:270;;;;:::o;68563:109::-;68623:13;68656:8;68649:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68563:109;:::o;37420:716::-;37476:13;37527:14;37564:1;37544:17;37555:5;37544:10;:17::i;:::-;:21;37527:38;;37580:20;37614:6;37603:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37580:41;;37636:11;37765:6;37761:2;37757:15;37749:6;37745:28;37738:35;;37802:288;37809:4;37802:288;;;37834:5;;;;;;;;37976:8;37971:2;37964:5;37960:14;37955:30;37950:3;37942:44;38032:2;38023:11;;;;;;:::i;:::-;;;;;38066:1;38057:5;:10;37802:288;38053:21;37802:288;38111:6;38104:13;;;;;37420:716;;;:::o;64188:114::-;64253:7;64280;:14;;;64273:21;;64188:114;;;:::o;69630:134::-;69702:4;69727:13;:29;69741:14;69727:29;;;;;;;;;;;;;;;;;;;;;;;;;69720:36;;69630:134;;;:::o;69907:1019::-;70019:4;70025:13;70051:20;70074:16;:36;70091:18;70074:36;;;;;;;;;;;;;;;70051:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70146:1;70125:6;:17;;;:22;:45;;;;70169:1;70151:6;:14;;;:19;70125:45;70121:75;;;70180:5;70172:24;;;;;;;;;;;;;;;;;;;;;;;;70121:75;70212:93;70236:18;70256:14;70272:6;:15;;;70289:6;:15;;;70212:23;:93::i;:::-;70207:151;;70330:5;70322:24;;;;;;;;;;;;;;;;;;;;;;;;70207:151;70417:6;:17;;;70372:42;:12;:32;70385:18;70372:32;;;;;;;;;;;;;;;:40;:42::i;:::-;:62;:115;;;;;70473:6;:14;;;70455:15;:32;70372:115;:152;;;;;70508:6;:16;;;70372:152;70368:202;;;70549:4;70541:17;;;;;;;;;;;;;;;;;;;70368:202;70585:6;:16;;;70580:74;;70626:5;70618:24;;;;;;;;;;;;;;;;;;;;;;;;70580:74;70687:6;:14;;;70668:15;:33;70664:90;;70726:5;70718:24;;;;;;;;;;;;;;;;;;;;;;;;70664:90;70814:6;:17;;;70768:42;:12;:32;70781:18;70768:32;;;;;;;;;;;;;;;:40;:42::i;:::-;:63;70764:120;;70856:5;70848:24;;;;;;;;;;;;;;;;;;;;;;;;70764:120;70902:5;70894:24;;;;;;;;;;;;;;;;;;;;;;69907:1019;;;;;;:::o;48030:128::-;48095:4;48148:1;48119:31;;:17;48128:7;48119:8;:17::i;:::-;:31;;;;48112:38;;48030:128;;;:::o;56609:410::-;56799:1;56787:9;:13;56783:229;;;56837:1;56821:18;;:4;:18;;;56817:87;;56879:9;56860;:15;56870:4;56860:15;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;56817:87;56936:1;56922:16;;:2;:16;;;56918:83;;56976:9;56959;:13;56969:2;56959:13;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;56918:83;56783:229;56609:410;;;;:::o;57741:115::-;;;;;:::o;59912:108::-;59979:8;:6;:8::i;:::-;59971:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;59912:108::o;64310:127::-;64417:1;64399:7;:14;;;:19;;;;;;;;;;;64310:127;:::o;48931:110::-;49007:26;49017:2;49021:7;49007:26;;;;;;;;;;;;:9;:26::i;:::-;48931:110;;:::o;55024:853::-;55178:4;55199:15;:2;:13;;;:15::i;:::-;55195:675;;;55251:2;55235:36;;;55272:12;:10;:12::i;:::-;55286:4;55292:7;55301:4;55235:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55231:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55493:1;55476:6;:13;:18;55472:328;;55519:60;;;;;;;;;;:::i;:::-;;;;;;;;55472:328;55750:6;55744:13;55735:6;55731:2;55727:15;55720:38;55231:584;55367:41;;;55357:51;;;:6;:51;;;;55350:58;;;;;55195:675;55854:4;55847:11;;55024:853;;;;;;;:::o;32849:948::-;32902:7;32922:14;32939:1;32922:18;;32989:8;32980:5;:17;32976:106;;33027:8;33018:17;;;;;;:::i;:::-;;;;;33064:2;33054:12;;;;32976:106;33109:8;33100:5;:17;33096:106;;33147:8;33138:17;;;;;;:::i;:::-;;;;;33184:2;33174:12;;;;33096:106;33229:8;33220:5;:17;33216:106;;33267:8;33258:17;;;;;;:::i;:::-;;;;;33304:2;33294:12;;;;33216:106;33349:7;33340:5;:16;33336:103;;33386:7;33377:16;;;;;;:::i;:::-;;;;;33422:1;33412:11;;;;33336:103;33466:7;33457:5;:16;33453:103;;33503:7;33494:16;;;;;;:::i;:::-;;;;;33539:1;33529:11;;;;33453:103;33583:7;33574:5;:16;33570:103;;33620:7;33611:16;;;;;;:::i;:::-;;;;;33656:1;33646:11;;;;33570:103;33700:7;33691:5;:16;33687:68;;33738:1;33728:11;;;;33687:68;33783:6;33776:13;;;32849:948;;;:::o;70934:505::-;71088:4;71109:8;71105:108;;;71199:1;71150:18;71142:37;;;71180:14;71142:53;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;;71134:67;;;;71105:108;71228:9;71223:186;71247:3;:10;71243:1;:14;71223:186;;;71349:1;71292:18;71283:38;;;71322:14;71338:3;71342:1;71338:6;;;;;;;;:::i;:::-;;;;;;;;71283:62;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:67;71279:119;;71378:4;71371:11;;;;;71279:119;71259:3;;;;;:::i;:::-;;;;71223:186;;;;71426:5;71419:12;;70934:505;;;;;;;:::o;49268:285::-;49363:18;49369:2;49373:7;49363:5;:18::i;:::-;49414:53;49445:1;49449:2;49453:7;49462:4;49414:22;:53::i;:::-;49392:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;49268:285;;;:::o;13609:326::-;13669:4;13926:1;13904:7;:19;;;:23;13897:30;;13609:326;;;:::o;49889:942::-;49983:1;49969:16;;:2;:16;;;49961:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;50042:16;50050:7;50042;:16::i;:::-;50041:17;50033:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50104:48;50133:1;50137:2;50141:7;50150:1;50104:20;:48::i;:::-;50251:16;50259:7;50251;:16::i;:::-;50250:17;50242:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50666:1;50649:9;:13;50659:2;50649:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;50710:2;50691:7;:16;50699:7;50691:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50755:7;50751:2;50730:33;;50747:1;50730:33;;;;;;;;;;;;50776:47;50804:1;50808:2;50812:7;50821:1;50776:19;:47::i;:::-;49889:942;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:116::-;4960:21;4975:5;4960:21;:::i;:::-;4953:5;4950:32;4940:60;;4996:1;4993;4986:12;4940:60;4890:116;:::o;5012:133::-;5055:5;5093:6;5080:20;5071:29;;5109:30;5133:5;5109:30;:::i;:::-;5012:133;;;;:::o;5151:323::-;5207:6;5256:2;5244:9;5235:7;5231:23;5227:32;5224:119;;;5262:79;;:::i;:::-;5224:119;5382:1;5407:50;5449:7;5440:6;5429:9;5425:22;5407:50;:::i;:::-;5397:60;;5353:114;5151:323;;;;:::o;5480:619::-;5557:6;5565;5573;5622:2;5610:9;5601:7;5597:23;5593:32;5590:119;;;5628:79;;:::i;:::-;5590:119;5748:1;5773:53;5818:7;5809:6;5798:9;5794:22;5773:53;:::i;:::-;5763:63;;5719:117;5875:2;5901:53;5946:7;5937:6;5926:9;5922:22;5901:53;:::i;:::-;5891:63;;5846:118;6003:2;6029:53;6074:7;6065:6;6054:9;6050:22;6029:53;:::i;:::-;6019:63;;5974:118;5480:619;;;;;:::o;6105:117::-;6214:1;6211;6204:12;6228:117;6337:1;6334;6327:12;6351:117;6460:1;6457;6450:12;6491:568;6564:8;6574:6;6624:3;6617:4;6609:6;6605:17;6601:27;6591:122;;6632:79;;:::i;:::-;6591:122;6745:6;6732:20;6722:30;;6775:18;6767:6;6764:30;6761:117;;;6797:79;;:::i;:::-;6761:117;6911:4;6903:6;6899:17;6887:29;;6965:3;6957:4;6949:6;6945:17;6935:8;6931:32;6928:41;6925:128;;;6972:79;;:::i;:::-;6925:128;6491:568;;;;;:::o;7065:559::-;7151:6;7159;7208:2;7196:9;7187:7;7183:23;7179:32;7176:119;;;7214:79;;:::i;:::-;7176:119;7362:1;7351:9;7347:17;7334:31;7392:18;7384:6;7381:30;7378:117;;;7414:79;;:::i;:::-;7378:117;7527:80;7599:7;7590:6;7579:9;7575:22;7527:80;:::i;:::-;7509:98;;;;7305:312;7065:559;;;;;:::o;7630:329::-;7689:6;7738:2;7726:9;7717:7;7713:23;7709:32;7706:119;;;7744:79;;:::i;:::-;7706:119;7864:1;7889:53;7934:7;7925:6;7914:9;7910:22;7889:53;:::i;:::-;7879:63;;7835:117;7630:329;;;;:::o;7965:118::-;8052:24;8070:5;8052:24;:::i;:::-;8047:3;8040:37;7965:118;;:::o;8089:222::-;8182:4;8220:2;8209:9;8205:18;8197:26;;8233:71;8301:1;8290:9;8286:17;8277:6;8233:71;:::i;:::-;8089:222;;;;:::o;8317:117::-;8426:1;8423;8416:12;8440:180;8488:77;8485:1;8478:88;8585:4;8582:1;8575:15;8609:4;8606:1;8599:15;8626:281;8709:27;8731:4;8709:27;:::i;:::-;8701:6;8697:40;8839:6;8827:10;8824:22;8803:18;8791:10;8788:34;8785:62;8782:88;;;8850:18;;:::i;:::-;8782:88;8890:10;8886:2;8879:22;8669:238;8626:281;;:::o;8913:129::-;8947:6;8974:20;;:::i;:::-;8964:30;;9003:33;9031:4;9023:6;9003:33;:::i;:::-;8913:129;;;:::o;9048:308::-;9110:4;9200:18;9192:6;9189:30;9186:56;;;9222:18;;:::i;:::-;9186:56;9260:29;9282:6;9260:29;:::i;:::-;9252:37;;9344:4;9338;9334:15;9326:23;;9048:308;;;:::o;9362:146::-;9459:6;9454:3;9449;9436:30;9500:1;9491:6;9486:3;9482:16;9475:27;9362:146;;;:::o;9514:425::-;9592:5;9617:66;9633:49;9675:6;9633:49;:::i;:::-;9617:66;:::i;:::-;9608:75;;9706:6;9699:5;9692:21;9744:4;9737:5;9733:16;9782:3;9773:6;9768:3;9764:16;9761:25;9758:112;;;9789:79;;:::i;:::-;9758:112;9879:54;9926:6;9921:3;9916;9879:54;:::i;:::-;9598:341;9514:425;;;;;:::o;9959:340::-;10015:5;10064:3;10057:4;10049:6;10045:17;10041:27;10031:122;;10072:79;;:::i;:::-;10031:122;10189:6;10176:20;10214:79;10289:3;10281:6;10274:4;10266:6;10262:17;10214:79;:::i;:::-;10205:88;;10021:278;9959:340;;;;:::o;10305:509::-;10374:6;10423:2;10411:9;10402:7;10398:23;10394:32;10391:119;;;10429:79;;:::i;:::-;10391:119;10577:1;10566:9;10562:17;10549:31;10607:18;10599:6;10596:30;10593:117;;;10629:79;;:::i;:::-;10593:117;10734:63;10789:7;10780:6;10769:9;10765:22;10734:63;:::i;:::-;10724:73;;10520:287;10305:509;;;;:::o;10820:468::-;10885:6;10893;10942:2;10930:9;10921:7;10917:23;10913:32;10910:119;;;10948:79;;:::i;:::-;10910:119;11068:1;11093:53;11138:7;11129:6;11118:9;11114:22;11093:53;:::i;:::-;11083:63;;11039:117;11195:2;11221:50;11263:7;11254:6;11243:9;11239:22;11221:50;:::i;:::-;11211:60;;11166:115;10820:468;;;;;:::o;11311:568::-;11384:8;11394:6;11444:3;11437:4;11429:6;11425:17;11421:27;11411:122;;11452:79;;:::i;:::-;11411:122;11565:6;11552:20;11542:30;;11595:18;11587:6;11584:30;11581:117;;;11617:79;;:::i;:::-;11581:117;11731:4;11723:6;11719:17;11707:29;;11785:3;11777:4;11769:6;11765:17;11755:8;11751:32;11748:41;11745:128;;;11792:79;;:::i;:::-;11745:128;11311:568;;;;;:::o;11885:1275::-;12010:6;12018;12026;12034;12042;12050;12058;12107:3;12095:9;12086:7;12082:23;12078:33;12075:120;;;12114:79;;:::i;:::-;12075:120;12234:1;12259:53;12304:7;12295:6;12284:9;12280:22;12259:53;:::i;:::-;12249:63;;12205:117;12361:2;12387:53;12432:7;12423:6;12412:9;12408:22;12387:53;:::i;:::-;12377:63;;12332:118;12489:2;12515:53;12560:7;12551:6;12540:9;12536:22;12515:53;:::i;:::-;12505:63;;12460:118;12645:2;12634:9;12630:18;12617:32;12676:18;12668:6;12665:30;12662:117;;;12698:79;;:::i;:::-;12662:117;12811:80;12883:7;12874:6;12863:9;12859:22;12811:80;:::i;:::-;12793:98;;;;12588:313;12940:3;12967:50;13009:7;13000:6;12989:9;12985:22;12967:50;:::i;:::-;12957:60;;12911:116;13066:3;13093:50;13135:7;13126:6;13115:9;13111:22;13093:50;:::i;:::-;13083:60;;13037:116;11885:1275;;;;;;;;;;:::o;13166:307::-;13227:4;13317:18;13309:6;13306:30;13303:56;;;13339:18;;:::i;:::-;13303:56;13377:29;13399:6;13377:29;:::i;:::-;13369:37;;13461:4;13455;13451:15;13443:23;;13166:307;;;:::o;13479:423::-;13556:5;13581:65;13597:48;13638:6;13597:48;:::i;:::-;13581:65;:::i;:::-;13572:74;;13669:6;13662:5;13655:21;13707:4;13700:5;13696:16;13745:3;13736:6;13731:3;13727:16;13724:25;13721:112;;;13752:79;;:::i;:::-;13721:112;13842:54;13889:6;13884:3;13879;13842:54;:::i;:::-;13562:340;13479:423;;;;;:::o;13921:338::-;13976:5;14025:3;14018:4;14010:6;14006:17;14002:27;13992:122;;14033:79;;:::i;:::-;13992:122;14150:6;14137:20;14175:78;14249:3;14241:6;14234:4;14226:6;14222:17;14175:78;:::i;:::-;14166:87;;13982:277;13921:338;;;;:::o;14265:943::-;14360:6;14368;14376;14384;14433:3;14421:9;14412:7;14408:23;14404:33;14401:120;;;14440:79;;:::i;:::-;14401:120;14560:1;14585:53;14630:7;14621:6;14610:9;14606:22;14585:53;:::i;:::-;14575:63;;14531:117;14687:2;14713:53;14758:7;14749:6;14738:9;14734:22;14713:53;:::i;:::-;14703:63;;14658:118;14815:2;14841:53;14886:7;14877:6;14866:9;14862:22;14841:53;:::i;:::-;14831:63;;14786:118;14971:2;14960:9;14956:18;14943:32;15002:18;14994:6;14991:30;14988:117;;;15024:79;;:::i;:::-;14988:117;15129:62;15183:7;15174:6;15163:9;15159:22;15129:62;:::i;:::-;15119:72;;14914:287;14265:943;;;;;;;:::o;15214:474::-;15282:6;15290;15339:2;15327:9;15318:7;15314:23;15310:32;15307:119;;;15345:79;;:::i;:::-;15307:119;15465:1;15490:53;15535:7;15526:6;15515:9;15511:22;15490:53;:::i;:::-;15480:63;;15436:117;15592:2;15618:53;15663:7;15654:6;15643:9;15639:22;15618:53;:::i;:::-;15608:63;;15563:118;15214:474;;;;;:::o;15694:114::-;15761:6;15795:5;15789:12;15779:22;;15694:114;;;:::o;15814:184::-;15913:11;15947:6;15942:3;15935:19;15987:4;15982:3;15978:14;15963:29;;15814:184;;;;:::o;16004:132::-;16071:4;16094:3;16086:11;;16124:4;16119:3;16115:14;16107:22;;16004:132;;;:::o;16142:108::-;16219:24;16237:5;16219:24;:::i;:::-;16214:3;16207:37;16142:108;;:::o;16256:179::-;16325:10;16346:46;16388:3;16380:6;16346:46;:::i;:::-;16424:4;16419:3;16415:14;16401:28;;16256:179;;;;:::o;16441:113::-;16511:4;16543;16538:3;16534:14;16526:22;;16441:113;;;:::o;16590:732::-;16709:3;16738:54;16786:5;16738:54;:::i;:::-;16808:86;16887:6;16882:3;16808:86;:::i;:::-;16801:93;;16918:56;16968:5;16918:56;:::i;:::-;16997:7;17028:1;17013:284;17038:6;17035:1;17032:13;17013:284;;;17114:6;17108:13;17141:63;17200:3;17185:13;17141:63;:::i;:::-;17134:70;;17227:60;17280:6;17227:60;:::i;:::-;17217:70;;17073:224;17060:1;17057;17053:9;17048:14;;17013:284;;;17017:14;17313:3;17306:10;;16714:608;;;16590:732;;;;:::o;17328:1013::-;17627:4;17665:3;17654:9;17650:19;17642:27;;17679:71;17747:1;17736:9;17732:17;17723:6;17679:71;:::i;:::-;17760:72;17828:2;17817:9;17813:18;17804:6;17760:72;:::i;:::-;17842;17910:2;17899:9;17895:18;17886:6;17842:72;:::i;:::-;17924;17992:2;17981:9;17977:18;17968:6;17924:72;:::i;:::-;18044:9;18038:4;18034:20;18028:3;18017:9;18013:19;18006:49;18072:108;18175:4;18166:6;18072:108;:::i;:::-;18064:116;;18190:67;18252:3;18241:9;18237:19;18228:6;18190:67;:::i;:::-;18267;18329:3;18318:9;18314:19;18305:6;18267:67;:::i;:::-;17328:1013;;;;;;;;;;:::o;18347:411::-;18482:4;18520:2;18509:9;18505:18;18497:26;;18533:65;18595:1;18584:9;18580:17;18571:6;18533:65;:::i;:::-;18645:9;18639:4;18635:20;18630:2;18619:9;18615:18;18608:48;18673:78;18746:4;18737:6;18673:78;:::i;:::-;18665:86;;18347:411;;;;;:::o;18764:180::-;18812:77;18809:1;18802:88;18909:4;18906:1;18899:15;18933:4;18930:1;18923:15;18950:320;18994:6;19031:1;19025:4;19021:12;19011:22;;19078:1;19072:4;19068:12;19099:18;19089:81;;19155:4;19147:6;19143:17;19133:27;;19089:81;19217:2;19209:6;19206:14;19186:18;19183:38;19180:84;;19236:18;;:::i;:::-;19180:84;19001:269;18950:320;;;:::o;19276:220::-;19416:34;19412:1;19404:6;19400:14;19393:58;19485:3;19480:2;19472:6;19468:15;19461:28;19276:220;:::o;19502:366::-;19644:3;19665:67;19729:2;19724:3;19665:67;:::i;:::-;19658:74;;19741:93;19830:3;19741:93;:::i;:::-;19859:2;19854:3;19850:12;19843:19;;19502:366;;;:::o;19874:419::-;20040:4;20078:2;20067:9;20063:18;20055:26;;20127:9;20121:4;20117:20;20113:1;20102:9;20098:17;20091:47;20155:131;20281:4;20155:131;:::i;:::-;20147:139;;19874:419;;;:::o;20299:248::-;20439:34;20435:1;20427:6;20423:14;20416:58;20508:31;20503:2;20495:6;20491:15;20484:56;20299:248;:::o;20553:366::-;20695:3;20716:67;20780:2;20775:3;20716:67;:::i;:::-;20709:74;;20792:93;20881:3;20792:93;:::i;:::-;20910:2;20905:3;20901:12;20894:19;;20553:366;;;:::o;20925:419::-;21091:4;21129:2;21118:9;21114:18;21106:26;;21178:9;21172:4;21168:20;21164:1;21153:9;21149:17;21142:47;21206:131;21332:4;21206:131;:::i;:::-;21198:139;;20925:419;;;:::o;21350:232::-;21490:34;21486:1;21478:6;21474:14;21467:58;21559:15;21554:2;21546:6;21542:15;21535:40;21350:232;:::o;21588:366::-;21730:3;21751:67;21815:2;21810:3;21751:67;:::i;:::-;21744:74;;21827:93;21916:3;21827:93;:::i;:::-;21945:2;21940:3;21936:12;21929:19;;21588:366;;;:::o;21960:419::-;22126:4;22164:2;22153:9;22149:18;22141:26;;22213:9;22207:4;22203:20;22199:1;22188:9;22184:17;22177:47;22241:131;22367:4;22241:131;:::i;:::-;22233:139;;21960:419;;;:::o;22385:180::-;22433:77;22430:1;22423:88;22530:4;22527:1;22520:15;22554:4;22551:1;22544:15;22571:180;22619:77;22616:1;22609:88;22716:4;22713:1;22706:15;22740:4;22737:1;22730:15;22757:233;22796:3;22819:24;22837:5;22819:24;:::i;:::-;22810:33;;22865:66;22858:5;22855:77;22852:103;;22935:18;;:::i;:::-;22852:103;22982:1;22975:5;22971:13;22964:20;;22757:233;;;:::o;22996:148::-;23098:11;23135:3;23120:18;;22996:148;;;;:::o;23150:114::-;;:::o;23270:400::-;23430:3;23451:84;23533:1;23528:3;23451:84;:::i;:::-;23444:91;;23544:93;23633:3;23544:93;:::i;:::-;23662:1;23657:3;23653:11;23646:18;;23270:400;;;:::o;23676:381::-;23861:3;23883:148;24027:3;23883:148;:::i;:::-;23876:155;;24048:3;24041:10;;23676:381;;;:::o;24063:390::-;24169:3;24197:39;24230:5;24197:39;:::i;:::-;24252:89;24334:6;24329:3;24252:89;:::i;:::-;24245:96;;24350:65;24408:6;24403:3;24396:4;24389:5;24385:16;24350:65;:::i;:::-;24440:6;24435:3;24431:16;24424:23;;24173:280;24063:390;;;;:::o;24459:275::-;24591:3;24613:95;24704:3;24695:6;24613:95;:::i;:::-;24606:102;;24725:3;24718:10;;24459:275;;;;:::o;24740:174::-;24880:26;24876:1;24868:6;24864:14;24857:50;24740:174;:::o;24920:366::-;25062:3;25083:67;25147:2;25142:3;25083:67;:::i;:::-;25076:74;;25159:93;25248:3;25159:93;:::i;:::-;25277:2;25272:3;25268:12;25261:19;;24920:366;;;:::o;25292:419::-;25458:4;25496:2;25485:9;25481:18;25473:26;;25545:9;25539:4;25535:20;25531:1;25520:9;25516:17;25509:47;25573:131;25699:4;25573:131;:::i;:::-;25565:139;;25292:419;;;:::o;25717:141::-;25766:4;25789:3;25781:11;;25812:3;25809:1;25802:14;25846:4;25843:1;25833:18;25825:26;;25717:141;;;:::o;25888:831::-;25973:3;26010:5;26004:12;26039:36;26065:9;26039:36;:::i;:::-;26091:71;26155:6;26150:3;26091:71;:::i;:::-;26084:78;;26193:1;26182:9;26178:17;26209:1;26204:164;;;;26382:1;26377:336;;;;26171:542;;26204:164;26288:4;26284:9;26273;26269:25;26264:3;26257:38;26348:6;26341:14;26334:22;26328:4;26324:33;26319:3;26315:43;26308:50;;26204:164;;26377:336;26444:38;26476:5;26444:38;:::i;:::-;26504:1;26518:154;26532:6;26529:1;26526:13;26518:154;;;26606:7;26600:14;26596:1;26591:3;26587:11;26580:35;26656:1;26647:7;26643:15;26632:26;;26554:4;26551:1;26547:12;26542:17;;26518:154;;;26701:1;26696:3;26692:11;26685:18;;26384:329;;26171:542;;25977:742;;25888:831;;;;:::o;26725:508::-;26883:4;26921:2;26910:9;26906:18;26898:26;;26970:9;26964:4;26960:20;26956:1;26945:9;26941:17;26934:47;26998:75;27068:4;27059:6;26998:75;:::i;:::-;26990:83;;27120:9;27114:4;27110:20;27105:2;27094:9;27090:18;27083:48;27148:78;27221:4;27212:6;27148:78;:::i;:::-;27140:86;;26725:508;;;;;:::o;27239:93::-;27276:6;27323:2;27318;27311:5;27307:14;27303:23;27293:33;;27239:93;;;:::o;27338:107::-;27382:8;27432:5;27426:4;27422:16;27401:37;;27338:107;;;;:::o;27451:393::-;27520:6;27570:1;27558:10;27554:18;27593:97;27623:66;27612:9;27593:97;:::i;:::-;27711:39;27741:8;27730:9;27711:39;:::i;:::-;27699:51;;27783:4;27779:9;27772:5;27768:21;27759:30;;27832:4;27822:8;27818:19;27811:5;27808:30;27798:40;;27527:317;;27451:393;;;;;:::o;27850:60::-;27878:3;27899:5;27892:12;;27850:60;;;:::o;27916:142::-;27966:9;27999:53;28017:34;28026:24;28044:5;28026:24;:::i;:::-;28017:34;:::i;:::-;27999:53;:::i;:::-;27986:66;;27916:142;;;:::o;28064:75::-;28107:3;28128:5;28121:12;;28064:75;;;:::o;28145:269::-;28255:39;28286:7;28255:39;:::i;:::-;28316:91;28365:41;28389:16;28365:41;:::i;:::-;28357:6;28350:4;28344:11;28316:91;:::i;:::-;28310:4;28303:105;28221:193;28145:269;;;:::o;28420:73::-;28465:3;28420:73;:::o;28499:189::-;28576:32;;:::i;:::-;28617:65;28675:6;28667;28661:4;28617:65;:::i;:::-;28552:136;28499:189;;:::o;28694:186::-;28754:120;28771:3;28764:5;28761:14;28754:120;;;28825:39;28862:1;28855:5;28825:39;:::i;:::-;28798:1;28791:5;28787:13;28778:22;;28754:120;;;28694:186;;:::o;28886:543::-;28987:2;28982:3;28979:11;28976:446;;;29021:38;29053:5;29021:38;:::i;:::-;29105:29;29123:10;29105:29;:::i;:::-;29095:8;29091:44;29288:2;29276:10;29273:18;29270:49;;;29309:8;29294:23;;29270:49;29332:80;29388:22;29406:3;29388:22;:::i;:::-;29378:8;29374:37;29361:11;29332:80;:::i;:::-;28991:431;;28976:446;28886:543;;;:::o;29435:117::-;29489:8;29539:5;29533:4;29529:16;29508:37;;29435:117;;;;:::o;29558:169::-;29602:6;29635:51;29683:1;29679:6;29671:5;29668:1;29664:13;29635:51;:::i;:::-;29631:56;29716:4;29710;29706:15;29696:25;;29609:118;29558:169;;;;:::o;29732:295::-;29808:4;29954:29;29979:3;29973:4;29954:29;:::i;:::-;29946:37;;30016:3;30013:1;30009:11;30003:4;30000:21;29992:29;;29732:295;;;;:::o;30032:1395::-;30149:37;30182:3;30149:37;:::i;:::-;30251:18;30243:6;30240:30;30237:56;;;30273:18;;:::i;:::-;30237:56;30317:38;30349:4;30343:11;30317:38;:::i;:::-;30402:67;30462:6;30454;30448:4;30402:67;:::i;:::-;30496:1;30520:4;30507:17;;30552:2;30544:6;30541:14;30569:1;30564:618;;;;31226:1;31243:6;31240:77;;;31292:9;31287:3;31283:19;31277:26;31268:35;;31240:77;31343:67;31403:6;31396:5;31343:67;:::i;:::-;31337:4;31330:81;31199:222;30534:887;;30564:618;30616:4;30612:9;30604:6;30600:22;30650:37;30682:4;30650:37;:::i;:::-;30709:1;30723:208;30737:7;30734:1;30731:14;30723:208;;;30816:9;30811:3;30807:19;30801:26;30793:6;30786:42;30867:1;30859:6;30855:14;30845:24;;30914:2;30903:9;30899:18;30886:31;;30760:4;30757:1;30753:12;30748:17;;30723:208;;;30959:6;30950:7;30947:19;30944:179;;;31017:9;31012:3;31008:19;31002:26;31060:48;31102:4;31094:6;31090:17;31079:9;31060:48;:::i;:::-;31052:6;31045:64;30967:156;30944:179;31169:1;31165;31157:6;31153:14;31149:22;31143:4;31136:36;30571:611;;;30534:887;;30124:1303;;;30032:1395;;:::o;31433:174::-;31573:26;31569:1;31561:6;31557:14;31550:50;31433:174;:::o;31613:366::-;31755:3;31776:67;31840:2;31835:3;31776:67;:::i;:::-;31769:74;;31852:93;31941:3;31852:93;:::i;:::-;31970:2;31965:3;31961:12;31954:19;;31613:366;;;:::o;31985:419::-;32151:4;32189:2;32178:9;32174:18;32166:26;;32238:9;32232:4;32228:20;32224:1;32213:9;32209:17;32202:47;32266:131;32392:4;32266:131;:::i;:::-;32258:139;;31985:419;;;:::o;32410:228::-;32550:34;32546:1;32538:6;32534:14;32527:58;32619:11;32614:2;32606:6;32602:15;32595:36;32410:228;:::o;32644:366::-;32786:3;32807:67;32871:2;32866:3;32807:67;:::i;:::-;32800:74;;32883:93;32972:3;32883:93;:::i;:::-;33001:2;32996:3;32992:12;32985:19;;32644:366;;;:::o;33016:419::-;33182:4;33220:2;33209:9;33205:18;33197:26;;33269:9;33263:4;33259:20;33255:1;33244:9;33240:17;33233:47;33297:131;33423:4;33297:131;:::i;:::-;33289:139;;33016:419;;;:::o;33441:435::-;33621:3;33643:95;33734:3;33725:6;33643:95;:::i;:::-;33636:102;;33755:95;33846:3;33837:6;33755:95;:::i;:::-;33748:102;;33867:3;33860:10;;33441:435;;;;;:::o;33882:225::-;34022:34;34018:1;34010:6;34006:14;33999:58;34091:8;34086:2;34078:6;34074:15;34067:33;33882:225;:::o;34113:366::-;34255:3;34276:67;34340:2;34335:3;34276:67;:::i;:::-;34269:74;;34352:93;34441:3;34352:93;:::i;:::-;34470:2;34465:3;34461:12;34454:19;;34113:366;;;:::o;34485:419::-;34651:4;34689:2;34678:9;34674:18;34666:26;;34738:9;34732:4;34728:20;34724:1;34713:9;34709:17;34702:47;34766:131;34892:4;34766:131;:::i;:::-;34758:139;;34485:419;;;:::o;34910:166::-;35050:18;35046:1;35038:6;35034:14;35027:42;34910:166;:::o;35082:366::-;35224:3;35245:67;35309:2;35304:3;35245:67;:::i;:::-;35238:74;;35321:93;35410:3;35321:93;:::i;:::-;35439:2;35434:3;35430:12;35423:19;;35082:366;;;:::o;35454:419::-;35620:4;35658:2;35647:9;35643:18;35635:26;;35707:9;35701:4;35697:20;35693:1;35682:9;35678:17;35671:47;35735:131;35861:4;35735:131;:::i;:::-;35727:139;;35454:419;;;:::o;35879:182::-;36019:34;36015:1;36007:6;36003:14;35996:58;35879:182;:::o;36067:366::-;36209:3;36230:67;36294:2;36289:3;36230:67;:::i;:::-;36223:74;;36306:93;36395:3;36306:93;:::i;:::-;36424:2;36419:3;36415:12;36408:19;;36067:366;;;:::o;36439:419::-;36605:4;36643:2;36632:9;36628:18;36620:26;;36692:9;36686:4;36682:20;36678:1;36667:9;36663:17;36656:47;36720:131;36846:4;36720:131;:::i;:::-;36712:139;;36439:419;;;:::o;36864:224::-;37004:34;37000:1;36992:6;36988:14;36981:58;37073:7;37068:2;37060:6;37056:15;37049:32;36864:224;:::o;37094:366::-;37236:3;37257:67;37321:2;37316:3;37257:67;:::i;:::-;37250:74;;37333:93;37422:3;37333:93;:::i;:::-;37451:2;37446:3;37442:12;37435:19;;37094:366;;;:::o;37466:419::-;37632:4;37670:2;37659:9;37655:18;37647:26;;37719:9;37713:4;37709:20;37705:1;37694:9;37690:17;37683:47;37747:131;37873:4;37747:131;:::i;:::-;37739:139;;37466:419;;;:::o;37891:223::-;38031:34;38027:1;38019:6;38015:14;38008:58;38100:6;38095:2;38087:6;38083:15;38076:31;37891:223;:::o;38120:366::-;38262:3;38283:67;38347:2;38342:3;38283:67;:::i;:::-;38276:74;;38359:93;38448:3;38359:93;:::i;:::-;38477:2;38472:3;38468:12;38461:19;;38120:366;;;:::o;38492:419::-;38658:4;38696:2;38685:9;38681:18;38673:26;;38745:9;38739:4;38735:20;38731:1;38720:9;38716:17;38709:47;38773:131;38899:4;38773:131;:::i;:::-;38765:139;;38492:419;;;:::o;38917:175::-;39057:27;39053:1;39045:6;39041:14;39034:51;38917:175;:::o;39098:366::-;39240:3;39261:67;39325:2;39320:3;39261:67;:::i;:::-;39254:74;;39337:93;39426:3;39337:93;:::i;:::-;39455:2;39450:3;39446:12;39439:19;;39098:366;;;:::o;39470:419::-;39636:4;39674:2;39663:9;39659:18;39651:26;;39723:9;39717:4;39713:20;39709:1;39698:9;39694:17;39687:47;39751:131;39877:4;39751:131;:::i;:::-;39743:139;;39470:419;;;:::o;39895:237::-;40035:34;40031:1;40023:6;40019:14;40012:58;40104:20;40099:2;40091:6;40087:15;40080:45;39895:237;:::o;40138:366::-;40280:3;40301:67;40365:2;40360:3;40301:67;:::i;:::-;40294:74;;40377:93;40466:3;40377:93;:::i;:::-;40495:2;40490:3;40486:12;40479:19;;40138:366;;;:::o;40510:419::-;40676:4;40714:2;40703:9;40699:18;40691:26;;40763:9;40757:4;40753:20;40749:1;40738:9;40734:17;40727:47;40791:131;40917:4;40791:131;:::i;:::-;40783:139;;40510:419;;;:::o;40935:180::-;40983:77;40980:1;40973:88;41080:4;41077:1;41070:15;41104:4;41101:1;41094:15;41121:194;41161:4;41181:20;41199:1;41181:20;:::i;:::-;41176:25;;41215:20;41233:1;41215:20;:::i;:::-;41210:25;;41259:1;41256;41252:9;41244:17;;41283:1;41277:4;41274:11;41271:37;;;41288:18;;:::i;:::-;41271:37;41121:194;;;;:::o;41321:191::-;41361:3;41380:20;41398:1;41380:20;:::i;:::-;41375:25;;41414:20;41432:1;41414:20;:::i;:::-;41409:25;;41457:1;41454;41450:9;41443:16;;41478:3;41475:1;41472:10;41469:36;;;41485:18;;:::i;:::-;41469:36;41321:191;;;;:::o;41518:170::-;41658:22;41654:1;41646:6;41642:14;41635:46;41518:170;:::o;41694:366::-;41836:3;41857:67;41921:2;41916:3;41857:67;:::i;:::-;41850:74;;41933:93;42022:3;41933:93;:::i;:::-;42051:2;42046:3;42042:12;42035:19;;41694:366;;;:::o;42066:419::-;42232:4;42270:2;42259:9;42255:18;42247:26;;42319:9;42313:4;42309:20;42305:1;42294:9;42290:17;42283:47;42347:131;42473:4;42347:131;:::i;:::-;42339:139;;42066:419;;;:::o;42491:98::-;42542:6;42576:5;42570:12;42560:22;;42491:98;;;:::o;42595:168::-;42678:11;42712:6;42707:3;42700:19;42752:4;42747:3;42743:14;42728:29;;42595:168;;;;:::o;42769:373::-;42855:3;42883:38;42915:5;42883:38;:::i;:::-;42937:70;43000:6;42995:3;42937:70;:::i;:::-;42930:77;;43016:65;43074:6;43069:3;43062:4;43055:5;43051:16;43016:65;:::i;:::-;43106:29;43128:6;43106:29;:::i;:::-;43101:3;43097:39;43090:46;;42859:283;42769:373;;;;:::o;43148:640::-;43343:4;43381:3;43370:9;43366:19;43358:27;;43395:71;43463:1;43452:9;43448:17;43439:6;43395:71;:::i;:::-;43476:72;43544:2;43533:9;43529:18;43520:6;43476:72;:::i;:::-;43558;43626:2;43615:9;43611:18;43602:6;43558:72;:::i;:::-;43677:9;43671:4;43667:20;43662:2;43651:9;43647:18;43640:48;43705:76;43776:4;43767:6;43705:76;:::i;:::-;43697:84;;43148:640;;;;;;;:::o;43794:141::-;43850:5;43881:6;43875:13;43866:22;;43897:32;43923:5;43897:32;:::i;:::-;43794:141;;;;:::o;43941:349::-;44010:6;44059:2;44047:9;44038:7;44034:23;44030:32;44027:119;;;44065:79;;:::i;:::-;44027:119;44185:1;44210:63;44265:7;44256:6;44245:9;44241:22;44210:63;:::i;:::-;44200:73;;44156:127;43941:349;;;;:::o;44296:143::-;44353:5;44384:6;44378:13;44369:22;;44400:33;44427:5;44400:33;:::i;:::-;44296:143;;;;:::o;44445:351::-;44515:6;44564:2;44552:9;44543:7;44539:23;44535:32;44532:119;;;44570:79;;:::i;:::-;44532:119;44690:1;44715:64;44771:7;44762:6;44751:9;44747:22;44715:64;:::i;:::-;44705:74;;44661:128;44445:351;;;;:::o;44802:332::-;44923:4;44961:2;44950:9;44946:18;44938:26;;44974:71;45042:1;45031:9;45027:17;45018:6;44974:71;:::i;:::-;45055:72;45123:2;45112:9;45108:18;45099:6;45055:72;:::i;:::-;44802:332;;;;;:::o;45140:182::-;45280:34;45276:1;45268:6;45264:14;45257:58;45140:182;:::o;45328:366::-;45470:3;45491:67;45555:2;45550:3;45491:67;:::i;:::-;45484:74;;45567:93;45656:3;45567:93;:::i;:::-;45685:2;45680:3;45676:12;45669:19;;45328:366;;;:::o;45700:419::-;45866:4;45904:2;45893:9;45889:18;45881:26;;45953:9;45947:4;45943:20;45939:1;45928:9;45924:17;45917:47;45981:131;46107:4;45981:131;:::i;:::-;45973:139;;45700:419;;;:::o;46125:178::-;46265:30;46261:1;46253:6;46249:14;46242:54;46125:178;:::o;46309:366::-;46451:3;46472:67;46536:2;46531:3;46472:67;:::i;:::-;46465:74;;46548:93;46637:3;46548:93;:::i;:::-;46666:2;46661:3;46657:12;46650:19;;46309:366;;;:::o;46681:419::-;46847:4;46885:2;46874:9;46870:18;46862:26;;46934:9;46928:4;46924:20;46920:1;46909:9;46905:17;46898:47;46962:131;47088:4;46962:131;:::i;:::-;46954:139;;46681:419;;;:::o
Swarm Source
ipfs://dce7cdd7d35004ead51f0496a09872d1c6ec7893f1011b90fff3c7512eab593b
Loading...
Loading
Loading...
Loading
[ 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.