ERC-721
Overview
Max Total Supply
3,763 LORDS
Holders
288
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 LORDSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Lords
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-20 */ // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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 * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); 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 overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: Lords.sol // ooooo .oooooo. ooooooooo. oooooooooo. .oooooo..o // `888' d8P' `Y8b `888 `Y88. `888' `Y8b d8P' `Y8 // 888 888 888 888 .d88' 888 888 Y88bo. // 888 888 888 888ooo88P' 888 888 `"Y8888o. // 888 888 888 888`88b. 888 888 `"Y88b // 888 o `88b d88' 888 `88b. 888 d88' oo .d8P // o888ooooood8 `Y8bood8P' o888o o888o o888bood8P' 8""88888P' // .oooooo. oooooooooooo // d8P' `Y8b `888' `8 // 888 888 888 // 888 888 888oooo8 // 888 888 888 " // `88b d88' 888 // `Y8bood8P' o888o // ooooo oooooo oooo .oooooo. oooooooooooo ooooo ooo ooo ooooo // `888' `888. .8' d8P' `Y8b `888' `8 `888' `8' `88. .888' // 888 `888. .8' 888 888 888 8 888b d'888 // 888 `888.8' 888 888oooo8 888 8 8 Y88. .P 888 // 888 `888' 888 888 " 888 8 8 `888' 888 // 888 o 888 `88b ooo 888 o `88. .8' 8 Y 888 // o888ooooood8 o888o `Y8bood8P' o888ooooood8 `YbodP' o8o o888o // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@(,,&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#,,,,*,,,,*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,**,,,,,%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%*****,,**,,,,**,,,,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@****,,,,,,**,,,,***,,,,,(@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*****,,,,,,,**,,,,,***,,,,,,%@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&*******,,,,,,,**,,,,,,,**,,,,,,@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*,,******,,,,,,,,***,,,,,,**,,,,,#@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*,,,,******&%,,,,,,,,**,,,,,,**,,,,#@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,*****@@@@,,,,,,,,**,,,,,,*,,,,%@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,***#@@@@@%,,,,,,,,**,,,,,**,,,@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,,,**&@@@@@@%,,,,,,,,,**,,,,,*,,,@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,,,*************,,,,,,,,**,,,,,*,,*@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#,,,,,,,,,***,*******,****,,,,,,,,,*,,,,,*,,&@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*,,,,,,,,,,,,,*************,,,,,,,,,,*,,,,,,,@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,,,,,,*************,,,,,,,,,,,,,,,,,,#@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,,,,,,******,,,,,,,,,,,,,,,,,,,,,,,,,,@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@#,,,,,,,,,,,,***,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@,,,,,,,,,,,***,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,(@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@(,,,,,,,,,,*,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,*/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@&,,,,,,,,,,,*,,,,,,,,,,,,,,,,,,,,,,,,,,,,**%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@&,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,****&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,****&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,****#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@*,,,,,,,,,,,,,,,,,,,,,,,,,****#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@&,,,,,,,,,,,,,,,,,,,,,*(@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@#,,,,,,,,,,,,,,,*%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@&/,,,,,,*/@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ // ___ ____ ______ ___ _ _ _ ___ _______ __ __ __ __ // /\ / _ \| _ \ /\ \ ___) / _ \ _| |_ /\| || || \ \ / / ___|_ \ / _) \ / | // / \ | | | | |_) ) \ \ \ | | | |/ \ / \ \| |/ |\ v /| |_ \ v / | v | // / /\ \| | | | __/ /\ \ > > | | | ( (| |) ) / /\ \_ _/ > < | _) | | | |\_/| | // / / \ \ |_| | | / /__\ \ / /__ | |_| |\_ _/ / / \ \| | / ^ \| |___ | | | | | | // /_/ \_\___/|_|/________\/_____) \___/ |_| /_/ \_\_| /_/ \_\_____) |_| |_| |_| pragma solidity ^0.8.0; contract Lords is Ownable, ERC721A, ReentrancyGuard { uint256 public immutable maxWalletCount; uint256 public immutable maxMintSize; uint256 public immutable amountForDevs; uint256 public immutable maxSupply; bool public publicSaleIsActive = false; bool public allowlistSaleIsActive = false; string private _baseTokenURI; struct SaleConfig { uint64 allowlistPrice; uint64 publicPrice; } SaleConfig public saleConfig; mapping(address => bool) public isClaimed; constructor( uint256 maxWalletCount_, uint256 maxMintSize_, uint256 collectionSize_, uint256 amountForDevs_ ) ERC721A("Lords", "LORDS", maxWalletCount_, collectionSize_) { maxWalletCount = maxWalletCount_; amountForDevs = amountForDevs_; maxMintSize = maxMintSize_; maxSupply = collectionSize_; require( amountForDevs_ <= collectionSize_, "larger collection size needed"); } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function setSaleInfo( uint64 allowlistPriceWei, uint64 publicPriceWei ) external onlyOwner { saleConfig = SaleConfig( allowlistPriceWei, publicPriceWei ); } function flipBothSaleStates() public onlyOwner { allowlistSaleIsActive = !allowlistSaleIsActive; publicSaleIsActive = !publicSaleIsActive; } function flipAllowlistSaleState() public onlyOwner { allowlistSaleIsActive = !allowlistSaleIsActive; } function flipPublicSaleState() public onlyOwner { publicSaleIsActive = !publicSaleIsActive; } // FOR DEUS function devMint(uint256 quantity) external onlyOwner { require(totalSupply() + quantity <= amountForDevs, "too many already minted before dev mint"); require(quantity % maxMintSize == 0, "can only mint a multiple of the maxMintSize"); uint256 numChunks = quantity / maxMintSize; for (uint256 i = 0; i < numChunks; i++) { _safeMint(msg.sender, maxMintSize); } } function allowlistMint() external payable callerIsUser { SaleConfig memory config = saleConfig; uint256 allowlistPrice = uint256(config.allowlistPrice); require(allowlistSaleIsActive, "allowlist sale is not live"); require(!isClaimed[msg.sender], "allowlist spot already claimed"); require(totalSupply() + 1 <= collectionSize, "reached max supply"); require(numberMinted(msg.sender) + 1 <= maxWalletCount, "can not mint this many"); require(msg.value >= allowlistPrice, "Ether value sent is below the mint price"); isClaimed[msg.sender] = true; _safeMint(msg.sender, 1); } function publicSaleMint(uint256 quantity) external payable callerIsUser { SaleConfig memory config = saleConfig; uint256 publicPrice = uint256(config.publicPrice); require(publicSaleIsActive, "public sale is not live"); require(totalSupply() + quantity <= collectionSize, "reached max supply"); require(numberMinted(msg.sender) + quantity <= maxWalletCount, "can not mint this many"); require(quantity <= maxMintSize, "can not mint this many"); require(msg.value >= (publicPrice * quantity), "Ether value sent is below the mint price"); _safeMint(msg.sender, quantity); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxWalletCount_","type":"uint256"},{"internalType":"uint256","name":"maxMintSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowlistSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForDevs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipAllowlistSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipBothSaleStates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"","type":"address"}],"name":"isClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","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":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"allowlistPrice","type":"uint64"},{"internalType":"uint64","name":"publicPrice","type":"uint64"}],"stateMutability":"view","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":"uint64","name":"allowlistPriceWei","type":"uint64"},{"internalType":"uint64","name":"publicPriceWei","type":"uint64"}],"name":"setSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610140604052600060015560006008556000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055503480156200005257600080fd5b5060405162005a4f38038062005a4f8339818101604052810190620000789190620003e5565b6040518060400160405280600581526020017f4c6f7264730000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c4f524453000000000000000000000000000000000000000000000000000000815250858462000106620000fa6200025260201b60201c565b6200025a60201b60201c565b600081116200014c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000143906200050a565b60405180910390fd5b6000821162000192576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018990620004c6565b60405180910390fd5b8360029080519060200190620001aa9291906200031e565b508260039080519060200190620001c39291906200031e565b508160a0818152505080608081815250505050505060016009819055508360c081815250508061010081815250508260e081815250508161012081815250508181111562000248576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023f90620004e8565b60405180910390fd5b505050506200068d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200032c9062000547565b90600052602060002090601f0160209004810192826200035057600085556200039c565b82601f106200036b57805160ff19168380011785556200039c565b828001600101855582156200039c579182015b828111156200039b5782518255916020019190600101906200037e565b5b509050620003ab9190620003af565b5090565b5b80821115620003ca576000816000905550600101620003b0565b5090565b600081519050620003df8162000673565b92915050565b60008060008060808587031215620003fc57600080fd5b60006200040c87828801620003ce565b94505060206200041f87828801620003ce565b93505060406200043287828801620003ce565b92505060606200044587828801620003ce565b91505092959194509250565b6000620004606027836200052c565b91506200046d82620005ac565b604082019050919050565b600062000487601d836200052c565b91506200049482620005fb565b602082019050919050565b6000620004ae602e836200052c565b9150620004bb8262000624565b604082019050919050565b60006020820190508181036000830152620004e18162000451565b9050919050565b60006020820190508181036000830152620005038162000478565b9050919050565b6000602082019050818103600083015262000525816200049f565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200056057607f821691505b602082108114156200057757620005766200057d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f6c617267657220636f6c6c656374696f6e2073697a65206e6565646564000000600082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b6200067e816200053d565b81146200068a57600080fd5b50565b60805160a05160c05160e051610100516101205161532c620007236000396000611d75015260008181610eb60152611f74015260008181610c7201528181610f2d01528181610f9b01528181610fd80152611bb2015260008181611292015281816113d30152611b3c0152600081816127710152818161279a0152612f4201526000818161121c0152611ac7015261532c6000f3fe6080604052600436106102305760003560e01c80638cc080251161012e578063b88d4fde116100ab578063e781352d1161006f578063e781352d146107fe578063e985e9c514610827578063e9cdc02114610864578063f2fde38b1461088f578063fbe1aa51146108b857610230565b8063b88d4fde14610705578063c87b56dd1461072e578063d5abeb011461076b578063d7224ba014610796578063dc33e681146107c157610230565b8063a10866ef116100f2578063a10866ef1461067b578063a22cb46514610692578063ac446002146106bb578063ac870630146106d2578063b3ab66b0146106e957610230565b80638cc080251461057f5780638da5cb5b146105bc57806390aa0b0f146105e75780639231ab2a1461061357806395d89b411461065057610230565b8063375a069a116101bc5780634f6ccce7116101805780634f6ccce71461048857806355f804b3146104c55780636352211e146104ee57806370a082311461052b578063715018a61461056857610230565b8063375a069a146103ea57806338be81421461041357806341fbddbd1461042a57806342842e0e14610434578063496feeee1461045d57610230565b80630fcf2e75116102035780630fcf2e751461030357806316b8060c1461032e57806318160ddd1461035957806323b872dd146103845780632f745c59146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c6004803603810190610257919061396e565b6108e3565b60405161026991906140b9565b60405180910390f35b34801561027e57600080fd5b50610287610a2d565b60405161029491906140d4565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613a05565b610abf565b6040516102d19190614052565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613932565b610b44565b005b34801561030f57600080fd5b50610318610c5d565b60405161032591906140b9565b60405180910390f35b34801561033a57600080fd5b50610343610c70565b6040516103509190614511565b60405180910390f35b34801561036557600080fd5b5061036e610c94565b60405161037b9190614511565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a6919061382c565b610c9e565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190613932565b610cae565b6040516103e19190614511565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613a05565b610eac565b005b34801561041f57600080fd5b50610428611014565b005b610432611048565b005b34801561044057600080fd5b5061045b6004803603810190610456919061382c565b6113b1565b005b34801561046957600080fd5b506104726113d1565b60405161047f9190614511565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa9190613a05565b6113f5565b6040516104bc9190614511565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e791906139c0565b611448565b005b3480156104fa57600080fd5b5061051560048036038101906105109190613a05565b611466565b6040516105229190614052565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d91906137c7565b61147c565b60405161055f9190614511565b60405180910390f35b34801561057457600080fd5b5061057d611565565b005b34801561058b57600080fd5b506105a660048036038101906105a191906137c7565b611579565b6040516105b391906140b9565b60405180910390f35b3480156105c857600080fd5b506105d1611599565b6040516105de9190614052565b60405180910390f35b3480156105f357600080fd5b506105fc6115c2565b60405161060a92919061452c565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613a05565b6115fc565b60405161064791906144f6565b60405180910390f35b34801561065c57600080fd5b50610665611614565b60405161067291906140d4565b60405180910390f35b34801561068757600080fd5b506106906116a6565b005b34801561069e57600080fd5b506106b960048036038101906106b491906138f6565b6116da565b005b3480156106c757600080fd5b506106d061185b565b005b3480156106de57600080fd5b506106e7611922565b005b61070360048036038101906106fe9190613a05565b611980565b005b34801561071157600080fd5b5061072c6004803603810190610727919061387b565b611c70565b005b34801561073a57600080fd5b5061075560048036038101906107509190613a05565b611ccc565b60405161076291906140d4565b60405180910390f35b34801561077757600080fd5b50610780611d73565b60405161078d9190614511565b60405180910390f35b3480156107a257600080fd5b506107ab611d97565b6040516107b89190614511565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e391906137c7565b611d9d565b6040516107f59190614511565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190613a2e565b611daf565b005b34801561083357600080fd5b5061084e600480360381019061084991906137f0565b611e47565b60405161085b91906140b9565b60405180910390f35b34801561087057600080fd5b50610879611edb565b60405161088691906140b9565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b191906137c7565b611eee565b005b3480156108c457600080fd5b506108cd611f72565b6040516108da9190614511565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a265750610a2582611f96565b5b9050919050565b606060028054610a3c90614898565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6890614898565b8015610ab55780601f10610a8a57610100808354040283529160200191610ab5565b820191906000526020600020905b815481529060010190602001808311610a9857829003601f168201915b5050505050905090565b6000610aca82612000565b610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b00906144b6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4f82611466565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb790614356565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bdf61200e565b73ffffffffffffffffffffffffffffffffffffffff161480610c0e5750610c0d81610c0861200e565b611e47565b5b610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490614256565b60405180910390fd5b610c58838383612016565b505050565b600a60009054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600154905090565b610ca98383836120c8565b505050565b6000610cb98361147c565b8210610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf1906140f6565b60405180910390fd5b6000610d04610c94565b905060008060005b83811015610e6a576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dfe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e565786841415610e47578195505050505050610ea6565b8380610e52906148fb565b9450505b508080610e62906148fb565b915050610d0c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90614456565b60405180910390fd5b92915050565b610eb4612681565b7f000000000000000000000000000000000000000000000000000000000000000081610ede610c94565b610ee8919061463f565b1115610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090614416565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000082610f579190614944565b14610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90614436565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000082610fc59190614695565b905060005b8181101561100f57610ffc337f00000000000000000000000000000000000000000000000000000000000000006126ff565b8080611007906148fb565b915050610fca565b505050565b61101c612681565b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90614216565b60405180910390fd5b6000600c6040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090506000816000015167ffffffffffffffff169050600a60019054906101000a900460ff1661118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490614156565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190614236565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001611245610c94565b61124f919061463f565b1115611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790614296565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000060016112bc33611d9d565b6112c6919061463f565b1115611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906143f6565b60405180910390fd5b8034101561134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190614136565b60405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113ad3360016126ff565b5050565b6113cc83838360405180602001604052806000815250611c70565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006113ff610c94565b8210611440576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611437906141b6565b60405180910390fd5b819050919050565b611450612681565b8181600b91906114619291906135ba565b505050565b60006114718261271d565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490614276565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61156d612681565b6115776000612920565b565b600d6020528060005260406000206000915054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900467ffffffffffffffff16905082565b611604613640565b61160d8261271d565b9050919050565b60606003805461162390614898565b80601f016020809104026020016040519081016040528092919081815260200182805461164f90614898565b801561169c5780601f106116715761010080835404028352916020019161169c565b820191906000526020600020905b81548152906001019060200180831161167f57829003601f168201915b5050505050905090565b6116ae612681565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6116e261200e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790614316565b60405180910390fd5b806007600061175d61200e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180a61200e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184f91906140b9565b60405180910390a35050565b611863612681565b61186b6129e4565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516118919061403d565b60006040518083038185875af1925050503d80600081146118ce576040519150601f19603f3d011682016040523d82523d6000602084013e6118d3565b606091505b5050905080611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90614376565b60405180910390fd5b50611920612a34565b565b61192a612681565b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e590614216565b60405180910390fd5b6000600c6040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090506000816020015167ffffffffffffffff169050600a60009054906101000a900460ff16611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90614116565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083611aef610c94565b611af9919061463f565b1115611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190614296565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083611b6533611d9d565b611b6f919061463f565b1115611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba7906143f6565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a906143f6565b60405180910390fd5b8281611c1f91906146c6565b341015611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890614136565b60405180910390fd5b611c6b33846126ff565b505050565b611c7b8484846120c8565b611c8784848484612a3e565b611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd90614396565b60405180910390fd5b50505050565b6060611cd782612000565b611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d906142f6565b60405180910390fd5b6000611d20612bd5565b90506000815111611d405760405180602001604052806000815250611d6b565b80611d4a84612c67565b604051602001611d5b929190614019565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60085481565b6000611da882612d8b565b9050919050565b611db7612681565b60405180604001604052808367ffffffffffffffff1681526020018267ffffffffffffffff16815250600c60008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60019054906101000a900460ff1681565b611ef6612681565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90614176565b60405180910390fd5b611f6f81612920565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120d38261271d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120fa61200e565b73ffffffffffffffffffffffffffffffffffffffff161480612156575061211f61200e565b73ffffffffffffffffffffffffffffffffffffffff1661213e84610abf565b73ffffffffffffffffffffffffffffffffffffffff16145b806121725750612171826000015161216c61200e565b611e47565b5b9050806121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90614336565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d906142b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228d906141d6565b60405180910390fd5b6122a38585856001612e74565b6122b36000848460000151612016565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123219190614720565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123c591906145f9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124cb919061463f565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126115761254181612000565b15612610576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126798686866001612e7a565b505050505050565b61268961200e565b73ffffffffffffffffffffffffffffffffffffffff166126a7611599565b73ffffffffffffffffffffffffffffffffffffffff16146126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f4906142d6565b60405180910390fd5b565b612719828260405180602001604052806000815250612e80565b5050565b612725613640565b61272e82612000565b61276d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276490614196565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106127d15760017f0000000000000000000000000000000000000000000000000000000000000000846127c49190614754565b6127ce919061463f565b90505b60008390505b8181106128df576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128cb5780935050505061291b565b5080806128d79061486e565b9150506127d7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291290614496565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60026009541415612a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2190614476565b60405180910390fd5b6002600981905550565b6001600981905550565b6000612a5f8473ffffffffffffffffffffffffffffffffffffffff16613360565b15612bc8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a8861200e565b8786866040518563ffffffff1660e01b8152600401612aaa949392919061406d565b602060405180830381600087803b158015612ac457600080fd5b505af1925050508015612af557506040513d601f19601f82011682018060405250810190612af29190613997565b60015b612b78573d8060008114612b25576040519150601f19603f3d011682016040523d82523d6000602084013e612b2a565b606091505b50600081511415612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6790614396565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bcd565b600190505b949350505050565b6060600b8054612be490614898565b80601f0160208091040260200160405190810160405280929190818152602001828054612c1090614898565b8015612c5d5780601f10612c3257610100808354040283529160200191612c5d565b820191906000526020600020905b815481529060010190602001808311612c4057829003601f168201915b5050505050905090565b606060006001612c7684613383565b01905060008167ffffffffffffffff811115612cbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ced5781602001600182028036833780820191505090505b509050600082602001820190505b600115612d80578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612d6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0494506000851415612d7b57612d80565b612cfb565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df3906141f6565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eee906143d6565b60405180910390fd5b612f0081612000565b15612f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f37906143b6565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9a906144d6565b60405180910390fd5b612fb06000858386612e74565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516130ad91906145f9565b6fffffffffffffffffffffffffffffffff1681526020018583602001516130d491906145f9565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561334357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132e36000888488612a3e565b613322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331990614396565b60405180910390fd5b818061332d906148fb565b925050808061333b906148fb565b915050613272565b50806001819055506133586000878588612e7a565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613407577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816133fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061346a576d04ee2d6d415b85acef81000000008381613460577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506020810190505b662386f26fc1000083106134bf57662386f26fc1000083816134b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506010810190505b6305f5e100831061350e576305f5e1008381613504577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506008810190505b612710831061355957612710838161354f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506004810190505b606483106135a25760648381613598577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506002810190505b600a83106135b1576001810190505b80915050919050565b8280546135c690614898565b90600052602060002090601f0160209004810192826135e8576000855561362f565b82601f1061360157803560ff191683800117855561362f565b8280016001018555821561362f579182015b8281111561362e578235825591602001919060010190613613565b5b50905061363c919061367a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561369357600081600090555060010161367b565b5090565b60006136aa6136a58461457a565b614555565b9050828152602081018484840111156136c257600080fd5b6136cd84828561482c565b509392505050565b6000813590506136e481615283565b92915050565b6000813590506136f98161529a565b92915050565b60008135905061370e816152b1565b92915050565b600081519050613723816152b1565b92915050565b600082601f83011261373a57600080fd5b813561374a848260208601613697565b91505092915050565b60008083601f84011261376557600080fd5b8235905067ffffffffffffffff81111561377e57600080fd5b60208301915083600182028301111561379657600080fd5b9250929050565b6000813590506137ac816152c8565b92915050565b6000813590506137c1816152df565b92915050565b6000602082840312156137d957600080fd5b60006137e7848285016136d5565b91505092915050565b6000806040838503121561380357600080fd5b6000613811858286016136d5565b9250506020613822858286016136d5565b9150509250929050565b60008060006060848603121561384157600080fd5b600061384f868287016136d5565b9350506020613860868287016136d5565b92505060406138718682870161379d565b9150509250925092565b6000806000806080858703121561389157600080fd5b600061389f878288016136d5565b94505060206138b0878288016136d5565b93505060406138c18782880161379d565b925050606085013567ffffffffffffffff8111156138de57600080fd5b6138ea87828801613729565b91505092959194509250565b6000806040838503121561390957600080fd5b6000613917858286016136d5565b9250506020613928858286016136ea565b9150509250929050565b6000806040838503121561394557600080fd5b6000613953858286016136d5565b92505060206139648582860161379d565b9150509250929050565b60006020828403121561398057600080fd5b600061398e848285016136ff565b91505092915050565b6000602082840312156139a957600080fd5b60006139b784828501613714565b91505092915050565b600080602083850312156139d357600080fd5b600083013567ffffffffffffffff8111156139ed57600080fd5b6139f985828601613753565b92509250509250929050565b600060208284031215613a1757600080fd5b6000613a258482850161379d565b91505092915050565b60008060408385031215613a4157600080fd5b6000613a4f858286016137b2565b9250506020613a60858286016137b2565b9150509250929050565b613a7381614788565b82525050565b613a8281614788565b82525050565b613a918161479a565b82525050565b6000613aa2826145ab565b613aac81856145c1565b9350613abc81856020860161483b565b613ac581614a31565b840191505092915050565b6000613adb826145b6565b613ae581856145dd565b9350613af581856020860161483b565b613afe81614a31565b840191505092915050565b6000613b14826145b6565b613b1e81856145ee565b9350613b2e81856020860161483b565b80840191505092915050565b6000613b476022836145dd565b9150613b5282614a42565b604082019050919050565b6000613b6a6017836145dd565b9150613b7582614a91565b602082019050919050565b6000613b8d6028836145dd565b9150613b9882614aba565b604082019050919050565b6000613bb0601a836145dd565b9150613bbb82614b09565b602082019050919050565b6000613bd36026836145dd565b9150613bde82614b32565b604082019050919050565b6000613bf6602a836145dd565b9150613c0182614b81565b604082019050919050565b6000613c196023836145dd565b9150613c2482614bd0565b604082019050919050565b6000613c3c6025836145dd565b9150613c4782614c1f565b604082019050919050565b6000613c5f6031836145dd565b9150613c6a82614c6e565b604082019050919050565b6000613c82601e836145dd565b9150613c8d82614cbd565b602082019050919050565b6000613ca5601e836145dd565b9150613cb082614ce6565b602082019050919050565b6000613cc86039836145dd565b9150613cd382614d0f565b604082019050919050565b6000613ceb602b836145dd565b9150613cf682614d5e565b604082019050919050565b6000613d0e6012836145dd565b9150613d1982614dad565b602082019050919050565b6000613d316026836145dd565b9150613d3c82614dd6565b604082019050919050565b6000613d546020836145dd565b9150613d5f82614e25565b602082019050919050565b6000613d77602f836145dd565b9150613d8282614e4e565b604082019050919050565b6000613d9a601a836145dd565b9150613da582614e9d565b602082019050919050565b6000613dbd6032836145dd565b9150613dc882614ec6565b604082019050919050565b6000613de06022836145dd565b9150613deb82614f15565b604082019050919050565b6000613e036000836145d2565b9150613e0e82614f64565b600082019050919050565b6000613e266010836145dd565b9150613e3182614f67565b602082019050919050565b6000613e496033836145dd565b9150613e5482614f90565b604082019050919050565b6000613e6c601d836145dd565b9150613e7782614fdf565b602082019050919050565b6000613e8f6021836145dd565b9150613e9a82615008565b604082019050919050565b6000613eb26016836145dd565b9150613ebd82615057565b602082019050919050565b6000613ed56027836145dd565b9150613ee082615080565b604082019050919050565b6000613ef8602b836145dd565b9150613f03826150cf565b604082019050919050565b6000613f1b602e836145dd565b9150613f268261511e565b604082019050919050565b6000613f3e601f836145dd565b9150613f498261516d565b602082019050919050565b6000613f61602f836145dd565b9150613f6c82615196565b604082019050919050565b6000613f84602d836145dd565b9150613f8f826151e5565b604082019050919050565b6000613fa76022836145dd565b9150613fb282615234565b604082019050919050565b604082016000820151613fd36000850182613a6a565b506020820151613fe66020850182613ffb565b50505050565b613ff58161480e565b82525050565b61400481614818565b82525050565b61401381614818565b82525050565b60006140258285613b09565b91506140318284613b09565b91508190509392505050565b600061404882613df6565b9150819050919050565b60006020820190506140676000830184613a79565b92915050565b60006080820190506140826000830187613a79565b61408f6020830186613a79565b61409c6040830185613fec565b81810360608301526140ae8184613a97565b905095945050505050565b60006020820190506140ce6000830184613a88565b92915050565b600060208201905081810360008301526140ee8184613ad0565b905092915050565b6000602082019050818103600083015261410f81613b3a565b9050919050565b6000602082019050818103600083015261412f81613b5d565b9050919050565b6000602082019050818103600083015261414f81613b80565b9050919050565b6000602082019050818103600083015261416f81613ba3565b9050919050565b6000602082019050818103600083015261418f81613bc6565b9050919050565b600060208201905081810360008301526141af81613be9565b9050919050565b600060208201905081810360008301526141cf81613c0c565b9050919050565b600060208201905081810360008301526141ef81613c2f565b9050919050565b6000602082019050818103600083015261420f81613c52565b9050919050565b6000602082019050818103600083015261422f81613c75565b9050919050565b6000602082019050818103600083015261424f81613c98565b9050919050565b6000602082019050818103600083015261426f81613cbb565b9050919050565b6000602082019050818103600083015261428f81613cde565b9050919050565b600060208201905081810360008301526142af81613d01565b9050919050565b600060208201905081810360008301526142cf81613d24565b9050919050565b600060208201905081810360008301526142ef81613d47565b9050919050565b6000602082019050818103600083015261430f81613d6a565b9050919050565b6000602082019050818103600083015261432f81613d8d565b9050919050565b6000602082019050818103600083015261434f81613db0565b9050919050565b6000602082019050818103600083015261436f81613dd3565b9050919050565b6000602082019050818103600083015261438f81613e19565b9050919050565b600060208201905081810360008301526143af81613e3c565b9050919050565b600060208201905081810360008301526143cf81613e5f565b9050919050565b600060208201905081810360008301526143ef81613e82565b9050919050565b6000602082019050818103600083015261440f81613ea5565b9050919050565b6000602082019050818103600083015261442f81613ec8565b9050919050565b6000602082019050818103600083015261444f81613eeb565b9050919050565b6000602082019050818103600083015261446f81613f0e565b9050919050565b6000602082019050818103600083015261448f81613f31565b9050919050565b600060208201905081810360008301526144af81613f54565b9050919050565b600060208201905081810360008301526144cf81613f77565b9050919050565b600060208201905081810360008301526144ef81613f9a565b9050919050565b600060408201905061450b6000830184613fbd565b92915050565b60006020820190506145266000830184613fec565b92915050565b6000604082019050614541600083018561400a565b61454e602083018461400a565b9392505050565b600061455f614570565b905061456b82826148ca565b919050565b6000604051905090565b600067ffffffffffffffff82111561459557614594614a02565b5b61459e82614a31565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614604826147d2565b915061460f836147d2565b9250826fffffffffffffffffffffffffffffffff0382111561463457614633614975565b5b828201905092915050565b600061464a8261480e565b91506146558361480e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561468a57614689614975565b5b828201905092915050565b60006146a08261480e565b91506146ab8361480e565b9250826146bb576146ba6149a4565b5b828204905092915050565b60006146d18261480e565b91506146dc8361480e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561471557614714614975565b5b828202905092915050565b600061472b826147d2565b9150614736836147d2565b92508282101561474957614748614975565b5b828203905092915050565b600061475f8261480e565b915061476a8361480e565b92508282101561477d5761477c614975565b5b828203905092915050565b6000614793826147ee565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561485957808201518184015260208101905061483e565b83811115614868576000848401525b50505050565b60006148798261480e565b9150600082141561488d5761488c614975565b5b600182039050919050565b600060028204905060018216806148b057607f821691505b602082108114156148c4576148c36149d3565b5b50919050565b6148d382614a31565b810181811067ffffffffffffffff821117156148f2576148f1614a02565b5b80604052505050565b60006149068261480e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561493957614938614975565b5b600182019050919050565b600061494f8261480e565b915061495a8361480e565b92508261496a576149696149a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f7075626c69632073616c65206973206e6f74206c697665000000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f7720746865206d6960008201527f6e74207072696365000000000000000000000000000000000000000000000000602082015250565b7f616c6c6f776c6973742073616c65206973206e6f74206c697665000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f616c6c6f776c6973742073706f7420616c726561647920636c61696d65640000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d61784d696e7453697a65000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61528c81614788565b811461529757600080fd5b50565b6152a38161479a565b81146152ae57600080fd5b50565b6152ba816147a6565b81146152c557600080fd5b50565b6152d18161480e565b81146152dc57600080fd5b50565b6152e881614818565b81146152f357600080fd5b5056fea264697066735822122053af0645f25abb90baf49f17019129625e519347cd914d675e81ad71aa93bba164736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x6080604052600436106102305760003560e01c80638cc080251161012e578063b88d4fde116100ab578063e781352d1161006f578063e781352d146107fe578063e985e9c514610827578063e9cdc02114610864578063f2fde38b1461088f578063fbe1aa51146108b857610230565b8063b88d4fde14610705578063c87b56dd1461072e578063d5abeb011461076b578063d7224ba014610796578063dc33e681146107c157610230565b8063a10866ef116100f2578063a10866ef1461067b578063a22cb46514610692578063ac446002146106bb578063ac870630146106d2578063b3ab66b0146106e957610230565b80638cc080251461057f5780638da5cb5b146105bc57806390aa0b0f146105e75780639231ab2a1461061357806395d89b411461065057610230565b8063375a069a116101bc5780634f6ccce7116101805780634f6ccce71461048857806355f804b3146104c55780636352211e146104ee57806370a082311461052b578063715018a61461056857610230565b8063375a069a146103ea57806338be81421461041357806341fbddbd1461042a57806342842e0e14610434578063496feeee1461045d57610230565b80630fcf2e75116102035780630fcf2e751461030357806316b8060c1461032e57806318160ddd1461035957806323b872dd146103845780632f745c59146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c6004803603810190610257919061396e565b6108e3565b60405161026991906140b9565b60405180910390f35b34801561027e57600080fd5b50610287610a2d565b60405161029491906140d4565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613a05565b610abf565b6040516102d19190614052565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613932565b610b44565b005b34801561030f57600080fd5b50610318610c5d565b60405161032591906140b9565b60405180910390f35b34801561033a57600080fd5b50610343610c70565b6040516103509190614511565b60405180910390f35b34801561036557600080fd5b5061036e610c94565b60405161037b9190614511565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a6919061382c565b610c9e565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190613932565b610cae565b6040516103e19190614511565b60405180910390f35b3480156103f657600080fd5b50610411600480360381019061040c9190613a05565b610eac565b005b34801561041f57600080fd5b50610428611014565b005b610432611048565b005b34801561044057600080fd5b5061045b6004803603810190610456919061382c565b6113b1565b005b34801561046957600080fd5b506104726113d1565b60405161047f9190614511565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa9190613a05565b6113f5565b6040516104bc9190614511565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e791906139c0565b611448565b005b3480156104fa57600080fd5b5061051560048036038101906105109190613a05565b611466565b6040516105229190614052565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d91906137c7565b61147c565b60405161055f9190614511565b60405180910390f35b34801561057457600080fd5b5061057d611565565b005b34801561058b57600080fd5b506105a660048036038101906105a191906137c7565b611579565b6040516105b391906140b9565b60405180910390f35b3480156105c857600080fd5b506105d1611599565b6040516105de9190614052565b60405180910390f35b3480156105f357600080fd5b506105fc6115c2565b60405161060a92919061452c565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613a05565b6115fc565b60405161064791906144f6565b60405180910390f35b34801561065c57600080fd5b50610665611614565b60405161067291906140d4565b60405180910390f35b34801561068757600080fd5b506106906116a6565b005b34801561069e57600080fd5b506106b960048036038101906106b491906138f6565b6116da565b005b3480156106c757600080fd5b506106d061185b565b005b3480156106de57600080fd5b506106e7611922565b005b61070360048036038101906106fe9190613a05565b611980565b005b34801561071157600080fd5b5061072c6004803603810190610727919061387b565b611c70565b005b34801561073a57600080fd5b5061075560048036038101906107509190613a05565b611ccc565b60405161076291906140d4565b60405180910390f35b34801561077757600080fd5b50610780611d73565b60405161078d9190614511565b60405180910390f35b3480156107a257600080fd5b506107ab611d97565b6040516107b89190614511565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e391906137c7565b611d9d565b6040516107f59190614511565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190613a2e565b611daf565b005b34801561083357600080fd5b5061084e600480360381019061084991906137f0565b611e47565b60405161085b91906140b9565b60405180910390f35b34801561087057600080fd5b50610879611edb565b60405161088691906140b9565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b191906137c7565b611eee565b005b3480156108c457600080fd5b506108cd611f72565b6040516108da9190614511565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a1657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a265750610a2582611f96565b5b9050919050565b606060028054610a3c90614898565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6890614898565b8015610ab55780601f10610a8a57610100808354040283529160200191610ab5565b820191906000526020600020905b815481529060010190602001808311610a9857829003601f168201915b5050505050905090565b6000610aca82612000565b610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b00906144b6565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4f82611466565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb790614356565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bdf61200e565b73ffffffffffffffffffffffffffffffffffffffff161480610c0e5750610c0d81610c0861200e565b611e47565b5b610c4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4490614256565b60405180910390fd5b610c58838383612016565b505050565b600a60009054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000001481565b6000600154905090565b610ca98383836120c8565b505050565b6000610cb98361147c565b8210610cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf1906140f6565b60405180910390fd5b6000610d04610c94565b905060008060005b83811015610e6a576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dfe57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e565786841415610e47578195505050505050610ea6565b8380610e52906148fb565b9450505b508080610e62906148fb565b915050610d0c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d90614456565b60405180910390fd5b92915050565b610eb4612681565b7f00000000000000000000000000000000000000000000000000000000000003e881610ede610c94565b610ee8919061463f565b1115610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090614416565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001482610f579190614944565b14610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90614436565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001482610fc59190614695565b905060005b8181101561100f57610ffc337f00000000000000000000000000000000000000000000000000000000000000146126ff565b8080611007906148fb565b915050610fca565b505050565b61101c612681565b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90614216565b60405180910390fd5b6000600c6040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090506000816000015167ffffffffffffffff169050600a60019054906101000a900460ff1661118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490614156565b60405180910390fd5b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190614236565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000027106001611245610c94565b61124f919061463f565b1115611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790614296565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000c860016112bc33611d9d565b6112c6919061463f565b1115611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe906143f6565b60405180910390fd5b8034101561134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190614136565b60405180910390fd5b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506113ad3360016126ff565b5050565b6113cc83838360405180602001604052806000815250611c70565b505050565b7f00000000000000000000000000000000000000000000000000000000000000c881565b60006113ff610c94565b8210611440576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611437906141b6565b60405180910390fd5b819050919050565b611450612681565b8181600b91906114619291906135ba565b505050565b60006114718261271d565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490614276565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61156d612681565b6115776000612920565b565b600d6020528060005260406000206000915054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900467ffffffffffffffff16905082565b611604613640565b61160d8261271d565b9050919050565b60606003805461162390614898565b80601f016020809104026020016040519081016040528092919081815260200182805461164f90614898565b801561169c5780601f106116715761010080835404028352916020019161169c565b820191906000526020600020905b81548152906001019060200180831161167f57829003601f168201915b5050505050905090565b6116ae612681565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6116e261200e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790614316565b60405180910390fd5b806007600061175d61200e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661180a61200e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184f91906140b9565b60405180910390a35050565b611863612681565b61186b6129e4565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516118919061403d565b60006040518083038185875af1925050503d80600081146118ce576040519150601f19603f3d011682016040523d82523d6000602084013e6118d3565b606091505b5050905080611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90614376565b60405180910390fd5b50611920612a34565b565b61192a612681565b600a60019054906101000a900460ff1615600a60016101000a81548160ff021916908315150217905550600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e590614216565b60405180910390fd5b6000600c6040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff168152505090506000816020015167ffffffffffffffff169050600a60009054906101000a900460ff16611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc90614116565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000271083611aef610c94565b611af9919061463f565b1115611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190614296565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000c883611b6533611d9d565b611b6f919061463f565b1115611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba7906143f6565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a906143f6565b60405180910390fd5b8281611c1f91906146c6565b341015611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890614136565b60405180910390fd5b611c6b33846126ff565b505050565b611c7b8484846120c8565b611c8784848484612a3e565b611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd90614396565b60405180910390fd5b50505050565b6060611cd782612000565b611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d906142f6565b60405180910390fd5b6000611d20612bd5565b90506000815111611d405760405180602001604052806000815250611d6b565b80611d4a84612c67565b604051602001611d5b929190614019565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000271081565b60085481565b6000611da882612d8b565b9050919050565b611db7612681565b60405180604001604052808367ffffffffffffffff1681526020018267ffffffffffffffff16815250600c60008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60019054906101000a900460ff1681565b611ef6612681565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90614176565b60405180910390fd5b611f6f81612920565b50565b7f00000000000000000000000000000000000000000000000000000000000003e881565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006120d38261271d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120fa61200e565b73ffffffffffffffffffffffffffffffffffffffff161480612156575061211f61200e565b73ffffffffffffffffffffffffffffffffffffffff1661213e84610abf565b73ffffffffffffffffffffffffffffffffffffffff16145b806121725750612171826000015161216c61200e565b611e47565b5b9050806121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90614336565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d906142b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228d906141d6565b60405180910390fd5b6122a38585856001612e74565b6122b36000848460000151612016565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123219190614720565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166123c591906145f9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124cb919061463f565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156126115761254181612000565b15612610576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126798686866001612e7a565b505050505050565b61268961200e565b73ffffffffffffffffffffffffffffffffffffffff166126a7611599565b73ffffffffffffffffffffffffffffffffffffffff16146126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f4906142d6565b60405180910390fd5b565b612719828260405180602001604052806000815250612e80565b5050565b612725613640565b61272e82612000565b61276d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276490614196565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000c883106127d15760017f00000000000000000000000000000000000000000000000000000000000000c8846127c49190614754565b6127ce919061463f565b90505b60008390505b8181106128df576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128cb5780935050505061291b565b5080806128d79061486e565b9150506127d7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291290614496565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60026009541415612a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2190614476565b60405180910390fd5b6002600981905550565b6001600981905550565b6000612a5f8473ffffffffffffffffffffffffffffffffffffffff16613360565b15612bc8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a8861200e565b8786866040518563ffffffff1660e01b8152600401612aaa949392919061406d565b602060405180830381600087803b158015612ac457600080fd5b505af1925050508015612af557506040513d601f19601f82011682018060405250810190612af29190613997565b60015b612b78573d8060008114612b25576040519150601f19603f3d011682016040523d82523d6000602084013e612b2a565b606091505b50600081511415612b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6790614396565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bcd565b600190505b949350505050565b6060600b8054612be490614898565b80601f0160208091040260200160405190810160405280929190818152602001828054612c1090614898565b8015612c5d5780601f10612c3257610100808354040283529160200191612c5d565b820191906000526020600020905b815481529060010190602001808311612c4057829003601f168201915b5050505050905090565b606060006001612c7684613383565b01905060008167ffffffffffffffff811115612cbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ced5781602001600182028036833780820191505090505b509050600082602001820190505b600115612d80578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612d6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0494506000851415612d7b57612d80565b612cfb565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df3906141f6565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eee906143d6565b60405180910390fd5b612f0081612000565b15612f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f37906143b6565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000c8831115612fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9a906144d6565b60405180910390fd5b612fb06000858386612e74565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516130ad91906145f9565b6fffffffffffffffffffffffffffffffff1681526020018583602001516130d491906145f9565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561334357818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132e36000888488612a3e565b613322576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331990614396565b60405180910390fd5b818061332d906148fb565b925050808061333b906148fb565b915050613272565b50806001819055506133586000878588612e7a565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613407577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816133fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061346a576d04ee2d6d415b85acef81000000008381613460577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506020810190505b662386f26fc1000083106134bf57662386f26fc1000083816134b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506010810190505b6305f5e100831061350e576305f5e1008381613504577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506008810190505b612710831061355957612710838161354f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506004810190505b606483106135a25760648381613598577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b0492506002810190505b600a83106135b1576001810190505b80915050919050565b8280546135c690614898565b90600052602060002090601f0160209004810192826135e8576000855561362f565b82601f1061360157803560ff191683800117855561362f565b8280016001018555821561362f579182015b8281111561362e578235825591602001919060010190613613565b5b50905061363c919061367a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561369357600081600090555060010161367b565b5090565b60006136aa6136a58461457a565b614555565b9050828152602081018484840111156136c257600080fd5b6136cd84828561482c565b509392505050565b6000813590506136e481615283565b92915050565b6000813590506136f98161529a565b92915050565b60008135905061370e816152b1565b92915050565b600081519050613723816152b1565b92915050565b600082601f83011261373a57600080fd5b813561374a848260208601613697565b91505092915050565b60008083601f84011261376557600080fd5b8235905067ffffffffffffffff81111561377e57600080fd5b60208301915083600182028301111561379657600080fd5b9250929050565b6000813590506137ac816152c8565b92915050565b6000813590506137c1816152df565b92915050565b6000602082840312156137d957600080fd5b60006137e7848285016136d5565b91505092915050565b6000806040838503121561380357600080fd5b6000613811858286016136d5565b9250506020613822858286016136d5565b9150509250929050565b60008060006060848603121561384157600080fd5b600061384f868287016136d5565b9350506020613860868287016136d5565b92505060406138718682870161379d565b9150509250925092565b6000806000806080858703121561389157600080fd5b600061389f878288016136d5565b94505060206138b0878288016136d5565b93505060406138c18782880161379d565b925050606085013567ffffffffffffffff8111156138de57600080fd5b6138ea87828801613729565b91505092959194509250565b6000806040838503121561390957600080fd5b6000613917858286016136d5565b9250506020613928858286016136ea565b9150509250929050565b6000806040838503121561394557600080fd5b6000613953858286016136d5565b92505060206139648582860161379d565b9150509250929050565b60006020828403121561398057600080fd5b600061398e848285016136ff565b91505092915050565b6000602082840312156139a957600080fd5b60006139b784828501613714565b91505092915050565b600080602083850312156139d357600080fd5b600083013567ffffffffffffffff8111156139ed57600080fd5b6139f985828601613753565b92509250509250929050565b600060208284031215613a1757600080fd5b6000613a258482850161379d565b91505092915050565b60008060408385031215613a4157600080fd5b6000613a4f858286016137b2565b9250506020613a60858286016137b2565b9150509250929050565b613a7381614788565b82525050565b613a8281614788565b82525050565b613a918161479a565b82525050565b6000613aa2826145ab565b613aac81856145c1565b9350613abc81856020860161483b565b613ac581614a31565b840191505092915050565b6000613adb826145b6565b613ae581856145dd565b9350613af581856020860161483b565b613afe81614a31565b840191505092915050565b6000613b14826145b6565b613b1e81856145ee565b9350613b2e81856020860161483b565b80840191505092915050565b6000613b476022836145dd565b9150613b5282614a42565b604082019050919050565b6000613b6a6017836145dd565b9150613b7582614a91565b602082019050919050565b6000613b8d6028836145dd565b9150613b9882614aba565b604082019050919050565b6000613bb0601a836145dd565b9150613bbb82614b09565b602082019050919050565b6000613bd36026836145dd565b9150613bde82614b32565b604082019050919050565b6000613bf6602a836145dd565b9150613c0182614b81565b604082019050919050565b6000613c196023836145dd565b9150613c2482614bd0565b604082019050919050565b6000613c3c6025836145dd565b9150613c4782614c1f565b604082019050919050565b6000613c5f6031836145dd565b9150613c6a82614c6e565b604082019050919050565b6000613c82601e836145dd565b9150613c8d82614cbd565b602082019050919050565b6000613ca5601e836145dd565b9150613cb082614ce6565b602082019050919050565b6000613cc86039836145dd565b9150613cd382614d0f565b604082019050919050565b6000613ceb602b836145dd565b9150613cf682614d5e565b604082019050919050565b6000613d0e6012836145dd565b9150613d1982614dad565b602082019050919050565b6000613d316026836145dd565b9150613d3c82614dd6565b604082019050919050565b6000613d546020836145dd565b9150613d5f82614e25565b602082019050919050565b6000613d77602f836145dd565b9150613d8282614e4e565b604082019050919050565b6000613d9a601a836145dd565b9150613da582614e9d565b602082019050919050565b6000613dbd6032836145dd565b9150613dc882614ec6565b604082019050919050565b6000613de06022836145dd565b9150613deb82614f15565b604082019050919050565b6000613e036000836145d2565b9150613e0e82614f64565b600082019050919050565b6000613e266010836145dd565b9150613e3182614f67565b602082019050919050565b6000613e496033836145dd565b9150613e5482614f90565b604082019050919050565b6000613e6c601d836145dd565b9150613e7782614fdf565b602082019050919050565b6000613e8f6021836145dd565b9150613e9a82615008565b604082019050919050565b6000613eb26016836145dd565b9150613ebd82615057565b602082019050919050565b6000613ed56027836145dd565b9150613ee082615080565b604082019050919050565b6000613ef8602b836145dd565b9150613f03826150cf565b604082019050919050565b6000613f1b602e836145dd565b9150613f268261511e565b604082019050919050565b6000613f3e601f836145dd565b9150613f498261516d565b602082019050919050565b6000613f61602f836145dd565b9150613f6c82615196565b604082019050919050565b6000613f84602d836145dd565b9150613f8f826151e5565b604082019050919050565b6000613fa76022836145dd565b9150613fb282615234565b604082019050919050565b604082016000820151613fd36000850182613a6a565b506020820151613fe66020850182613ffb565b50505050565b613ff58161480e565b82525050565b61400481614818565b82525050565b61401381614818565b82525050565b60006140258285613b09565b91506140318284613b09565b91508190509392505050565b600061404882613df6565b9150819050919050565b60006020820190506140676000830184613a79565b92915050565b60006080820190506140826000830187613a79565b61408f6020830186613a79565b61409c6040830185613fec565b81810360608301526140ae8184613a97565b905095945050505050565b60006020820190506140ce6000830184613a88565b92915050565b600060208201905081810360008301526140ee8184613ad0565b905092915050565b6000602082019050818103600083015261410f81613b3a565b9050919050565b6000602082019050818103600083015261412f81613b5d565b9050919050565b6000602082019050818103600083015261414f81613b80565b9050919050565b6000602082019050818103600083015261416f81613ba3565b9050919050565b6000602082019050818103600083015261418f81613bc6565b9050919050565b600060208201905081810360008301526141af81613be9565b9050919050565b600060208201905081810360008301526141cf81613c0c565b9050919050565b600060208201905081810360008301526141ef81613c2f565b9050919050565b6000602082019050818103600083015261420f81613c52565b9050919050565b6000602082019050818103600083015261422f81613c75565b9050919050565b6000602082019050818103600083015261424f81613c98565b9050919050565b6000602082019050818103600083015261426f81613cbb565b9050919050565b6000602082019050818103600083015261428f81613cde565b9050919050565b600060208201905081810360008301526142af81613d01565b9050919050565b600060208201905081810360008301526142cf81613d24565b9050919050565b600060208201905081810360008301526142ef81613d47565b9050919050565b6000602082019050818103600083015261430f81613d6a565b9050919050565b6000602082019050818103600083015261432f81613d8d565b9050919050565b6000602082019050818103600083015261434f81613db0565b9050919050565b6000602082019050818103600083015261436f81613dd3565b9050919050565b6000602082019050818103600083015261438f81613e19565b9050919050565b600060208201905081810360008301526143af81613e3c565b9050919050565b600060208201905081810360008301526143cf81613e5f565b9050919050565b600060208201905081810360008301526143ef81613e82565b9050919050565b6000602082019050818103600083015261440f81613ea5565b9050919050565b6000602082019050818103600083015261442f81613ec8565b9050919050565b6000602082019050818103600083015261444f81613eeb565b9050919050565b6000602082019050818103600083015261446f81613f0e565b9050919050565b6000602082019050818103600083015261448f81613f31565b9050919050565b600060208201905081810360008301526144af81613f54565b9050919050565b600060208201905081810360008301526144cf81613f77565b9050919050565b600060208201905081810360008301526144ef81613f9a565b9050919050565b600060408201905061450b6000830184613fbd565b92915050565b60006020820190506145266000830184613fec565b92915050565b6000604082019050614541600083018561400a565b61454e602083018461400a565b9392505050565b600061455f614570565b905061456b82826148ca565b919050565b6000604051905090565b600067ffffffffffffffff82111561459557614594614a02565b5b61459e82614a31565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614604826147d2565b915061460f836147d2565b9250826fffffffffffffffffffffffffffffffff0382111561463457614633614975565b5b828201905092915050565b600061464a8261480e565b91506146558361480e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561468a57614689614975565b5b828201905092915050565b60006146a08261480e565b91506146ab8361480e565b9250826146bb576146ba6149a4565b5b828204905092915050565b60006146d18261480e565b91506146dc8361480e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561471557614714614975565b5b828202905092915050565b600061472b826147d2565b9150614736836147d2565b92508282101561474957614748614975565b5b828203905092915050565b600061475f8261480e565b915061476a8361480e565b92508282101561477d5761477c614975565b5b828203905092915050565b6000614793826147ee565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561485957808201518184015260208101905061483e565b83811115614868576000848401525b50505050565b60006148798261480e565b9150600082141561488d5761488c614975565b5b600182039050919050565b600060028204905060018216806148b057607f821691505b602082108114156148c4576148c36149d3565b5b50919050565b6148d382614a31565b810181811067ffffffffffffffff821117156148f2576148f1614a02565b5b80604052505050565b60006149068261480e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561493957614938614975565b5b600182019050919050565b600061494f8261480e565b915061495a8361480e565b92508261496a576149696149a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f7075626c69632073616c65206973206e6f74206c697665000000000000000000600082015250565b7f45746865722076616c75652073656e742069732062656c6f7720746865206d6960008201527f6e74207072696365000000000000000000000000000000000000000000000000602082015250565b7f616c6c6f776c6973742073616c65206973206e6f74206c697665000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f616c6c6f776c6973742073706f7420616c726561647920636c61696d65640000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f746f6f206d616e7920616c7265616479206d696e746564206265666f7265206460008201527f6576206d696e7400000000000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d61784d696e7453697a65000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61528c81614788565b811461529757600080fd5b50565b6152a38161479a565b81146152ae57600080fd5b50565b6152ba816147a6565b81146152c557600080fd5b50565b6152d18161480e565b81146152dc57600080fd5b50565b6152e881614818565b81146152f357600080fd5b5056fea264697066735822122053af0645f25abb90baf49f17019129625e519347cd914d675e81ad71aa93bba164736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : maxWalletCount_ (uint256): 200
Arg [1] : maxMintSize_ (uint256): 20
Arg [2] : collectionSize_ (uint256): 10000
Arg [3] : amountForDevs_ (uint256): 1000
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode Sourcemap
62930:3925:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42208:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43934:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45459:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45022:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63154:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63031:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40769:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46309:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41400:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64555:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64317:110;;;;;;;;;;;;;:::i;:::-;;64957:620;;;:::i;:::-;;46514:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62987:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40932:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66317:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43757:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42634:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56393:103;;;;;;;;;;;;;:::i;:::-;;63396:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55745:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63361:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;66723:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44089:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64433:101;;;;;;;;;;;;;:::i;:::-;;45727:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66423:181;;;;;;;;;;;;;:::i;:::-;;64158:153;;;;;;;;;;;;;:::i;:::-;;65583:614;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46734:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44250:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63115:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51149:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66610:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63969:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46064:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63197:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56651:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63072:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42208:370;42335:4;42380:25;42365:40;;;:11;:40;;;;:99;;;;42431:33;42416:48;;;:11;:48;;;;42365:99;:160;;;;42490:35;42475:50;;;:11;:50;;;;42365:160;:207;;;;42536:36;42560:11;42536:23;:36::i;:::-;42365:207;42351:221;;42208:370;;;:::o;43934:94::-;43988:13;44017:5;44010:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43934:94;:::o;45459:204::-;45527:7;45551:16;45559:7;45551;:16::i;:::-;45543:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45633:15;:24;45649:7;45633:24;;;;;;;;;;;;;;;;;;;;;45626:31;;45459:204;;;:::o;45022:379::-;45091:13;45107:24;45123:7;45107:15;:24::i;:::-;45091:40;;45152:5;45146:11;;:2;:11;;;;45138:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45237:5;45221:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45246:37;45263:5;45270:12;:10;:12::i;:::-;45246:16;:37::i;:::-;45221:62;45205:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45367:28;45376:2;45380:7;45389:5;45367:8;:28::i;:::-;45022:379;;;:::o;63154:38::-;;;;;;;;;;;;;:::o;63031:36::-;;;:::o;40769:94::-;40822:7;40845:12;;40838:19;;40769:94;:::o;46309:142::-;46417:28;46427:4;46433:2;46437:7;46417:9;:28::i;:::-;46309:142;;;:::o;41400:744::-;41509:7;41544:16;41554:5;41544:9;:16::i;:::-;41536:5;:24;41528:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41606:22;41631:13;:11;:13::i;:::-;41606:38;;41651:19;41681:25;41731:9;41726:350;41750:14;41746:1;:18;41726:350;;;41780:31;41814:11;:14;41826:1;41814:14;;;;;;;;;;;41780:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41867:1;41841:28;;:9;:14;;;:28;;;41837:89;;41902:9;:14;;;41882:34;;41837:89;41959:5;41938:26;;:17;:26;;;41934:135;;;41996:5;41981:11;:20;41977:59;;;42023:1;42016:8;;;;;;;;;41977:59;42046:13;;;;;:::i;:::-;;;;41934:135;41726:350;41766:3;;;;;:::i;:::-;;;;41726:350;;;;42082:56;;;;;;;;;;:::i;:::-;;;;;;;;41400:744;;;;;:::o;64555:396::-;55631:13;:11;:13::i;:::-;64652::::1;64640:8;64624:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;64616:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;64750:1;64735:11;64724:8;:22;;;;:::i;:::-;:27;64716:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;64806:17;64837:11;64826:8;:22;;;;:::i;:::-;64806:42;;64860:9;64855:91;64879:9;64875:1;:13;64855:91;;;64904:34;64914:10;64926:11;64904:9;:34::i;:::-;64890:3;;;;;:::i;:::-;;;;64855:91;;;;55655:1;64555:396:::0;:::o;64317:110::-;55631:13;:11;:13::i;:::-;64400:21:::1;;;;;;;;;;;64399:22;64375:21;;:46;;;;;;;;;;;;;;;;;;64317:110::o:0;64957:620::-;63904:10;63891:23;;:9;:23;;;63883:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;65019:24:::1;65046:10;65019:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;65063:22;65096:6;:21;;;65088:30;;65063:55;;65133:21;;;;;;;;;;;65125:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;65201:9;:21;65211:10;65201:21;;;;;;;;;;;;;;;;;;;;;;;;;65200:22;65192:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;65293:14;65288:1;65272:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:35;;65264:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;65377:14;65372:1;65345:24;65358:10;65345:12;:24::i;:::-;:28;;;;:::i;:::-;:46;;65337:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;65446:14;65433:9;:27;;65425:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;65536:4;65512:9;:21;65522:10;65512:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;65547:24;65557:10;65569:1;65547:9;:24::i;:::-;63956:1;;64957:620::o:0;46514:157::-;46626:39;46643:4;46649:2;46653:7;46626:39;;;;;;;;;;;;:16;:39::i;:::-;46514:157;;;:::o;62987:39::-;;;:::o;40932:177::-;40999:7;41031:13;:11;:13::i;:::-;41023:5;:21;41015:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41098:5;41091:12;;40932:177;;;:::o;66317:100::-;55631:13;:11;:13::i;:::-;66404:7:::1;;66388:13;:23;;;;;;;:::i;:::-;;66317:100:::0;;:::o;43757:118::-;43821:7;43844:20;43856:7;43844:11;:20::i;:::-;:25;;;43837:32;;43757:118;;;:::o;42634:211::-;42698:7;42739:1;42722:19;;:5;:19;;;;42714:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;42811:12;:19;42824:5;42811:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;42803:36;;42796:43;;42634:211;;;:::o;56393:103::-;55631:13;:11;:13::i;:::-;56458:30:::1;56485:1;56458:18;:30::i;:::-;56393:103::o:0;63396:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;55745:87::-;55791:7;55818:6;;;;;;;;;;;55811:13;;55745:87;:::o;63361:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66723:129::-;66789:21;;:::i;:::-;66826:20;66838:7;66826:11;:20::i;:::-;66819:27;;66723:129;;;:::o;44089:98::-;44145:13;44174:7;44167:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44089:98;:::o;64433:101::-;55631:13;:11;:13::i;:::-;64510:18:::1;;;;;;;;;;;64509:19;64488:18;;:40;;;;;;;;;;;;;;;;;;64433:101::o:0;45727:274::-;45830:12;:10;:12::i;:::-;45818:24;;:8;:24;;;;45810:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45927:8;45882:18;:32;45901:12;:10;:12::i;:::-;45882:32;;;;;;;;;;;;;;;:42;45915:8;45882:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45976:8;45947:48;;45962:12;:10;:12::i;:::-;45947:48;;;45986:8;45947:48;;;;;;:::i;:::-;;;;;;;;45727:274;;:::o;66423:181::-;55631:13;:11;:13::i;:::-;36969:21:::1;:19;:21::i;:::-;66488:12:::2;66506:10;:15;;66529:21;66506:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66487:68;;;66570:7;66562:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;37001:1;37013:20:::1;:18;:20::i;:::-;66423:181::o:0;64158:153::-;55631:13;:11;:13::i;:::-;64237:21:::1;;;;;;;;;;;64236:22;64212:21;;:46;;;;;;;;;;;;;;;;;;64287:18;;;;;;;;;;;64286:19;64265:18;;:40;;;;;;;;;;;;;;;;;;64158:153::o:0;65583:614::-;63904:10;63891:23;;:9;:23;;;63883:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;65662:24:::1;65689:10;65662:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;65706:19;65736:6;:18;;;65728:27;;65706:49;;65770:18;;;;;;;;;;;65762:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;65859:14;65847:8;65831:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;65823:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;65950:14;65938:8;65911:24;65924:10;65911:12;:24::i;:::-;:35;;;;:::i;:::-;:53;;65903:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;66018:11;66006:8;:23;;65998:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;66099:8;66085:11;:22;;;;:::i;:::-;66071:9;:37;;66063:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;66160:31;66170:10;66182:8;66160:9;:31::i;:::-;63956:1;;65583:614:::0;:::o;46734:311::-;46871:28;46881:4;46887:2;46891:7;46871:9;:28::i;:::-;46922:48;46945:4;46951:2;46955:7;46964:5;46922:22;:48::i;:::-;46906:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;46734:311;;;;:::o;44250:394::-;44348:13;44389:16;44397:7;44389;:16::i;:::-;44373:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;44479:21;44503:10;:8;:10::i;:::-;44479:34;;44558:1;44540:7;44534:21;:25;:104;;;;;;;;;;;;;;;;;44595:7;44604:18;:7;:16;:18::i;:::-;44578:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44534:104;44520:118;;;44250:394;;;:::o;63115:34::-;;;:::o;51149:43::-;;;;:::o;66610:107::-;66668:7;66691:20;66705:5;66691:13;:20::i;:::-;66684:27;;66610:107;;;:::o;63969:183::-;55631:13;:11;:13::i;:::-;64080:66:::1;;;;;;;;64099:17;64080:66;;;;;;64125:14;64080:66;;;;::::0;64067:10:::1;:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63969:183:::0;;:::o;46064:186::-;46186:4;46209:18;:25;46228:5;46209:25;;;;;;;;;;;;;;;:35;46235:8;46209:35;;;;;;;;;;;;;;;;;;;;;;;;;46202:42;;46064:186;;;;:::o;63197:41::-;;;;;;;;;;;;;:::o;56651:201::-;55631:13;:11;:13::i;:::-;56760:1:::1;56740:22;;:8;:22;;;;56732:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56816:28;56835:8;56816:18;:28::i;:::-;56651:201:::0;:::o;63072:38::-;;;:::o;27463:157::-;27548:4;27587:25;27572:40;;;:11;:40;;;;27565:47;;27463:157;;;:::o;47284:105::-;47341:4;47371:12;;47361:7;:22;47354:29;;47284:105;;;:::o;38249:98::-;38302:7;38329:10;38322:17;;38249:98;:::o;50971:172::-;51095:2;51068:15;:24;51084:7;51068:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51129:7;51125:2;51109:28;;51118:5;51109:28;;;;;;;;;;;;50971:172;;;:::o;49336:1529::-;49433:35;49471:20;49483:7;49471:11;:20::i;:::-;49433:58;;49500:22;49542:13;:18;;;49526:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;49595:12;:10;:12::i;:::-;49571:36;;:20;49583:7;49571:11;:20::i;:::-;:36;;;49526:81;:142;;;;49618:50;49635:13;:18;;;49655:12;:10;:12::i;:::-;49618:16;:50::i;:::-;49526:142;49500:169;;49694:17;49678:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;49826:4;49804:26;;:13;:18;;;:26;;;49788:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;49915:1;49901:16;;:2;:16;;;;49893:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49968:43;49990:4;49996:2;50000:7;50009:1;49968:21;:43::i;:::-;50068:49;50085:1;50089:7;50098:13;:18;;;50068:8;:49::i;:::-;50156:1;50126:12;:18;50139:4;50126:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50192:1;50164:12;:16;50177:2;50164:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50223:43;;;;;;;;50238:2;50223:43;;;;;;50249:15;50223:43;;;;;50200:11;:20;50212:7;50200:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50494:19;50526:1;50516:7;:11;;;;:::i;:::-;50494:33;;50579:1;50538:43;;:11;:24;50550:11;50538:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50534:236;;;50596:20;50604:11;50596:7;:20::i;:::-;50592:171;;;50656:97;;;;;;;;50683:13;:18;;;50656:97;;;;;;50714:13;:28;;;50656:97;;;;;50629:11;:24;50641:11;50629:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50592:171;50534:236;50802:7;50798:2;50783:27;;50792:4;50783:27;;;;;;;;;;;;50817:42;50838:4;50844:2;50848:7;50857:1;50817:20;:42::i;:::-;49336:1529;;;;;;:::o;55910:132::-;55985:12;:10;:12::i;:::-;55974:23;;:7;:5;:7::i;:::-;:23;;;55966:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55910:132::o;47395:98::-;47460:27;47470:2;47474:8;47460:27;;;;;;;;;;;;:9;:27::i;:::-;47395:98;;:::o;43097:606::-;43173:21;;:::i;:::-;43214:16;43222:7;43214;:16::i;:::-;43206:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43286:26;43334:12;43323:7;:23;43319:93;;43403:1;43388:12;43378:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43357:47;;43319:93;43425:12;43440:7;43425:22;;43420:212;43457:18;43449:4;:26;43420:212;;43494:31;43528:11;:17;43540:4;43528:17;;;;;;;;;;;43494:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43584:1;43558:28;;:9;:14;;;:28;;;43554:71;;43606:9;43599:16;;;;;;;43554:71;43420:212;43477:6;;;;;:::i;:::-;;;;43420:212;;;;43640:57;;;;;;;;;;:::i;:::-;;;;;;;;43097:606;;;;:::o;57012:191::-;57086:16;57105:6;;;;;;;;;;;57086:25;;57131:8;57122:6;;:17;;;;;;;;;;;;;;;;;;57186:8;57155:40;;57176:8;57155:40;;;;;;;;;;;;57012:191;;:::o;37049:293::-;36451:1;37183:7;;:19;;37175:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;36451:1;37316:7;:18;;;;37049:293::o;37350:213::-;36407:1;37533:7;:22;;;;37350:213::o;52686:690::-;52823:4;52840:15;:2;:13;;;:15::i;:::-;52836:535;;;52895:2;52879:36;;;52916:12;:10;:12::i;:::-;52930:4;52936:7;52945:5;52879:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52866:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53127:1;53110:6;:13;:18;53106:215;;;53143:61;;;;;;;;;;:::i;:::-;;;;;;;;53106:215;53289:6;53283:13;53274:6;53270:2;53266:15;53259:38;52866:464;53011:45;;;53001:55;;;:6;:55;;;;52994:62;;;;;52836:535;53359:4;53352:11;;52686:690;;;;;;;:::o;66203:108::-;66263:13;66292;66285:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66203:108;:::o;13305:716::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;;;;;;;;;;;;13951:1;13942:5;:10;13938:21;;;13954:5;;13938:21;13687:288;;;13996:6;13989:13;;;;;13305:716;;;:::o;42851:240::-;42912:7;42961:1;42944:19;;:5;:19;;;;42928:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;43052:12;:19;43065:5;43052:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;43044:41;;43037:48;;42851:240;;;:::o;53838:141::-;;;;;:::o;54365:140::-;;;;;:::o;47832:1272::-;47937:20;47960:12;;47937:35;;48001:1;47987:16;;:2;:16;;;;47979:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48178:21;48186:12;48178:7;:21::i;:::-;48177:22;48169:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48260:12;48248:8;:24;;48240:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48320:61;48350:1;48354:2;48358:12;48372:8;48320:21;:61::i;:::-;48390:30;48423:12;:16;48436:2;48423:16;;;;;;;;;;;;;;;48390:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48465:119;;;;;;;;48515:8;48485:11;:19;;;:39;;;;:::i;:::-;48465:119;;;;;;48568:8;48533:11;:24;;;:44;;;;:::i;:::-;48465:119;;;;;48446:12;:16;48459:2;48446:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48619:43;;;;;;;;48634:2;48619:43;;;;;;48645:15;48619:43;;;;;48591:11;:25;48603:12;48591:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48671:20;48694:12;48671:35;;48720:9;48715:281;48739:8;48735:1;:12;48715:281;;;48793:12;48789:2;48768:38;;48785:1;48768:38;;;;;;;;;;;;48833:59;48864:1;48868:2;48872:12;48886:5;48833:22;:59::i;:::-;48815:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;48974:14;;;;;:::i;:::-;;;;48749:3;;;;;:::i;:::-;;;;48715:281;;;;49019:12;49004;:27;;;;49038:60;49067:1;49071:2;49075:12;49089:8;49038:20;:60::i;:::-;47832:1272;;;;;;:::o;16432:326::-;16492:4;16749:1;16727:7;:19;;;:23;16720:30;;16432:326;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;;;;;;;;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;;;;;;;;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;;;;;;;;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;;;;;;;;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;;;;;;;;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;;;;;;;;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1234:352::-;1292:8;1302:6;1352:3;1345:4;1337:6;1333:17;1329:27;1319:2;;1370:1;1367;1360:12;1319:2;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:2;;;1468:1;1465;1458:12;1422:2;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:2;;;1576:1;1573;1566:12;1519:2;1309:277;;;;;:::o;1592:139::-;1638:5;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:137::-;1782:5;1820:6;1807:20;1798:29;;1836:32;1862:5;1836:32;:::i;:::-;1788:86;;;;:::o;1880:262::-;1939:6;1988:2;1976:9;1967:7;1963:23;1959:32;1956:2;;;2004:1;2001;1994:12;1956:2;2047:1;2072:53;2117:7;2108:6;2097:9;2093:22;2072:53;:::i;:::-;2062:63;;2018:117;1946:196;;;;:::o;2148:407::-;2216:6;2224;2273:2;2261:9;2252:7;2248:23;2244:32;2241:2;;;2289:1;2286;2279:12;2241:2;2332:1;2357:53;2402:7;2393:6;2382:9;2378:22;2357:53;:::i;:::-;2347:63;;2303:117;2459:2;2485:53;2530:7;2521:6;2510:9;2506:22;2485:53;:::i;:::-;2475:63;;2430:118;2231:324;;;;;:::o;2561:552::-;2638:6;2646;2654;2703:2;2691:9;2682:7;2678:23;2674:32;2671:2;;;2719:1;2716;2709:12;2671:2;2762:1;2787:53;2832:7;2823:6;2812:9;2808:22;2787:53;:::i;:::-;2777:63;;2733:117;2889:2;2915:53;2960:7;2951:6;2940:9;2936:22;2915:53;:::i;:::-;2905:63;;2860:118;3017:2;3043:53;3088:7;3079:6;3068:9;3064:22;3043:53;:::i;:::-;3033:63;;2988:118;2661:452;;;;;:::o;3119:809::-;3214:6;3222;3230;3238;3287:3;3275:9;3266:7;3262:23;3258:33;3255:2;;;3304:1;3301;3294:12;3255:2;3347:1;3372:53;3417:7;3408:6;3397:9;3393:22;3372:53;:::i;:::-;3362:63;;3318:117;3474:2;3500:53;3545:7;3536:6;3525:9;3521:22;3500:53;:::i;:::-;3490:63;;3445:118;3602:2;3628:53;3673:7;3664:6;3653:9;3649:22;3628:53;:::i;:::-;3618:63;;3573:118;3758:2;3747:9;3743:18;3730:32;3789:18;3781:6;3778:30;3775:2;;;3821:1;3818;3811:12;3775:2;3849:62;3903:7;3894:6;3883:9;3879:22;3849:62;:::i;:::-;3839:72;;3701:220;3245:683;;;;;;;:::o;3934:401::-;3999:6;4007;4056:2;4044:9;4035:7;4031:23;4027:32;4024:2;;;4072:1;4069;4062:12;4024:2;4115:1;4140:53;4185:7;4176:6;4165:9;4161:22;4140:53;:::i;:::-;4130:63;;4086:117;4242:2;4268:50;4310:7;4301:6;4290:9;4286:22;4268:50;:::i;:::-;4258:60;;4213:115;4014:321;;;;;:::o;4341:407::-;4409:6;4417;4466:2;4454:9;4445:7;4441:23;4437:32;4434:2;;;4482:1;4479;4472:12;4434:2;4525:1;4550:53;4595:7;4586:6;4575:9;4571:22;4550:53;:::i;:::-;4540:63;;4496:117;4652:2;4678:53;4723:7;4714:6;4703:9;4699:22;4678:53;:::i;:::-;4668:63;;4623:118;4424:324;;;;;:::o;4754:260::-;4812:6;4861:2;4849:9;4840:7;4836:23;4832:32;4829:2;;;4877:1;4874;4867:12;4829:2;4920:1;4945:52;4989:7;4980:6;4969:9;4965:22;4945:52;:::i;:::-;4935:62;;4891:116;4819:195;;;;:::o;5020:282::-;5089:6;5138:2;5126:9;5117:7;5113:23;5109:32;5106:2;;;5154:1;5151;5144:12;5106:2;5197:1;5222:63;5277:7;5268:6;5257:9;5253:22;5222:63;:::i;:::-;5212:73;;5168:127;5096:206;;;;:::o;5308:395::-;5379:6;5387;5436:2;5424:9;5415:7;5411:23;5407:32;5404:2;;;5452:1;5449;5442:12;5404:2;5523:1;5512:9;5508:17;5495:31;5553:18;5545:6;5542:30;5539:2;;;5585:1;5582;5575:12;5539:2;5621:65;5678:7;5669:6;5658:9;5654:22;5621:65;:::i;:::-;5603:83;;;;5466:230;5394:309;;;;;:::o;5709:262::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5876:1;5901:53;5946:7;5937:6;5926:9;5922:22;5901:53;:::i;:::-;5891:63;;5847:117;5775:196;;;;:::o;5977:403::-;6043:6;6051;6100:2;6088:9;6079:7;6075:23;6071:32;6068:2;;;6116:1;6113;6106:12;6068:2;6159:1;6184:52;6228:7;6219:6;6208:9;6204:22;6184:52;:::i;:::-;6174:62;;6130:116;6285:2;6311:52;6355:7;6346:6;6335:9;6331:22;6311:52;:::i;:::-;6301:62;;6256:117;6058:322;;;;;:::o;6386:108::-;6463:24;6481:5;6463:24;:::i;:::-;6458:3;6451:37;6441:53;;:::o;6500:118::-;6587:24;6605:5;6587:24;:::i;:::-;6582:3;6575:37;6565:53;;:::o;6624:109::-;6705:21;6720:5;6705:21;:::i;:::-;6700:3;6693:34;6683:50;;:::o;6739:360::-;6825:3;6853:38;6885:5;6853:38;:::i;:::-;6907:70;6970:6;6965:3;6907:70;:::i;:::-;6900:77;;6986:52;7031:6;7026:3;7019:4;7012:5;7008:16;6986:52;:::i;:::-;7063:29;7085:6;7063:29;:::i;:::-;7058:3;7054:39;7047:46;;6829:270;;;;;:::o;7105:364::-;7193:3;7221:39;7254:5;7221:39;:::i;:::-;7276:71;7340:6;7335:3;7276:71;:::i;:::-;7269:78;;7356:52;7401:6;7396:3;7389:4;7382:5;7378:16;7356:52;:::i;:::-;7433:29;7455:6;7433:29;:::i;:::-;7428:3;7424:39;7417:46;;7197:272;;;;;:::o;7475:377::-;7581:3;7609:39;7642:5;7609:39;:::i;:::-;7664:89;7746:6;7741:3;7664:89;:::i;:::-;7657:96;;7762:52;7807:6;7802:3;7795:4;7788:5;7784:16;7762:52;:::i;:::-;7839:6;7834:3;7830:16;7823:23;;7585:267;;;;;:::o;7858:366::-;8000:3;8021:67;8085:2;8080:3;8021:67;:::i;:::-;8014:74;;8097:93;8186:3;8097:93;:::i;:::-;8215:2;8210:3;8206:12;8199:19;;8004:220;;;:::o;8230:366::-;8372:3;8393:67;8457:2;8452:3;8393:67;:::i;:::-;8386:74;;8469:93;8558:3;8469:93;:::i;:::-;8587:2;8582:3;8578:12;8571:19;;8376:220;;;:::o;8602:366::-;8744:3;8765:67;8829:2;8824:3;8765:67;:::i;:::-;8758:74;;8841:93;8930:3;8841:93;:::i;:::-;8959:2;8954:3;8950:12;8943:19;;8748:220;;;:::o;8974:366::-;9116:3;9137:67;9201:2;9196:3;9137:67;:::i;:::-;9130:74;;9213:93;9302:3;9213:93;:::i;:::-;9331:2;9326:3;9322:12;9315:19;;9120:220;;;:::o;9346:366::-;9488:3;9509:67;9573:2;9568:3;9509:67;:::i;:::-;9502:74;;9585:93;9674:3;9585:93;:::i;:::-;9703:2;9698:3;9694:12;9687:19;;9492:220;;;:::o;9718:366::-;9860:3;9881:67;9945:2;9940:3;9881:67;:::i;:::-;9874:74;;9957:93;10046:3;9957:93;:::i;:::-;10075:2;10070:3;10066:12;10059:19;;9864:220;;;:::o;10090:366::-;10232:3;10253:67;10317:2;10312:3;10253:67;:::i;:::-;10246:74;;10329:93;10418:3;10329:93;:::i;:::-;10447:2;10442:3;10438:12;10431:19;;10236:220;;;:::o;10462:366::-;10604:3;10625:67;10689:2;10684:3;10625:67;:::i;:::-;10618:74;;10701:93;10790:3;10701:93;:::i;:::-;10819:2;10814:3;10810:12;10803:19;;10608:220;;;:::o;10834:366::-;10976:3;10997:67;11061:2;11056:3;10997:67;:::i;:::-;10990:74;;11073:93;11162:3;11073:93;:::i;:::-;11191:2;11186:3;11182:12;11175:19;;10980:220;;;:::o;11206:366::-;11348:3;11369:67;11433:2;11428:3;11369:67;:::i;:::-;11362:74;;11445:93;11534:3;11445:93;:::i;:::-;11563:2;11558:3;11554:12;11547:19;;11352:220;;;:::o;11578:366::-;11720:3;11741:67;11805:2;11800:3;11741:67;:::i;:::-;11734:74;;11817:93;11906:3;11817:93;:::i;:::-;11935:2;11930:3;11926:12;11919:19;;11724:220;;;:::o;11950:366::-;12092:3;12113:67;12177:2;12172:3;12113:67;:::i;:::-;12106:74;;12189:93;12278:3;12189:93;:::i;:::-;12307:2;12302:3;12298:12;12291:19;;12096:220;;;:::o;12322:366::-;12464:3;12485:67;12549:2;12544:3;12485:67;:::i;:::-;12478:74;;12561:93;12650:3;12561:93;:::i;:::-;12679:2;12674:3;12670:12;12663:19;;12468:220;;;:::o;12694:366::-;12836:3;12857:67;12921:2;12916:3;12857:67;:::i;:::-;12850:74;;12933:93;13022:3;12933:93;:::i;:::-;13051:2;13046:3;13042:12;13035:19;;12840:220;;;:::o;13066:366::-;13208:3;13229:67;13293:2;13288:3;13229:67;:::i;:::-;13222:74;;13305:93;13394:3;13305:93;:::i;:::-;13423:2;13418:3;13414:12;13407:19;;13212:220;;;:::o;13438:366::-;13580:3;13601:67;13665:2;13660:3;13601:67;:::i;:::-;13594:74;;13677:93;13766:3;13677:93;:::i;:::-;13795:2;13790:3;13786:12;13779:19;;13584:220;;;:::o;13810:366::-;13952:3;13973:67;14037:2;14032:3;13973:67;:::i;:::-;13966:74;;14049:93;14138:3;14049:93;:::i;:::-;14167:2;14162:3;14158:12;14151:19;;13956:220;;;:::o;14182:366::-;14324:3;14345:67;14409:2;14404:3;14345:67;:::i;:::-;14338:74;;14421:93;14510:3;14421:93;:::i;:::-;14539:2;14534:3;14530:12;14523:19;;14328:220;;;:::o;14554:366::-;14696:3;14717:67;14781:2;14776:3;14717:67;:::i;:::-;14710:74;;14793:93;14882:3;14793:93;:::i;:::-;14911:2;14906:3;14902:12;14895:19;;14700:220;;;:::o;14926:366::-;15068:3;15089:67;15153:2;15148:3;15089:67;:::i;:::-;15082:74;;15165:93;15254:3;15165:93;:::i;:::-;15283:2;15278:3;15274:12;15267:19;;15072:220;;;:::o;15298:398::-;15457:3;15478:83;15559:1;15554:3;15478:83;:::i;:::-;15471:90;;15570:93;15659:3;15570:93;:::i;:::-;15688:1;15683:3;15679:11;15672:18;;15461:235;;;:::o;15702:366::-;15844:3;15865:67;15929:2;15924:3;15865:67;:::i;:::-;15858:74;;15941:93;16030:3;15941:93;:::i;:::-;16059:2;16054:3;16050:12;16043:19;;15848:220;;;:::o;16074:366::-;16216:3;16237:67;16301:2;16296:3;16237:67;:::i;:::-;16230:74;;16313:93;16402:3;16313:93;:::i;:::-;16431:2;16426:3;16422:12;16415:19;;16220:220;;;:::o;16446:366::-;16588:3;16609:67;16673:2;16668:3;16609:67;:::i;:::-;16602:74;;16685:93;16774:3;16685:93;:::i;:::-;16803:2;16798:3;16794:12;16787:19;;16592:220;;;:::o;16818:366::-;16960:3;16981:67;17045:2;17040:3;16981:67;:::i;:::-;16974:74;;17057:93;17146:3;17057:93;:::i;:::-;17175:2;17170:3;17166:12;17159:19;;16964:220;;;:::o;17190:366::-;17332:3;17353:67;17417:2;17412:3;17353:67;:::i;:::-;17346:74;;17429:93;17518:3;17429:93;:::i;:::-;17547:2;17542:3;17538:12;17531:19;;17336:220;;;:::o;17562:366::-;17704:3;17725:67;17789:2;17784:3;17725:67;:::i;:::-;17718:74;;17801:93;17890:3;17801:93;:::i;:::-;17919:2;17914:3;17910:12;17903:19;;17708:220;;;:::o;17934:366::-;18076:3;18097:67;18161:2;18156:3;18097:67;:::i;:::-;18090:74;;18173:93;18262:3;18173:93;:::i;:::-;18291:2;18286:3;18282:12;18275:19;;18080:220;;;:::o;18306:366::-;18448:3;18469:67;18533:2;18528:3;18469:67;:::i;:::-;18462:74;;18545:93;18634:3;18545:93;:::i;:::-;18663:2;18658:3;18654:12;18647:19;;18452:220;;;:::o;18678:366::-;18820:3;18841:67;18905:2;18900:3;18841:67;:::i;:::-;18834:74;;18917:93;19006:3;18917:93;:::i;:::-;19035:2;19030:3;19026:12;19019:19;;18824:220;;;:::o;19050:366::-;19192:3;19213:67;19277:2;19272:3;19213:67;:::i;:::-;19206:74;;19289:93;19378:3;19289:93;:::i;:::-;19407:2;19402:3;19398:12;19391:19;;19196:220;;;:::o;19422:366::-;19564:3;19585:67;19649:2;19644:3;19585:67;:::i;:::-;19578:74;;19661:93;19750:3;19661:93;:::i;:::-;19779:2;19774:3;19770:12;19763:19;;19568:220;;;:::o;19794:366::-;19936:3;19957:67;20021:2;20016:3;19957:67;:::i;:::-;19950:74;;20033:93;20122:3;20033:93;:::i;:::-;20151:2;20146:3;20142:12;20135:19;;19940:220;;;:::o;20236:529::-;20397:4;20392:3;20388:14;20484:4;20477:5;20473:16;20467:23;20503:63;20560:4;20555:3;20551:14;20537:12;20503:63;:::i;:::-;20412:164;20668:4;20661:5;20657:16;20651:23;20687:61;20742:4;20737:3;20733:14;20719:12;20687:61;:::i;:::-;20586:172;20366:399;;;:::o;20771:118::-;20858:24;20876:5;20858:24;:::i;:::-;20853:3;20846:37;20836:53;;:::o;20895:105::-;20970:23;20987:5;20970:23;:::i;:::-;20965:3;20958:36;20948:52;;:::o;21006:115::-;21091:23;21108:5;21091:23;:::i;:::-;21086:3;21079:36;21069:52;;:::o;21127:435::-;21307:3;21329:95;21420:3;21411:6;21329:95;:::i;:::-;21322:102;;21441:95;21532:3;21523:6;21441:95;:::i;:::-;21434:102;;21553:3;21546:10;;21311:251;;;;;:::o;21568:379::-;21752:3;21774:147;21917:3;21774:147;:::i;:::-;21767:154;;21938:3;21931:10;;21756:191;;;:::o;21953:222::-;22046:4;22084:2;22073:9;22069:18;22061:26;;22097:71;22165:1;22154:9;22150:17;22141:6;22097:71;:::i;:::-;22051:124;;;;:::o;22181:640::-;22376:4;22414:3;22403:9;22399:19;22391:27;;22428:71;22496:1;22485:9;22481:17;22472:6;22428:71;:::i;:::-;22509:72;22577:2;22566:9;22562:18;22553:6;22509:72;:::i;:::-;22591;22659:2;22648:9;22644:18;22635:6;22591:72;:::i;:::-;22710:9;22704:4;22700:20;22695:2;22684:9;22680:18;22673:48;22738:76;22809:4;22800:6;22738:76;:::i;:::-;22730:84;;22381:440;;;;;;;:::o;22827:210::-;22914:4;22952:2;22941:9;22937:18;22929:26;;22965:65;23027:1;23016:9;23012:17;23003:6;22965:65;:::i;:::-;22919:118;;;;:::o;23043:313::-;23156:4;23194:2;23183:9;23179:18;23171:26;;23243:9;23237:4;23233:20;23229:1;23218:9;23214:17;23207:47;23271:78;23344:4;23335:6;23271:78;:::i;:::-;23263:86;;23161:195;;;;:::o;23362:419::-;23528:4;23566:2;23555:9;23551:18;23543:26;;23615:9;23609:4;23605:20;23601:1;23590:9;23586:17;23579:47;23643:131;23769:4;23643:131;:::i;:::-;23635:139;;23533:248;;;:::o;23787:419::-;23953:4;23991:2;23980:9;23976:18;23968:26;;24040:9;24034:4;24030:20;24026:1;24015:9;24011:17;24004:47;24068:131;24194:4;24068:131;:::i;:::-;24060:139;;23958:248;;;:::o;24212:419::-;24378:4;24416:2;24405:9;24401:18;24393:26;;24465:9;24459:4;24455:20;24451:1;24440:9;24436:17;24429:47;24493:131;24619:4;24493:131;:::i;:::-;24485:139;;24383:248;;;:::o;24637:419::-;24803:4;24841:2;24830:9;24826:18;24818:26;;24890:9;24884:4;24880:20;24876:1;24865:9;24861:17;24854:47;24918:131;25044:4;24918:131;:::i;:::-;24910:139;;24808:248;;;:::o;25062:419::-;25228:4;25266:2;25255:9;25251:18;25243:26;;25315:9;25309:4;25305:20;25301:1;25290:9;25286:17;25279:47;25343:131;25469:4;25343:131;:::i;:::-;25335:139;;25233:248;;;:::o;25487:419::-;25653:4;25691:2;25680:9;25676:18;25668:26;;25740:9;25734:4;25730:20;25726:1;25715:9;25711:17;25704:47;25768:131;25894:4;25768:131;:::i;:::-;25760:139;;25658:248;;;:::o;25912:419::-;26078:4;26116:2;26105:9;26101:18;26093:26;;26165:9;26159:4;26155:20;26151:1;26140:9;26136:17;26129:47;26193:131;26319:4;26193:131;:::i;:::-;26185:139;;26083:248;;;:::o;26337:419::-;26503:4;26541:2;26530:9;26526:18;26518:26;;26590:9;26584:4;26580:20;26576:1;26565:9;26561:17;26554:47;26618:131;26744:4;26618:131;:::i;:::-;26610:139;;26508:248;;;:::o;26762:419::-;26928:4;26966:2;26955:9;26951:18;26943:26;;27015:9;27009:4;27005:20;27001:1;26990:9;26986:17;26979:47;27043:131;27169:4;27043:131;:::i;:::-;27035:139;;26933:248;;;:::o;27187:419::-;27353:4;27391:2;27380:9;27376:18;27368:26;;27440:9;27434:4;27430:20;27426:1;27415:9;27411:17;27404:47;27468:131;27594:4;27468:131;:::i;:::-;27460:139;;27358:248;;;:::o;27612:419::-;27778:4;27816:2;27805:9;27801:18;27793:26;;27865:9;27859:4;27855:20;27851:1;27840:9;27836:17;27829:47;27893:131;28019:4;27893:131;:::i;:::-;27885:139;;27783:248;;;:::o;28037:419::-;28203:4;28241:2;28230:9;28226:18;28218:26;;28290:9;28284:4;28280:20;28276:1;28265:9;28261:17;28254:47;28318:131;28444:4;28318:131;:::i;:::-;28310:139;;28208:248;;;:::o;28462:419::-;28628:4;28666:2;28655:9;28651:18;28643:26;;28715:9;28709:4;28705:20;28701:1;28690:9;28686:17;28679:47;28743:131;28869:4;28743:131;:::i;:::-;28735:139;;28633:248;;;:::o;28887:419::-;29053:4;29091:2;29080:9;29076:18;29068:26;;29140:9;29134:4;29130:20;29126:1;29115:9;29111:17;29104:47;29168:131;29294:4;29168:131;:::i;:::-;29160:139;;29058:248;;;:::o;29312:419::-;29478:4;29516:2;29505:9;29501:18;29493:26;;29565:9;29559:4;29555:20;29551:1;29540:9;29536:17;29529:47;29593:131;29719:4;29593:131;:::i;:::-;29585:139;;29483:248;;;:::o;29737:419::-;29903:4;29941:2;29930:9;29926:18;29918:26;;29990:9;29984:4;29980:20;29976:1;29965:9;29961:17;29954:47;30018:131;30144:4;30018:131;:::i;:::-;30010:139;;29908:248;;;:::o;30162:419::-;30328:4;30366:2;30355:9;30351:18;30343:26;;30415:9;30409:4;30405:20;30401:1;30390:9;30386:17;30379:47;30443:131;30569:4;30443:131;:::i;:::-;30435:139;;30333:248;;;:::o;30587:419::-;30753:4;30791:2;30780:9;30776:18;30768:26;;30840:9;30834:4;30830:20;30826:1;30815:9;30811:17;30804:47;30868:131;30994:4;30868:131;:::i;:::-;30860:139;;30758:248;;;:::o;31012:419::-;31178:4;31216:2;31205:9;31201:18;31193:26;;31265:9;31259:4;31255:20;31251:1;31240:9;31236:17;31229:47;31293:131;31419:4;31293:131;:::i;:::-;31285:139;;31183:248;;;:::o;31437:419::-;31603:4;31641:2;31630:9;31626:18;31618:26;;31690:9;31684:4;31680:20;31676:1;31665:9;31661:17;31654:47;31718:131;31844:4;31718:131;:::i;:::-;31710:139;;31608:248;;;:::o;31862:419::-;32028:4;32066:2;32055:9;32051:18;32043:26;;32115:9;32109:4;32105:20;32101:1;32090:9;32086:17;32079:47;32143:131;32269:4;32143:131;:::i;:::-;32135:139;;32033:248;;;:::o;32287:419::-;32453:4;32491:2;32480:9;32476:18;32468:26;;32540:9;32534:4;32530:20;32526:1;32515:9;32511:17;32504:47;32568:131;32694:4;32568:131;:::i;:::-;32560:139;;32458:248;;;:::o;32712:419::-;32878:4;32916:2;32905:9;32901:18;32893:26;;32965:9;32959:4;32955:20;32951:1;32940:9;32936:17;32929:47;32993:131;33119:4;32993:131;:::i;:::-;32985:139;;32883:248;;;:::o;33137:419::-;33303:4;33341:2;33330:9;33326:18;33318:26;;33390:9;33384:4;33380:20;33376:1;33365:9;33361:17;33354:47;33418:131;33544:4;33418:131;:::i;:::-;33410:139;;33308:248;;;:::o;33562:419::-;33728:4;33766:2;33755:9;33751:18;33743:26;;33815:9;33809:4;33805:20;33801:1;33790:9;33786:17;33779:47;33843:131;33969:4;33843:131;:::i;:::-;33835:139;;33733:248;;;:::o;33987:419::-;34153:4;34191:2;34180:9;34176:18;34168:26;;34240:9;34234:4;34230:20;34226:1;34215:9;34211:17;34204:47;34268:131;34394:4;34268:131;:::i;:::-;34260:139;;34158:248;;;:::o;34412:419::-;34578:4;34616:2;34605:9;34601:18;34593:26;;34665:9;34659:4;34655:20;34651:1;34640:9;34636:17;34629:47;34693:131;34819:4;34693:131;:::i;:::-;34685:139;;34583:248;;;:::o;34837:419::-;35003:4;35041:2;35030:9;35026:18;35018:26;;35090:9;35084:4;35080:20;35076:1;35065:9;35061:17;35054:47;35118:131;35244:4;35118:131;:::i;:::-;35110:139;;35008:248;;;:::o;35262:419::-;35428:4;35466:2;35455:9;35451:18;35443:26;;35515:9;35509:4;35505:20;35501:1;35490:9;35486:17;35479:47;35543:131;35669:4;35543:131;:::i;:::-;35535:139;;35433:248;;;:::o;35687:419::-;35853:4;35891:2;35880:9;35876:18;35868:26;;35940:9;35934:4;35930:20;35926:1;35915:9;35911:17;35904:47;35968:131;36094:4;35968:131;:::i;:::-;35960:139;;35858:248;;;:::o;36112:419::-;36278:4;36316:2;36305:9;36301:18;36293:26;;36365:9;36359:4;36355:20;36351:1;36340:9;36336:17;36329:47;36393:131;36519:4;36393:131;:::i;:::-;36385:139;;36283:248;;;:::o;36537:419::-;36703:4;36741:2;36730:9;36726:18;36718:26;;36790:9;36784:4;36780:20;36776:1;36765:9;36761:17;36754:47;36818:131;36944:4;36818:131;:::i;:::-;36810:139;;36708:248;;;:::o;36962:350::-;37119:4;37157:2;37146:9;37142:18;37134:26;;37170:135;37302:1;37291:9;37287:17;37278:6;37170:135;:::i;:::-;37124:188;;;;:::o;37318:222::-;37411:4;37449:2;37438:9;37434:18;37426:26;;37462:71;37530:1;37519:9;37515:17;37506:6;37462:71;:::i;:::-;37416:124;;;;:::o;37546:324::-;37663:4;37701:2;37690:9;37686:18;37678:26;;37714:69;37780:1;37769:9;37765:17;37756:6;37714:69;:::i;:::-;37793:70;37859:2;37848:9;37844:18;37835:6;37793:70;:::i;:::-;37668:202;;;;;:::o;37876:129::-;37910:6;37937:20;;:::i;:::-;37927:30;;37966:33;37994:4;37986:6;37966:33;:::i;:::-;37917:88;;;:::o;38011:75::-;38044:6;38077:2;38071:9;38061:19;;38051:35;:::o;38092:307::-;38153:4;38243:18;38235:6;38232:30;38229:2;;;38265:18;;:::i;:::-;38229:2;38303:29;38325:6;38303:29;:::i;:::-;38295:37;;38387:4;38381;38377:15;38369:23;;38158:241;;;:::o;38405:98::-;38456:6;38490:5;38484:12;38474:22;;38463:40;;;:::o;38509:99::-;38561:6;38595:5;38589:12;38579:22;;38568:40;;;:::o;38614:168::-;38697:11;38731:6;38726:3;38719:19;38771:4;38766:3;38762:14;38747:29;;38709:73;;;;:::o;38788:147::-;38889:11;38926:3;38911:18;;38901:34;;;;:::o;38941:169::-;39025:11;39059:6;39054:3;39047:19;39099:4;39094:3;39090:14;39075:29;;39037:73;;;;:::o;39116:148::-;39218:11;39255:3;39240:18;;39230:34;;;;:::o;39270:273::-;39310:3;39329:20;39347:1;39329:20;:::i;:::-;39324:25;;39363:20;39381:1;39363:20;:::i;:::-;39358:25;;39485:1;39449:34;39445:42;39442:1;39439:49;39436:2;;;39491:18;;:::i;:::-;39436:2;39535:1;39532;39528:9;39521:16;;39314:229;;;;:::o;39549:305::-;39589:3;39608:20;39626:1;39608:20;:::i;:::-;39603:25;;39642:20;39660:1;39642:20;:::i;:::-;39637:25;;39796:1;39728:66;39724:74;39721:1;39718:81;39715:2;;;39802:18;;:::i;:::-;39715:2;39846:1;39843;39839:9;39832:16;;39593:261;;;;:::o;39860:185::-;39900:1;39917:20;39935:1;39917:20;:::i;:::-;39912:25;;39951:20;39969:1;39951:20;:::i;:::-;39946:25;;39990:1;39980:2;;39995:18;;:::i;:::-;39980:2;40037:1;40034;40030:9;40025:14;;39902:143;;;;:::o;40051:348::-;40091:7;40114:20;40132:1;40114:20;:::i;:::-;40109:25;;40148:20;40166:1;40148:20;:::i;:::-;40143:25;;40336:1;40268:66;40264:74;40261:1;40258:81;40253:1;40246:9;40239:17;40235:105;40232:2;;;40343:18;;:::i;:::-;40232:2;40391:1;40388;40384:9;40373:20;;40099:300;;;;:::o;40405:191::-;40445:4;40465:20;40483:1;40465:20;:::i;:::-;40460:25;;40499:20;40517:1;40499:20;:::i;:::-;40494:25;;40538:1;40535;40532:8;40529:2;;;40543:18;;:::i;:::-;40529:2;40588:1;40585;40581:9;40573:17;;40450:146;;;;:::o;40602:191::-;40642:4;40662:20;40680:1;40662:20;:::i;:::-;40657:25;;40696:20;40714:1;40696:20;:::i;:::-;40691:25;;40735:1;40732;40729:8;40726:2;;;40740:18;;:::i;:::-;40726:2;40785:1;40782;40778:9;40770:17;;40647:146;;;;:::o;40799:96::-;40836:7;40865:24;40883:5;40865:24;:::i;:::-;40854:35;;40844:51;;;:::o;40901:90::-;40935:7;40978:5;40971:13;40964:21;40953:32;;40943:48;;;:::o;40997:149::-;41033:7;41073:66;41066:5;41062:78;41051:89;;41041:105;;;:::o;41152:118::-;41189:7;41229:34;41222:5;41218:46;41207:57;;41197:73;;;:::o;41276:126::-;41313:7;41353:42;41346:5;41342:54;41331:65;;41321:81;;;:::o;41408:77::-;41445:7;41474:5;41463:16;;41453:32;;;:::o;41491:101::-;41527:7;41567:18;41560:5;41556:30;41545:41;;41535:57;;;:::o;41598:154::-;41682:6;41677:3;41672;41659:30;41744:1;41735:6;41730:3;41726:16;41719:27;41649:103;;;:::o;41758:307::-;41826:1;41836:113;41850:6;41847:1;41844:13;41836:113;;;41935:1;41930:3;41926:11;41920:18;41916:1;41911:3;41907:11;41900:39;41872:2;41869:1;41865:10;41860:15;;41836:113;;;41967:6;41964:1;41961:13;41958:2;;;42047:1;42038:6;42033:3;42029:16;42022:27;41958:2;41807:258;;;;:::o;42071:171::-;42110:3;42133:24;42151:5;42133:24;:::i;:::-;42124:33;;42179:4;42172:5;42169:15;42166:2;;;42187:18;;:::i;:::-;42166:2;42234:1;42227:5;42223:13;42216:20;;42114:128;;;:::o;42248:320::-;42292:6;42329:1;42323:4;42319:12;42309:22;;42376:1;42370:4;42366:12;42397:18;42387:2;;42453:4;42445:6;42441:17;42431:27;;42387:2;42515;42507:6;42504:14;42484:18;42481:38;42478:2;;;42534:18;;:::i;:::-;42478:2;42299:269;;;;:::o;42574:281::-;42657:27;42679:4;42657:27;:::i;:::-;42649:6;42645:40;42787:6;42775:10;42772:22;42751:18;42739:10;42736:34;42733:62;42730:2;;;42798:18;;:::i;:::-;42730:2;42838:10;42834:2;42827:22;42617:238;;;:::o;42861:233::-;42900:3;42923:24;42941:5;42923:24;:::i;:::-;42914:33;;42969:66;42962:5;42959:77;42956:2;;;43039:18;;:::i;:::-;42956:2;43086:1;43079:5;43075:13;43068:20;;42904:190;;;:::o;43100:176::-;43132:1;43149:20;43167:1;43149:20;:::i;:::-;43144:25;;43183:20;43201:1;43183:20;:::i;:::-;43178:25;;43222:1;43212:2;;43227:18;;:::i;:::-;43212:2;43268:1;43265;43261:9;43256:14;;43134:142;;;;:::o;43282:180::-;43330:77;43327:1;43320:88;43427:4;43424:1;43417:15;43451:4;43448:1;43441:15;43468:180;43516:77;43513:1;43506:88;43613:4;43610:1;43603:15;43637:4;43634:1;43627:15;43654:180;43702:77;43699:1;43692:88;43799:4;43796:1;43789:15;43823:4;43820:1;43813:15;43840:180;43888:77;43885:1;43878:88;43985:4;43982:1;43975:15;44009:4;44006:1;43999:15;44026:102;44067:6;44118:2;44114:7;44109:2;44102:5;44098:14;44094:28;44084:38;;44074:54;;;:::o;44134:221::-;44274:34;44270:1;44262:6;44258:14;44251:58;44343:4;44338:2;44330:6;44326:15;44319:29;44240:115;:::o;44361:173::-;44501:25;44497:1;44489:6;44485:14;44478:49;44467:67;:::o;44540:227::-;44680:34;44676:1;44668:6;44664:14;44657:58;44749:10;44744:2;44736:6;44732:15;44725:35;44646:121;:::o;44773:176::-;44913:28;44909:1;44901:6;44897:14;44890:52;44879:70;:::o;44955:225::-;45095:34;45091:1;45083:6;45079:14;45072:58;45164:8;45159:2;45151:6;45147:15;45140:33;45061:119;:::o;45186:229::-;45326:34;45322:1;45314:6;45310:14;45303:58;45395:12;45390:2;45382:6;45378:15;45371:37;45292:123;:::o;45421:222::-;45561:34;45557:1;45549:6;45545:14;45538:58;45630:5;45625:2;45617:6;45613:15;45606:30;45527:116;:::o;45649:224::-;45789:34;45785:1;45777:6;45773:14;45766:58;45858:7;45853:2;45845:6;45841:15;45834:32;45755:118;:::o;45879:236::-;46019:34;46015:1;46007:6;46003:14;45996:58;46088:19;46083:2;46075:6;46071:15;46064:44;45985:130;:::o;46121:180::-;46261:32;46257:1;46249:6;46245:14;46238:56;46227:74;:::o;46307:180::-;46447:32;46443:1;46435:6;46431:14;46424:56;46413:74;:::o;46493:244::-;46633:34;46629:1;46621:6;46617:14;46610:58;46702:27;46697:2;46689:6;46685:15;46678:52;46599:138;:::o;46743:230::-;46883:34;46879:1;46871:6;46867:14;46860:58;46952:13;46947:2;46939:6;46935:15;46928:38;46849:124;:::o;46979:168::-;47119:20;47115:1;47107:6;47103:14;47096:44;47085:62;:::o;47153:225::-;47293:34;47289:1;47281:6;47277:14;47270:58;47362:8;47357:2;47349:6;47345:15;47338:33;47259:119;:::o;47384:182::-;47524:34;47520:1;47512:6;47508:14;47501:58;47490:76;:::o;47572:234::-;47712:34;47708:1;47700:6;47696:14;47689:58;47781:17;47776:2;47768:6;47764:15;47757:42;47678:128;:::o;47812:176::-;47952:28;47948:1;47940:6;47936:14;47929:52;47918:70;:::o;47994:237::-;48134:34;48130:1;48122:6;48118:14;48111:58;48203:20;48198:2;48190:6;48186:15;48179:45;48100:131;:::o;48237:221::-;48377:34;48373:1;48365:6;48361:14;48354:58;48446:4;48441:2;48433:6;48429:15;48422:29;48343:115;:::o;48464:114::-;48570:8;:::o;48584:166::-;48724:18;48720:1;48712:6;48708:14;48701:42;48690:60;:::o;48756:238::-;48896:34;48892:1;48884:6;48880:14;48873:58;48965:21;48960:2;48952:6;48948:15;48941:46;48862:132;:::o;49000:179::-;49140:31;49136:1;49128:6;49124:14;49117:55;49106:73;:::o;49185:220::-;49325:34;49321:1;49313:6;49309:14;49302:58;49394:3;49389:2;49381:6;49377:15;49370:28;49291:114;:::o;49411:172::-;49551:24;49547:1;49539:6;49535:14;49528:48;49517:66;:::o;49589:226::-;49729:34;49725:1;49717:6;49713:14;49706:58;49798:9;49793:2;49785:6;49781:15;49774:34;49695:120;:::o;49821:230::-;49961:34;49957:1;49949:6;49945:14;49938:58;50030:13;50025:2;50017:6;50013:15;50006:38;49927:124;:::o;50057:233::-;50197:34;50193:1;50185:6;50181:14;50174:58;50266:16;50261:2;50253:6;50249:15;50242:41;50163:127;:::o;50296:181::-;50436:33;50432:1;50424:6;50420:14;50413:57;50402:75;:::o;50483:234::-;50623:34;50619:1;50611:6;50607:14;50600:58;50692:17;50687:2;50679:6;50675:15;50668:42;50589:128;:::o;50723:232::-;50863:34;50859:1;50851:6;50847:14;50840:58;50932:15;50927:2;50919:6;50915:15;50908:40;50829:126;:::o;50961:221::-;51101:34;51097:1;51089:6;51085:14;51078:58;51170:4;51165:2;51157:6;51153:15;51146:29;51067:115;:::o;51188:122::-;51261:24;51279:5;51261:24;:::i;:::-;51254:5;51251:35;51241:2;;51300:1;51297;51290:12;51241:2;51231:79;:::o;51316:116::-;51386:21;51401:5;51386:21;:::i;:::-;51379:5;51376:32;51366:2;;51422:1;51419;51412:12;51366:2;51356:76;:::o;51438:120::-;51510:23;51527:5;51510:23;:::i;:::-;51503:5;51500:34;51490:2;;51548:1;51545;51538:12;51490:2;51480:78;:::o;51564:122::-;51637:24;51655:5;51637:24;:::i;:::-;51630:5;51627:35;51617:2;;51676:1;51673;51666:12;51617:2;51607:79;:::o;51692:120::-;51764:23;51781:5;51764:23;:::i;:::-;51757:5;51754:34;51744:2;;51802:1;51799;51792:12;51744:2;51734:78;:::o
Swarm Source
ipfs://53af0645f25abb90baf49f17019129625e519347cd914d675e81ad71aa93bba1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.