Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
192
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AICHATBOTS
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-10 */ // SPDX-License-Identifier: MIT pragma solidity >=0.8.0 <0.9.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); } } } /** * @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); } /** * @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); } } } /** * @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); } } /** * @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); } interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } /** * @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; } } /** * @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); } } /** * @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; } } /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } /** * @dev Interface of ERC721ABurnable. */ interface IERC721ABurnable is IERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; } /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } /** * @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); } /** * @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); } /** * @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); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} } /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @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: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId, bool approvalCheck) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck && _msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } /** * @title ERC721ABurnable. * * @dev ERC721A token that can be irreversibly burned (destroyed). */ abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual override { _burn(tokenId, true); } } abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender) && OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } contract AICHATBOTS is ERC721A, ERC721ABurnable, ERC721AQueryable, Ownable, ERC2981, DefaultOperatorFilterer { using Strings for uint256; uint256 constant maxSupply = 1000; uint256 constant mintPrice = 0 ether; uint256 public maxPerAddress = 1; uint256 public maxPerTx = 1; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; bool public revealed = true; bool public letsgolive = false; mapping(address => uint256) public flurAlphaHolders; uint public randNonce = 0; constructor() ERC721A("AI Chatbots", "AICHATBOTS") { } function goLive(bool _letsfngo) external onlyOwner { letsgolive = _letsfngo; } function setFlurAlphaHolders(address[] memory wallets, uint256[] memory amounts) external onlyOwner { for(uint256 i = 0; i < wallets.length; i++){ flurAlphaHolders[wallets[i]] = amounts[i]; } } function mint() external payable { require(letsgolive, "AIChatbots: Mint Not Active"); require(flurAlphaHolders[msg.sender] > 0, "AIChatbots: You don't have any allocation"); uint256 _quantity = flurAlphaHolders[msg.sender]; require(_numberMinted(msg.sender) + _quantity <= flurAlphaHolders[msg.sender], "AIChatbots: Exceeds Max Per Wallet"); _safeMint(msg.sender, _quantity); } function reserve(address _address, uint256 _quantity) external onlyOwner { require(totalSupply() + _quantity <= maxSupply, "AIChatbots: Mint Supply Exceeded"); _safeMint(_address, _quantity); } function tokenURI(uint256 tokenId) public view virtual override(ERC721A, IERC721A) returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function supportsInterface( bytes4 interfaceId ) public view override(ERC721A, ERC2981, IERC721A) returns (bool) { return ERC2981.supportsInterface(interfaceId) || ERC721A.supportsInterface(interfaceId); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function reveal() public onlyOwner { revealed = true; } function setDefaultRoyalty( address _receiver, uint96 _feeNumerator ) external onlyOwner { _setDefaultRoyalty(_receiver, _feeNumerator); } function deleteDefaultRoyalty() external onlyOwner { _deleteDefaultRoyalty(); } function setTokenRoyalty( uint256 _tokenId, address _receiver, uint96 _feeNumerator ) external onlyOwner { _setTokenRoyalty(_tokenId, _receiver, _feeNumerator); } function resetTokenRoyalty( uint256 tokenId ) external onlyOwner { _resetTokenRoyalty(tokenId); } /* ------------ OpenSea Overrides --------------*/ function transferFrom( address _from, address _to, uint256 _tokenId ) public payable override(ERC721A, IERC721A) onlyAllowedOperator(_from) { super.transferFrom(_from, _to, _tokenId); } function safeTransferFrom( address _from, address _to, uint256 _tokenId ) public payable override(ERC721A, IERC721A) onlyAllowedOperator(_from) { super.safeTransferFrom(_from, _to, _tokenId); } function safeTransferFrom( address _from, address _to, uint256 _tokenId, bytes memory _data ) public payable override(ERC721A, IERC721A) onlyAllowedOperator(_from) { super.safeTransferFrom(_from, _to, _tokenId, _data); } function withdrawMoney() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Withdraw failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"flurAlphaHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_letsfngo","type":"bool"}],"name":"goLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"letsgolive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"randNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"resetTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"setFlurAlphaHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600b556001600c556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e9081620000549190620006cb565b506001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff02191690831515021790555060006012553480156200009d57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600b81526020017f41492043686174626f74730000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f414943484154424f5453000000000000000000000000000000000000000000008152508160029081620001329190620006cb565b508060039081620001449190620006cb565b50620001556200037a60201b60201c565b60008190555050506200017d620001716200038360201b60201c565b6200038b60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200037257801562000238576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001fe929190620007f7565b600060405180830381600087803b1580156200021957600080fd5b505af11580156200022e573d6000803e3d6000fd5b5050505062000371565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002f2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002b8929190620007f7565b600060405180830381600087803b158015620002d357600080fd5b505af1158015620002e8573d6000803e3d6000fd5b5050505062000370565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200033b919062000824565b600060405180830381600087803b1580156200035657600080fd5b505af11580156200036b573d6000803e3d6000fd5b505050505b5b5b505062000841565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004d357607f821691505b602082108103620004e957620004e86200048b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000514565b6200055f868362000514565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005ac620005a6620005a08462000577565b62000581565b62000577565b9050919050565b6000819050919050565b620005c8836200058b565b620005e0620005d782620005b3565b84845462000521565b825550505050565b600090565b620005f7620005e8565b62000604818484620005bd565b505050565b5b818110156200062c5762000620600082620005ed565b6001810190506200060a565b5050565b601f8211156200067b576200064581620004ef565b620006508462000504565b8101602085101562000660578190505b620006786200066f8562000504565b83018262000609565b50505b505050565b600082821c905092915050565b6000620006a06000198460080262000680565b1980831691505092915050565b6000620006bb83836200068d565b9150826002028217905092915050565b620006d68262000451565b67ffffffffffffffff811115620006f257620006f16200045c565b5b620006fe8254620004ba565b6200070b82828562000630565b600060209050601f8311600181146200074357600084156200072e578287015190505b6200073a8582620006ad565b865550620007aa565b601f1984166200075386620004ef565b60005b828110156200077d5784890151825560018201915060208501945060208101905062000756565b868310156200079d578489015162000799601f8916826200068d565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007df82620007b2565b9050919050565b620007f181620007d2565b82525050565b60006040820190506200080e6000830185620007e6565b6200081d6020830184620007e6565b9392505050565b60006020820190506200083b6000830184620007e6565b92915050565b6155ba80620008516000396000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063aa1b103f116100c1578063cc47a40b1161007a578063cc47a40b1461090e578063da3ef23f14610937578063e985e9c514610960578063f2c4ce1e1461099d578063f2fde38b146109c6578063f968adbe146109ef57610272565b8063aa1b103f1461081f578063ac44600214610836578063b88d4fde1461084d578063c23dc68f14610869578063c6682862146108a6578063c87b56dd146108d157610272565b80639434654b116101135780639434654b1461072557806395d89b411461074e57806399a2557a146107795780639b7453b0146107b6578063a22cb465146107df578063a475b5dd1461080857610272565b806370a0823114610640578063715018a61461067d5780638462151c146106945780638a616bc0146106d15780638da5cb5b146106fa57610272565b806342966c68116101e85780635944c753116101ac5780635944c7531461051c5780635bbb21771461054557806361e01356146105825780636352211e146105ad578063639814e0146105ea5780636c0360eb1461061557610272565b806342966c68146104375780634725508e14610460578063518302271461048b57806355f804b3146104b657806359328d49146104df57610272565b8063095ea7b31161023a578063095ea7b3146103705780631249c58b1461038c57806318160ddd1461039657806323b872dd146103c15780632a55205a146103dd57806342842e0e1461041b57610272565b806301ffc9a71461027757806304634d8d146102b457806306fdde03146102dd578063081812fc14610308578063081c8c4414610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613bcc565b610a1a565b6040516102ab9190613c14565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190613cd1565b610a3c565b005b3480156102e957600080fd5b506102f2610a52565b6040516102ff9190613da1565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613df9565b610ae4565b60405161033c9190613e35565b60405180910390f35b34801561035157600080fd5b5061035a610b63565b6040516103679190613da1565b60405180910390f35b61038a60048036038101906103859190613e50565b610bf1565b005b610394610c01565b005b3480156103a257600080fd5b506103ab610db8565b6040516103b89190613e9f565b60405180910390f35b6103db60048036038101906103d69190613eba565b610dcf565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190613f0d565b610fb1565b604051610412929190613f4d565b60405180910390f35b61043560048036038101906104309190613eba565b61119b565b005b34801561044357600080fd5b5061045e60048036038101906104599190613df9565b61137d565b005b34801561046c57600080fd5b5061047561138b565b6040516104829190613c14565b60405180910390f35b34801561049757600080fd5b506104a061139e565b6040516104ad9190613c14565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d891906140ab565b6113b1565b005b3480156104eb57600080fd5b50610506600480360381019061050191906140f4565b6113cc565b6040516105139190613e9f565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190614121565b6113e4565b005b34801561055157600080fd5b5061056c600480360381019061056791906141d4565b6113fc565b6040516105799190614384565b60405180910390f35b34801561058e57600080fd5b506105976114bf565b6040516105a49190613e9f565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190613df9565b6114c5565b6040516105e19190613e35565b60405180910390f35b3480156105f657600080fd5b506105ff6114d7565b60405161060c9190613e9f565b60405180910390f35b34801561062157600080fd5b5061062a6114dd565b6040516106379190613da1565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906140f4565b61156b565b6040516106749190613e9f565b60405180910390f35b34801561068957600080fd5b50610692611623565b005b3480156106a057600080fd5b506106bb60048036038101906106b691906140f4565b611637565b6040516106c89190614464565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190613df9565b61177a565b005b34801561070657600080fd5b5061070f61178e565b60405161071c9190613e35565b60405180910390f35b34801561073157600080fd5b5061074c600480360381019061074791906144b2565b6117b8565b005b34801561075a57600080fd5b506107636117dd565b6040516107709190613da1565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b91906144df565b61186f565b6040516107ad9190614464565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d891906146b8565b611a7b565b005b3480156107eb57600080fd5b5061080660048036038101906108019190614730565b611b1f565b005b34801561081457600080fd5b5061081d611c2a565b005b34801561082b57600080fd5b50610834611c4f565b005b34801561084257600080fd5b5061084b611c61565b005b61086760048036038101906108629190614811565b611d18565b005b34801561087557600080fd5b50610890600480360381019061088b9190613df9565b611efd565b60405161089d91906148e9565b60405180910390f35b3480156108b257600080fd5b506108bb611f67565b6040516108c89190613da1565b60405180910390f35b3480156108dd57600080fd5b506108f860048036038101906108f39190613df9565b611ff5565b6040516109059190613da1565b60405180910390f35b34801561091a57600080fd5b5061093560048036038101906109309190613e50565b61214d565b005b34801561094357600080fd5b5061095e600480360381019061095991906140ab565b6121ba565b005b34801561096c57600080fd5b5061098760048036038101906109829190614904565b6121d5565b6040516109949190613c14565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf91906140ab565b612269565b005b3480156109d257600080fd5b506109ed60048036038101906109e891906140f4565b612284565b005b3480156109fb57600080fd5b50610a04612307565b604051610a119190613e9f565b60405180910390f35b6000610a258261230d565b80610a355750610a3482612387565b5b9050919050565b610a44612419565b610a4e8282612497565b5050565b606060028054610a6190614973565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90614973565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610aef8261262c565b610b25576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610b7090614973565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9c90614973565b8015610be95780601f10610bbe57610100808354040283529160200191610be9565b820191906000526020600020905b815481529060010190602001808311610bcc57829003601f168201915b505050505081565b610bfd8282600161268b565b5050565b601060019054906101000a900460ff16610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c47906149f0565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990614a82565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481610d60336127db565b610d6a9190614ad1565b1115610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290614b77565b60405180910390fd5b610db53382612832565b50565b6000610dc2612850565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f9f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e4157610e3c848484612859565b610fab565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e8a929190614b97565b602060405180830381865afa158015610ea7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecb9190614bd5565b8015610f5d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f1b929190614b97565b602060405180830381865afa158015610f38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5c9190614bd5565b5b610f9e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f959190613e35565b60405180910390fd5b5b610faa848484612859565b5b50505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036111465760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611150612b7b565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661117c9190614c02565b6111869190614c73565b90508160000151819350935050509250929050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561136b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361120d57611208848484612b85565b611377565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611256929190614b97565b602060405180830381865afa158015611273573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112979190614bd5565b801561132957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112e7929190614b97565b602060405180830381865afa158015611304573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113289190614bd5565b5b61136a57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113619190613e35565b60405180910390fd5b5b611376848484612b85565b5b50505050565b611388816001612ba5565b50565b601060019054906101000a900460ff1681565b601060009054906101000a900460ff1681565b6113b9612419565b80600d90816113c89190614e50565b5050565b60116020528060005260406000206000915090505481565b6113ec612419565b6113f7838383612df7565b505050565b6060600083839050905060008167ffffffffffffffff81111561142257611421613f80565b5b60405190808252806020026020018201604052801561145b57816020015b611448613b11565b8152602001906001900390816114405790505b50905060005b8281146114b35761148a86868381811061147e5761147d614f22565b5b90506020020135611efd565b82828151811061149d5761149c614f22565b5b6020026020010181905250806001019050611461565b50809250505092915050565b60125481565b60006114d082612f9e565b9050919050565b600b5481565b600d80546114ea90614973565b80601f016020809104026020016040519081016040528092919081815260200182805461151690614973565b80156115635780601f1061153857610100808354040283529160200191611563565b820191906000526020600020905b81548152906001019060200180831161154657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115d2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61162b612419565b611635600061306a565b565b606060008060006116478561156b565b905060008167ffffffffffffffff81111561166557611664613f80565b5b6040519080825280602002602001820160405280156116935781602001602082028036833780820191505090505b50905061169e613b11565b60006116a8612850565b90505b83861461176c576116bb81613130565b9150816040015161176157600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461170657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611760578083878060010198508151811061175357611752614f22565b5b6020026020010181815250505b5b8060010190506116ab565b508195505050505050919050565b611782612419565b61178b8161315b565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117c0612419565b80601060016101000a81548160ff02191690831515021790555050565b6060600380546117ec90614973565b80601f016020809104026020016040519081016040528092919081815260200182805461181890614973565b80156118655780601f1061183a57610100808354040283529160200191611865565b820191906000526020600020905b81548152906001019060200180831161184857829003601f168201915b5050505050905090565b60608183106118aa576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806118b56131ba565b90506118bf612850565b8510156118d1576118ce612850565b94505b808411156118dd578093505b60006118e88761156b565b90508486101561190b576000868603905081811015611905578091505b50611910565b600090505b60008167ffffffffffffffff81111561192c5761192b613f80565b5b60405190808252806020026020018201604052801561195a5781602001602082028036833780820191505090505b509050600082036119715780945050505050611a74565b600061197c88611efd565b90506000816040015161199157816000015190505b60008990505b8881141580156119a75750848714155b15611a66576119b581613130565b92508260400151611a5b57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611a0057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a5a5780848880600101995081518110611a4d57611a4c614f22565b5b6020026020010181815250505b5b806001019050611997565b508583528296505050505050505b9392505050565b611a83612419565b60005b8251811015611b1a57818181518110611aa257611aa1614f22565b5b602002602001015160116000858481518110611ac157611ac0614f22565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611b1290614f51565b915050611a86565b505050565b8060076000611b2c6131c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bd96131c3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c1e9190613c14565b60405180910390a35050565b611c32612419565b6001601060006101000a81548160ff021916908315150217905550565b611c57612419565b611c5f6131cb565b565b611c69612419565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611c8f90614fca565b60006040518083038185875af1925050503d8060008114611ccc576040519150601f19603f3d011682016040523d82523d6000602084013e611cd1565b606091505b5050905080611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c9061502b565b60405180910390fd5b50565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611ee9573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d8b57611d8685858585613218565b611ef6565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611dd4929190614b97565b602060405180830381865afa158015611df1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e159190614bd5565b8015611ea757506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e65929190614b97565b602060405180830381865afa158015611e82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ea69190614bd5565b5b611ee857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611edf9190613e35565b60405180910390fd5b5b611ef585858585613218565b5b5050505050565b611f05613b11565b611f0d613b11565b611f15612850565b831080611f295750611f256131ba565b8310155b15611f375780915050611f62565b611f4083613130565b9050806040015115611f555780915050611f62565b611f5e8361328b565b9150505b919050565b600e8054611f7490614973565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa090614973565b8015611fed5780601f10611fc257610100808354040283529160200191611fed565b820191906000526020600020905b815481529060010190602001808311611fd057829003601f168201915b505050505081565b60606120008261262c565b61203f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612036906150bd565b60405180910390fd5b60001515601060009054906101000a900460ff161515036120ec57600f805461206790614973565b80601f016020809104026020016040519081016040528092919081815260200182805461209390614973565b80156120e05780601f106120b5576101008083540402835291602001916120e0565b820191906000526020600020905b8154815290600101906020018083116120c357829003601f168201915b50505050509050612148565b60006120f66132ab565b905060008151116121165760405180602001604052806000815250612144565b806121208461333d565b600e6040516020016121349392919061519c565b6040516020818303038152906040525b9150505b919050565b612155612419565b6103e881612161610db8565b61216b9190614ad1565b11156121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a390615219565b60405180910390fd5b6121b68282612832565b5050565b6121c2612419565b80600e90816121d19190614e50565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612271612419565b80600f90816122809190614e50565b5050565b61228c612419565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f2906152ab565b60405180910390fd5b6123048161306a565b50565b600c5481565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612380575061237f8261340b565b5b9050919050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123e257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806124125750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b612421613475565b73ffffffffffffffffffffffffffffffffffffffff1661243f61178e565b73ffffffffffffffffffffffffffffffffffffffff1614612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c90615317565b60405180910390fd5b565b61249f612b7b565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156124fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f4906153a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390615415565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612637612850565b11158015612646575060005482105b8015612684575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000612696836114c5565b90508180156126d857508073ffffffffffffffffffffffffffffffffffffffff166126bf6131c3565b73ffffffffffffffffffffffffffffffffffffffff1614155b15612725576126ee816126e96131c3565b6121d5565b612724576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b61284c82826040518060200160405280600081525061347d565b5050565b60006001905090565b600061286482612f9e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146128cb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806128d78461351a565b915091506128ed81876128e86131c3565b613541565b61293957612902866128fd6131c3565b6121d5565b612938576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361299f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129ac8686866001613585565b80156129b757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612a8585612a6188888761358b565b7c0200000000000000000000000000000000000000000000000000000000176135b3565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612b0b5760006001850190506000600460008381526020019081526020016000205403612b09576000548114612b08578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b7386868660016135de565b505050505050565b6000612710905090565b612ba083838360405180602001604052806000815250611d18565b505050565b6000612bb083612f9e565b90506000819050600080612bc38661351a565b915091508415612c2c57612bdf8184612bda6131c3565b613541565b612c2b57612bf483612bef6131c3565b6121d5565b612c2a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612c3a836000886001613585565b8015612c4557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612ced83612caa8560008861358b565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176135b3565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851603612d735760006001870190506000600460008381526020019081526020016000205403612d71576000548114612d70578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ddd8360008860016135de565b600160008154809291906001019190505550505050505050565b612dff612b7b565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e54906153a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec390615481565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b60008082905080612fad612850565b11613033576000548110156130325760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603613030575b60008103613026576004600083600190039350838152602001908152602001600020549050612ffc565b8092505050613065565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613138613b11565b61315460046000848152602001908152602001600020546135e4565b9050919050565b600a6000828152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff0219169055505050565b60008054905090565b600033905090565b6009600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff02191690555050565b613223848484610dcf565b60008373ffffffffffffffffffffffffffffffffffffffff163b146132855761324e8484848461369a565b613284576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b613293613b11565b6132a461329f83612f9e565b6135e4565b9050919050565b6060600d80546132ba90614973565b80601f01602080910402602001604051908101604052809291908181526020018280546132e690614973565b80156133335780601f1061330857610100808354040283529160200191613333565b820191906000526020600020905b81548152906001019060200180831161331657829003601f168201915b5050505050905090565b60606000600161334c846137ea565b01905060008167ffffffffffffffff81111561336b5761336a613f80565b5b6040519080825280601f01601f19166020018201604052801561339d5781602001600182028036833780820191505090505b509050600082602001820190505b600115613400578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816133f4576133f3614c44565b5b049450600085036133ab575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b613487838361393d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461351557600080549050600083820390505b6134c7600086838060010194508661369a565b6134fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106134b457816000541461351257600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86135a2868684613af8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6135ec613b11565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136c06131c3565b8786866040518563ffffffff1660e01b81526004016136e294939291906154f6565b6020604051808303816000875af192505050801561371e57506040513d601f19601f8201168201806040525081019061371b9190615557565b60015b613797573d806000811461374e576040519150601f19603f3d011682016040523d82523d6000602084013e613753565b606091505b50600081510361378f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613848577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161383e5761383d614c44565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613885576d04ee2d6d415b85acef8100000000838161387b5761387a614c44565b5b0492506020810190505b662386f26fc1000083106138b457662386f26fc1000083816138aa576138a9614c44565b5b0492506010810190505b6305f5e10083106138dd576305f5e10083816138d3576138d2614c44565b5b0492506008810190505b61271083106139025761271083816138f8576138f7614c44565b5b0492506004810190505b60648310613925576064838161391b5761391a614c44565b5b0492506002810190505b600a8310613934576001810190505b80915050919050565b6000805490506000820361397d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61398a6000848385613585565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613a01836139f2600086600061358b565b6139fb85613b01565b176135b3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613aa257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613a67565b5060008203613add576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613af360008483856135de565b505050565b60009392505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ba981613b74565b8114613bb457600080fd5b50565b600081359050613bc681613ba0565b92915050565b600060208284031215613be257613be1613b6a565b5b6000613bf084828501613bb7565b91505092915050565b60008115159050919050565b613c0e81613bf9565b82525050565b6000602082019050613c296000830184613c05565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5a82613c2f565b9050919050565b613c6a81613c4f565b8114613c7557600080fd5b50565b600081359050613c8781613c61565b92915050565b60006bffffffffffffffffffffffff82169050919050565b613cae81613c8d565b8114613cb957600080fd5b50565b600081359050613ccb81613ca5565b92915050565b60008060408385031215613ce857613ce7613b6a565b5b6000613cf685828601613c78565b9250506020613d0785828601613cbc565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d4b578082015181840152602081019050613d30565b60008484015250505050565b6000601f19601f8301169050919050565b6000613d7382613d11565b613d7d8185613d1c565b9350613d8d818560208601613d2d565b613d9681613d57565b840191505092915050565b60006020820190508181036000830152613dbb8184613d68565b905092915050565b6000819050919050565b613dd681613dc3565b8114613de157600080fd5b50565b600081359050613df381613dcd565b92915050565b600060208284031215613e0f57613e0e613b6a565b5b6000613e1d84828501613de4565b91505092915050565b613e2f81613c4f565b82525050565b6000602082019050613e4a6000830184613e26565b92915050565b60008060408385031215613e6757613e66613b6a565b5b6000613e7585828601613c78565b9250506020613e8685828601613de4565b9150509250929050565b613e9981613dc3565b82525050565b6000602082019050613eb46000830184613e90565b92915050565b600080600060608486031215613ed357613ed2613b6a565b5b6000613ee186828701613c78565b9350506020613ef286828701613c78565b9250506040613f0386828701613de4565b9150509250925092565b60008060408385031215613f2457613f23613b6a565b5b6000613f3285828601613de4565b9250506020613f4385828601613de4565b9150509250929050565b6000604082019050613f626000830185613e26565b613f6f6020830184613e90565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613fb882613d57565b810181811067ffffffffffffffff82111715613fd757613fd6613f80565b5b80604052505050565b6000613fea613b60565b9050613ff68282613faf565b919050565b600067ffffffffffffffff82111561401657614015613f80565b5b61401f82613d57565b9050602081019050919050565b82818337600083830152505050565b600061404e61404984613ffb565b613fe0565b90508281526020810184848401111561406a57614069613f7b565b5b61407584828561402c565b509392505050565b600082601f83011261409257614091613f76565b5b81356140a284826020860161403b565b91505092915050565b6000602082840312156140c1576140c0613b6a565b5b600082013567ffffffffffffffff8111156140df576140de613b6f565b5b6140eb8482850161407d565b91505092915050565b60006020828403121561410a57614109613b6a565b5b600061411884828501613c78565b91505092915050565b60008060006060848603121561413a57614139613b6a565b5b600061414886828701613de4565b935050602061415986828701613c78565b925050604061416a86828701613cbc565b9150509250925092565b600080fd5b600080fd5b60008083601f84011261419457614193613f76565b5b8235905067ffffffffffffffff8111156141b1576141b0614174565b5b6020830191508360208202830111156141cd576141cc614179565b5b9250929050565b600080602083850312156141eb576141ea613b6a565b5b600083013567ffffffffffffffff81111561420957614208613b6f565b5b6142158582860161417e565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61425681613c4f565b82525050565b600067ffffffffffffffff82169050919050565b6142798161425c565b82525050565b61428881613bf9565b82525050565b600062ffffff82169050919050565b6142a68161428e565b82525050565b6080820160008201516142c2600085018261424d565b5060208201516142d56020850182614270565b5060408201516142e8604085018261427f565b5060608201516142fb606085018261429d565b50505050565b600061430d83836142ac565b60808301905092915050565b6000602082019050919050565b600061433182614221565b61433b818561422c565b93506143468361423d565b8060005b8381101561437757815161435e8882614301565b975061436983614319565b92505060018101905061434a565b5085935050505092915050565b6000602082019050818103600083015261439e8184614326565b905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6143db81613dc3565b82525050565b60006143ed83836143d2565b60208301905092915050565b6000602082019050919050565b6000614411826143a6565b61441b81856143b1565b9350614426836143c2565b8060005b8381101561445757815161443e88826143e1565b9750614449836143f9565b92505060018101905061442a565b5085935050505092915050565b6000602082019050818103600083015261447e8184614406565b905092915050565b61448f81613bf9565b811461449a57600080fd5b50565b6000813590506144ac81614486565b92915050565b6000602082840312156144c8576144c7613b6a565b5b60006144d68482850161449d565b91505092915050565b6000806000606084860312156144f8576144f7613b6a565b5b600061450686828701613c78565b935050602061451786828701613de4565b925050604061452886828701613de4565b9150509250925092565b600067ffffffffffffffff82111561454d5761454c613f80565b5b602082029050602081019050919050565b600061457161456c84614532565b613fe0565b9050808382526020820190506020840283018581111561459457614593614179565b5b835b818110156145bd57806145a98882613c78565b845260208401935050602081019050614596565b5050509392505050565b600082601f8301126145dc576145db613f76565b5b81356145ec84826020860161455e565b91505092915050565b600067ffffffffffffffff8211156146105761460f613f80565b5b602082029050602081019050919050565b600061463461462f846145f5565b613fe0565b9050808382526020820190506020840283018581111561465757614656614179565b5b835b81811015614680578061466c8882613de4565b845260208401935050602081019050614659565b5050509392505050565b600082601f83011261469f5761469e613f76565b5b81356146af848260208601614621565b91505092915050565b600080604083850312156146cf576146ce613b6a565b5b600083013567ffffffffffffffff8111156146ed576146ec613b6f565b5b6146f9858286016145c7565b925050602083013567ffffffffffffffff81111561471a57614719613b6f565b5b6147268582860161468a565b9150509250929050565b6000806040838503121561474757614746613b6a565b5b600061475585828601613c78565b92505060206147668582860161449d565b9150509250929050565b600067ffffffffffffffff82111561478b5761478a613f80565b5b61479482613d57565b9050602081019050919050565b60006147b46147af84614770565b613fe0565b9050828152602081018484840111156147d0576147cf613f7b565b5b6147db84828561402c565b509392505050565b600082601f8301126147f8576147f7613f76565b5b81356148088482602086016147a1565b91505092915050565b6000806000806080858703121561482b5761482a613b6a565b5b600061483987828801613c78565b945050602061484a87828801613c78565b935050604061485b87828801613de4565b925050606085013567ffffffffffffffff81111561487c5761487b613b6f565b5b614888878288016147e3565b91505092959194509250565b6080820160008201516148aa600085018261424d565b5060208201516148bd6020850182614270565b5060408201516148d0604085018261427f565b5060608201516148e3606085018261429d565b50505050565b60006080820190506148fe6000830184614894565b92915050565b6000806040838503121561491b5761491a613b6a565b5b600061492985828601613c78565b925050602061493a85828601613c78565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498b57607f821691505b60208210810361499e5761499d614944565b5b50919050565b7f414943686174626f74733a204d696e74204e6f74204163746976650000000000600082015250565b60006149da601b83613d1c565b91506149e5826149a4565b602082019050919050565b60006020820190508181036000830152614a09816149cd565b9050919050565b7f414943686174626f74733a20596f7520646f6e2774206861766520616e79206160008201527f6c6c6f636174696f6e0000000000000000000000000000000000000000000000602082015250565b6000614a6c602983613d1c565b9150614a7782614a10565b604082019050919050565b60006020820190508181036000830152614a9b81614a5f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614adc82613dc3565b9150614ae783613dc3565b9250828201905080821115614aff57614afe614aa2565b5b92915050565b7f414943686174626f74733a2045786365656473204d6178205065722057616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b61602283613d1c565b9150614b6c82614b05565b604082019050919050565b60006020820190508181036000830152614b9081614b54565b9050919050565b6000604082019050614bac6000830185613e26565b614bb96020830184613e26565b9392505050565b600081519050614bcf81614486565b92915050565b600060208284031215614beb57614bea613b6a565b5b6000614bf984828501614bc0565b91505092915050565b6000614c0d82613dc3565b9150614c1883613dc3565b9250828202614c2681613dc3565b91508282048414831517614c3d57614c3c614aa2565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c7e82613dc3565b9150614c8983613dc3565b925082614c9957614c98614c44565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614d067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614cc9565b614d108683614cc9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614d4d614d48614d4384613dc3565b614d28565b613dc3565b9050919050565b6000819050919050565b614d6783614d32565b614d7b614d7382614d54565b848454614cd6565b825550505050565b600090565b614d90614d83565b614d9b818484614d5e565b505050565b5b81811015614dbf57614db4600082614d88565b600181019050614da1565b5050565b601f821115614e0457614dd581614ca4565b614dde84614cb9565b81016020851015614ded578190505b614e01614df985614cb9565b830182614da0565b50505b505050565b600082821c905092915050565b6000614e2760001984600802614e09565b1980831691505092915050565b6000614e408383614e16565b9150826002028217905092915050565b614e5982613d11565b67ffffffffffffffff811115614e7257614e71613f80565b5b614e7c8254614973565b614e87828285614dc3565b600060209050601f831160018114614eba5760008415614ea8578287015190505b614eb28582614e34565b865550614f1a565b601f198416614ec886614ca4565b60005b82811015614ef057848901518255600182019150602085019450602081019050614ecb565b86831015614f0d5784890151614f09601f891682614e16565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614f5c82613dc3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614f8e57614f8d614aa2565b5b600182019050919050565b600081905092915050565b50565b6000614fb4600083614f99565b9150614fbf82614fa4565b600082019050919050565b6000614fd582614fa7565b9150819050919050565b7f5769746864726177206661696c65642e00000000000000000000000000000000600082015250565b6000615015601083613d1c565b915061502082614fdf565b602082019050919050565b6000602082019050818103600083015261504481615008565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006150a7602f83613d1c565b91506150b28261504b565b604082019050919050565b600060208201905081810360008301526150d68161509a565b9050919050565b600081905092915050565b60006150f382613d11565b6150fd81856150dd565b935061510d818560208601613d2d565b80840191505092915050565b6000815461512681614973565b61513081866150dd565b9450600182166000811461514b576001811461516057615193565b60ff1983168652811515820286019350615193565b61516985614ca4565b60005b8381101561518b5781548189015260018201915060208101905061516c565b838801955050505b50505092915050565b60006151a882866150e8565b91506151b482856150e8565b91506151c08284615119565b9150819050949350505050565b7f414943686174626f74733a204d696e7420537570706c79204578636565646564600082015250565b6000615203602083613d1c565b915061520e826151cd565b602082019050919050565b60006020820190508181036000830152615232816151f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615295602683613d1c565b91506152a082615239565b604082019050919050565b600060208201905081810360008301526152c481615288565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615301602083613d1c565b915061530c826152cb565b602082019050919050565b60006020820190508181036000830152615330816152f4565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000615393602a83613d1c565b915061539e82615337565b604082019050919050565b600060208201905081810360008301526153c281615386565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006153ff601983613d1c565b915061540a826153c9565b602082019050919050565b6000602082019050818103600083015261542e816153f2565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b600061546b601b83613d1c565b915061547682615435565b602082019050919050565b6000602082019050818103600083015261549a8161545e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154c8826154a1565b6154d281856154ac565b93506154e2818560208601613d2d565b6154eb81613d57565b840191505092915050565b600060808201905061550b6000830187613e26565b6155186020830186613e26565b6155256040830185613e90565b818103606083015261553781846154bd565b905095945050505050565b60008151905061555181613ba0565b92915050565b60006020828403121561556d5761556c613b6a565b5b600061557b84828501615542565b9150509291505056fea264697066735822122021fdbde4e104a0f2172d9ca73c598c9a64fd121c7cfa1c0e6095f2824cbeb5c764736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102725760003560e01c806370a082311161014f578063aa1b103f116100c1578063cc47a40b1161007a578063cc47a40b1461090e578063da3ef23f14610937578063e985e9c514610960578063f2c4ce1e1461099d578063f2fde38b146109c6578063f968adbe146109ef57610272565b8063aa1b103f1461081f578063ac44600214610836578063b88d4fde1461084d578063c23dc68f14610869578063c6682862146108a6578063c87b56dd146108d157610272565b80639434654b116101135780639434654b1461072557806395d89b411461074e57806399a2557a146107795780639b7453b0146107b6578063a22cb465146107df578063a475b5dd1461080857610272565b806370a0823114610640578063715018a61461067d5780638462151c146106945780638a616bc0146106d15780638da5cb5b146106fa57610272565b806342966c68116101e85780635944c753116101ac5780635944c7531461051c5780635bbb21771461054557806361e01356146105825780636352211e146105ad578063639814e0146105ea5780636c0360eb1461061557610272565b806342966c68146104375780634725508e14610460578063518302271461048b57806355f804b3146104b657806359328d49146104df57610272565b8063095ea7b31161023a578063095ea7b3146103705780631249c58b1461038c57806318160ddd1461039657806323b872dd146103c15780632a55205a146103dd57806342842e0e1461041b57610272565b806301ffc9a71461027757806304634d8d146102b457806306fdde03146102dd578063081812fc14610308578063081c8c4414610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613bcc565b610a1a565b6040516102ab9190613c14565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190613cd1565b610a3c565b005b3480156102e957600080fd5b506102f2610a52565b6040516102ff9190613da1565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613df9565b610ae4565b60405161033c9190613e35565b60405180910390f35b34801561035157600080fd5b5061035a610b63565b6040516103679190613da1565b60405180910390f35b61038a60048036038101906103859190613e50565b610bf1565b005b610394610c01565b005b3480156103a257600080fd5b506103ab610db8565b6040516103b89190613e9f565b60405180910390f35b6103db60048036038101906103d69190613eba565b610dcf565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190613f0d565b610fb1565b604051610412929190613f4d565b60405180910390f35b61043560048036038101906104309190613eba565b61119b565b005b34801561044357600080fd5b5061045e60048036038101906104599190613df9565b61137d565b005b34801561046c57600080fd5b5061047561138b565b6040516104829190613c14565b60405180910390f35b34801561049757600080fd5b506104a061139e565b6040516104ad9190613c14565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d891906140ab565b6113b1565b005b3480156104eb57600080fd5b50610506600480360381019061050191906140f4565b6113cc565b6040516105139190613e9f565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190614121565b6113e4565b005b34801561055157600080fd5b5061056c600480360381019061056791906141d4565b6113fc565b6040516105799190614384565b60405180910390f35b34801561058e57600080fd5b506105976114bf565b6040516105a49190613e9f565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf9190613df9565b6114c5565b6040516105e19190613e35565b60405180910390f35b3480156105f657600080fd5b506105ff6114d7565b60405161060c9190613e9f565b60405180910390f35b34801561062157600080fd5b5061062a6114dd565b6040516106379190613da1565b60405180910390f35b34801561064c57600080fd5b50610667600480360381019061066291906140f4565b61156b565b6040516106749190613e9f565b60405180910390f35b34801561068957600080fd5b50610692611623565b005b3480156106a057600080fd5b506106bb60048036038101906106b691906140f4565b611637565b6040516106c89190614464565b60405180910390f35b3480156106dd57600080fd5b506106f860048036038101906106f39190613df9565b61177a565b005b34801561070657600080fd5b5061070f61178e565b60405161071c9190613e35565b60405180910390f35b34801561073157600080fd5b5061074c600480360381019061074791906144b2565b6117b8565b005b34801561075a57600080fd5b506107636117dd565b6040516107709190613da1565b60405180910390f35b34801561078557600080fd5b506107a0600480360381019061079b91906144df565b61186f565b6040516107ad9190614464565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d891906146b8565b611a7b565b005b3480156107eb57600080fd5b5061080660048036038101906108019190614730565b611b1f565b005b34801561081457600080fd5b5061081d611c2a565b005b34801561082b57600080fd5b50610834611c4f565b005b34801561084257600080fd5b5061084b611c61565b005b61086760048036038101906108629190614811565b611d18565b005b34801561087557600080fd5b50610890600480360381019061088b9190613df9565b611efd565b60405161089d91906148e9565b60405180910390f35b3480156108b257600080fd5b506108bb611f67565b6040516108c89190613da1565b60405180910390f35b3480156108dd57600080fd5b506108f860048036038101906108f39190613df9565b611ff5565b6040516109059190613da1565b60405180910390f35b34801561091a57600080fd5b5061093560048036038101906109309190613e50565b61214d565b005b34801561094357600080fd5b5061095e600480360381019061095991906140ab565b6121ba565b005b34801561096c57600080fd5b5061098760048036038101906109829190614904565b6121d5565b6040516109949190613c14565b60405180910390f35b3480156109a957600080fd5b506109c460048036038101906109bf91906140ab565b612269565b005b3480156109d257600080fd5b506109ed60048036038101906109e891906140f4565b612284565b005b3480156109fb57600080fd5b50610a04612307565b604051610a119190613e9f565b60405180910390f35b6000610a258261230d565b80610a355750610a3482612387565b5b9050919050565b610a44612419565b610a4e8282612497565b5050565b606060028054610a6190614973565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90614973565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610aef8261262c565b610b25576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610b7090614973565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9c90614973565b8015610be95780601f10610bbe57610100808354040283529160200191610be9565b820191906000526020600020905b815481529060010190602001808311610bcc57829003601f168201915b505050505081565b610bfd8282600161268b565b5050565b601060019054906101000a900460ff16610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c47906149f0565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990614a82565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481610d60336127db565b610d6a9190614ad1565b1115610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290614b77565b60405180910390fd5b610db53382612832565b50565b6000610dc2612850565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f9f573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e4157610e3c848484612859565b610fab565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e8a929190614b97565b602060405180830381865afa158015610ea7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ecb9190614bd5565b8015610f5d57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f1b929190614b97565b602060405180830381865afa158015610f38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5c9190614bd5565b5b610f9e57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f959190613e35565b60405180910390fd5b5b610faa848484612859565b5b50505050565b6000806000600a60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036111465760096040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611150612b7b565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661117c9190614c02565b6111869190614c73565b90508160000151819350935050509250929050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561136b573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361120d57611208848484612b85565b611377565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611256929190614b97565b602060405180830381865afa158015611273573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112979190614bd5565b801561132957506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112e7929190614b97565b602060405180830381865afa158015611304573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113289190614bd5565b5b61136a57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016113619190613e35565b60405180910390fd5b5b611376848484612b85565b5b50505050565b611388816001612ba5565b50565b601060019054906101000a900460ff1681565b601060009054906101000a900460ff1681565b6113b9612419565b80600d90816113c89190614e50565b5050565b60116020528060005260406000206000915090505481565b6113ec612419565b6113f7838383612df7565b505050565b6060600083839050905060008167ffffffffffffffff81111561142257611421613f80565b5b60405190808252806020026020018201604052801561145b57816020015b611448613b11565b8152602001906001900390816114405790505b50905060005b8281146114b35761148a86868381811061147e5761147d614f22565b5b90506020020135611efd565b82828151811061149d5761149c614f22565b5b6020026020010181905250806001019050611461565b50809250505092915050565b60125481565b60006114d082612f9e565b9050919050565b600b5481565b600d80546114ea90614973565b80601f016020809104026020016040519081016040528092919081815260200182805461151690614973565b80156115635780601f1061153857610100808354040283529160200191611563565b820191906000526020600020905b81548152906001019060200180831161154657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115d2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61162b612419565b611635600061306a565b565b606060008060006116478561156b565b905060008167ffffffffffffffff81111561166557611664613f80565b5b6040519080825280602002602001820160405280156116935781602001602082028036833780820191505090505b50905061169e613b11565b60006116a8612850565b90505b83861461176c576116bb81613130565b9150816040015161176157600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461170657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611760578083878060010198508151811061175357611752614f22565b5b6020026020010181815250505b5b8060010190506116ab565b508195505050505050919050565b611782612419565b61178b8161315b565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117c0612419565b80601060016101000a81548160ff02191690831515021790555050565b6060600380546117ec90614973565b80601f016020809104026020016040519081016040528092919081815260200182805461181890614973565b80156118655780601f1061183a57610100808354040283529160200191611865565b820191906000526020600020905b81548152906001019060200180831161184857829003601f168201915b5050505050905090565b60608183106118aa576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806118b56131ba565b90506118bf612850565b8510156118d1576118ce612850565b94505b808411156118dd578093505b60006118e88761156b565b90508486101561190b576000868603905081811015611905578091505b50611910565b600090505b60008167ffffffffffffffff81111561192c5761192b613f80565b5b60405190808252806020026020018201604052801561195a5781602001602082028036833780820191505090505b509050600082036119715780945050505050611a74565b600061197c88611efd565b90506000816040015161199157816000015190505b60008990505b8881141580156119a75750848714155b15611a66576119b581613130565b92508260400151611a5b57600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff1614611a0057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a5a5780848880600101995081518110611a4d57611a4c614f22565b5b6020026020010181815250505b5b806001019050611997565b508583528296505050505050505b9392505050565b611a83612419565b60005b8251811015611b1a57818181518110611aa257611aa1614f22565b5b602002602001015160116000858481518110611ac157611ac0614f22565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611b1290614f51565b915050611a86565b505050565b8060076000611b2c6131c3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bd96131c3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c1e9190613c14565b60405180910390a35050565b611c32612419565b6001601060006101000a81548160ff021916908315150217905550565b611c57612419565b611c5f6131cb565b565b611c69612419565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611c8f90614fca565b60006040518083038185875af1925050503d8060008114611ccc576040519150601f19603f3d011682016040523d82523d6000602084013e611cd1565b606091505b5050905080611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c9061502b565b60405180910390fd5b50565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611ee9573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d8b57611d8685858585613218565b611ef6565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401611dd4929190614b97565b602060405180830381865afa158015611df1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e159190614bd5565b8015611ea757506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611e65929190614b97565b602060405180830381865afa158015611e82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ea69190614bd5565b5b611ee857336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611edf9190613e35565b60405180910390fd5b5b611ef585858585613218565b5b5050505050565b611f05613b11565b611f0d613b11565b611f15612850565b831080611f295750611f256131ba565b8310155b15611f375780915050611f62565b611f4083613130565b9050806040015115611f555780915050611f62565b611f5e8361328b565b9150505b919050565b600e8054611f7490614973565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa090614973565b8015611fed5780601f10611fc257610100808354040283529160200191611fed565b820191906000526020600020905b815481529060010190602001808311611fd057829003601f168201915b505050505081565b60606120008261262c565b61203f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612036906150bd565b60405180910390fd5b60001515601060009054906101000a900460ff161515036120ec57600f805461206790614973565b80601f016020809104026020016040519081016040528092919081815260200182805461209390614973565b80156120e05780601f106120b5576101008083540402835291602001916120e0565b820191906000526020600020905b8154815290600101906020018083116120c357829003601f168201915b50505050509050612148565b60006120f66132ab565b905060008151116121165760405180602001604052806000815250612144565b806121208461333d565b600e6040516020016121349392919061519c565b6040516020818303038152906040525b9150505b919050565b612155612419565b6103e881612161610db8565b61216b9190614ad1565b11156121ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a390615219565b60405180910390fd5b6121b68282612832565b5050565b6121c2612419565b80600e90816121d19190614e50565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612271612419565b80600f90816122809190614e50565b5050565b61228c612419565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036122fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f2906152ab565b60405180910390fd5b6123048161306a565b50565b600c5481565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612380575061237f8261340b565b5b9050919050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123e257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806124125750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b612421613475565b73ffffffffffffffffffffffffffffffffffffffff1661243f61178e565b73ffffffffffffffffffffffffffffffffffffffff1614612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c90615317565b60405180910390fd5b565b61249f612b7b565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156124fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f4906153a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361256c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256390615415565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600960008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081612637612850565b11158015612646575060005482105b8015612684575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000612696836114c5565b90508180156126d857508073ffffffffffffffffffffffffffffffffffffffff166126bf6131c3565b73ffffffffffffffffffffffffffffffffffffffff1614155b15612725576126ee816126e96131c3565b6121d5565b612724576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b61284c82826040518060200160405280600081525061347d565b5050565b60006001905090565b600061286482612f9e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146128cb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806128d78461351a565b915091506128ed81876128e86131c3565b613541565b61293957612902866128fd6131c3565b6121d5565b612938576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361299f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129ac8686866001613585565b80156129b757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612a8585612a6188888761358b565b7c0200000000000000000000000000000000000000000000000000000000176135b3565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612b0b5760006001850190506000600460008381526020019081526020016000205403612b09576000548114612b08578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b7386868660016135de565b505050505050565b6000612710905090565b612ba083838360405180602001604052806000815250611d18565b505050565b6000612bb083612f9e565b90506000819050600080612bc38661351a565b915091508415612c2c57612bdf8184612bda6131c3565b613541565b612c2b57612bf483612bef6131c3565b6121d5565b612c2a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b612c3a836000886001613585565b8015612c4557600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612ced83612caa8560008861358b565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176135b3565b600460008881526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000851603612d735760006001870190506000600460008381526020019081526020016000205403612d71576000548114612d70578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ddd8360008860016135de565b600160008154809291906001019190505550505050505050565b612dff612b7b565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e54906153a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec390615481565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b60008082905080612fad612850565b11613033576000548110156130325760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603613030575b60008103613026576004600083600190039350838152602001908152602001600020549050612ffc565b8092505050613065565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613138613b11565b61315460046000848152602001908152602001600020546135e4565b9050919050565b600a6000828152602001908152602001600020600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff0219169055505050565b60008054905090565b600033905090565b6009600080820160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556000820160146101000a8154906bffffffffffffffffffffffff02191690555050565b613223848484610dcf565b60008373ffffffffffffffffffffffffffffffffffffffff163b146132855761324e8484848461369a565b613284576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b613293613b11565b6132a461329f83612f9e565b6135e4565b9050919050565b6060600d80546132ba90614973565b80601f01602080910402602001604051908101604052809291908181526020018280546132e690614973565b80156133335780601f1061330857610100808354040283529160200191613333565b820191906000526020600020905b81548152906001019060200180831161331657829003601f168201915b5050505050905090565b60606000600161334c846137ea565b01905060008167ffffffffffffffff81111561336b5761336a613f80565b5b6040519080825280601f01601f19166020018201604052801561339d5781602001600182028036833780820191505090505b509050600082602001820190505b600115613400578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816133f4576133f3614c44565b5b049450600085036133ab575b819350505050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b613487838361393d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461351557600080549050600083820390505b6134c7600086838060010194508661369a565b6134fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106134b457816000541461351257600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86135a2868684613af8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6135ec613b11565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136c06131c3565b8786866040518563ffffffff1660e01b81526004016136e294939291906154f6565b6020604051808303816000875af192505050801561371e57506040513d601f19601f8201168201806040525081019061371b9190615557565b60015b613797573d806000811461374e576040519150601f19603f3d011682016040523d82523d6000602084013e613753565b606091505b50600081510361378f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613848577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161383e5761383d614c44565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613885576d04ee2d6d415b85acef8100000000838161387b5761387a614c44565b5b0492506020810190505b662386f26fc1000083106138b457662386f26fc1000083816138aa576138a9614c44565b5b0492506010810190505b6305f5e10083106138dd576305f5e10083816138d3576138d2614c44565b5b0492506008810190505b61271083106139025761271083816138f8576138f7614c44565b5b0492506004810190505b60648310613925576064838161391b5761391a614c44565b5b0492506002810190505b600a8310613934576001810190505b80915050919050565b6000805490506000820361397d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61398a6000848385613585565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613a01836139f2600086600061358b565b6139fb85613b01565b176135b3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114613aa257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613a67565b5060008203613add576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050613af360008483856135de565b505050565b60009392505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ba981613b74565b8114613bb457600080fd5b50565b600081359050613bc681613ba0565b92915050565b600060208284031215613be257613be1613b6a565b5b6000613bf084828501613bb7565b91505092915050565b60008115159050919050565b613c0e81613bf9565b82525050565b6000602082019050613c296000830184613c05565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5a82613c2f565b9050919050565b613c6a81613c4f565b8114613c7557600080fd5b50565b600081359050613c8781613c61565b92915050565b60006bffffffffffffffffffffffff82169050919050565b613cae81613c8d565b8114613cb957600080fd5b50565b600081359050613ccb81613ca5565b92915050565b60008060408385031215613ce857613ce7613b6a565b5b6000613cf685828601613c78565b9250506020613d0785828601613cbc565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d4b578082015181840152602081019050613d30565b60008484015250505050565b6000601f19601f8301169050919050565b6000613d7382613d11565b613d7d8185613d1c565b9350613d8d818560208601613d2d565b613d9681613d57565b840191505092915050565b60006020820190508181036000830152613dbb8184613d68565b905092915050565b6000819050919050565b613dd681613dc3565b8114613de157600080fd5b50565b600081359050613df381613dcd565b92915050565b600060208284031215613e0f57613e0e613b6a565b5b6000613e1d84828501613de4565b91505092915050565b613e2f81613c4f565b82525050565b6000602082019050613e4a6000830184613e26565b92915050565b60008060408385031215613e6757613e66613b6a565b5b6000613e7585828601613c78565b9250506020613e8685828601613de4565b9150509250929050565b613e9981613dc3565b82525050565b6000602082019050613eb46000830184613e90565b92915050565b600080600060608486031215613ed357613ed2613b6a565b5b6000613ee186828701613c78565b9350506020613ef286828701613c78565b9250506040613f0386828701613de4565b9150509250925092565b60008060408385031215613f2457613f23613b6a565b5b6000613f3285828601613de4565b9250506020613f4385828601613de4565b9150509250929050565b6000604082019050613f626000830185613e26565b613f6f6020830184613e90565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613fb882613d57565b810181811067ffffffffffffffff82111715613fd757613fd6613f80565b5b80604052505050565b6000613fea613b60565b9050613ff68282613faf565b919050565b600067ffffffffffffffff82111561401657614015613f80565b5b61401f82613d57565b9050602081019050919050565b82818337600083830152505050565b600061404e61404984613ffb565b613fe0565b90508281526020810184848401111561406a57614069613f7b565b5b61407584828561402c565b509392505050565b600082601f83011261409257614091613f76565b5b81356140a284826020860161403b565b91505092915050565b6000602082840312156140c1576140c0613b6a565b5b600082013567ffffffffffffffff8111156140df576140de613b6f565b5b6140eb8482850161407d565b91505092915050565b60006020828403121561410a57614109613b6a565b5b600061411884828501613c78565b91505092915050565b60008060006060848603121561413a57614139613b6a565b5b600061414886828701613de4565b935050602061415986828701613c78565b925050604061416a86828701613cbc565b9150509250925092565b600080fd5b600080fd5b60008083601f84011261419457614193613f76565b5b8235905067ffffffffffffffff8111156141b1576141b0614174565b5b6020830191508360208202830111156141cd576141cc614179565b5b9250929050565b600080602083850312156141eb576141ea613b6a565b5b600083013567ffffffffffffffff81111561420957614208613b6f565b5b6142158582860161417e565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61425681613c4f565b82525050565b600067ffffffffffffffff82169050919050565b6142798161425c565b82525050565b61428881613bf9565b82525050565b600062ffffff82169050919050565b6142a68161428e565b82525050565b6080820160008201516142c2600085018261424d565b5060208201516142d56020850182614270565b5060408201516142e8604085018261427f565b5060608201516142fb606085018261429d565b50505050565b600061430d83836142ac565b60808301905092915050565b6000602082019050919050565b600061433182614221565b61433b818561422c565b93506143468361423d565b8060005b8381101561437757815161435e8882614301565b975061436983614319565b92505060018101905061434a565b5085935050505092915050565b6000602082019050818103600083015261439e8184614326565b905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6143db81613dc3565b82525050565b60006143ed83836143d2565b60208301905092915050565b6000602082019050919050565b6000614411826143a6565b61441b81856143b1565b9350614426836143c2565b8060005b8381101561445757815161443e88826143e1565b9750614449836143f9565b92505060018101905061442a565b5085935050505092915050565b6000602082019050818103600083015261447e8184614406565b905092915050565b61448f81613bf9565b811461449a57600080fd5b50565b6000813590506144ac81614486565b92915050565b6000602082840312156144c8576144c7613b6a565b5b60006144d68482850161449d565b91505092915050565b6000806000606084860312156144f8576144f7613b6a565b5b600061450686828701613c78565b935050602061451786828701613de4565b925050604061452886828701613de4565b9150509250925092565b600067ffffffffffffffff82111561454d5761454c613f80565b5b602082029050602081019050919050565b600061457161456c84614532565b613fe0565b9050808382526020820190506020840283018581111561459457614593614179565b5b835b818110156145bd57806145a98882613c78565b845260208401935050602081019050614596565b5050509392505050565b600082601f8301126145dc576145db613f76565b5b81356145ec84826020860161455e565b91505092915050565b600067ffffffffffffffff8211156146105761460f613f80565b5b602082029050602081019050919050565b600061463461462f846145f5565b613fe0565b9050808382526020820190506020840283018581111561465757614656614179565b5b835b81811015614680578061466c8882613de4565b845260208401935050602081019050614659565b5050509392505050565b600082601f83011261469f5761469e613f76565b5b81356146af848260208601614621565b91505092915050565b600080604083850312156146cf576146ce613b6a565b5b600083013567ffffffffffffffff8111156146ed576146ec613b6f565b5b6146f9858286016145c7565b925050602083013567ffffffffffffffff81111561471a57614719613b6f565b5b6147268582860161468a565b9150509250929050565b6000806040838503121561474757614746613b6a565b5b600061475585828601613c78565b92505060206147668582860161449d565b9150509250929050565b600067ffffffffffffffff82111561478b5761478a613f80565b5b61479482613d57565b9050602081019050919050565b60006147b46147af84614770565b613fe0565b9050828152602081018484840111156147d0576147cf613f7b565b5b6147db84828561402c565b509392505050565b600082601f8301126147f8576147f7613f76565b5b81356148088482602086016147a1565b91505092915050565b6000806000806080858703121561482b5761482a613b6a565b5b600061483987828801613c78565b945050602061484a87828801613c78565b935050604061485b87828801613de4565b925050606085013567ffffffffffffffff81111561487c5761487b613b6f565b5b614888878288016147e3565b91505092959194509250565b6080820160008201516148aa600085018261424d565b5060208201516148bd6020850182614270565b5060408201516148d0604085018261427f565b5060608201516148e3606085018261429d565b50505050565b60006080820190506148fe6000830184614894565b92915050565b6000806040838503121561491b5761491a613b6a565b5b600061492985828601613c78565b925050602061493a85828601613c78565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061498b57607f821691505b60208210810361499e5761499d614944565b5b50919050565b7f414943686174626f74733a204d696e74204e6f74204163746976650000000000600082015250565b60006149da601b83613d1c565b91506149e5826149a4565b602082019050919050565b60006020820190508181036000830152614a09816149cd565b9050919050565b7f414943686174626f74733a20596f7520646f6e2774206861766520616e79206160008201527f6c6c6f636174696f6e0000000000000000000000000000000000000000000000602082015250565b6000614a6c602983613d1c565b9150614a7782614a10565b604082019050919050565b60006020820190508181036000830152614a9b81614a5f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614adc82613dc3565b9150614ae783613dc3565b9250828201905080821115614aff57614afe614aa2565b5b92915050565b7f414943686174626f74733a2045786365656473204d6178205065722057616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b61602283613d1c565b9150614b6c82614b05565b604082019050919050565b60006020820190508181036000830152614b9081614b54565b9050919050565b6000604082019050614bac6000830185613e26565b614bb96020830184613e26565b9392505050565b600081519050614bcf81614486565b92915050565b600060208284031215614beb57614bea613b6a565b5b6000614bf984828501614bc0565b91505092915050565b6000614c0d82613dc3565b9150614c1883613dc3565b9250828202614c2681613dc3565b91508282048414831517614c3d57614c3c614aa2565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614c7e82613dc3565b9150614c8983613dc3565b925082614c9957614c98614c44565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614d067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614cc9565b614d108683614cc9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614d4d614d48614d4384613dc3565b614d28565b613dc3565b9050919050565b6000819050919050565b614d6783614d32565b614d7b614d7382614d54565b848454614cd6565b825550505050565b600090565b614d90614d83565b614d9b818484614d5e565b505050565b5b81811015614dbf57614db4600082614d88565b600181019050614da1565b5050565b601f821115614e0457614dd581614ca4565b614dde84614cb9565b81016020851015614ded578190505b614e01614df985614cb9565b830182614da0565b50505b505050565b600082821c905092915050565b6000614e2760001984600802614e09565b1980831691505092915050565b6000614e408383614e16565b9150826002028217905092915050565b614e5982613d11565b67ffffffffffffffff811115614e7257614e71613f80565b5b614e7c8254614973565b614e87828285614dc3565b600060209050601f831160018114614eba5760008415614ea8578287015190505b614eb28582614e34565b865550614f1a565b601f198416614ec886614ca4565b60005b82811015614ef057848901518255600182019150602085019450602081019050614ecb565b86831015614f0d5784890151614f09601f891682614e16565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614f5c82613dc3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614f8e57614f8d614aa2565b5b600182019050919050565b600081905092915050565b50565b6000614fb4600083614f99565b9150614fbf82614fa4565b600082019050919050565b6000614fd582614fa7565b9150819050919050565b7f5769746864726177206661696c65642e00000000000000000000000000000000600082015250565b6000615015601083613d1c565b915061502082614fdf565b602082019050919050565b6000602082019050818103600083015261504481615008565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006150a7602f83613d1c565b91506150b28261504b565b604082019050919050565b600060208201905081810360008301526150d68161509a565b9050919050565b600081905092915050565b60006150f382613d11565b6150fd81856150dd565b935061510d818560208601613d2d565b80840191505092915050565b6000815461512681614973565b61513081866150dd565b9450600182166000811461514b576001811461516057615193565b60ff1983168652811515820286019350615193565b61516985614ca4565b60005b8381101561518b5781548189015260018201915060208101905061516c565b838801955050505b50505092915050565b60006151a882866150e8565b91506151b482856150e8565b91506151c08284615119565b9150819050949350505050565b7f414943686174626f74733a204d696e7420537570706c79204578636565646564600082015250565b6000615203602083613d1c565b915061520e826151cd565b602082019050919050565b60006020820190508181036000830152615232816151f6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615295602683613d1c565b91506152a082615239565b604082019050919050565b600060208201905081810360008301526152c481615288565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615301602083613d1c565b915061530c826152cb565b602082019050919050565b60006020820190508181036000830152615330816152f4565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000615393602a83613d1c565b915061539e82615337565b604082019050919050565b600060208201905081810360008301526153c281615386565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006153ff601983613d1c565b915061540a826153c9565b602082019050919050565b6000602082019050818103600083015261542e816153f2565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b600061546b601b83613d1c565b915061547682615435565b602082019050919050565b6000602082019050818103600083015261549a8161545e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006154c8826154a1565b6154d281856154ac565b93506154e2818560208601613d2d565b6154eb81613d57565b840191505092915050565b600060808201905061550b6000830187613e26565b6155186020830186613e26565b6155256040830185613e90565b818103606083015261553781846154bd565b905095945050505050565b60008151905061555181613ba0565b92915050565b60006020828403121561556d5761556c613b6a565b5b600061557b84828501615542565b9150509291505056fea264697066735822122021fdbde4e104a0f2172d9ca73c598c9a64fd121c7cfa1c0e6095f2824cbeb5c764736f6c63430008110033
Deployed Bytecode Sourcemap
130718:4868:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132952:301;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;133951:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82068:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88031:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;131096:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87748:124;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;131698:428;;;:::i;:::-;;77819:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;134628:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69402:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;134872:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;128313:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;131165:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;131131:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;133508:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;131202:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;134235:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;123175:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;131260:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83461:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;130951:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;131024:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79003:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30448:103;;;;;;;;;;;;;:::i;:::-;;127051:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;134442:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29800:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;131361:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82244:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;124091:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;131461:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88589:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;133872:69;;;;;;;;;;;;;:::i;:::-;;134129:100;;;;;;;;;;;;;:::i;:::-;;135405:178;;;;;;;;;;;;;:::i;:::-;;135122:275;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;122588:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;131052:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;132358:584;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;132134:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;133620:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88980:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;133374:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30706:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;130990:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;132952:301;133109:4;133152:38;133178:11;133152:25;:38::i;:::-;:93;;;;133207:38;133233:11;133207:25;:38::i;:::-;133152:93;133132:113;;132952:301;;;:::o;133951:172::-;29686:13;:11;:13::i;:::-;134073:44:::1;134092:9;134103:13;134073:18;:44::i;:::-;133951:172:::0;;:::o;82068:100::-;82122:13;82155:5;82148:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82068:100;:::o;88031:218::-;88107:7;88132:16;88140:7;88132;:16::i;:::-;88127:64;;88157:34;;;;;;;;;;;;;;88127:64;88211:15;:24;88227:7;88211:24;;;;;;;;;;;:30;;;;;;;;;;;;88204:37;;88031:218;;;:::o;131096:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;87748:124::-;87837:27;87846:2;87850:7;87859:4;87837:8;:27::i;:::-;87748:124;;:::o;131698:428::-;131750:10;;;;;;;;;;;131742:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;131842:1;131811:16;:28;131828:10;131811:28;;;;;;;;;;;;;;;;:32;131803:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;131900:17;131920:16;:28;131937:10;131920:28;;;;;;;;;;;;;;;;131900:48;;132008:16;:28;132025:10;132008:28;;;;;;;;;;;;;;;;131995:9;131967:25;131981:10;131967:13;:25::i;:::-;:37;;;;:::i;:::-;:69;;131959:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;132086:32;132096:10;132108:9;132086;:32::i;:::-;131731:395;131698:428::o;77819:323::-;77880:7;78108:15;:13;:15::i;:::-;78093:12;;78077:13;;:28;:46;78070:53;;77819:323;:::o;134628:238::-;134801:5;129798:1;128602:42;129750:45;;;:49;129746:705;;;130039:10;130031:18;;:4;:18;;;130027:85;;134820:40:::1;134839:5;134846:3;134851:8;134820:18;:40::i;:::-;130090:7:::0;;130027:85;128602:42;130172;;;130223:4;130230:10;130172:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:161;;;;;128602:42;130270;;;130321:4;130328;130270:63;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;130172:161;130126:314;;130413:10;130394:30;;;;;;;;;;;:::i;:::-;;;;;;;;130126:314;129746:705;134820:40:::1;134839:5;134846:3;134851:8;134820:18;:40::i;:::-;134628:238:::0;;;;;:::o;69402:442::-;69499:7;69508;69528:26;69557:17;:27;69575:8;69557:27;;;;;;;;;;;69528:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69629:1;69601:30;;:7;:16;;;:30;;;69597:92;;69658:19;69648:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69597:92;69701:21;69766:17;:15;:17::i;:::-;69725:58;;69739:7;:23;;;69726:36;;:10;:36;;;;:::i;:::-;69725:58;;;;:::i;:::-;69701:82;;69804:7;:16;;;69822:13;69796:40;;;;;;69402:442;;;;;:::o;134872:244::-;135049:5;129798:1;128602:42;129750:45;;;:49;129746:705;;;130039:10;130031:18;;:4;:18;;;130027:85;;135066:44:::1;135089:5;135096:3;135101:8;135066:22;:44::i;:::-;130090:7:::0;;130027:85;128602:42;130172;;;130223:4;130230:10;130172:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:161;;;;;128602:42;130270;;;130321:4;130328;130270:63;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;130172:161;130126:314;;130413:10;130394:30;;;;;;;;;;;:::i;:::-;;;;;;;;130126:314;129746:705;135066:44:::1;135089:5;135096:3;135101:8;135066:22;:44::i;:::-;134872:244:::0;;;;;:::o;128313:94::-;128379:20;128385:7;128394:4;128379:5;:20::i;:::-;128313:94;:::o;131165:30::-;;;;;;;;;;;;;:::o;131131:27::-;;;;;;;;;;;;;:::o;133508:104::-;29686:13;:11;:13::i;:::-;133593:11:::1;133583:7;:21;;;;;;:::i;:::-;;133508:104:::0;:::o;131202:51::-;;;;;;;;;;;;;;;;;:::o;134235:201::-;29686:13;:11;:13::i;:::-;134378:52:::1;134395:8;134405:9;134416:13;134378:16;:52::i;:::-;134235:201:::0;;;:::o;123175:528::-;123319:23;123385:22;123410:8;;:15;;123385:40;;123440:34;123498:14;123477:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;123440:73;;123533:9;123528:125;123549:14;123544:1;:19;123528:125;;123605:32;123625:8;;123634:1;123625:11;;;;;;;:::i;:::-;;;;;;;;123605:19;:32::i;:::-;123589:10;123600:1;123589:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;123565:3;;;;;123528:125;;;;123674:10;123667:17;;;;123175:528;;;;:::o;131260:25::-;;;;:::o;83461:152::-;83533:7;83576:27;83595:7;83576:18;:27::i;:::-;83553:52;;83461:152;;;:::o;130951:32::-;;;;:::o;131024:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79003:233::-;79075:7;79116:1;79099:19;;:5;:19;;;79095:60;;79127:28;;;;;;;;;;;;;;79095:60;73162:13;79173:18;:25;79192:5;79173:25;;;;;;;;;;;;;;;;:55;79166:62;;79003:233;;;:::o;30448:103::-;29686:13;:11;:13::i;:::-;30513:30:::1;30540:1;30513:18;:30::i;:::-;30448:103::o:0;127051:900::-;127129:16;127183:19;127217:25;127257:22;127282:16;127292:5;127282:9;:16::i;:::-;127257:41;;127313:25;127355:14;127341:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;127313:57;;127385:31;;:::i;:::-;127436:9;127448:15;:13;:15::i;:::-;127436:27;;127431:472;127480:14;127465:11;:29;127431:472;;127532:15;127545:1;127532:12;:15::i;:::-;127520:27;;127570:9;:16;;;127611:8;127566:73;127687:1;127661:28;;:9;:14;;;:28;;;127657:111;;127734:9;:14;;;127714:34;;127657:111;127811:5;127790:26;;:17;:26;;;127786:102;;127867:1;127841:8;127850:13;;;;;;127841:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;127786:102;127431:472;127496:3;;;;;127431:472;;;;127924:8;127917:15;;;;;;;127051:900;;;:::o;134442:126::-;29686:13;:11;:13::i;:::-;134535:27:::1;134554:7;134535:18;:27::i;:::-;134442:126:::0;:::o;29800:87::-;29846:7;29873:6;;;;;;;;;;;29866:13;;29800:87;:::o;131361:92::-;29686:13;:11;:13::i;:::-;131436:9:::1;131423:10;;:22;;;;;;;;;;;;;;;;;;131361:92:::0;:::o;82244:104::-;82300:13;82333:7;82326:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82244:104;:::o;124091:2513::-;124234:16;124301:4;124292:5;:13;124288:45;;124314:19;;;;;;;;;;;;;;124288:45;124348:19;124382:17;124402:14;:12;:14::i;:::-;124382:34;;124502:15;:13;:15::i;:::-;124494:5;:23;124490:87;;;124546:15;:13;:15::i;:::-;124538:23;;124490:87;124653:9;124646:4;:16;124642:73;;;124690:9;124683:16;;124642:73;124729:25;124757:16;124767:5;124757:9;:16::i;:::-;124729:44;;124951:4;124943:5;:12;124939:278;;;124976:19;125005:5;124998:4;:12;124976:34;;125047:17;125033:11;:31;125029:111;;;125109:11;125089:31;;125029:111;124957:198;124939:278;;;125200:1;125180:21;;124939:278;125231:25;125273:17;125259:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125231:60;;125331:1;125310:17;:22;125306:78;;125360:8;125353:15;;;;;;;;125306:78;125528:31;125562:26;125582:5;125562:19;:26::i;:::-;125528:60;;125603:25;125848:9;:16;;;125843:92;;125905:9;:14;;;125885:34;;125843:92;125954:9;125966:5;125954:17;;125949:478;125978:4;125973:1;:9;;:45;;;;;126001:17;125986:11;:32;;125973:45;125949:478;;;126056:15;126069:1;126056:12;:15::i;:::-;126044:27;;126094:9;:16;;;126135:8;126090:73;126211:1;126185:28;;:9;:14;;;:28;;;126181:111;;126258:9;:14;;;126238:34;;126181:111;126335:5;126314:26;;:17;:26;;;126310:102;;126391:1;126365:8;126374:13;;;;;;126365:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;126310:102;125949:478;126020:3;;;;;125949:478;;;;126529:11;126519:8;126512:29;126577:8;126570:15;;;;;;;;124091:2513;;;;;;:::o;131461:229::-;29686:13;:11;:13::i;:::-;131576:9:::1;131572:111;131595:7;:14;131591:1;:18;131572:111;;;131661:7;131669:1;131661:10;;;;;;;;:::i;:::-;;;;;;;;131630:16;:28;131647:7;131655:1;131647:10;;;;;;;;:::i;:::-;;;;;;;;131630:28;;;;;;;;;;;;;;;:41;;;;131611:3;;;;;:::i;:::-;;;;131572:111;;;;131461:229:::0;;:::o;88589:234::-;88736:8;88684:18;:39;88703:19;:17;:19::i;:::-;88684:39;;;;;;;;;;;;;;;:49;88724:8;88684:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;88796:8;88760:55;;88775:19;:17;:19::i;:::-;88760:55;;;88806:8;88760:55;;;;;;:::i;:::-;;;;;;;;88589:234;;:::o;133872:69::-;29686:13;:11;:13::i;:::-;133929:4:::1;133918:8;;:15;;;;;;;;;;;;;;;;;;133872:69::o:0;134129:100::-;29686:13;:11;:13::i;:::-;134200:23:::1;:21;:23::i;:::-;134129:100::o:0;135405:178::-;29686:13;:11;:13::i;:::-;135461:12:::1;135479:10;:15;;135502:21;135479:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135460:68;;;135547:7;135539:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;135449:134;135405:178::o:0;135122:275::-;135323:5;129798:1;128602:42;129750:45;;;:49;129746:705;;;130039:10;130031:18;;:4;:18;;;130027:85;;135340:51:::1;135363:5;135370:3;135375:8;135385:5;135340:22;:51::i;:::-;130090:7:::0;;130027:85;128602:42;130172;;;130223:4;130230:10;130172:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:161;;;;;128602:42;130270;;;130321:4;130328;130270:63;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;130172:161;130126:314;;130413:10;130394:30;;;;;;;;;;;:::i;:::-;;;;;;;;130126:314;129746:705;135340:51:::1;135363:5;135370:3;135375:8;135385:5;135340:22;:51::i;:::-;135122:275:::0;;;;;;:::o;122588:428::-;122672:21;;:::i;:::-;122706:31;;:::i;:::-;122762:15;:13;:15::i;:::-;122752:7;:25;:54;;;;122792:14;:12;:14::i;:::-;122781:7;:25;;122752:54;122748:103;;;122830:9;122823:16;;;;;122748:103;122873:21;122886:7;122873:12;:21::i;:::-;122861:33;;122909:9;:16;;;122905:65;;;122949:9;122942:16;;;;;122905:65;122987:21;123000:7;122987:12;:21::i;:::-;122980:28;;;122588:428;;;;:::o;131052:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;132358:584::-;132495:13;132544:16;132552:7;132544;:16::i;:::-;132526:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;132667:5;132655:17;;:8;;;;;;;;;;;:17;;;132652:70;;132696:14;132689:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132652:70;132734:28;132765:10;:8;:10::i;:::-;132734:41;;132824:1;132799:14;132793:28;:32;:141;;;;;;;;;;;;;;;;;132865:14;132881:18;:7;:16;:18::i;:::-;132901:13;132848:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;132793:141;132786:148;;;132358:584;;;;:::o;132134:216::-;29686:13;:11;:13::i;:::-;130897:4:::1;132242:9;132226:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;132218:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;132312:30;132322:8;132332:9;132312;:30::i;:::-;132134:216:::0;;:::o;133620:128::-;29686:13;:11;:13::i;:::-;133723:17:::1;133707:13;:33;;;;;;:::i;:::-;;133620:128:::0;:::o;88980:164::-;89077:4;89101:18;:25;89120:5;89101:25;;;;;;;;;;;;;;;:35;89127:8;89101:35;;;;;;;;;;;;;;;;;;;;;;;;;89094:42;;88980:164;;;;:::o;133374:126::-;29686:13;:11;:13::i;:::-;133477:15:::1;133460:14;:32;;;;;;:::i;:::-;;133374:126:::0;:::o;30706:201::-;29686:13;:11;:13::i;:::-;30815:1:::1;30795:22;;:8;:22;;::::0;30787:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;30871:28;30890:8;30871:18;:28::i;:::-;30706:201:::0;:::o;130990:27::-;;;;:::o;69132:215::-;69234:4;69273:26;69258:41;;;:11;:41;;;;:81;;;;69303:36;69327:11;69303:23;:36::i;:::-;69258:81;69251:88;;69132:215;;;:::o;81166:639::-;81251:4;81590:10;81575:25;;:11;:25;;;;:102;;;;81667:10;81652:25;;:11;:25;;;;81575:102;:179;;;;81744:10;81729:25;;:11;:25;;;;81575:179;81555:199;;81166:639;;;:::o;29965:132::-;30040:12;:10;:12::i;:::-;30029:23;;:7;:5;:7::i;:::-;:23;;;30021:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29965:132::o;70494:332::-;70613:17;:15;:17::i;:::-;70597:33;;:12;:33;;;;70589:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;70716:1;70696:22;;:8;:22;;;70688:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;70783:35;;;;;;;;70795:8;70783:35;;;;;;70805:12;70783:35;;;;;70761:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70494:332;;:::o;89402:282::-;89467:4;89523:7;89504:15;:13;:15::i;:::-;:26;;:66;;;;;89557:13;;89547:7;:23;89504:66;:153;;;;;89656:1;73938:8;89608:17;:26;89626:7;89608:26;;;;;;;;;;;;:44;:49;89504:153;89484:173;;89402:282;;;:::o;106462:431::-;106557:13;106573:16;106581:7;106573;:16::i;:::-;106557:32;;106606:13;:45;;;;;106646:5;106623:28;;:19;:17;:19::i;:::-;:28;;;;106606:45;106602:192;;;106671:44;106688:5;106695:19;:17;:19::i;:::-;106671:16;:44::i;:::-;106666:128;;106743:35;;;;;;;;;;;;;;106666:128;106602:192;106839:2;106806:15;:24;106822:7;106806:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;106877:7;106873:2;106857:28;;106866:5;106857:28;;;;;;;;;;;;106546:347;106462:431;;;:::o;79318:178::-;79379:7;73162:13;73300:2;79407:18;:25;79426:5;79407:25;;;;;;;;;;;;;;;;:50;;79406:82;79399:89;;79318:178;;;:::o;105542:112::-;105619:27;105629:2;105633:8;105619:27;;;;;;;;;;;;:9;:27::i;:::-;105542:112;;:::o;133261:101::-;133326:7;133353:1;133346:8;;133261:101;:::o;91670:2825::-;91812:27;91842;91861:7;91842:18;:27::i;:::-;91812:57;;91927:4;91886:45;;91902:19;91886:45;;;91882:86;;91940:28;;;;;;;;;;;;;;91882:86;91982:27;92011:23;92038:35;92065:7;92038:26;:35::i;:::-;91981:92;;;;92173:68;92198:15;92215:4;92221:19;:17;:19::i;:::-;92173:24;:68::i;:::-;92168:180;;92261:43;92278:4;92284:19;:17;:19::i;:::-;92261:16;:43::i;:::-;92256:92;;92313:35;;;;;;;;;;;;;;92256:92;92168:180;92379:1;92365:16;;:2;:16;;;92361:52;;92390:23;;;;;;;;;;;;;;92361:52;92426:43;92448:4;92454:2;92458:7;92467:1;92426:21;:43::i;:::-;92562:15;92559:160;;;92702:1;92681:19;92674:30;92559:160;93099:18;:24;93118:4;93099:24;;;;;;;;;;;;;;;;93097:26;;;;;;;;;;;;93168:18;:22;93187:2;93168:22;;;;;;;;;;;;;;;;93166:24;;;;;;;;;;;93490:146;93527:2;93576:45;93591:4;93597:2;93601:19;93576:14;:45::i;:::-;74218:8;93548:73;93490:18;:146::i;:::-;93461:17;:26;93479:7;93461:26;;;;;;;;;;;:175;;;;93807:1;74218:8;93756:19;:47;:52;93752:627;;93829:19;93861:1;93851:7;:11;93829:33;;94018:1;93984:17;:30;94002:11;93984:30;;;;;;;;;;;;:35;93980:384;;94122:13;;94107:11;:28;94103:242;;94302:19;94269:17;:30;94287:11;94269:30;;;;;;;;;;;:52;;;;94103:242;93980:384;93810:569;93752:627;94426:7;94422:2;94407:27;;94416:4;94407:27;;;;;;;;;;;;94445:42;94466:4;94472:2;94476:7;94485:1;94445:20;:42::i;:::-;91801:2694;;;91670:2825;;;:::o;70126:97::-;70184:6;70210:5;70203:12;;70126:97;:::o;94591:193::-;94737:39;94754:4;94760:2;94764:7;94737:39;;;;;;;;;;;;:16;:39::i;:::-;94591:193;;;:::o;107478:3081::-;107558:27;107588;107607:7;107588:18;:27::i;:::-;107558:57;;107628:12;107659:19;107628:52;;107694:27;107723:23;107750:35;107777:7;107750:26;:35::i;:::-;107693:92;;;;107802:13;107798:316;;;107923:68;107948:15;107965:4;107971:19;:17;:19::i;:::-;107923:24;:68::i;:::-;107918:184;;108015:43;108032:4;108038:19;:17;:19::i;:::-;108015:16;:43::i;:::-;108010:92;;108067:35;;;;;;;;;;;;;;108010:92;107918:184;107798:316;108126:51;108148:4;108162:1;108166:7;108175:1;108126:21;:51::i;:::-;108270:15;108267:160;;;108410:1;108389:19;108382:30;108267:160;109088:1;73427:3;109058:1;:26;;109057:32;109029:18;:24;109048:4;109029:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;109356:176;109393:4;109464:53;109479:4;109493:1;109497:19;109464:14;:53::i;:::-;74218:8;73938;109417:43;109416:101;109356:18;:176::i;:::-;109327:17;:26;109345:7;109327:26;;;;;;;;;;;:205;;;;109703:1;74218:8;109652:19;:47;:52;109648:627;;109725:19;109757:1;109747:7;:11;109725:33;;109914:1;109880:17;:30;109898:11;109880:30;;;;;;;;;;;;:35;109876:384;;110018:13;;110003:11;:28;109999:242;;110198:19;110165:17;:30;110183:11;110165:30;;;;;;;;;;;:52;;;;109999:242;109876:384;109706:569;109648:627;110330:7;110326:1;110303:35;;110312:4;110303:35;;;;;;;;;;;;110349:50;110370:4;110384:1;110388:7;110397:1;110349:20;:50::i;:::-;110526:12;;:14;;;;;;;;;;;;;107547:3012;;;;107478:3081;;:::o;71277:390::-;71445:17;:15;:17::i;:::-;71429:33;;:12;:33;;;;71421:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;71548:1;71528:22;;:8;:22;;;71520:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;71624:35;;;;;;;;71636:8;71624:35;;;;;;71646:12;71624:35;;;;;71595:17;:26;71613:7;71595:26;;;;;;;;;;;:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71277:390;;;:::o;84616:1275::-;84683:7;84703:12;84718:7;84703:22;;84786:4;84767:15;:13;:15::i;:::-;:23;84763:1061;;84820:13;;84813:4;:20;84809:1015;;;84858:14;84875:17;:23;84893:4;84875:23;;;;;;;;;;;;84858:40;;84992:1;73938:8;84964:6;:24;:29;84960:845;;85629:113;85646:1;85636:6;:11;85629:113;;85689:17;:25;85707:6;;;;;;;85689:25;;;;;;;;;;;;85680:34;;85629:113;;;85775:6;85768:13;;;;;;84960:845;84835:989;84809:1015;84763:1061;85852:31;;;;;;;;;;;;;;84616:1275;;;;:::o;31067:191::-;31141:16;31160:6;;;;;;;;;;;31141:25;;31186:8;31177:6;;:17;;;;;;;;;;;;;;;;;;31241:8;31210:40;;31231:8;31210:40;;;;;;;;;;;;31130:128;31067:191;:::o;84064:161::-;84132:21;;:::i;:::-;84173:44;84192:17;:24;84210:5;84192:24;;;;;;;;;;;;84173:18;:44::i;:::-;84166:51;;84064:161;;;:::o;71778:114::-;71858:17;:26;71876:7;71858:26;;;;;;;;;;;;71851:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71778:114;:::o;77506:103::-;77561:7;77588:13;;77581:20;;77506:103;:::o;112949:105::-;113009:7;113036:10;113029:17;;112949:105;:::o;70902:95::-;70970:19;;70963:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70902:95::o;95382:407::-;95557:31;95570:4;95576:2;95580:7;95557:12;:31::i;:::-;95621:1;95603:2;:14;;;:19;95599:183;;95642:56;95673:4;95679:2;95683:7;95692:5;95642:30;:56::i;:::-;95637:145;;95726:40;;;;;;;;;;;;;;95637:145;95599:183;95382:407;;;;:::o;83802:166::-;83872:21;;:::i;:::-;83913:47;83932:27;83951:7;83932:18;:27::i;:::-;83913:18;:47::i;:::-;83906:54;;83802:166;;;:::o;133756:108::-;133816:13;133849:7;133842:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133756:108;:::o;23207:716::-;23263:13;23314:14;23351:1;23331:17;23342:5;23331:10;:17::i;:::-;:21;23314:38;;23367:20;23401:6;23390:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23367:41;;23423:11;23552:6;23548:2;23544:15;23536:6;23532:28;23525:35;;23589:288;23596:4;23589:288;;;23621:5;;;;;;;;23763:8;23758:2;23751:5;23747:14;23742:30;23737:3;23729:44;23819:2;23810:11;;;;;;:::i;:::-;;;;;23853:1;23844:5;:10;23589:288;23840:21;23589:288;23898:6;23891:13;;;;;23207:716;;;:::o;31963:157::-;32048:4;32087:25;32072:40;;;:11;:40;;;;32065:47;;31963:157;;;:::o;28509:98::-;28562:7;28589:10;28582:17;;28509:98;:::o;104769:689::-;104900:19;104906:2;104910:8;104900:5;:19::i;:::-;104979:1;104961:2;:14;;;:19;104957:483;;105001:11;105015:13;;105001:27;;105047:13;105069:8;105063:3;:14;105047:30;;105096:233;105127:62;105166:1;105170:2;105174:7;;;;;;105183:5;105127:30;:62::i;:::-;105122:167;;105225:40;;;;;;;;;;;;;;105122:167;105324:3;105316:5;:11;105096:233;;105411:3;105394:13;;:20;105390:34;;105416:8;;;105390:34;104982:458;;104957:483;104769:689;;;:::o;90565:485::-;90667:27;90696:23;90737:38;90778:15;:24;90794:7;90778:24;;;;;;;;;;;90737:65;;90955:18;90932:41;;91012:19;91006:26;90987:45;;90917:126;90565:485;;;:::o;89793:659::-;89942:11;90107:16;90100:5;90096:28;90087:37;;90267:16;90256:9;90252:32;90239:45;;90417:15;90406:9;90403:30;90395:5;90384:9;90381:20;90378:56;90368:66;;89793:659;;;;;:::o;96451:159::-;;;;;:::o;112258:311::-;112393:7;112413:16;74342:3;112439:19;:41;;112413:68;;74342:3;112507:31;112518:4;112524:2;112528:9;112507:10;:31::i;:::-;112499:40;;:62;;112492:69;;;112258:311;;;;;:::o;86439:450::-;86519:14;86687:16;86680:5;86676:28;86667:37;;86864:5;86850:11;86825:23;86821:41;86818:52;86811:5;86808:63;86798:73;;86439:450;;;;:::o;97275:158::-;;;;;:::o;85990:366::-;86056:31;;:::i;:::-;86133:6;86100:9;:14;;:41;;;;;;;;;;;73821:3;86186:6;:33;;86152:9;:24;;:68;;;;;;;;;;;86278:1;73938:8;86250:6;:24;:29;;86231:9;:16;;:48;;;;;;;;;;;74342:3;86319:6;:28;;86290:9;:19;;:58;;;;;;;;;;;85990:366;;;:::o;97873:716::-;98036:4;98082:2;98057:45;;;98103:19;:17;:19::i;:::-;98124:4;98130:7;98139:5;98057:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;98053:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98357:1;98340:6;:13;:18;98336:235;;98386:40;;;;;;;;;;;;;;98336:235;98529:6;98523:13;98514:6;98510:2;98506:15;98499:38;98053:529;98226:54;;;98216:64;;;:6;:64;;;;98209:71;;;97873:716;;;;;;:::o;10083:922::-;10136:7;10156:14;10173:1;10156:18;;10223:6;10214:5;:15;10210:102;;10259:6;10250:15;;;;;;:::i;:::-;;;;;10294:2;10284:12;;;;10210:102;10339:6;10330:5;:15;10326:102;;10375:6;10366:15;;;;;;:::i;:::-;;;;;10410:2;10400:12;;;;10326:102;10455:6;10446:5;:15;10442:102;;10491:6;10482:15;;;;;;:::i;:::-;;;;;10526:2;10516:12;;;;10442:102;10571:5;10562;:14;10558:99;;10606:5;10597:14;;;;;;:::i;:::-;;;;;10640:1;10630:11;;;;10558:99;10684:5;10675;:14;10671:99;;10719:5;10710:14;;;;;;:::i;:::-;;;;;10753:1;10743:11;;;;10671:99;10797:5;10788;:14;10784:99;;10832:5;10823:14;;;;;;:::i;:::-;;;;;10866:1;10856:11;;;;10784:99;10910:5;10901;:14;10897:66;;10946:1;10936:11;;;;10897:66;10991:6;10984:13;;;10083:922;;;:::o;99051:2966::-;99124:20;99147:13;;99124:36;;99187:1;99175:8;:13;99171:44;;99197:18;;;;;;;;;;;;;;99171:44;99228:61;99258:1;99262:2;99266:12;99280:8;99228:21;:61::i;:::-;99772:1;73300:2;99742:1;:26;;99741:32;99729:8;:45;99703:18;:22;99722:2;99703:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;100051:139;100088:2;100142:33;100165:1;100169:2;100173:1;100142:14;:33::i;:::-;100109:30;100130:8;100109:20;:30::i;:::-;:66;100051:18;:139::i;:::-;100017:17;:31;100035:12;100017:31;;;;;;;;;;;:173;;;;100207:16;100238:11;100267:8;100252:12;:23;100238:37;;100788:16;100784:2;100780:25;100768:37;;101160:12;101120:8;101079:1;101017:25;100958:1;100897;100870:335;101531:1;101517:12;101513:20;101471:346;101572:3;101563:7;101560:16;101471:346;;101790:7;101780:8;101777:1;101750:25;101747:1;101744;101739:59;101625:1;101616:7;101612:15;101601:26;;101471:346;;;101475:77;101862:1;101850:8;:13;101846:45;;101872:19;;;;;;;;;;;;;;101846:45;101924:3;101908:13;:19;;;;99477:2462;;101949:60;101978:1;101982:2;101986:12;102000:8;101949:20;:60::i;:::-;99113:2904;99051:2966;;:::o;111959:147::-;112096:6;111959:147;;;;;:::o;86991:324::-;87061:14;87294:1;87284:8;87281:15;87255:24;87251:46;87241:56;;86991:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:109::-;2061:7;2101:26;2094:5;2090:38;2079:49;;2025:109;;;:::o;2140:120::-;2212:23;2229:5;2212:23;:::i;:::-;2205:5;2202:34;2192:62;;2250:1;2247;2240:12;2192:62;2140:120;:::o;2266:137::-;2311:5;2349:6;2336:20;2327:29;;2365:32;2391:5;2365:32;:::i;:::-;2266:137;;;;:::o;2409:472::-;2476:6;2484;2533:2;2521:9;2512:7;2508:23;2504:32;2501:119;;;2539:79;;:::i;:::-;2501:119;2659:1;2684:53;2729:7;2720:6;2709:9;2705:22;2684:53;:::i;:::-;2674:63;;2630:117;2786:2;2812:52;2856:7;2847:6;2836:9;2832:22;2812:52;:::i;:::-;2802:62;;2757:117;2409:472;;;;;:::o;2887:99::-;2939:6;2973:5;2967:12;2957:22;;2887:99;;;:::o;2992:169::-;3076:11;3110:6;3105:3;3098:19;3150:4;3145:3;3141:14;3126:29;;2992:169;;;;:::o;3167:246::-;3248:1;3258:113;3272:6;3269:1;3266:13;3258:113;;;3357:1;3352:3;3348:11;3342:18;3338:1;3333:3;3329:11;3322:39;3294:2;3291:1;3287:10;3282:15;;3258:113;;;3405:1;3396:6;3391:3;3387:16;3380:27;3229:184;3167:246;;;:::o;3419:102::-;3460:6;3511:2;3507:7;3502:2;3495:5;3491:14;3487:28;3477:38;;3419:102;;;:::o;3527:377::-;3615:3;3643:39;3676:5;3643:39;:::i;:::-;3698:71;3762:6;3757:3;3698:71;:::i;:::-;3691:78;;3778:65;3836:6;3831:3;3824:4;3817:5;3813:16;3778:65;:::i;:::-;3868:29;3890:6;3868:29;:::i;:::-;3863:3;3859:39;3852:46;;3619:285;3527:377;;;;:::o;3910:313::-;4023:4;4061:2;4050:9;4046:18;4038:26;;4110:9;4104:4;4100:20;4096:1;4085:9;4081:17;4074:47;4138:78;4211:4;4202:6;4138:78;:::i;:::-;4130:86;;3910:313;;;;:::o;4229:77::-;4266:7;4295:5;4284:16;;4229:77;;;:::o;4312:122::-;4385:24;4403:5;4385:24;:::i;:::-;4378:5;4375:35;4365:63;;4424:1;4421;4414:12;4365:63;4312:122;:::o;4440:139::-;4486:5;4524:6;4511:20;4502:29;;4540:33;4567:5;4540:33;:::i;:::-;4440:139;;;;:::o;4585:329::-;4644:6;4693:2;4681:9;4672:7;4668:23;4664:32;4661:119;;;4699:79;;:::i;:::-;4661:119;4819:1;4844:53;4889:7;4880:6;4869:9;4865:22;4844:53;:::i;:::-;4834:63;;4790:117;4585:329;;;;:::o;4920:118::-;5007:24;5025:5;5007:24;:::i;:::-;5002:3;4995:37;4920:118;;:::o;5044:222::-;5137:4;5175:2;5164:9;5160:18;5152:26;;5188:71;5256:1;5245:9;5241:17;5232:6;5188:71;:::i;:::-;5044:222;;;;:::o;5272:474::-;5340:6;5348;5397:2;5385:9;5376:7;5372:23;5368:32;5365:119;;;5403:79;;:::i;:::-;5365:119;5523:1;5548:53;5593:7;5584:6;5573:9;5569:22;5548:53;:::i;:::-;5538:63;;5494:117;5650:2;5676:53;5721:7;5712:6;5701:9;5697:22;5676:53;:::i;:::-;5666:63;;5621:118;5272:474;;;;;:::o;5752:118::-;5839:24;5857:5;5839:24;:::i;:::-;5834:3;5827:37;5752:118;;:::o;5876:222::-;5969:4;6007:2;5996:9;5992:18;5984:26;;6020:71;6088:1;6077:9;6073:17;6064:6;6020:71;:::i;:::-;5876:222;;;;:::o;6104:619::-;6181:6;6189;6197;6246:2;6234:9;6225:7;6221:23;6217:32;6214:119;;;6252:79;;:::i;:::-;6214:119;6372:1;6397:53;6442:7;6433:6;6422:9;6418:22;6397:53;:::i;:::-;6387:63;;6343:117;6499:2;6525:53;6570:7;6561:6;6550:9;6546:22;6525:53;:::i;:::-;6515:63;;6470:118;6627:2;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6598:118;6104:619;;;;;:::o;6729:474::-;6797:6;6805;6854:2;6842:9;6833:7;6829:23;6825:32;6822:119;;;6860:79;;:::i;:::-;6822:119;6980:1;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6951:117;7107:2;7133:53;7178:7;7169:6;7158:9;7154:22;7133:53;:::i;:::-;7123:63;;7078:118;6729:474;;;;;:::o;7209:332::-;7330:4;7368:2;7357:9;7353:18;7345:26;;7381:71;7449:1;7438:9;7434:17;7425:6;7381:71;:::i;:::-;7462:72;7530:2;7519:9;7515:18;7506:6;7462:72;:::i;:::-;7209:332;;;;;:::o;7547:117::-;7656:1;7653;7646:12;7670:117;7779:1;7776;7769:12;7793:180;7841:77;7838:1;7831:88;7938:4;7935:1;7928:15;7962:4;7959:1;7952:15;7979:281;8062:27;8084:4;8062:27;:::i;:::-;8054:6;8050:40;8192:6;8180:10;8177:22;8156:18;8144:10;8141:34;8138:62;8135:88;;;8203:18;;:::i;:::-;8135:88;8243:10;8239:2;8232:22;8022:238;7979:281;;:::o;8266:129::-;8300:6;8327:20;;:::i;:::-;8317:30;;8356:33;8384:4;8376:6;8356:33;:::i;:::-;8266:129;;;:::o;8401:308::-;8463:4;8553:18;8545:6;8542:30;8539:56;;;8575:18;;:::i;:::-;8539:56;8613:29;8635:6;8613:29;:::i;:::-;8605:37;;8697:4;8691;8687:15;8679:23;;8401:308;;;:::o;8715:146::-;8812:6;8807:3;8802;8789:30;8853:1;8844:6;8839:3;8835:16;8828:27;8715:146;;;:::o;8867:425::-;8945:5;8970:66;8986:49;9028:6;8986:49;:::i;:::-;8970:66;:::i;:::-;8961:75;;9059:6;9052:5;9045:21;9097:4;9090:5;9086:16;9135:3;9126:6;9121:3;9117:16;9114:25;9111:112;;;9142:79;;:::i;:::-;9111:112;9232:54;9279:6;9274:3;9269;9232:54;:::i;:::-;8951:341;8867:425;;;;;:::o;9312:340::-;9368:5;9417:3;9410:4;9402:6;9398:17;9394:27;9384:122;;9425:79;;:::i;:::-;9384:122;9542:6;9529:20;9567:79;9642:3;9634:6;9627:4;9619:6;9615:17;9567:79;:::i;:::-;9558:88;;9374:278;9312:340;;;;:::o;9658:509::-;9727:6;9776:2;9764:9;9755:7;9751:23;9747:32;9744:119;;;9782:79;;:::i;:::-;9744:119;9930:1;9919:9;9915:17;9902:31;9960:18;9952:6;9949:30;9946:117;;;9982:79;;:::i;:::-;9946:117;10087:63;10142:7;10133:6;10122:9;10118:22;10087:63;:::i;:::-;10077:73;;9873:287;9658:509;;;;:::o;10173:329::-;10232:6;10281:2;10269:9;10260:7;10256:23;10252:32;10249:119;;;10287:79;;:::i;:::-;10249:119;10407:1;10432:53;10477:7;10468:6;10457:9;10453:22;10432:53;:::i;:::-;10422:63;;10378:117;10173:329;;;;:::o;10508:617::-;10584:6;10592;10600;10649:2;10637:9;10628:7;10624:23;10620:32;10617:119;;;10655:79;;:::i;:::-;10617:119;10775:1;10800:53;10845:7;10836:6;10825:9;10821:22;10800:53;:::i;:::-;10790:63;;10746:117;10902:2;10928:53;10973:7;10964:6;10953:9;10949:22;10928:53;:::i;:::-;10918:63;;10873:118;11030:2;11056:52;11100:7;11091:6;11080:9;11076:22;11056:52;:::i;:::-;11046:62;;11001:117;10508:617;;;;;:::o;11131:117::-;11240:1;11237;11230:12;11254:117;11363:1;11360;11353:12;11394:568;11467:8;11477:6;11527:3;11520:4;11512:6;11508:17;11504:27;11494:122;;11535:79;;:::i;:::-;11494:122;11648:6;11635:20;11625:30;;11678:18;11670:6;11667:30;11664:117;;;11700:79;;:::i;:::-;11664:117;11814:4;11806:6;11802:17;11790:29;;11868:3;11860:4;11852:6;11848:17;11838:8;11834:32;11831:41;11828:128;;;11875:79;;:::i;:::-;11828:128;11394:568;;;;;:::o;11968:559::-;12054:6;12062;12111:2;12099:9;12090:7;12086:23;12082:32;12079:119;;;12117:79;;:::i;:::-;12079:119;12265:1;12254:9;12250:17;12237:31;12295:18;12287:6;12284:30;12281:117;;;12317:79;;:::i;:::-;12281:117;12430:80;12502:7;12493:6;12482:9;12478:22;12430:80;:::i;:::-;12412:98;;;;12208:312;11968:559;;;;;:::o;12533:146::-;12632:6;12666:5;12660:12;12650:22;;12533:146;;;:::o;12685:216::-;12816:11;12850:6;12845:3;12838:19;12890:4;12885:3;12881:14;12866:29;;12685:216;;;;:::o;12907:164::-;13006:4;13029:3;13021:11;;13059:4;13054:3;13050:14;13042:22;;12907:164;;;:::o;13077:108::-;13154:24;13172:5;13154:24;:::i;:::-;13149:3;13142:37;13077:108;;:::o;13191:101::-;13227:7;13267:18;13260:5;13256:30;13245:41;;13191:101;;;:::o;13298:105::-;13373:23;13390:5;13373:23;:::i;:::-;13368:3;13361:36;13298:105;;:::o;13409:99::-;13480:21;13495:5;13480:21;:::i;:::-;13475:3;13468:34;13409:99;;:::o;13514:91::-;13550:7;13590:8;13583:5;13579:20;13568:31;;13514:91;;;:::o;13611:105::-;13686:23;13703:5;13686:23;:::i;:::-;13681:3;13674:36;13611:105;;:::o;13794:866::-;13945:4;13940:3;13936:14;14032:4;14025:5;14021:16;14015:23;14051:63;14108:4;14103:3;14099:14;14085:12;14051:63;:::i;:::-;13960:164;14216:4;14209:5;14205:16;14199:23;14235:61;14290:4;14285:3;14281:14;14267:12;14235:61;:::i;:::-;14134:172;14390:4;14383:5;14379:16;14373:23;14409:57;14460:4;14455:3;14451:14;14437:12;14409:57;:::i;:::-;14316:160;14563:4;14556:5;14552:16;14546:23;14582:61;14637:4;14632:3;14628:14;14614:12;14582:61;:::i;:::-;14486:167;13914:746;13794:866;;:::o;14666:307::-;14799:10;14820:110;14926:3;14918:6;14820:110;:::i;:::-;14962:4;14957:3;14953:14;14939:28;;14666:307;;;;:::o;14979:145::-;15081:4;15113;15108:3;15104:14;15096:22;;14979:145;;;:::o;15206:988::-;15389:3;15418:86;15498:5;15418:86;:::i;:::-;15520:118;15631:6;15626:3;15520:118;:::i;:::-;15513:125;;15662:88;15744:5;15662:88;:::i;:::-;15773:7;15804:1;15789:380;15814:6;15811:1;15808:13;15789:380;;;15890:6;15884:13;15917:127;16040:3;16025:13;15917:127;:::i;:::-;15910:134;;16067:92;16152:6;16067:92;:::i;:::-;16057:102;;15849:320;15836:1;15833;15829:9;15824:14;;15789:380;;;15793:14;16185:3;16178:10;;15394:800;;;15206:988;;;;:::o;16200:501::-;16407:4;16445:2;16434:9;16430:18;16422:26;;16494:9;16488:4;16484:20;16480:1;16469:9;16465:17;16458:47;16522:172;16689:4;16680:6;16522:172;:::i;:::-;16514:180;;16200:501;;;;:::o;16707:114::-;16774:6;16808:5;16802:12;16792:22;;16707:114;;;:::o;16827:184::-;16926:11;16960:6;16955:3;16948:19;17000:4;16995:3;16991:14;16976:29;;16827:184;;;;:::o;17017:132::-;17084:4;17107:3;17099:11;;17137:4;17132:3;17128:14;17120:22;;17017:132;;;:::o;17155:108::-;17232:24;17250:5;17232:24;:::i;:::-;17227:3;17220:37;17155:108;;:::o;17269:179::-;17338:10;17359:46;17401:3;17393:6;17359:46;:::i;:::-;17437:4;17432:3;17428:14;17414:28;;17269:179;;;;:::o;17454:113::-;17524:4;17556;17551:3;17547:14;17539:22;;17454:113;;;:::o;17603:732::-;17722:3;17751:54;17799:5;17751:54;:::i;:::-;17821:86;17900:6;17895:3;17821:86;:::i;:::-;17814:93;;17931:56;17981:5;17931:56;:::i;:::-;18010:7;18041:1;18026:284;18051:6;18048:1;18045:13;18026:284;;;18127:6;18121:13;18154:63;18213:3;18198:13;18154:63;:::i;:::-;18147:70;;18240:60;18293:6;18240:60;:::i;:::-;18230:70;;18086:224;18073:1;18070;18066:9;18061:14;;18026:284;;;18030:14;18326:3;18319:10;;17727:608;;;17603:732;;;;:::o;18341:373::-;18484:4;18522:2;18511:9;18507:18;18499:26;;18571:9;18565:4;18561:20;18557:1;18546:9;18542:17;18535:47;18599:108;18702:4;18693:6;18599:108;:::i;:::-;18591:116;;18341:373;;;;:::o;18720:116::-;18790:21;18805:5;18790:21;:::i;:::-;18783:5;18780:32;18770:60;;18826:1;18823;18816:12;18770:60;18720:116;:::o;18842:133::-;18885:5;18923:6;18910:20;18901:29;;18939:30;18963:5;18939:30;:::i;:::-;18842:133;;;;:::o;18981:323::-;19037:6;19086:2;19074:9;19065:7;19061:23;19057:32;19054:119;;;19092:79;;:::i;:::-;19054:119;19212:1;19237:50;19279:7;19270:6;19259:9;19255:22;19237:50;:::i;:::-;19227:60;;19183:114;18981:323;;;;:::o;19310:619::-;19387:6;19395;19403;19452:2;19440:9;19431:7;19427:23;19423:32;19420:119;;;19458:79;;:::i;:::-;19420:119;19578:1;19603:53;19648:7;19639:6;19628:9;19624:22;19603:53;:::i;:::-;19593:63;;19549:117;19705:2;19731:53;19776:7;19767:6;19756:9;19752:22;19731:53;:::i;:::-;19721:63;;19676:118;19833:2;19859:53;19904:7;19895:6;19884:9;19880:22;19859:53;:::i;:::-;19849:63;;19804:118;19310:619;;;;;:::o;19935:311::-;20012:4;20102:18;20094:6;20091:30;20088:56;;;20124:18;;:::i;:::-;20088:56;20174:4;20166:6;20162:17;20154:25;;20234:4;20228;20224:15;20216:23;;19935:311;;;:::o;20269:710::-;20365:5;20390:81;20406:64;20463:6;20406:64;:::i;:::-;20390:81;:::i;:::-;20381:90;;20491:5;20520:6;20513:5;20506:21;20554:4;20547:5;20543:16;20536:23;;20607:4;20599:6;20595:17;20587:6;20583:30;20636:3;20628:6;20625:15;20622:122;;;20655:79;;:::i;:::-;20622:122;20770:6;20753:220;20787:6;20782:3;20779:15;20753:220;;;20862:3;20891:37;20924:3;20912:10;20891:37;:::i;:::-;20886:3;20879:50;20958:4;20953:3;20949:14;20942:21;;20829:144;20813:4;20808:3;20804:14;20797:21;;20753:220;;;20757:21;20371:608;;20269:710;;;;;:::o;21002:370::-;21073:5;21122:3;21115:4;21107:6;21103:17;21099:27;21089:122;;21130:79;;:::i;:::-;21089:122;21247:6;21234:20;21272:94;21362:3;21354:6;21347:4;21339:6;21335:17;21272:94;:::i;:::-;21263:103;;21079:293;21002:370;;;;:::o;21378:311::-;21455:4;21545:18;21537:6;21534:30;21531:56;;;21567:18;;:::i;:::-;21531:56;21617:4;21609:6;21605:17;21597:25;;21677:4;21671;21667:15;21659:23;;21378:311;;;:::o;21712:710::-;21808:5;21833:81;21849:64;21906:6;21849:64;:::i;:::-;21833:81;:::i;:::-;21824:90;;21934:5;21963:6;21956:5;21949:21;21997:4;21990:5;21986:16;21979:23;;22050:4;22042:6;22038:17;22030:6;22026:30;22079:3;22071:6;22068:15;22065:122;;;22098:79;;:::i;:::-;22065:122;22213:6;22196:220;22230:6;22225:3;22222:15;22196:220;;;22305:3;22334:37;22367:3;22355:10;22334:37;:::i;:::-;22329:3;22322:50;22401:4;22396:3;22392:14;22385:21;;22272:144;22256:4;22251:3;22247:14;22240:21;;22196:220;;;22200:21;21814:608;;21712:710;;;;;:::o;22445:370::-;22516:5;22565:3;22558:4;22550:6;22546:17;22542:27;22532:122;;22573:79;;:::i;:::-;22532:122;22690:6;22677:20;22715:94;22805:3;22797:6;22790:4;22782:6;22778:17;22715:94;:::i;:::-;22706:103;;22522:293;22445:370;;;;:::o;22821:894::-;22939:6;22947;22996:2;22984:9;22975:7;22971:23;22967:32;22964:119;;;23002:79;;:::i;:::-;22964:119;23150:1;23139:9;23135:17;23122:31;23180:18;23172:6;23169:30;23166:117;;;23202:79;;:::i;:::-;23166:117;23307:78;23377:7;23368:6;23357:9;23353:22;23307:78;:::i;:::-;23297:88;;23093:302;23462:2;23451:9;23447:18;23434:32;23493:18;23485:6;23482:30;23479:117;;;23515:79;;:::i;:::-;23479:117;23620:78;23690:7;23681:6;23670:9;23666:22;23620:78;:::i;:::-;23610:88;;23405:303;22821:894;;;;;:::o;23721:468::-;23786:6;23794;23843:2;23831:9;23822:7;23818:23;23814:32;23811:119;;;23849:79;;:::i;:::-;23811:119;23969:1;23994:53;24039:7;24030:6;24019:9;24015:22;23994:53;:::i;:::-;23984:63;;23940:117;24096:2;24122:50;24164:7;24155:6;24144:9;24140:22;24122:50;:::i;:::-;24112:60;;24067:115;23721:468;;;;;:::o;24195:307::-;24256:4;24346:18;24338:6;24335:30;24332:56;;;24368:18;;:::i;:::-;24332:56;24406:29;24428:6;24406:29;:::i;:::-;24398:37;;24490:4;24484;24480:15;24472:23;;24195:307;;;:::o;24508:423::-;24585:5;24610:65;24626:48;24667:6;24626:48;:::i;:::-;24610:65;:::i;:::-;24601:74;;24698:6;24691:5;24684:21;24736:4;24729:5;24725:16;24774:3;24765:6;24760:3;24756:16;24753:25;24750:112;;;24781:79;;:::i;:::-;24750:112;24871:54;24918:6;24913:3;24908;24871:54;:::i;:::-;24591:340;24508:423;;;;;:::o;24950:338::-;25005:5;25054:3;25047:4;25039:6;25035:17;25031:27;25021:122;;25062:79;;:::i;:::-;25021:122;25179:6;25166:20;25204:78;25278:3;25270:6;25263:4;25255:6;25251:17;25204:78;:::i;:::-;25195:87;;25011:277;24950:338;;;;:::o;25294:943::-;25389:6;25397;25405;25413;25462:3;25450:9;25441:7;25437:23;25433:33;25430:120;;;25469:79;;:::i;:::-;25430:120;25589:1;25614:53;25659:7;25650:6;25639:9;25635:22;25614:53;:::i;:::-;25604:63;;25560:117;25716:2;25742:53;25787:7;25778:6;25767:9;25763:22;25742:53;:::i;:::-;25732:63;;25687:118;25844:2;25870:53;25915:7;25906:6;25895:9;25891:22;25870:53;:::i;:::-;25860:63;;25815:118;26000:2;25989:9;25985:18;25972:32;26031:18;26023:6;26020:30;26017:117;;;26053:79;;:::i;:::-;26017:117;26158:62;26212:7;26203:6;26192:9;26188:22;26158:62;:::i;:::-;26148:72;;25943:287;25294:943;;;;;;;:::o;26315:876::-;26476:4;26471:3;26467:14;26563:4;26556:5;26552:16;26546:23;26582:63;26639:4;26634:3;26630:14;26616:12;26582:63;:::i;:::-;26491:164;26747:4;26740:5;26736:16;26730:23;26766:61;26821:4;26816:3;26812:14;26798:12;26766:61;:::i;:::-;26665:172;26921:4;26914:5;26910:16;26904:23;26940:57;26991:4;26986:3;26982:14;26968:12;26940:57;:::i;:::-;26847:160;27094:4;27087:5;27083:16;27077:23;27113:61;27168:4;27163:3;27159:14;27145:12;27113:61;:::i;:::-;27017:167;26445:746;26315:876;;:::o;27197:351::-;27354:4;27392:3;27381:9;27377:19;27369:27;;27406:135;27538:1;27527:9;27523:17;27514:6;27406:135;:::i;:::-;27197:351;;;;:::o;27554:474::-;27622:6;27630;27679:2;27667:9;27658:7;27654:23;27650:32;27647:119;;;27685:79;;:::i;:::-;27647:119;27805:1;27830:53;27875:7;27866:6;27855:9;27851:22;27830:53;:::i;:::-;27820:63;;27776:117;27932:2;27958:53;28003:7;27994:6;27983:9;27979:22;27958:53;:::i;:::-;27948:63;;27903:118;27554:474;;;;;:::o;28034:180::-;28082:77;28079:1;28072:88;28179:4;28176:1;28169:15;28203:4;28200:1;28193:15;28220:320;28264:6;28301:1;28295:4;28291:12;28281:22;;28348:1;28342:4;28338:12;28369:18;28359:81;;28425:4;28417:6;28413:17;28403:27;;28359:81;28487:2;28479:6;28476:14;28456:18;28453:38;28450:84;;28506:18;;:::i;:::-;28450:84;28271:269;28220:320;;;:::o;28546:177::-;28686:29;28682:1;28674:6;28670:14;28663:53;28546:177;:::o;28729:366::-;28871:3;28892:67;28956:2;28951:3;28892:67;:::i;:::-;28885:74;;28968:93;29057:3;28968:93;:::i;:::-;29086:2;29081:3;29077:12;29070:19;;28729:366;;;:::o;29101:419::-;29267:4;29305:2;29294:9;29290:18;29282:26;;29354:9;29348:4;29344:20;29340:1;29329:9;29325:17;29318:47;29382:131;29508:4;29382:131;:::i;:::-;29374:139;;29101:419;;;:::o;29526:228::-;29666:34;29662:1;29654:6;29650:14;29643:58;29735:11;29730:2;29722:6;29718:15;29711:36;29526:228;:::o;29760:366::-;29902:3;29923:67;29987:2;29982:3;29923:67;:::i;:::-;29916:74;;29999:93;30088:3;29999:93;:::i;:::-;30117:2;30112:3;30108:12;30101:19;;29760:366;;;:::o;30132:419::-;30298:4;30336:2;30325:9;30321:18;30313:26;;30385:9;30379:4;30375:20;30371:1;30360:9;30356:17;30349:47;30413:131;30539:4;30413:131;:::i;:::-;30405:139;;30132:419;;;:::o;30557:180::-;30605:77;30602:1;30595:88;30702:4;30699:1;30692:15;30726:4;30723:1;30716:15;30743:191;30783:3;30802:20;30820:1;30802:20;:::i;:::-;30797:25;;30836:20;30854:1;30836:20;:::i;:::-;30831:25;;30879:1;30876;30872:9;30865:16;;30900:3;30897:1;30894:10;30891:36;;;30907:18;;:::i;:::-;30891:36;30743:191;;;;:::o;30940:221::-;31080:34;31076:1;31068:6;31064:14;31057:58;31149:4;31144:2;31136:6;31132:15;31125:29;30940:221;:::o;31167:366::-;31309:3;31330:67;31394:2;31389:3;31330:67;:::i;:::-;31323:74;;31406:93;31495:3;31406:93;:::i;:::-;31524:2;31519:3;31515:12;31508:19;;31167:366;;;:::o;31539:419::-;31705:4;31743:2;31732:9;31728:18;31720:26;;31792:9;31786:4;31782:20;31778:1;31767:9;31763:17;31756:47;31820:131;31946:4;31820:131;:::i;:::-;31812:139;;31539:419;;;:::o;31964:332::-;32085:4;32123:2;32112:9;32108:18;32100:26;;32136:71;32204:1;32193:9;32189:17;32180:6;32136:71;:::i;:::-;32217:72;32285:2;32274:9;32270:18;32261:6;32217:72;:::i;:::-;31964:332;;;;;:::o;32302:137::-;32356:5;32387:6;32381:13;32372:22;;32403:30;32427:5;32403:30;:::i;:::-;32302:137;;;;:::o;32445:345::-;32512:6;32561:2;32549:9;32540:7;32536:23;32532:32;32529:119;;;32567:79;;:::i;:::-;32529:119;32687:1;32712:61;32765:7;32756:6;32745:9;32741:22;32712:61;:::i;:::-;32702:71;;32658:125;32445:345;;;;:::o;32796:410::-;32836:7;32859:20;32877:1;32859:20;:::i;:::-;32854:25;;32893:20;32911:1;32893:20;:::i;:::-;32888:25;;32948:1;32945;32941:9;32970:30;32988:11;32970:30;:::i;:::-;32959:41;;33149:1;33140:7;33136:15;33133:1;33130:22;33110:1;33103:9;33083:83;33060:139;;33179:18;;:::i;:::-;33060:139;32844:362;32796:410;;;;:::o;33212:180::-;33260:77;33257:1;33250:88;33357:4;33354:1;33347:15;33381:4;33378:1;33371:15;33398:185;33438:1;33455:20;33473:1;33455:20;:::i;:::-;33450:25;;33489:20;33507:1;33489:20;:::i;:::-;33484:25;;33528:1;33518:35;;33533:18;;:::i;:::-;33518:35;33575:1;33572;33568:9;33563:14;;33398:185;;;;:::o;33589:141::-;33638:4;33661:3;33653:11;;33684:3;33681:1;33674:14;33718:4;33715:1;33705:18;33697:26;;33589:141;;;:::o;33736:93::-;33773:6;33820:2;33815;33808:5;33804:14;33800:23;33790:33;;33736:93;;;:::o;33835:107::-;33879:8;33929:5;33923:4;33919:16;33898:37;;33835:107;;;;:::o;33948:393::-;34017:6;34067:1;34055:10;34051:18;34090:97;34120:66;34109:9;34090:97;:::i;:::-;34208:39;34238:8;34227:9;34208:39;:::i;:::-;34196:51;;34280:4;34276:9;34269:5;34265:21;34256:30;;34329:4;34319:8;34315:19;34308:5;34305:30;34295:40;;34024:317;;33948:393;;;;;:::o;34347:60::-;34375:3;34396:5;34389:12;;34347:60;;;:::o;34413:142::-;34463:9;34496:53;34514:34;34523:24;34541:5;34523:24;:::i;:::-;34514:34;:::i;:::-;34496:53;:::i;:::-;34483:66;;34413:142;;;:::o;34561:75::-;34604:3;34625:5;34618:12;;34561:75;;;:::o;34642:269::-;34752:39;34783:7;34752:39;:::i;:::-;34813:91;34862:41;34886:16;34862:41;:::i;:::-;34854:6;34847:4;34841:11;34813:91;:::i;:::-;34807:4;34800:105;34718:193;34642:269;;;:::o;34917:73::-;34962:3;34917:73;:::o;34996:189::-;35073:32;;:::i;:::-;35114:65;35172:6;35164;35158:4;35114:65;:::i;:::-;35049:136;34996:189;;:::o;35191:186::-;35251:120;35268:3;35261:5;35258:14;35251:120;;;35322:39;35359:1;35352:5;35322:39;:::i;:::-;35295:1;35288:5;35284:13;35275:22;;35251:120;;;35191:186;;:::o;35383:543::-;35484:2;35479:3;35476:11;35473:446;;;35518:38;35550:5;35518:38;:::i;:::-;35602:29;35620:10;35602:29;:::i;:::-;35592:8;35588:44;35785:2;35773:10;35770:18;35767:49;;;35806:8;35791:23;;35767:49;35829:80;35885:22;35903:3;35885:22;:::i;:::-;35875:8;35871:37;35858:11;35829:80;:::i;:::-;35488:431;;35473:446;35383:543;;;:::o;35932:117::-;35986:8;36036:5;36030:4;36026:16;36005:37;;35932:117;;;;:::o;36055:169::-;36099:6;36132:51;36180:1;36176:6;36168:5;36165:1;36161:13;36132:51;:::i;:::-;36128:56;36213:4;36207;36203:15;36193:25;;36106:118;36055:169;;;;:::o;36229:295::-;36305:4;36451:29;36476:3;36470:4;36451:29;:::i;:::-;36443:37;;36513:3;36510:1;36506:11;36500:4;36497:21;36489:29;;36229:295;;;;:::o;36529:1395::-;36646:37;36679:3;36646:37;:::i;:::-;36748:18;36740:6;36737:30;36734:56;;;36770:18;;:::i;:::-;36734:56;36814:38;36846:4;36840:11;36814:38;:::i;:::-;36899:67;36959:6;36951;36945:4;36899:67;:::i;:::-;36993:1;37017:4;37004:17;;37049:2;37041:6;37038:14;37066:1;37061:618;;;;37723:1;37740:6;37737:77;;;37789:9;37784:3;37780:19;37774:26;37765:35;;37737:77;37840:67;37900:6;37893:5;37840:67;:::i;:::-;37834:4;37827:81;37696:222;37031:887;;37061:618;37113:4;37109:9;37101:6;37097:22;37147:37;37179:4;37147:37;:::i;:::-;37206:1;37220:208;37234:7;37231:1;37228:14;37220:208;;;37313:9;37308:3;37304:19;37298:26;37290:6;37283:42;37364:1;37356:6;37352:14;37342:24;;37411:2;37400:9;37396:18;37383:31;;37257:4;37254:1;37250:12;37245:17;;37220:208;;;37456:6;37447:7;37444:19;37441:179;;;37514:9;37509:3;37505:19;37499:26;37557:48;37599:4;37591:6;37587:17;37576:9;37557:48;:::i;:::-;37549:6;37542:64;37464:156;37441:179;37666:1;37662;37654:6;37650:14;37646:22;37640:4;37633:36;37068:611;;;37031:887;;36621:1303;;;36529:1395;;:::o;37930:180::-;37978:77;37975:1;37968:88;38075:4;38072:1;38065:15;38099:4;38096:1;38089:15;38116:233;38155:3;38178:24;38196:5;38178:24;:::i;:::-;38169:33;;38224:66;38217:5;38214:77;38211:103;;38294:18;;:::i;:::-;38211:103;38341:1;38334:5;38330:13;38323:20;;38116:233;;;:::o;38355:147::-;38456:11;38493:3;38478:18;;38355:147;;;;:::o;38508:114::-;;:::o;38628:398::-;38787:3;38808:83;38889:1;38884:3;38808:83;:::i;:::-;38801:90;;38900:93;38989:3;38900:93;:::i;:::-;39018:1;39013:3;39009:11;39002:18;;38628:398;;;:::o;39032:379::-;39216:3;39238:147;39381:3;39238:147;:::i;:::-;39231:154;;39402:3;39395:10;;39032:379;;;:::o;39417:166::-;39557:18;39553:1;39545:6;39541:14;39534:42;39417:166;:::o;39589:366::-;39731:3;39752:67;39816:2;39811:3;39752:67;:::i;:::-;39745:74;;39828:93;39917:3;39828:93;:::i;:::-;39946:2;39941:3;39937:12;39930:19;;39589:366;;;:::o;39961:419::-;40127:4;40165:2;40154:9;40150:18;40142:26;;40214:9;40208:4;40204:20;40200:1;40189:9;40185:17;40178:47;40242:131;40368:4;40242:131;:::i;:::-;40234:139;;39961:419;;;:::o;40386:234::-;40526:34;40522:1;40514:6;40510:14;40503:58;40595:17;40590:2;40582:6;40578:15;40571:42;40386:234;:::o;40626:366::-;40768:3;40789:67;40853:2;40848:3;40789:67;:::i;:::-;40782:74;;40865:93;40954:3;40865:93;:::i;:::-;40983:2;40978:3;40974:12;40967:19;;40626:366;;;:::o;40998:419::-;41164:4;41202:2;41191:9;41187:18;41179:26;;41251:9;41245:4;41241:20;41237:1;41226:9;41222:17;41215:47;41279:131;41405:4;41279:131;:::i;:::-;41271:139;;40998:419;;;:::o;41423:148::-;41525:11;41562:3;41547:18;;41423:148;;;;:::o;41577:390::-;41683:3;41711:39;41744:5;41711:39;:::i;:::-;41766:89;41848:6;41843:3;41766:89;:::i;:::-;41759:96;;41864:65;41922:6;41917:3;41910:4;41903:5;41899:16;41864:65;:::i;:::-;41954:6;41949:3;41945:16;41938:23;;41687:280;41577:390;;;;:::o;41997:874::-;42100:3;42137:5;42131:12;42166:36;42192:9;42166:36;:::i;:::-;42218:89;42300:6;42295:3;42218:89;:::i;:::-;42211:96;;42338:1;42327:9;42323:17;42354:1;42349:166;;;;42529:1;42524:341;;;;42316:549;;42349:166;42433:4;42429:9;42418;42414:25;42409:3;42402:38;42495:6;42488:14;42481:22;42473:6;42469:35;42464:3;42460:45;42453:52;;42349:166;;42524:341;42591:38;42623:5;42591:38;:::i;:::-;42651:1;42665:154;42679:6;42676:1;42673:13;42665:154;;;42753:7;42747:14;42743:1;42738:3;42734:11;42727:35;42803:1;42794:7;42790:15;42779:26;;42701:4;42698:1;42694:12;42689:17;;42665:154;;;42848:6;42843:3;42839:16;42832:23;;42531:334;;42316:549;;42104:767;;41997:874;;;;:::o;42877:589::-;43102:3;43124:95;43215:3;43206:6;43124:95;:::i;:::-;43117:102;;43236:95;43327:3;43318:6;43236:95;:::i;:::-;43229:102;;43348:92;43436:3;43427:6;43348:92;:::i;:::-;43341:99;;43457:3;43450:10;;42877:589;;;;;;:::o;43472:182::-;43612:34;43608:1;43600:6;43596:14;43589:58;43472:182;:::o;43660:366::-;43802:3;43823:67;43887:2;43882:3;43823:67;:::i;:::-;43816:74;;43899:93;43988:3;43899:93;:::i;:::-;44017:2;44012:3;44008:12;44001:19;;43660:366;;;:::o;44032:419::-;44198:4;44236:2;44225:9;44221:18;44213:26;;44285:9;44279:4;44275:20;44271:1;44260:9;44256:17;44249:47;44313:131;44439:4;44313:131;:::i;:::-;44305:139;;44032:419;;;:::o;44457:225::-;44597:34;44593:1;44585:6;44581:14;44574:58;44666:8;44661:2;44653:6;44649:15;44642:33;44457:225;:::o;44688:366::-;44830:3;44851:67;44915:2;44910:3;44851:67;:::i;:::-;44844:74;;44927:93;45016:3;44927:93;:::i;:::-;45045:2;45040:3;45036:12;45029:19;;44688:366;;;:::o;45060:419::-;45226:4;45264:2;45253:9;45249:18;45241:26;;45313:9;45307:4;45303:20;45299:1;45288:9;45284:17;45277:47;45341:131;45467:4;45341:131;:::i;:::-;45333:139;;45060:419;;;:::o;45485:182::-;45625:34;45621:1;45613:6;45609:14;45602:58;45485:182;:::o;45673:366::-;45815:3;45836:67;45900:2;45895:3;45836:67;:::i;:::-;45829:74;;45912:93;46001:3;45912:93;:::i;:::-;46030:2;46025:3;46021:12;46014:19;;45673:366;;;:::o;46045:419::-;46211:4;46249:2;46238:9;46234:18;46226:26;;46298:9;46292:4;46288:20;46284:1;46273:9;46269:17;46262:47;46326:131;46452:4;46326:131;:::i;:::-;46318:139;;46045:419;;;:::o;46470:229::-;46610:34;46606:1;46598:6;46594:14;46587:58;46679:12;46674:2;46666:6;46662:15;46655:37;46470:229;:::o;46705:366::-;46847:3;46868:67;46932:2;46927:3;46868:67;:::i;:::-;46861:74;;46944:93;47033:3;46944:93;:::i;:::-;47062:2;47057:3;47053:12;47046:19;;46705:366;;;:::o;47077:419::-;47243:4;47281:2;47270:9;47266:18;47258:26;;47330:9;47324:4;47320:20;47316:1;47305:9;47301:17;47294:47;47358:131;47484:4;47358:131;:::i;:::-;47350:139;;47077:419;;;:::o;47502:175::-;47642:27;47638:1;47630:6;47626:14;47619:51;47502:175;:::o;47683:366::-;47825:3;47846:67;47910:2;47905:3;47846:67;:::i;:::-;47839:74;;47922:93;48011:3;47922:93;:::i;:::-;48040:2;48035:3;48031:12;48024:19;;47683:366;;;:::o;48055:419::-;48221:4;48259:2;48248:9;48244:18;48236:26;;48308:9;48302:4;48298:20;48294:1;48283:9;48279:17;48272:47;48336:131;48462:4;48336:131;:::i;:::-;48328:139;;48055:419;;;:::o;48480:177::-;48620:29;48616:1;48608:6;48604:14;48597:53;48480:177;:::o;48663:366::-;48805:3;48826:67;48890:2;48885:3;48826:67;:::i;:::-;48819:74;;48902:93;48991:3;48902:93;:::i;:::-;49020:2;49015:3;49011:12;49004:19;;48663:366;;;:::o;49035:419::-;49201:4;49239:2;49228:9;49224:18;49216:26;;49288:9;49282:4;49278:20;49274:1;49263:9;49259:17;49252:47;49316:131;49442:4;49316:131;:::i;:::-;49308:139;;49035:419;;;:::o;49460:98::-;49511:6;49545:5;49539:12;49529:22;;49460:98;;;:::o;49564:168::-;49647:11;49681:6;49676:3;49669:19;49721:4;49716:3;49712:14;49697:29;;49564:168;;;;:::o;49738:373::-;49824:3;49852:38;49884:5;49852:38;:::i;:::-;49906:70;49969:6;49964:3;49906:70;:::i;:::-;49899:77;;49985:65;50043:6;50038:3;50031:4;50024:5;50020:16;49985:65;:::i;:::-;50075:29;50097:6;50075:29;:::i;:::-;50070:3;50066:39;50059:46;;49828:283;49738:373;;;;:::o;50117:640::-;50312:4;50350:3;50339:9;50335:19;50327:27;;50364:71;50432:1;50421:9;50417:17;50408:6;50364:71;:::i;:::-;50445:72;50513:2;50502:9;50498:18;50489:6;50445:72;:::i;:::-;50527;50595:2;50584:9;50580:18;50571:6;50527:72;:::i;:::-;50646:9;50640:4;50636:20;50631:2;50620:9;50616:18;50609:48;50674:76;50745:4;50736:6;50674:76;:::i;:::-;50666:84;;50117:640;;;;;;;:::o;50763:141::-;50819:5;50850:6;50844:13;50835:22;;50866:32;50892:5;50866:32;:::i;:::-;50763:141;;;;:::o;50910:349::-;50979:6;51028:2;51016:9;51007:7;51003:23;50999:32;50996:119;;;51034:79;;:::i;:::-;50996:119;51154:1;51179:63;51234:7;51225:6;51214:9;51210:22;51179:63;:::i;:::-;51169:73;;51125:127;50910:349;;;;:::o
Swarm Source
ipfs://21fdbde4e104a0f2172d9ca73c598c9a64fd121c7cfa1c0e6095f2824cbeb5c7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.