ERC-721
Overview
Max Total Supply
60 CHOS
Holders
12
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoHubShares
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-18 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.18; // string constant NAME = "CryptoHub Ownership Shares"; string constant SYMBOL = "CHOS"; string constant BASE_URI = "ipfs://QmbQbZGjixPtmeiPF51c9JCxcZTVB67acTibAozfMP3wch/"; uint256 constant SEED_MINT_PRICE = 0.2 ether; // 1 ETH per NFT uint256 constant PUBLIC_MINT_PRICE = 0.4 ether; // 2 ETH per NFT uint256 constant MAX_MINT = 20; uint256 constant SHARES_DENOMINATOR = 10000; uint256 constant CEO_COUNT = 1; // number of ceo NFTs uint256 constant CEO_SHARE = 1000; // 10% share of the foundation per NFT uint256 constant CTO_CMO_COUNT = 2; // number of cto/cmo NFTs uint256 constant CTO_CMO_SHARE = 500; // 5% share of the foundation per NFT uint256 constant TEAM_COUNT = 20; // number of team NFTs uint256 constant TEAM_SHARE = 100; // 1% share of the foundation per NFT uint256 constant PARTNERS_COUNT = 15; // number of partners NFTs uint256 constant PARTNERS_SHARE = 100; // 1% share of the foundation per NFT uint256 constant SEED_COUNT = 100; // number of seed NFTs uint256 constant SEED_SHARE = 25; // 0.25% share of the foundation per NFT uint256 constant PUBLIC_COUNT = 80; // number of public NFTs uint256 constant PUBLIC_SHARE = 25; // 0.25% share of the foundation per NFT uint256 constant TOTAL_SUPPLY = CEO_COUNT + CTO_CMO_COUNT + TEAM_COUNT + PARTNERS_COUNT + SEED_COUNT + PUBLIC_COUNT; uint96 constant ROYALTY_PERCENTAGE = 500; // // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) /** * @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); } } } // // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } // // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } // // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @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; } } // // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) /** * @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); } } } // // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) /** * @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); } } // // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) /** * @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); } // // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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); } // // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) /** * @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); } // // OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol) /** * @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) _owners; // Mapping owner address to token count mapping(address => uint256) _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(), ".json")) : ""; } /** * @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 ) internal 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 {} /** * @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 Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance( address account, uint256 amount ) internal { _balances[account] += amount; } } // // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) /** * @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); } } // contract Whitelist is Ownable { mapping(address => uint8) private _whitelist; modifier canMint(uint8 _quantity) { require( _whitelist[msg.sender] >= _quantity, "Whitelist: you can't mint this amount of tokens" ); _; } function increaseWhitelist( address[] calldata _addresses, uint8[] calldata _quantity ) external onlyOwner { for (uint256 i = 0; i < _addresses.length; i++) { _whitelist[_addresses[i]] += _quantity[i]; } } function decreaseWhitelist( address[] calldata _addresses, uint8[] calldata _quantity ) external onlyOwner { for (uint256 i = 0; i < _addresses.length; i++) { _whitelist[_addresses[i]] -= _quantity[i]; } } function _decreaseWhitelist(address _address, uint8 _quantity) internal { // needed check already done in canMint modifier unchecked { _whitelist[_address] -= _quantity; } } function getWhitelistedQuantity( address _address ) external view returns (uint8) { return _whitelist[_address]; } } // // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) /** * @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); } // // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) /** * @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]; } } // 5% royalty as it will be divided by 10000 struct MintData { uint8 coreMinted; uint8 teamMinted; uint8 partnersMinted; uint8 seedMinted; uint8 publicMinted; uint96 seedSalePrice; uint96 publicSalePrice; bool seedActive; bool publicActive; } contract CryptoHubShares is ERC721, Ownable, Whitelist, ERC2981 { mapping(address => uint256) private _totalShares; MintData private _mintData = MintData( 0, 0, 0, 0, 0, uint96(SEED_MINT_PRICE), uint96(PUBLIC_MINT_PRICE), false, false ); function getMintData() external view returns (MintData memory) { return _mintData; } modifier onlyWhenSeedActive() { require(_mintData.seedActive, "CryptoHubShares: seed not active"); _; } modifier onlyWhenPublicActive() { require(_mintData.publicActive, "CryptoHubShares: public not active"); _; } constructor() ERC721(NAME, SYMBOL) { ERC2981._setDefaultRoyalty(owner(), ROYALTY_PERCENTAGE); _transferOwnership(0xDD48fA33AB3e6A094B1cA89c1578B9ca96d0e563); } function setRoyalty( address _newOwner, uint96 _newRoyalty ) external onlyOwner { require( _newRoyalty <= ROYALTY_PERCENTAGE, "CryptoHubShares: royalty max 5%" ); ERC2981._setDefaultRoyalty(_newOwner, _newRoyalty); } function setSeedPrice(uint96 _price) external onlyOwner { _mintData.seedSalePrice = _price; } function setPublicPrice(uint96 _price) external onlyOwner { _mintData.publicSalePrice = _price; } function shareFor(uint256 _tokenId) public pure returns (uint256) { if (_tokenId < CEO_COUNT) { return CEO_SHARE; } else if (_tokenId < CEO_COUNT + CTO_CMO_COUNT) { return CTO_CMO_SHARE; } else if (_tokenId < CEO_COUNT + CTO_CMO_COUNT + TEAM_COUNT) { return TEAM_SHARE; } else if ( _tokenId < CEO_COUNT + CTO_CMO_COUNT + TEAM_COUNT + PARTNERS_COUNT ) { return PARTNERS_SHARE; } else if ( _tokenId < CEO_COUNT + CTO_CMO_COUNT + TEAM_COUNT + PARTNERS_COUNT + SEED_COUNT ) { return SEED_SHARE; } else if ( _tokenId < CEO_COUNT + CTO_CMO_COUNT + TEAM_COUNT + PARTNERS_COUNT + SEED_COUNT + PUBLIC_COUNT ) { return PUBLIC_SHARE; } else { return 0; } } /** * @dev Mints the core team NFTs * @param _ceo The address of the CEO put 0x0 if you don't want to mint the CEO NFT * @param _cto The address of the CTO put 0x0 if you don't want to mint the CTO NFT * @param _cmo The address of the CMO put 0x0 if you don't want to mint the CMO NFT */ function mintCore( address _ceo, address _cto, address _cmo ) public onlyOwner { if (_ceo != address(0)) { _safeMint(_ceo, 0); _mintData.coreMinted++; } if (_cto != address(0)) { _safeMint(_cto, 1); _mintData.coreMinted++; } if (_cmo != address(0)) { _safeMint(_cmo, 2); _mintData.coreMinted++; } } /** * @dev Mints the team NFTs * @param _to The addresses of the team members to mint the NFTs to */ function mintTeam(address[] calldata _to) public onlyOwner { uint256 _minted = _mintData.teamMinted; require(_minted + _to.length <= TEAM_COUNT, "All team NFTs minted"); unchecked { for (uint256 i = 0; i < _to.length; i++) { _safeMint(_to[i], CEO_COUNT + CTO_CMO_COUNT + _minted + i); } _mintData.teamMinted += uint8(_to.length); } } /** * @dev Mints the partners NFTs */ function mintPartners(address[] calldata _to) public onlyOwner { uint256 minted = _mintData.partnersMinted; require( minted + _to.length <= PARTNERS_COUNT, "All partners NFTs minted" ); unchecked { for (uint256 i = 0; i < _to.length; i++) { _safeMint( _to[i], CEO_COUNT + CTO_CMO_COUNT + TEAM_COUNT + minted + i ); } _mintData.partnersMinted += uint8(_to.length); } } /** * @dev Mints the seed NFTs */ function mintSeed( uint8 _quantity ) external payable onlyWhenSeedActive canMint(_quantity) { require( msg.value == _quantity * _mintData.seedSalePrice, "Insuficient ETH sent" ); require( balanceOf(msg.sender) + _quantity <= MAX_MINT, "Max Mint reached" ); _decreaseWhitelist(msg.sender, _quantity); _mintSeed(msg.sender, _quantity); } /** * @dev Mints the seed NFTs for a specific address (Useful to mint from seed by owner) * @param _for The address to mint the NFTs for * @param _quantity The quantity of NFTs to mint */ function mintSeedFor(address _for, uint8 _quantity) external onlyOwner { _mintSeed(_for, _quantity); } function _mintSeed(address _for, uint8 _quantity) internal { require( _mintData.seedMinted + _quantity <= SEED_COUNT, "All seed NFTs minted" ); // This check is enough no need to check it for each NFT require( _checkOnERC721Received( address(0), _for, CTO_CMO_COUNT + TEAM_COUNT + PARTNERS_COUNT + _mintData.seedMinted, "" ), "ERC721: transfer to non ERC721Receiver implementer" ); unchecked { for (uint256 i = 0; i < _quantity; i++) { _mintWithoutBalanceUpdate( _for, CEO_COUNT + CTO_CMO_COUNT + TEAM_COUNT + PARTNERS_COUNT + _mintData.seedMinted + i ); } _mintData.seedMinted += _quantity; uint256 sharePerNFT = shareFor( CTO_CMO_COUNT + TEAM_COUNT + PARTNERS_COUNT + 1 // First seed NFT (all seed NFTs have the same share) ); _updateShare(_for, _totalShares[_for] + sharePerNFT * _quantity); _balances[_for] += _quantity; } } /** * @dev Mints the public NFTs */ function mintPublic(uint8 _quantity) external payable onlyWhenPublicActive { require( msg.value == _quantity * _mintData.publicSalePrice, "Insuficient ETH sent" ); _mintPublic(msg.sender, _quantity); } function mintPublicFor(address _for, uint8 _quantity) external onlyOwner { _mintPublic(_for, _quantity); } function _mintPublic(address _for, uint8 _quantity) internal { require( _mintData.publicMinted + _quantity <= PUBLIC_COUNT, "All public NFTs minted" ); require(balanceOf(_for) + _quantity <= MAX_MINT, "Max Mint reached"); require( _checkOnERC721Received( address(0), _for, CTO_CMO_COUNT + TEAM_COUNT + PARTNERS_COUNT + SEED_COUNT + _mintData.publicMinted, "" ), "ERC721: transfer to non ERC721Receiver implementer" ); unchecked { for (uint256 i = 0; i < _quantity; i++) { _mintWithoutBalanceUpdate( _for, CEO_COUNT + CTO_CMO_COUNT + TEAM_COUNT + PARTNERS_COUNT + SEED_COUNT + _mintData.publicMinted + i ); } _mintData.publicMinted += _quantity; uint256 sharePerNFT = shareFor( CTO_CMO_COUNT + TEAM_COUNT + PARTNERS_COUNT + SEED_COUNT + 1 // First public NFT (all public NFTs have the same share) ); _updateShare(_for, _totalShares[_for] + sharePerNFT * _quantity); _balances[_for] += _quantity; } } // setters function setSeedActive(bool _active) public onlyOwner { _mintData.seedActive = _active; } function setPublicActive(bool _active) public onlyOwner { _mintData.publicActive = _active; } function _mintWithoutBalanceUpdate( address to, uint256 tokenId ) internal virtual { _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } function _afterTokenTransfer( address from, address to, uint256 token, uint256 ) internal virtual override { uint256 shareOfToken = shareFor(token); unchecked { if (from != address(0)) _updateShare(from, _totalShares[from] - shareOfToken); _updateShare(to, _totalShares[to] + shareOfToken); } } event ShareUpdated(address indexed _address, uint256 _share); function _updateShare(address _address, uint256 _share) internal { _totalShares[_address] = _share; emit ShareUpdated(_address, _share); } function _baseURI() internal view virtual override returns (string memory) { return BASE_URI; } function baseURI() external view returns (string memory) { return _baseURI(); } function totalSupply() external view returns (uint256 total) { total = _mintData.coreMinted + _mintData.teamMinted + _mintData.partnersMinted + _mintData.seedMinted + _mintData.publicMinted; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function sharesOf(address _address) external view returns (uint256) { return _totalShares[_address]; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC721, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"uint256","name":"_share","type":"uint256"}],"name":"ShareUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint8[]","name":"_quantity","type":"uint8[]"}],"name":"decreaseWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintData","outputs":[{"components":[{"internalType":"uint8","name":"coreMinted","type":"uint8"},{"internalType":"uint8","name":"teamMinted","type":"uint8"},{"internalType":"uint8","name":"partnersMinted","type":"uint8"},{"internalType":"uint8","name":"seedMinted","type":"uint8"},{"internalType":"uint8","name":"publicMinted","type":"uint8"},{"internalType":"uint96","name":"seedSalePrice","type":"uint96"},{"internalType":"uint96","name":"publicSalePrice","type":"uint96"},{"internalType":"bool","name":"seedActive","type":"bool"},{"internalType":"bool","name":"publicActive","type":"bool"}],"internalType":"struct MintData","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getWhitelistedQuantity","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint8[]","name":"_quantity","type":"uint8[]"}],"name":"increaseWhitelist","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":[{"internalType":"address","name":"_ceo","type":"address"},{"internalType":"address","name":"_cto","type":"address"},{"internalType":"address","name":"_cmo","type":"address"}],"name":"mintCore","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"mintPartners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_quantity","type":"uint8"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_for","type":"address"},{"internalType":"uint8","name":"_quantity","type":"uint8"}],"name":"mintPublicFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_quantity","type":"uint8"}],"name":"mintSeed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_for","type":"address"},{"internalType":"uint8","name":"_quantity","type":"uint8"}],"name":"mintSeedFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"mintTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setPublicActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"_price","type":"uint96"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"},{"internalType":"uint96","name":"_newRoyalty","type":"uint96"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setSeedActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"_price","type":"uint96"}],"name":"setSeedPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"shareFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"sharesOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101a06040525f608081905260a081905260c081905260e08190526101008190526702c68af0bb1400006101205267058d15e1762800006101405261016081905261018052600b80547fff000000000000000000000000000000000000000000000000000000000000001678058d15e1762800000000000002c68af0bb140000000000000017905534801562000093575f80fd5b506040518060400160405280601a81526020017f43727970746f487562204f776e657273686970205368617265730000000000008152506040518060400160405280600481526020016343484f5360e01b815250815f9081620000f7919062000362565b50600162000106828262000362565b505050620001236200011d6200016860201b60201c565b6200016c565b620001436200013a6006546001600160a01b031690565b6101f4620001bd565b6200016273dd48fa33ab3e6a094b1ca89c1578b9ca96d0e5636200016c565b6200042a565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6127106001600160601b0382161115620002315760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620002895760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000228565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002eb57607f821691505b6020821081036200030a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200035d575f81815260208120601f850160051c81016020861015620003385750805b601f850160051c820191505b81811015620003595782815560010162000344565b5050505b505050565b81516001600160401b038111156200037e576200037e620002c2565b62000396816200038f8454620002d6565b8462000310565b602080601f831160018114620003cc575f8415620003b45750858301515b5f19600386901b1c1916600185901b17855562000359565b5f85815260208120601f198616915b82811015620003fc57888601518255948401946001909101908401620003db565b50858210156200041a57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b612d4c80620004385f395ff3fe60806040526004361061021d575f3560e01c806370a082311161011e578063b483ebb6116100a8578063e985e9c51161006d578063e985e9c514610735578063f1bb46ab14610754578063f2fde38b14610773578063f5eb42dc14610792578063f89b0044146107c6575f80fd5b8063b483ebb6146105c8578063b88d4fde146106c5578063bd3163ef146106e4578063c03f75d7146106f7578063c87b56dd14610716575f80fd5b80638aca408c116100ee5780638aca408c1461053a5780638da5cb5b146105595780638f2fc60b1461057657806395d89b4114610595578063a22cb465146105a9575f80fd5b806370a082311461049f578063715018a6146104be578063722a0ef2146104d2578063840a464a146104f1575f80fd5b80632a55205a116101aa5780636352211e1161016f5780636352211e1461041b57806367dce1ed1461043a57806368caaecf1461044d5780636c0360eb1461046c5780636c12ff6f14610480575f80fd5b80632a55205a1461036c578063301864e5146103aa5780633ccfd60b146103c957806342842e0e146103dd5780635c2ddc22146103fc575f80fd5b806315c91769116101f057806315c91769146102ce57806318160ddd146102ed57806320fdfd601461030f57806323b872dd1461032e57806326c1046a1461034d575f80fd5b806301ffc9a71461022157806306fdde0314610255578063081812fc14610276578063095ea7b3146102ad575b5f80fd5b34801561022c575f80fd5b5061024061023b3660046124fd565b6107e5565b60405190151581526020015b60405180910390f35b348015610260575f80fd5b506102696107f5565b60405161024c9190612565565b348015610281575f80fd5b50610295610290366004612577565b610884565b6040516001600160a01b03909116815260200161024c565b3480156102b8575f80fd5b506102cc6102c73660046125a4565b6108a9565b005b3480156102d9575f80fd5b506102cc6102e83660046125db565b6109c2565b3480156102f8575f80fd5b506103016109e8565b60405190815260200161024c565b34801561031a575f80fd5b506102cc610329366004612604565b610a45565b348015610339575f80fd5b506102cc610348366004612635565b610a5b565b348015610358575f80fd5b506102cc6103673660046126af565b610a8c565b348015610377575f80fd5b5061038b6103863660046126ee565b610b6a565b604080516001600160a01b03909316835260208301919091520161024c565b3480156103b5575f80fd5b506103016103c4366004612577565b610c16565b3480156103d4575f80fd5b506102cc610d35565b3480156103e8575f80fd5b506102cc6103f7366004612635565b610d69565b348015610407575f80fd5b506102cc61041636600461270e565b610d83565b348015610426575f80fd5b50610295610435366004612577565b610e45565b6102cc610448366004612775565b610ea4565b348015610458575f80fd5b506102cc61046736600461278e565b610f83565b348015610477575f80fd5b50610269611060565b34801561048b575f80fd5b506102cc61049a366004612604565b61106f565b3480156104aa575f80fd5b506103016104b93660046127ce565b611081565b3480156104c9575f80fd5b506102cc611105565b3480156104dd575f80fd5b506102cc6104ec3660046127fd565b611118565b3480156104fc575f80fd5b5061052861050b3660046127ce565b6001600160a01b03165f9081526007602052604090205460ff1690565b60405160ff909116815260200161024c565b348015610545575f80fd5b506102cc6105543660046125db565b611151565b348015610564575f80fd5b506006546001600160a01b0316610295565b348015610581575f80fd5b506102cc610590366004612816565b611177565b3480156105a0575f80fd5b506102696111e4565b3480156105b4575f80fd5b506102cc6105c336600461283e565b6111f3565b3480156105d3575f80fd5b506106b860408051610120810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810191909152506040805161012081018252600b5460ff80821683526101008083048216602085015262010000830482169484019490945263010000008204811660608401526401000000008204811660808401526001600160601b03650100000000008304811660a0850152600160881b83041660c0840152600160e81b82048116151560e0840152600160f01b9091041615159181019190915290565b60405161024c9190612866565b3480156106d0575f80fd5b506102cc6106df366004612936565b6111fe565b6102cc6106f2366004612775565b611236565b348015610702575f80fd5b506102cc6107113660046127fd565b611403565b348015610721575f80fd5b50610269610730366004612577565b611440565b348015610740575f80fd5b5061024061074f366004612a0b565b6114a4565b34801561075f575f80fd5b506102cc61076e36600461270e565b6114d1565b34801561077e575f80fd5b506102cc61078d3660046127ce565b61158c565b34801561079d575f80fd5b506103016107ac3660046127ce565b6001600160a01b03165f908152600a602052604090205490565b3480156107d1575f80fd5b506102cc6107e03660046126af565b611602565b5f6107ef826116d4565b92915050565b60605f805461080390612a33565b80601f016020809104026020016040519081016040528092919081815260200182805461082f90612a33565b801561087a5780601f106108515761010080835404028352916020019161087a565b820191905f5260205f20905b81548152906001019060200180831161085d57829003601f168201915b5050505050905090565b5f61088e826116f8565b505f908152600460205260409020546001600160a01b031690565b5f6108b382610e45565b9050806001600160a01b0316836001600160a01b0316036109255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610941575061094181336114a4565b6109b35760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161091c565b6109bd8383611756565b505050565b6109ca6117c3565b600b8054911515600160e81b0260ff60e81b19909216919091179055565b600b545f9060ff640100000000820481169163010000008104821691620100008204811691610a1f91610100820481169116612a7f565b610a299190612a7f565b610a339190612a7f565b610a3d9190612a7f565b60ff16905090565b610a4d6117c3565b610a57828261181d565b5050565b610a65338261199d565b610a815760405162461bcd60e51b815260040161091c90612a98565b6109bd8383836119fb565b610a946117c3565b600b5462010000900460ff16600f610aac8383612ae5565b1115610afa5760405162461bcd60e51b815260206004820152601860248201527f416c6c20706172746e657273204e465473206d696e7465640000000000000000604482015260640161091c565b5f5b82811015610b4157610b39848483818110610b1957610b19612af8565b9050602002016020810190610b2e91906127ce565b838301601701611b65565b600101610afc565b5050600b805460ff6201000080830482169094011690920262ff00001990921691909117905550565b5f8281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610bde5750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101515f9061271090610bfc906001600160601b031687612b0c565b610c069190612b23565b91519350909150505b9250929050565b5f6001821015610c2957506103e8919050565b610c3560026001612ae5565b821015610c4557506101f4919050565b6014610c5360026001612ae5565b610c5d9190612ae5565b821015610c6c57506064919050565b600f6014610c7c60026001612ae5565b610c869190612ae5565b610c909190612ae5565b821015610c9f57506064919050565b6064600f6014610cb160026001612ae5565b610cbb9190612ae5565b610cc59190612ae5565b610ccf9190612ae5565b821015610cde57506019919050565b60506064600f6014610cf260026001612ae5565b610cfc9190612ae5565b610d069190612ae5565b610d109190612ae5565b610d1a9190612ae5565b821015610d2957506019919050565b505f919050565b919050565b610d3d6117c3565b6040514790339082156108fc029083905f818181858888f19350505050158015610a57573d5f803e3d5ffd5b6109bd83838360405180602001604052805f8152506111fe565b610d8b6117c3565b5f5b83811015610e3e57828282818110610da757610da7612af8565b9050602002016020810190610dbc9190612775565b60075f878785818110610dd157610dd1612af8565b9050602002016020810190610de691906127ce565b6001600160a01b0316815260208101919091526040015f9081208054909190610e1390849060ff16612b42565b92506101000a81548160ff021916908360ff1602179055508080610e3690612b5b565b915050610d8d565b5050505050565b5f818152600260205260408120546001600160a01b0316806107ef5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161091c565b600b54600160f01b900460ff16610f085760405162461bcd60e51b815260206004820152602260248201527f43727970746f4875625368617265733a207075626c6963206e6f742061637469604482015261766560f01b606482015260840161091c565b600b54610f2890600160881b90046001600160601b031660ff8316612b73565b6001600160601b03163414610f765760405162461bcd60e51b8152602060048201526014602482015273125b9cdd599a58da595b9d08115512081cd95b9d60621b604482015260640161091c565b610f803382611b7e565b50565b610f8b6117c3565b6001600160a01b03831615610fd057610fa4835f611b65565b600b805460ff16905f610fb683612b96565b91906101000a81548160ff021916908360ff160217905550505b6001600160a01b0382161561101657610fea826001611b65565b600b805460ff16905f610ffc83612b96565b91906101000a81548160ff021916908360ff160217905550505b6001600160a01b038116156109bd57611030816002611b65565b600b805460ff16905f61104283612b96565b91906101000a81548160ff021916908360ff16021790555050505050565b606061106a611cee565b905090565b6110776117c3565b610a578282611b7e565b5f6001600160a01b0382166110ea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161091c565b506001600160a01b03165f9081526003602052604090205490565b61110d6117c3565b6111165f611d0e565b565b6111206117c3565b600b80546001600160601b03909216600160881b026bffffffffffffffffffffffff60881b19909216919091179055565b6111596117c3565b600b8054911515600160f01b0260ff60f01b19909216919091179055565b61117f6117c3565b6101f46001600160601b03821611156111da5760405162461bcd60e51b815260206004820152601f60248201527f43727970746f4875625368617265733a20726f79616c7479206d617820352500604482015260640161091c565b610a578282611d5f565b60606001805461080390612a33565b610a57338383611e5c565b611208338361199d565b6112245760405162461bcd60e51b815260040161091c90612a98565b61123084848484611f29565b50505050565b600b54600160e81b900460ff1661128f5760405162461bcd60e51b815260206004820181905260248201527f43727970746f4875625368617265733a2073656564206e6f7420616374697665604482015260640161091c565b335f90815260076020526040902054819060ff8083169116101561130d5760405162461bcd60e51b815260206004820152602f60248201527f57686974656c6973743a20796f752063616e2774206d696e742074686973206160448201526e6d6f756e74206f6620746f6b656e7360881b606482015260840161091c565b600b5461132f906501000000000090046001600160601b031660ff8416612b73565b6001600160601b0316341461137d5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd599a58da595b9d08115512081cd95b9d60621b604482015260640161091c565b60148260ff1661138c33611081565b6113969190612ae5565b11156113d75760405162461bcd60e51b815260206004820152601060248201526f13585e08135a5b9d081c995858da195960821b604482015260640161091c565b335f908152600760205260409020805460ff8082168590031660ff19909116179055610a57338361181d565b61140b6117c3565b600b80546001600160601b03909216650100000000000270ffffffffffffffffffffffff000000000019909216919091179055565b606061144b826116f8565b5f611454611cee565b90505f8151116114725760405180602001604052805f81525061149d565b8061147c84611f5c565b60405160200161148d929190612bb4565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b6114d96117c3565b5f5b83811015610e3e578282828181106114f5576114f5612af8565b905060200201602081019061150a9190612775565b60075f87878581811061151f5761151f612af8565b905060200201602081019061153491906127ce565b6001600160a01b0316815260208101919091526040015f908120805490919061156190849060ff16612a7f565b92506101000a81548160ff021916908360ff160217905550808061158490612b5b565b9150506114db565b6115946117c3565b6001600160a01b0381166115f95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091c565b610f8081611d0e565b61160a6117c3565b600b54610100900460ff1660146116218383612ae5565b11156116665760405162461bcd60e51b8152602060048201526014602482015273105b1b081d19585b481391951cc81b5a5b9d195960621b604482015260640161091c565b5f5b828110156116ad576116a584848381811061168557611685612af8565b905060200201602081019061169a91906127ce565b838301600301611b65565b600101611668565b5050600b805460ff61010080830482169094011690920261ff001990921691909117905550565b5f6001600160e01b0319821663152a902d60e11b14806107ef57506107ef82611fec565b5f818152600260205260409020546001600160a01b0316610f805760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161091c565b5f81815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061178a82610e45565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b031633146111165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091c565b600b546064906118389083906301000000900460ff16612a7f565b60ff1611156118805760405162461bcd60e51b8152602060048201526014602482015273105b1b081cd95959081391951cc81b5a5b9d195960621b604482015260640161091c565b600b546118cb905f9084906301000000900460ff16600f6118a360146002612ae5565b6118ad9190612ae5565b6118b79190612ae5565b60405180602001604052805f81525061203b565b6118e75760405162461bcd60e51b815260040161091c90612bf2565b5f5b8160ff1681101561191a57600b5461191290849060ff6301000000909104168301602601612138565b6001016118e9565b50600b805460ff6301000000808304821685019091160263ff000000199091161790555f6119486026610c16565b6001600160a01b0384165f908152600a602052604090205490915061197590849060ff8516840201612190565b506001600160a01b039091165f908152600360205260409020805460ff909216919091019055565b5f806119a883610e45565b9050806001600160a01b0316846001600160a01b031614806119cf57506119cf81856114a4565b806119f35750836001600160a01b03166119e884610884565b6001600160a01b0316145b949350505050565b826001600160a01b0316611a0e82610e45565b6001600160a01b031614611a345760405162461bcd60e51b815260040161091c90612c44565b6001600160a01b038216611a965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161091c565b826001600160a01b0316611aa982610e45565b6001600160a01b031614611acf5760405162461bcd60e51b815260040161091c90612c44565b5f81815260046020908152604080832080546001600160a01b03199081169091556001600160a01b038781168086526003855283862080545f1901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46109bd83838360016121e8565b610a57828260405180602001604052805f81525061224e565b600b54605090611b9a908390640100000000900460ff16612a7f565b60ff161115611be45760405162461bcd60e51b8152602060048201526016602482015275105b1b081c1d589b1a58c81391951cc81b5a5b9d195960521b604482015260640161091c565b60148160ff16611bf384611081565b611bfd9190612ae5565b1115611c3e5760405162461bcd60e51b815260206004820152601060248201526f13585e08135a5b9d081c995858da195960821b604482015260640161091c565b600b54611c6e905f908490640100000000900460ff166064600f611c6460146002612ae5565b6118a39190612ae5565b611c8a5760405162461bcd60e51b815260040161091c90612bf2565b5f5b8160ff16811015611cbe57600b54611cb690849060ff640100000000909104168301608a01612138565b600101611c8c565b50600b805460ff640100000000808304821685019091160264ff00000000199091161790555f611948608a610c16565b6060604051806060016040528060368152602001612ce160369139905090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6127106001600160601b0382161115611dcd5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840161091c565b6001600160a01b038216611e235760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161091c565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b816001600160a01b0316836001600160a01b031603611ebd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161091c565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f348484846119fb565b611f408484848461203b565b6112305760405162461bcd60e51b815260040161091c90612bf2565b60605f611f6883612280565b60010190505f8167ffffffffffffffff811115611f8757611f87612922565b6040519080825280601f01601f191660200182016040528015611fb1576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611fbb57509392505050565b5f6001600160e01b031982166380ac58cd60e01b148061201c57506001600160e01b03198216635b5e139f60e01b145b806107ef57506301ffc9a760e01b6001600160e01b03198316146107ef565b5f6001600160a01b0384163b1561212d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061207e903390899088908890600401612c89565b6020604051808303815f875af19250505080156120b8575060408051601f3d908101601f191682019092526120b591810190612cc5565b60015b612113573d8080156120e5576040519150601f19603f3d011682016040523d82523d5f602084013e6120ea565b606091505b5080515f0361210b5760405162461bcd60e51b815260040161091c90612bf2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119f3565b506001949350505050565b5f8181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0382165f818152600a602052604090819020839055517f465bc1e774b3c331b04932a22f9781dbb864defe943d70548ba9b8af6c528b5c906121dc9084815260200190565b60405180910390a25050565b5f6121f283610c16565b90506001600160a01b03851615612229576001600160a01b0385165f908152600a6020526040902054612229908690839003612190565b6001600160a01b0384165f908152600a6020526040902054610e3e9085908301612190565b6122588383612357565b6122645f84848461203b565b6109bd5760405162461bcd60e51b815260040161091c90612bf2565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106122be5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106122ea576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061230857662386f26fc10000830492506010015b6305f5e1008310612320576305f5e100830492506008015b612710831061233457612710830492506004015b60648310612346576064830492506002015b600a83106107ef5760010192915050565b6001600160a01b0382166123ad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161091c565b5f818152600260205260409020546001600160a01b0316156124115760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161091c565b5f818152600260205260409020546001600160a01b0316156124755760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161091c565b6001600160a01b0382165f81815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610a575f838360016121e8565b6001600160e01b031981168114610f80575f80fd5b5f6020828403121561250d575f80fd5b813561149d816124e8565b5f5b8381101561253257818101518382015260200161251a565b50505f910152565b5f8151808452612551816020860160208601612518565b601f01601f19169290920160200192915050565b602081525f61149d602083018461253a565b5f60208284031215612587575f80fd5b5035919050565b80356001600160a01b0381168114610d30575f80fd5b5f80604083850312156125b5575f80fd5b6125be8361258e565b946020939093013593505050565b80358015158114610d30575f80fd5b5f602082840312156125eb575f80fd5b61149d826125cc565b803560ff81168114610d30575f80fd5b5f8060408385031215612615575f80fd5b61261e8361258e565b915061262c602084016125f4565b90509250929050565b5f805f60608486031215612647575f80fd5b6126508461258e565b925061265e6020850161258e565b9150604084013590509250925092565b5f8083601f84011261267e575f80fd5b50813567ffffffffffffffff811115612695575f80fd5b6020830191508360208260051b8501011115610c0f575f80fd5b5f80602083850312156126c0575f80fd5b823567ffffffffffffffff8111156126d6575f80fd5b6126e28582860161266e565b90969095509350505050565b5f80604083850312156126ff575f80fd5b50508035926020909101359150565b5f805f8060408587031215612721575f80fd5b843567ffffffffffffffff80821115612738575f80fd5b6127448883890161266e565b9096509450602087013591508082111561275c575f80fd5b506127698782880161266e565b95989497509550505050565b5f60208284031215612785575f80fd5b61149d826125f4565b5f805f606084860312156127a0575f80fd5b6127a98461258e565b92506127b76020850161258e565b91506127c56040850161258e565b90509250925092565b5f602082840312156127de575f80fd5b61149d8261258e565b80356001600160601b0381168114610d30575f80fd5b5f6020828403121561280d575f80fd5b61149d826127e7565b5f8060408385031215612827575f80fd5b6128308361258e565b915061262c602084016127e7565b5f806040838503121561284f575f80fd5b6128588361258e565b915061262c602084016125cc565b5f6101208201905060ff835116825260ff60208401511660208301526040830151612896604084018260ff169052565b5060608301516128ab606084018260ff169052565b5060808301516128c0608084018260ff169052565b5060a08301516128db60a08401826001600160601b03169052565b5060c08301516128f660c08401826001600160601b03169052565b5060e083015161290a60e084018215159052565b5061010083810151801515848301525b505092915050565b634e487b7160e01b5f52604160045260245ffd5b5f805f8060808587031215612949575f80fd5b6129528561258e565b93506129606020860161258e565b925060408501359150606085013567ffffffffffffffff80821115612983575f80fd5b818701915087601f830112612996575f80fd5b8135818111156129a8576129a8612922565b604051601f8201601f19908116603f011681019083821181831017156129d0576129d0612922565b816040528281528a60208487010111156129e8575f80fd5b826020860160208301375f60208483010152809550505050505092959194509250565b5f8060408385031215612a1c575f80fd5b612a258361258e565b915061262c6020840161258e565b600181811c90821680612a4757607f821691505b602082108103612a6557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b60ff81811683821601908111156107ef576107ef612a6b565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b808201808211156107ef576107ef612a6b565b634e487b7160e01b5f52603260045260245ffd5b80820281158282048414176107ef576107ef612a6b565b5f82612b3d57634e487b7160e01b5f52601260045260245ffd5b500490565b60ff82811682821603908111156107ef576107ef612a6b565b5f60018201612b6c57612b6c612a6b565b5060010190565b6001600160601b0381811683821602808216919082811461291a5761291a612a6b565b5f60ff821660ff8103612bab57612bab612a6b565b60010192915050565b5f8351612bc5818460208801612518565b835190830190612bd9818360208801612518565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90612cbb9083018461253a565b9695505050505050565b5f60208284031215612cd5575f80fd5b815161149d816124e856fe697066733a2f2f516d6251625a476a697850746d65695046353163394a4378635a54564236376163546962416f7a664d50337763682fa2646970667358221220b3283ab8083151dbcacf9836521acf6a60bf3e5fd3f8bf0f8b86fe424380c27364736f6c63430008140033
Deployed Bytecode
0x60806040526004361061021d575f3560e01c806370a082311161011e578063b483ebb6116100a8578063e985e9c51161006d578063e985e9c514610735578063f1bb46ab14610754578063f2fde38b14610773578063f5eb42dc14610792578063f89b0044146107c6575f80fd5b8063b483ebb6146105c8578063b88d4fde146106c5578063bd3163ef146106e4578063c03f75d7146106f7578063c87b56dd14610716575f80fd5b80638aca408c116100ee5780638aca408c1461053a5780638da5cb5b146105595780638f2fc60b1461057657806395d89b4114610595578063a22cb465146105a9575f80fd5b806370a082311461049f578063715018a6146104be578063722a0ef2146104d2578063840a464a146104f1575f80fd5b80632a55205a116101aa5780636352211e1161016f5780636352211e1461041b57806367dce1ed1461043a57806368caaecf1461044d5780636c0360eb1461046c5780636c12ff6f14610480575f80fd5b80632a55205a1461036c578063301864e5146103aa5780633ccfd60b146103c957806342842e0e146103dd5780635c2ddc22146103fc575f80fd5b806315c91769116101f057806315c91769146102ce57806318160ddd146102ed57806320fdfd601461030f57806323b872dd1461032e57806326c1046a1461034d575f80fd5b806301ffc9a71461022157806306fdde0314610255578063081812fc14610276578063095ea7b3146102ad575b5f80fd5b34801561022c575f80fd5b5061024061023b3660046124fd565b6107e5565b60405190151581526020015b60405180910390f35b348015610260575f80fd5b506102696107f5565b60405161024c9190612565565b348015610281575f80fd5b50610295610290366004612577565b610884565b6040516001600160a01b03909116815260200161024c565b3480156102b8575f80fd5b506102cc6102c73660046125a4565b6108a9565b005b3480156102d9575f80fd5b506102cc6102e83660046125db565b6109c2565b3480156102f8575f80fd5b506103016109e8565b60405190815260200161024c565b34801561031a575f80fd5b506102cc610329366004612604565b610a45565b348015610339575f80fd5b506102cc610348366004612635565b610a5b565b348015610358575f80fd5b506102cc6103673660046126af565b610a8c565b348015610377575f80fd5b5061038b6103863660046126ee565b610b6a565b604080516001600160a01b03909316835260208301919091520161024c565b3480156103b5575f80fd5b506103016103c4366004612577565b610c16565b3480156103d4575f80fd5b506102cc610d35565b3480156103e8575f80fd5b506102cc6103f7366004612635565b610d69565b348015610407575f80fd5b506102cc61041636600461270e565b610d83565b348015610426575f80fd5b50610295610435366004612577565b610e45565b6102cc610448366004612775565b610ea4565b348015610458575f80fd5b506102cc61046736600461278e565b610f83565b348015610477575f80fd5b50610269611060565b34801561048b575f80fd5b506102cc61049a366004612604565b61106f565b3480156104aa575f80fd5b506103016104b93660046127ce565b611081565b3480156104c9575f80fd5b506102cc611105565b3480156104dd575f80fd5b506102cc6104ec3660046127fd565b611118565b3480156104fc575f80fd5b5061052861050b3660046127ce565b6001600160a01b03165f9081526007602052604090205460ff1690565b60405160ff909116815260200161024c565b348015610545575f80fd5b506102cc6105543660046125db565b611151565b348015610564575f80fd5b506006546001600160a01b0316610295565b348015610581575f80fd5b506102cc610590366004612816565b611177565b3480156105a0575f80fd5b506102696111e4565b3480156105b4575f80fd5b506102cc6105c336600461283e565b6111f3565b3480156105d3575f80fd5b506106b860408051610120810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810191909152506040805161012081018252600b5460ff80821683526101008083048216602085015262010000830482169484019490945263010000008204811660608401526401000000008204811660808401526001600160601b03650100000000008304811660a0850152600160881b83041660c0840152600160e81b82048116151560e0840152600160f01b9091041615159181019190915290565b60405161024c9190612866565b3480156106d0575f80fd5b506102cc6106df366004612936565b6111fe565b6102cc6106f2366004612775565b611236565b348015610702575f80fd5b506102cc6107113660046127fd565b611403565b348015610721575f80fd5b50610269610730366004612577565b611440565b348015610740575f80fd5b5061024061074f366004612a0b565b6114a4565b34801561075f575f80fd5b506102cc61076e36600461270e565b6114d1565b34801561077e575f80fd5b506102cc61078d3660046127ce565b61158c565b34801561079d575f80fd5b506103016107ac3660046127ce565b6001600160a01b03165f908152600a602052604090205490565b3480156107d1575f80fd5b506102cc6107e03660046126af565b611602565b5f6107ef826116d4565b92915050565b60605f805461080390612a33565b80601f016020809104026020016040519081016040528092919081815260200182805461082f90612a33565b801561087a5780601f106108515761010080835404028352916020019161087a565b820191905f5260205f20905b81548152906001019060200180831161085d57829003601f168201915b5050505050905090565b5f61088e826116f8565b505f908152600460205260409020546001600160a01b031690565b5f6108b382610e45565b9050806001600160a01b0316836001600160a01b0316036109255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610941575061094181336114a4565b6109b35760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161091c565b6109bd8383611756565b505050565b6109ca6117c3565b600b8054911515600160e81b0260ff60e81b19909216919091179055565b600b545f9060ff640100000000820481169163010000008104821691620100008204811691610a1f91610100820481169116612a7f565b610a299190612a7f565b610a339190612a7f565b610a3d9190612a7f565b60ff16905090565b610a4d6117c3565b610a57828261181d565b5050565b610a65338261199d565b610a815760405162461bcd60e51b815260040161091c90612a98565b6109bd8383836119fb565b610a946117c3565b600b5462010000900460ff16600f610aac8383612ae5565b1115610afa5760405162461bcd60e51b815260206004820152601860248201527f416c6c20706172746e657273204e465473206d696e7465640000000000000000604482015260640161091c565b5f5b82811015610b4157610b39848483818110610b1957610b19612af8565b9050602002016020810190610b2e91906127ce565b838301601701611b65565b600101610afc565b5050600b805460ff6201000080830482169094011690920262ff00001990921691909117905550565b5f8281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610bde5750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101515f9061271090610bfc906001600160601b031687612b0c565b610c069190612b23565b91519350909150505b9250929050565b5f6001821015610c2957506103e8919050565b610c3560026001612ae5565b821015610c4557506101f4919050565b6014610c5360026001612ae5565b610c5d9190612ae5565b821015610c6c57506064919050565b600f6014610c7c60026001612ae5565b610c869190612ae5565b610c909190612ae5565b821015610c9f57506064919050565b6064600f6014610cb160026001612ae5565b610cbb9190612ae5565b610cc59190612ae5565b610ccf9190612ae5565b821015610cde57506019919050565b60506064600f6014610cf260026001612ae5565b610cfc9190612ae5565b610d069190612ae5565b610d109190612ae5565b610d1a9190612ae5565b821015610d2957506019919050565b505f919050565b919050565b610d3d6117c3565b6040514790339082156108fc029083905f818181858888f19350505050158015610a57573d5f803e3d5ffd5b6109bd83838360405180602001604052805f8152506111fe565b610d8b6117c3565b5f5b83811015610e3e57828282818110610da757610da7612af8565b9050602002016020810190610dbc9190612775565b60075f878785818110610dd157610dd1612af8565b9050602002016020810190610de691906127ce565b6001600160a01b0316815260208101919091526040015f9081208054909190610e1390849060ff16612b42565b92506101000a81548160ff021916908360ff1602179055508080610e3690612b5b565b915050610d8d565b5050505050565b5f818152600260205260408120546001600160a01b0316806107ef5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161091c565b600b54600160f01b900460ff16610f085760405162461bcd60e51b815260206004820152602260248201527f43727970746f4875625368617265733a207075626c6963206e6f742061637469604482015261766560f01b606482015260840161091c565b600b54610f2890600160881b90046001600160601b031660ff8316612b73565b6001600160601b03163414610f765760405162461bcd60e51b8152602060048201526014602482015273125b9cdd599a58da595b9d08115512081cd95b9d60621b604482015260640161091c565b610f803382611b7e565b50565b610f8b6117c3565b6001600160a01b03831615610fd057610fa4835f611b65565b600b805460ff16905f610fb683612b96565b91906101000a81548160ff021916908360ff160217905550505b6001600160a01b0382161561101657610fea826001611b65565b600b805460ff16905f610ffc83612b96565b91906101000a81548160ff021916908360ff160217905550505b6001600160a01b038116156109bd57611030816002611b65565b600b805460ff16905f61104283612b96565b91906101000a81548160ff021916908360ff16021790555050505050565b606061106a611cee565b905090565b6110776117c3565b610a578282611b7e565b5f6001600160a01b0382166110ea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161091c565b506001600160a01b03165f9081526003602052604090205490565b61110d6117c3565b6111165f611d0e565b565b6111206117c3565b600b80546001600160601b03909216600160881b026bffffffffffffffffffffffff60881b19909216919091179055565b6111596117c3565b600b8054911515600160f01b0260ff60f01b19909216919091179055565b61117f6117c3565b6101f46001600160601b03821611156111da5760405162461bcd60e51b815260206004820152601f60248201527f43727970746f4875625368617265733a20726f79616c7479206d617820352500604482015260640161091c565b610a578282611d5f565b60606001805461080390612a33565b610a57338383611e5c565b611208338361199d565b6112245760405162461bcd60e51b815260040161091c90612a98565b61123084848484611f29565b50505050565b600b54600160e81b900460ff1661128f5760405162461bcd60e51b815260206004820181905260248201527f43727970746f4875625368617265733a2073656564206e6f7420616374697665604482015260640161091c565b335f90815260076020526040902054819060ff8083169116101561130d5760405162461bcd60e51b815260206004820152602f60248201527f57686974656c6973743a20796f752063616e2774206d696e742074686973206160448201526e6d6f756e74206f6620746f6b656e7360881b606482015260840161091c565b600b5461132f906501000000000090046001600160601b031660ff8416612b73565b6001600160601b0316341461137d5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd599a58da595b9d08115512081cd95b9d60621b604482015260640161091c565b60148260ff1661138c33611081565b6113969190612ae5565b11156113d75760405162461bcd60e51b815260206004820152601060248201526f13585e08135a5b9d081c995858da195960821b604482015260640161091c565b335f908152600760205260409020805460ff8082168590031660ff19909116179055610a57338361181d565b61140b6117c3565b600b80546001600160601b03909216650100000000000270ffffffffffffffffffffffff000000000019909216919091179055565b606061144b826116f8565b5f611454611cee565b90505f8151116114725760405180602001604052805f81525061149d565b8061147c84611f5c565b60405160200161148d929190612bb4565b6040516020818303038152906040525b9392505050565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b6114d96117c3565b5f5b83811015610e3e578282828181106114f5576114f5612af8565b905060200201602081019061150a9190612775565b60075f87878581811061151f5761151f612af8565b905060200201602081019061153491906127ce565b6001600160a01b0316815260208101919091526040015f908120805490919061156190849060ff16612a7f565b92506101000a81548160ff021916908360ff160217905550808061158490612b5b565b9150506114db565b6115946117c3565b6001600160a01b0381166115f95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161091c565b610f8081611d0e565b61160a6117c3565b600b54610100900460ff1660146116218383612ae5565b11156116665760405162461bcd60e51b8152602060048201526014602482015273105b1b081d19585b481391951cc81b5a5b9d195960621b604482015260640161091c565b5f5b828110156116ad576116a584848381811061168557611685612af8565b905060200201602081019061169a91906127ce565b838301600301611b65565b600101611668565b5050600b805460ff61010080830482169094011690920261ff001990921691909117905550565b5f6001600160e01b0319821663152a902d60e11b14806107ef57506107ef82611fec565b5f818152600260205260409020546001600160a01b0316610f805760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161091c565b5f81815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061178a82610e45565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b031633146111165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161091c565b600b546064906118389083906301000000900460ff16612a7f565b60ff1611156118805760405162461bcd60e51b8152602060048201526014602482015273105b1b081cd95959081391951cc81b5a5b9d195960621b604482015260640161091c565b600b546118cb905f9084906301000000900460ff16600f6118a360146002612ae5565b6118ad9190612ae5565b6118b79190612ae5565b60405180602001604052805f81525061203b565b6118e75760405162461bcd60e51b815260040161091c90612bf2565b5f5b8160ff1681101561191a57600b5461191290849060ff6301000000909104168301602601612138565b6001016118e9565b50600b805460ff6301000000808304821685019091160263ff000000199091161790555f6119486026610c16565b6001600160a01b0384165f908152600a602052604090205490915061197590849060ff8516840201612190565b506001600160a01b039091165f908152600360205260409020805460ff909216919091019055565b5f806119a883610e45565b9050806001600160a01b0316846001600160a01b031614806119cf57506119cf81856114a4565b806119f35750836001600160a01b03166119e884610884565b6001600160a01b0316145b949350505050565b826001600160a01b0316611a0e82610e45565b6001600160a01b031614611a345760405162461bcd60e51b815260040161091c90612c44565b6001600160a01b038216611a965760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161091c565b826001600160a01b0316611aa982610e45565b6001600160a01b031614611acf5760405162461bcd60e51b815260040161091c90612c44565b5f81815260046020908152604080832080546001600160a01b03199081169091556001600160a01b038781168086526003855283862080545f1901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46109bd83838360016121e8565b610a57828260405180602001604052805f81525061224e565b600b54605090611b9a908390640100000000900460ff16612a7f565b60ff161115611be45760405162461bcd60e51b8152602060048201526016602482015275105b1b081c1d589b1a58c81391951cc81b5a5b9d195960521b604482015260640161091c565b60148160ff16611bf384611081565b611bfd9190612ae5565b1115611c3e5760405162461bcd60e51b815260206004820152601060248201526f13585e08135a5b9d081c995858da195960821b604482015260640161091c565b600b54611c6e905f908490640100000000900460ff166064600f611c6460146002612ae5565b6118a39190612ae5565b611c8a5760405162461bcd60e51b815260040161091c90612bf2565b5f5b8160ff16811015611cbe57600b54611cb690849060ff640100000000909104168301608a01612138565b600101611c8c565b50600b805460ff640100000000808304821685019091160264ff00000000199091161790555f611948608a610c16565b6060604051806060016040528060368152602001612ce160369139905090565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6127106001600160601b0382161115611dcd5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840161091c565b6001600160a01b038216611e235760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161091c565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b816001600160a01b0316836001600160a01b031603611ebd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161091c565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f348484846119fb565b611f408484848461203b565b6112305760405162461bcd60e51b815260040161091c90612bf2565b60605f611f6883612280565b60010190505f8167ffffffffffffffff811115611f8757611f87612922565b6040519080825280601f01601f191660200182016040528015611fb1576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611fbb57509392505050565b5f6001600160e01b031982166380ac58cd60e01b148061201c57506001600160e01b03198216635b5e139f60e01b145b806107ef57506301ffc9a760e01b6001600160e01b03198316146107ef565b5f6001600160a01b0384163b1561212d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061207e903390899088908890600401612c89565b6020604051808303815f875af19250505080156120b8575060408051601f3d908101601f191682019092526120b591810190612cc5565b60015b612113573d8080156120e5576040519150601f19603f3d011682016040523d82523d5f602084013e6120ea565b606091505b5080515f0361210b5760405162461bcd60e51b815260040161091c90612bf2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119f3565b506001949350505050565b5f8181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0382165f818152600a602052604090819020839055517f465bc1e774b3c331b04932a22f9781dbb864defe943d70548ba9b8af6c528b5c906121dc9084815260200190565b60405180910390a25050565b5f6121f283610c16565b90506001600160a01b03851615612229576001600160a01b0385165f908152600a6020526040902054612229908690839003612190565b6001600160a01b0384165f908152600a6020526040902054610e3e9085908301612190565b6122588383612357565b6122645f84848461203b565b6109bd5760405162461bcd60e51b815260040161091c90612bf2565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106122be5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106122ea576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061230857662386f26fc10000830492506010015b6305f5e1008310612320576305f5e100830492506008015b612710831061233457612710830492506004015b60648310612346576064830492506002015b600a83106107ef5760010192915050565b6001600160a01b0382166123ad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161091c565b5f818152600260205260409020546001600160a01b0316156124115760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161091c565b5f818152600260205260409020546001600160a01b0316156124755760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161091c565b6001600160a01b0382165f81815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610a575f838360016121e8565b6001600160e01b031981168114610f80575f80fd5b5f6020828403121561250d575f80fd5b813561149d816124e8565b5f5b8381101561253257818101518382015260200161251a565b50505f910152565b5f8151808452612551816020860160208601612518565b601f01601f19169290920160200192915050565b602081525f61149d602083018461253a565b5f60208284031215612587575f80fd5b5035919050565b80356001600160a01b0381168114610d30575f80fd5b5f80604083850312156125b5575f80fd5b6125be8361258e565b946020939093013593505050565b80358015158114610d30575f80fd5b5f602082840312156125eb575f80fd5b61149d826125cc565b803560ff81168114610d30575f80fd5b5f8060408385031215612615575f80fd5b61261e8361258e565b915061262c602084016125f4565b90509250929050565b5f805f60608486031215612647575f80fd5b6126508461258e565b925061265e6020850161258e565b9150604084013590509250925092565b5f8083601f84011261267e575f80fd5b50813567ffffffffffffffff811115612695575f80fd5b6020830191508360208260051b8501011115610c0f575f80fd5b5f80602083850312156126c0575f80fd5b823567ffffffffffffffff8111156126d6575f80fd5b6126e28582860161266e565b90969095509350505050565b5f80604083850312156126ff575f80fd5b50508035926020909101359150565b5f805f8060408587031215612721575f80fd5b843567ffffffffffffffff80821115612738575f80fd5b6127448883890161266e565b9096509450602087013591508082111561275c575f80fd5b506127698782880161266e565b95989497509550505050565b5f60208284031215612785575f80fd5b61149d826125f4565b5f805f606084860312156127a0575f80fd5b6127a98461258e565b92506127b76020850161258e565b91506127c56040850161258e565b90509250925092565b5f602082840312156127de575f80fd5b61149d8261258e565b80356001600160601b0381168114610d30575f80fd5b5f6020828403121561280d575f80fd5b61149d826127e7565b5f8060408385031215612827575f80fd5b6128308361258e565b915061262c602084016127e7565b5f806040838503121561284f575f80fd5b6128588361258e565b915061262c602084016125cc565b5f6101208201905060ff835116825260ff60208401511660208301526040830151612896604084018260ff169052565b5060608301516128ab606084018260ff169052565b5060808301516128c0608084018260ff169052565b5060a08301516128db60a08401826001600160601b03169052565b5060c08301516128f660c08401826001600160601b03169052565b5060e083015161290a60e084018215159052565b5061010083810151801515848301525b505092915050565b634e487b7160e01b5f52604160045260245ffd5b5f805f8060808587031215612949575f80fd5b6129528561258e565b93506129606020860161258e565b925060408501359150606085013567ffffffffffffffff80821115612983575f80fd5b818701915087601f830112612996575f80fd5b8135818111156129a8576129a8612922565b604051601f8201601f19908116603f011681019083821181831017156129d0576129d0612922565b816040528281528a60208487010111156129e8575f80fd5b826020860160208301375f60208483010152809550505050505092959194509250565b5f8060408385031215612a1c575f80fd5b612a258361258e565b915061262c6020840161258e565b600181811c90821680612a4757607f821691505b602082108103612a6557634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b60ff81811683821601908111156107ef576107ef612a6b565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b808201808211156107ef576107ef612a6b565b634e487b7160e01b5f52603260045260245ffd5b80820281158282048414176107ef576107ef612a6b565b5f82612b3d57634e487b7160e01b5f52601260045260245ffd5b500490565b60ff82811682821603908111156107ef576107ef612a6b565b5f60018201612b6c57612b6c612a6b565b5060010190565b6001600160601b0381811683821602808216919082811461291a5761291a612a6b565b5f60ff821660ff8103612bab57612bab612a6b565b60010192915050565b5f8351612bc5818460208801612518565b835190830190612bd9818360208801612518565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90612cbb9083018461253a565b9695505050505050565b5f60208284031215612cd5575f80fd5b815161149d816124e856fe697066733a2f2f516d6251625a476a697850746d65695046353163394a4378635a54564236376163546962416f7a664d50337763682fa2646970667358221220b3283ab8083151dbcacf9836521acf6a60bf3e5fd3f8bf0f8b86fe424380c27364736f6c63430008140033
Deployed Bytecode Sourcemap
62299:10864:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72974:186;;;;;;;;;;-1:-1:-1;72974:186:0;;;;;:::i;:::-;;:::i;:::-;;;661:14:1;;654:22;636:41;;624:2;609:18;72974:186:0;;;;;;;;37446:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39030:187::-;;;;;;;;;;-1:-1:-1;39030:187:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1793:32:1;;;1775:51;;1763:2;1748:18;39030:187:0;1629:203:1;38548:416:0;;;;;;;;;;-1:-1:-1;38548:416:0;;;;;:::i;:::-;;:::i;:::-;;71047:103;;;;;;;;;;-1:-1:-1;71047:103:0;;;;;:::i;:::-;;:::i;72354:271::-;;;;;;;;;;;;;:::i;:::-;;;2770:25:1;;;2758:2;2743:18;72354:271:0;2624:177:1;67517:116:0;;;;;;;;;;-1:-1:-1;67517:116:0;;;;;:::i;:::-;;:::i;39796:372::-;;;;;;;;;;-1:-1:-1;39796:372:0;;;;;:::i;:::-;;:::i;66213:560::-;;;;;;;;;;-1:-1:-1;66213:560:0;;;;;:::i;:::-;;:::i;59505:442::-;;;;;;;;;;-1:-1:-1;59505:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4820:32:1;;;4802:51;;4884:2;4869:18;;4862:34;;;;4775:18;59505:442:0;4628:274:1;63800:990:0;;;;;;;;;;-1:-1:-1;63800:990:0;;;;;:::i;:::-;;:::i;72633:145::-;;;;;;;;;;;;;:::i;40239:185::-;;;;;;;;;;-1:-1:-1;40239:185:0;;;;;:::i;:::-;;:::i;56483:264::-;;;;;;;;;;-1:-1:-1;56483:264:0;;;;;:::i;:::-;;:::i;37140:239::-;;;;;;;;;;-1:-1:-1;37140:239:0;;;;;:::i;:::-;;:::i;69107:259::-;;;;;;:::i;:::-;;:::i;65121:467::-;;;;;;;;;;-1:-1:-1;65121:467:0;;;;;:::i;:::-;;:::i;72253:93::-;;;;;;;;;;;;;:::i;69374:120::-;;;;;;;;;;-1:-1:-1;69374:120:0;;;;;:::i;:::-;;:::i;36818:260::-;;;;;;;;;;-1:-1:-1;36818:260:0;;;;;:::i;:::-;;:::i;55094:103::-;;;;;;;;;;;;;:::i;63681:111::-;;;;;;;;;;-1:-1:-1;63681:111:0;;;;;:::i;:::-;;:::i;56981:142::-;;;;;;;;;;-1:-1:-1;56981:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;57095:20:0;57070:5;57095:20;;;:10;:20;;;;;;;;;56981:142;;;;7025:4:1;7013:17;;;6995:36;;6983:2;6968:18;56981:142:0;6853:184:1;71158:107:0;;;;;;;;;;-1:-1:-1;71158:107:0;;;;;:::i;:::-;;:::i;54446:87::-;;;;;;;;;;-1:-1:-1;54519:6:0;;-1:-1:-1;;;;;54519:6:0;54446:87;;63261:297;;;;;;;;;;-1:-1:-1;63261:297:0;;;;;:::i;:::-;;:::i;37615:104::-;;;;;;;;;;;;;:::i;39289:180::-;;;;;;;;;;-1:-1:-1;39289:180:0;;;;;:::i;:::-;;:::i;62691:98::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62765:16:0;;;;;;;;62772:9;62765:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62765:16:0;;;;;;;;;-1:-1:-1;;;62765:16:0;;;;;;;-1:-1:-1;;;62765:16:0;;;;;;;;;;-1:-1:-1;;;62765:16:0;;;;;;;;;;;;;;62691:98;;;;;;;;:::i;40495:359::-;;;;;;;;;;-1:-1:-1;40495:359:0;;;;;:::i;:::-;;:::i;66832:460::-;;;;;;:::i;:::-;;:::i;63566:107::-;;;;;;;;;;-1:-1:-1;63566:107:0;;;;;:::i;:::-;;:::i;37790:353::-;;;;;;;;;;-1:-1:-1;37790:353:0;;;;;:::i;:::-;;:::i;39540:189::-;;;;;;;;;;-1:-1:-1;39540:189:0;;;;;:::i;:::-;;:::i;56211:264::-;;;;;;;;;;-1:-1:-1;56211:264:0;;;;;:::i;:::-;;:::i;55352:201::-;;;;;;;;;;-1:-1:-1;55352:201:0;;;;;:::i;:::-;;:::i;72786:116::-;;;;;;;;;;-1:-1:-1;72786:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;72872:22:0;72845:7;72872:22;;;:12;:22;;;;;;;72786:116;65720:430;;;;;;;;;;-1:-1:-1;65720:430:0;;;;;:::i;:::-;;:::i;72974:186::-;73092:4;73116:36;73140:11;73116:23;:36::i;:::-;73109:43;72974:186;-1:-1:-1;;72974:186:0:o;37446:100::-;37500:13;37533:5;37526:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37446:100;:::o;39030:187::-;39122:7;39142:23;39157:7;39142:14;:23::i;:::-;-1:-1:-1;39185:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39185:24:0;;39030:187::o;38548:416::-;38629:13;38645:23;38660:7;38645:14;:23::i;:::-;38629:39;;38693:5;-1:-1:-1;;;;;38687:11:0;:2;-1:-1:-1;;;;;38687:11:0;;38679:57;;;;-1:-1:-1;;;38679:57:0;;10976:2:1;38679:57:0;;;10958:21:1;11015:2;10995:18;;;10988:30;11054:34;11034:18;;;11027:62;-1:-1:-1;;;11105:18:1;;;11098:31;11146:19;;38679:57:0;;;;;;;;;11537:10;-1:-1:-1;;;;;38771:21:0;;;;:62;;-1:-1:-1;38796:37:0;38813:5;11537:10;39540:189;:::i;38796:37::-;38749:173;;;;-1:-1:-1;;;38749:173:0;;11378:2:1;38749:173:0;;;11360:21:1;11417:2;11397:18;;;11390:30;11456:34;11436:18;;;11429:62;11527:31;11507:18;;;11500:59;11576:19;;38749:173:0;11176:425:1;38749:173:0;38935:21;38944:2;38948:7;38935:8;:21::i;:::-;38618:346;38548:416;;:::o;71047:103::-;54332:13;:11;:13::i;:::-;71112:9:::1;:30:::0;;;::::1;;-1:-1:-1::0;;;71112:30:0::1;-1:-1:-1::0;;;;71112:30:0;;::::1;::::0;;;::::1;::::0;;71047:103::o;72354:271::-;72595:9;:22;72400:13;;72595:22;;;;;;;72559:20;;;;;;72519:24;;;;;;72447:56;;72595:22;72483:20;;;;;72447;:56;:::i;:::-;:96;;;;:::i;:::-;:132;;;;:::i;:::-;:170;;;;:::i;:::-;72426:191;;;;72354:271;:::o;67517:116::-;54332:13;:11;:13::i;:::-;67599:26:::1;67609:4;67615:9;67599;:26::i;:::-;67517:116:::0;;:::o;39796:372::-;40005:41;11537:10;40038:7;40005:18;:41::i;:::-;39983:136;;;;-1:-1:-1;;;39983:136:0;;;;;;;:::i;:::-;40132:28;40142:4;40148:2;40152:7;40132:9;:28::i;66213:560::-;54332:13;:11;:13::i;:::-;66304:9:::1;:24:::0;;;::::1;;;919:2;66361:19;66370:3:::0;66304:24;66361:19:::1;:::i;:::-;:37;;66339:111;;;::::0;-1:-1:-1;;;66339:111:0;;12637:2:1;66339:111:0::1;::::0;::::1;12619:21:1::0;12676:2;12656:18;;;12649:30;12715:26;12695:18;;;12688:54;12759:18;;66339:111:0::1;12435:348:1::0;66339:111:0::1;66491:9;66486:207;66506:14:::0;;::::1;66486:207;;;66546:131;66578:3;;66582:1;66578:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;66607:51:::0;;;:38;:51;66546:9:::1;:131::i;:::-;66522:3;;66486:207;;;-1:-1:-1::0;;66709:9:0::1;:45:::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;;::::0;;::::1;-1:-1:-1::0;;66709:45:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;66213:560:0:o;59505:442::-;59602:7;59660:27;;;:17;:27;;;;;;;;59631:56;;;;;;;;;-1:-1:-1;;;;;59631:56:0;;;;;-1:-1:-1;;;59631:56:0;;;-1:-1:-1;;;;;59631:56:0;;;;;;;;59602:7;;59700:92;;-1:-1:-1;59751:29:0;;;;;;;;;59761:19;59751:29;-1:-1:-1;;;;;59751:29:0;;;;-1:-1:-1;;;59751:29:0;;-1:-1:-1;;;;;59751:29:0;;;;;59700:92;59842:23;;;;59804:21;;60313:5;;59829:36;;-1:-1:-1;;;;;59829:36:0;:10;:36;:::i;:::-;59828:58;;;;:::i;:::-;59907:16;;;-1:-1:-1;59804:82:0;;-1:-1:-1;;59505:442:0;;;;;;:::o;63800:990::-;63857:7;494:1;63881:8;:20;63877:906;;;-1:-1:-1;552:4:0;;63800:990;-1:-1:-1;63800:990:0:o;63877:906::-;63967:25;634:1;494;63967:25;:::i;:::-;63956:8;:36;63952:831;;;-1:-1:-1;700:3:0;;63800:990;-1:-1:-1;63800:990:0:o;63952:831::-;777:2;64062:25;634:1;494;64062:25;:::i;:::-;:38;;;;:::i;:::-;64051:8;:49;64047:736;;;-1:-1:-1;838:3:0;;63800:990;-1:-1:-1;63800:990:0:o;64047:736::-;919:2;777;64181:25;634:1;494;64181:25;:::i;:::-;:38;;;;:::i;:::-;:55;;;;:::i;:::-;64170:8;:66;64152:631;;;-1:-1:-1;988:3:0;;63800:990;-1:-1:-1;63800:990:0:o;64152:631::-;1065:3;919:2;777;64344:25;634:1;494;64344:25;:::i;:::-;:38;;;;:::i;:::-;:55;;;;:::i;:::-;:68;;;;:::i;:::-;64320:8;:92;64302:481;;;-1:-1:-1;1127:2:0;;63800:990;-1:-1:-1;63800:990:0:o;64302:481::-;1208:2;1065:3;919:2;777;64516:42;634:1;494;64516:42;:::i;:::-;:72;;;;:::i;:::-;:106;;;;:::i;:::-;:136;;;;:::i;:::-;:168;;;;:::i;:::-;64492:8;:192;64474:309;;;-1:-1:-1;1273:2:0;;63800:990;-1:-1:-1;63800:990:0:o;64474:309::-;-1:-1:-1;64770:1:0;;63800:990;-1:-1:-1;63800:990:0:o;64474:309::-;63800:990;;;:::o;72633:145::-;54332:13;:11;:13::i;:::-;72733:37:::1;::::0;72701:21:::1;::::0;72741:10:::1;::::0;72733:37;::::1;;;::::0;72701:21;;72683:15:::1;72733:37:::0;72683:15;72733:37;72701:21;72741:10;72733:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;40239:185:::0;40377:39;40394:4;40400:2;40404:7;40377:39;;;;;;;;;;;;:16;:39::i;56483:264::-;54332:13;:11;:13::i;:::-;56629:9:::1;56624:116;56644:21:::0;;::::1;56624:116;;;56716:9;;56726:1;56716:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;56687:10;:25;56698:10;;56709:1;56698:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56687:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;56687:25:0;;;:41;;:25;;-1:-1:-1;56687:41:0::1;::::0;;;::::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;56667:3;;;;;:::i;:::-;;;;56624:116;;;;56483:264:::0;;;;:::o;37140:239::-;37228:7;42292:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42292:16:0;;37292:56;;;;-1:-1:-1;;;37292:56:0;;13945:2:1;37292:56:0;;;13927:21:1;13984:2;13964:18;;;13957:30;-1:-1:-1;;;14003:18:1;;;13996:54;14067:18;;37292:56:0;13743:348:1;69107:259:0;62982:9;:22;-1:-1:-1;;;62982:22:0;;;;62974:69;;;;-1:-1:-1;;;62974:69:0;;14298:2:1;62974:69:0;;;14280:21:1;14337:2;14317:18;;;14310:30;14376:34;14356:18;;;14349:62;-1:-1:-1;;;14427:18:1;;;14420:32;14469:19;;62974:69:0;14096:398:1;62974:69:0;69240:9:::1;:25:::0;69228:37:::1;::::0;-1:-1:-1;;;69240:25:0;::::1;-1:-1:-1::0;;;;;69240:25:0::1;69228:37;::::0;::::1;;:::i;:::-;-1:-1:-1::0;;;;;69215:50:0::1;:9;:50;69193:120;;;::::0;-1:-1:-1;;;69193:120:0;;14971:2:1;69193:120:0::1;::::0;::::1;14953:21:1::0;15010:2;14990:18;;;14983:30;-1:-1:-1;;;15029:18:1;;;15022:50;15089:18;;69193:120:0::1;14769:344:1::0;69193:120:0::1;69324:34;69336:10;69348:9;69324:11;:34::i;:::-;69107:259:::0;:::o;65121:467::-;54332:13;:11;:13::i;:::-;-1:-1:-1;;;;;65247:18:0;::::1;::::0;65243:106:::1;;65282:18;65292:4;65298:1;65282:9;:18::i;:::-;65315:9;:22:::0;;::::1;;::::0;:20:::1;:22;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;65243:106;-1:-1:-1::0;;;;;65363:18:0;::::1;::::0;65359:106:::1;;65398:18;65408:4;65414:1;65398:9;:18::i;:::-;65431:9;:22:::0;;::::1;;::::0;:20:::1;:22;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;65359:106;-1:-1:-1::0;;;;;65479:18:0;::::1;::::0;65475:106:::1;;65514:18;65524:4;65530:1;65514:9;:18::i;:::-;65547:9;:22:::0;;::::1;;::::0;:20:::1;:22;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;65121:467:::0;;;:::o;72253:93::-;72295:13;72328:10;:8;:10::i;:::-;72321:17;;72253:93;:::o;69374:120::-;54332:13;:11;:13::i;:::-;69458:28:::1;69470:4;69476:9;69458:11;:28::i;36818:260::-:0;36906:7;-1:-1:-1;;;;;36948:19:0;;36926:110;;;;-1:-1:-1;;;36926:110:0;;15500:2:1;36926:110:0;;;15482:21:1;15539:2;15519:18;;;15512:30;15578:34;15558:18;;;15551:62;-1:-1:-1;;;15629:18:1;;;15622:39;15678:19;;36926:110:0;15298:405:1;36926:110:0;-1:-1:-1;;;;;;37054:16:0;;;;;:9;:16;;;;;;;36818:260::o;55094:103::-;54332:13;:11;:13::i;:::-;55159:30:::1;55186:1;55159:18;:30::i;:::-;55094:103::o:0;63681:111::-;54332:13;:11;:13::i;:::-;63750:9:::1;:34:::0;;-1:-1:-1;;;;;63750:34:0;;::::1;-1:-1:-1::0;;;63750:34:0::1;-1:-1:-1::0;;;;63750:34:0;;::::1;::::0;;;::::1;::::0;;63681:111::o;71158:107::-;54332:13;:11;:13::i;:::-;71225:9:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;71225:32:0::1;-1:-1:-1::0;;;;71225:32:0;;::::1;::::0;;;::::1;::::0;;71158:107::o;63261:297::-;54332:13;:11;:13::i;:::-;1504:3:::1;-1:-1:-1::0;;;;;63397:33:0;::::1;;;63375:114;;;::::0;-1:-1:-1;;;63375:114:0;;15910:2:1;63375:114:0::1;::::0;::::1;15892:21:1::0;15949:2;15929:18;;;15922:30;15988:33;15968:18;;;15961:61;16039:18;;63375:114:0::1;15708:355:1::0;63375:114:0::1;63500:50;63527:9;63538:11;63500:26;:50::i;37615:104::-:0;37671:13;37704:7;37697:14;;;;;:::i;39289:180::-;39409:52;11537:10;39442:8;39452;39409:18;:52::i;40495:359::-;40683:41;11537:10;40716:7;40683:18;:41::i;:::-;40661:136;;;;-1:-1:-1;;;40661:136:0;;;;;;;:::i;:::-;40808:38;40822:4;40828:2;40832:7;40841:4;40808:13;:38::i;:::-;40495:359;;;;:::o;66832:460::-;62846:9;:20;-1:-1:-1;;;62846:20:0;;;;62838:65;;;;-1:-1:-1;;;62838:65:0;;16270:2:1;62838:65:0;;;16252:21:1;;;16289:18;;;16282:30;16348:34;16328:18;;;16321:62;16400:18;;62838:65:0;16068:356:1;62838:65:0;56084:10:::1;56073:22;::::0;;;:10:::1;:22;::::0;;;;;66927:9;;56073:35:::1;::::0;;::::1;:22:::0;::::1;:35;;56051:132;;;::::0;-1:-1:-1;;;56051:132:0;;16631:2:1;56051:132:0::1;::::0;::::1;16613:21:1::0;16670:2;16650:18;;;16643:30;16709:34;16689:18;;;16682:62;-1:-1:-1;;;16760:18:1;;;16753:45;16815:19;;56051:132:0::1;16429:411:1::0;56051:132:0::1;66996:9:::2;:23:::0;66984:35:::2;::::0;66996:23;;::::2;-1:-1:-1::0;;;;;66996:23:0::2;66984:35;::::0;::::2;;:::i;:::-;-1:-1:-1::0;;;;;66971:48:0::2;:9;:48;66949:118;;;::::0;-1:-1:-1;;;66949:118:0;;14971:2:1;66949:118:0::2;::::0;::::2;14953:21:1::0;15010:2;14990:18;;;14983:30;-1:-1:-1;;;15029:18:1;;;15022:50;15089:18;;66949:118:0::2;14769:344:1::0;66949:118:0::2;410:2;67124:9;67100:33;;:21;67110:10;67100:9;:21::i;:::-;:33;;;;:::i;:::-;:45;;67078:111;;;::::0;-1:-1:-1;;;67078:111:0;;17047:2:1;67078:111:0::2;::::0;::::2;17029:21:1::0;17086:2;17066:18;;;17059:30;-1:-1:-1;;;17105:18:1;;;17098:46;17161:18;;67078:111:0::2;16845:340:1::0;67078:111:0::2;67219:10;56921:20:::0;;;;:10;:20;;;;;:33;;;;;;;;;;-1:-1:-1;;56921:33:0;;;;;;67252:32:::2;67262:10;67274:9;67252;:32::i;63566:107::-:0;54332:13;:11;:13::i;:::-;63633:9:::1;:32:::0;;-1:-1:-1;;;;;63633:32:0;;::::1;::::0;::::1;-1:-1:-1::0;;63633:32:0;;::::1;::::0;;;::::1;::::0;;63566:107::o;37790:353::-;37879:13;37905:23;37920:7;37905:14;:23::i;:::-;37941:21;37965:10;:8;:10::i;:::-;37941:34;;38030:1;38012:7;38006:21;:25;:129;;;;;;;;;;;;;;;;;38075:7;38084:18;:7;:16;:18::i;:::-;38058:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38006:129;37986:149;37790:353;-1:-1:-1;;;37790:353:0:o;39540:189::-;-1:-1:-1;;;;;39686:25:0;;;39662:4;39686:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39540:189::o;56211:264::-;54332:13;:11;:13::i;:::-;56357:9:::1;56352:116;56372:21:::0;;::::1;56352:116;;;56444:9;;56454:1;56444:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;56415:10;:25;56426:10;;56437:1;56426:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56415:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;56415:25:0;;;:41;;:25;;-1:-1:-1;56415:41:0::1;::::0;;;::::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;56395:3;;;;;:::i;:::-;;;;56352:116;;55352:201:::0;54332:13;:11;:13::i;:::-;-1:-1:-1;;;;;55441:22:0;::::1;55433:73;;;::::0;-1:-1:-1;;;55433:73:0;;18060:2:1;55433:73:0::1;::::0;::::1;18042:21:1::0;18099:2;18079:18;;;18072:30;18138:34;18118:18;;;18111:62;-1:-1:-1;;;18189:18:1;;;18182:36;18235:19;;55433:73:0::1;17858:402:1::0;55433:73:0::1;55517:28;55536:8;55517:18;:28::i;65720:430::-:0;54332:13;:11;:13::i;:::-;65808:9:::1;:20:::0;::::1;::::0;::::1;;;777:2;65847:20;65857:3:::0;65808:20;65847::::1;:::i;:::-;:34;;65839:67;;;::::0;-1:-1:-1;;;65839:67:0;;18467:2:1;65839:67:0::1;::::0;::::1;18449:21:1::0;18506:2;18486:18;;;18479:30;-1:-1:-1;;;18525:18:1;;;18518:50;18585:18;;65839:67:0::1;18265:344:1::0;65839:67:0::1;65947:9;65942:134;65962:14:::0;;::::1;65942:134;;;66002:58;66012:3;;66016:1;66012:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;66020:39:::0;;;:25;:39;66002:9:::1;:58::i;:::-;65978:3;;65942:134;;;-1:-1:-1::0;;66090:9:0::1;:41:::0;;::::1;;::::0;;::::1;::::0;::::1;::::0;;::::1;;::::0;;::::1;-1:-1:-1::0;;66090:41:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;65720:430:0:o;59235:215::-;59337:4;-1:-1:-1;;;;;;59361:41:0;;-1:-1:-1;;;59361:41:0;;:81;;;59406:36;59430:11;59406:23;:36::i;49151:135::-;42694:4;42292:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42292:16:0;49225:53;;;;-1:-1:-1;;;49225:53:0;;13945:2:1;49225:53:0;;;13927:21:1;13984:2;13964:18;;;13957:30;-1:-1:-1;;;14003:18:1;;;13996:54;14067:18;;49225:53:0;13743:348:1;48430:174:0;48505:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;48505:29:0;-1:-1:-1;;;;;48505:29:0;;;;;;;;:24;;48559:23;48505:24;48559:14;:23::i;:::-;-1:-1:-1;;;;;48550:46:0;;;;;;;;;;;48430:174;;:::o;54611:132::-;54519:6;;-1:-1:-1;;;;;54519:6:0;11537:10;54675:23;54667:68;;;;-1:-1:-1;;;54667:68:0;;18816:2:1;54667:68:0;;;18798:21:1;;;18835:18;;;18828:30;18894:34;18874:18;;;18867:62;18946:18;;54667:68:0;18614:356:1;67641:1405:0;67733:9;:20;1065:3;;67733:32;;67756:9;;67733:20;;;;;:32;:::i;:::-;:46;;;;67711:116;;;;-1:-1:-1;;;67711:116:0;;19177:2:1;67711:116:0;;;19159:21:1;19216:2;19196:18;;;19189:30;-1:-1:-1;;;19235:18:1;;;19228:50;19295:18;;67711:116:0;18975:344:1;67711:116:0;68130:9;:20;67928:258;;67977:1;;67998:4;;68130:20;;;;;919:2;68021:47;777:2;634:1;68021:47;:::i;:::-;:85;;;;:::i;:::-;:129;;;;:::i;:::-;67928:258;;;;;;;;;;;;:22;:258::i;:::-;67906:358;;;;-1:-1:-1;;;67906:358:0;;;;;;;:::i;:::-;68305:9;68300:376;68324:9;68320:13;;:1;:13;68300:376;;;68592:9;:20;68359:301;;68407:4;;68592:20;;;;;;68434:207;;:130;:207;68359:25;:301::i;:::-;68335:3;;68300:376;;;-1:-1:-1;68692:9:0;:33;;;;;;;;;;;;;;;-1:-1:-1;;68692:33:0;;;;;;:20;68762:143;68789:47;68762:8;:143::i;:::-;-1:-1:-1;;;;;68939:18:0;;;;;;:12;:18;;;;;;68740:165;;-1:-1:-1;68920:64:0;;68933:4;;68960:23;;;;;68939:44;68920:12;:64::i;:::-;-1:-1:-1;;;;;;68999:15:0;;;;;;;:9;:15;;;;;:28;;;;;;;;;;;;67641:1405::o;42924:315::-;43042:4;43059:13;43075:23;43090:7;43075:14;:23::i;:::-;43059:39;;43128:5;-1:-1:-1;;;;;43117:16:0;:7;-1:-1:-1;;;;;43117:16:0;;:65;;;;43150:32;43167:5;43174:7;43150:16;:32::i;:::-;43117:113;;;;43223:7;-1:-1:-1;;;;;43199:31:0;:20;43211:7;43199:11;:20::i;:::-;-1:-1:-1;;;;;43199:31:0;;43117:113;43109:122;42924:315;-1:-1:-1;;;;42924:315:0:o;46974:1337::-;47147:4;-1:-1:-1;;;;;47120:31:0;:23;47135:7;47120:14;:23::i;:::-;-1:-1:-1;;;;;47120:31:0;;47098:118;;;;-1:-1:-1;;;47098:118:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47235:16:0;;47227:65;;;;-1:-1:-1;;;47227:65:0;;20351:2:1;47227:65:0;;;20333:21:1;20390:2;20370:18;;;20363:30;20429:34;20409:18;;;20402:62;-1:-1:-1;;;20480:18:1;;;20473:34;20524:19;;47227:65:0;20149:400:1;47227:65:0;47491:4;-1:-1:-1;;;;;47464:31:0;:23;47479:7;47464:14;:23::i;:::-;-1:-1:-1;;;;;47464:31:0;;47442:118;;;;-1:-1:-1;;;47442:118:0;;;;;;;:::i;:::-;47632:24;;;;:15;:24;;;;;;;;47625:31;;-1:-1:-1;;;;;;47625:31:0;;;;;;-1:-1:-1;;;;;48108:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;48108:20:0;;;48143:13;;;;;;;;;:18;;47625:31;48143:18;;;48183:16;;;:7;:16;;;;;;:21;;;;;;;;;;48222:27;;47648:7;;48222:27;;;48262:41;48282:4;48288:2;48292:7;48301:1;48262:19;:41::i;43581:110::-;43657:26;43667:2;43671:7;43657:26;;;;;;;;;;;;:9;:26::i;69502:1521::-;69596:9;:22;1208:2;;69596:34;;69621:9;;69596:22;;;;;:34;:::i;:::-;:50;;;;69574:122;;;;-1:-1:-1;;;69574:122:0;;20756:2:1;69574:122:0;;;20738:21:1;20795:2;20775:18;;;20768:30;-1:-1:-1;;;20814:18:1;;;20807:52;20876:18;;69574:122:0;20554:346:1;69574:122:0;410:2;69733:9;69715:27;;:15;69725:4;69715:9;:15::i;:::-;:27;;;;:::i;:::-;:39;;69707:68;;;;-1:-1:-1;;;69707:68:0;;17047:2:1;69707:68:0;;;17029:21:1;17086:2;17066:18;;;17059:30;-1:-1:-1;;;17105:18:1;;;17098:46;17161:18;;69707:68:0;16845:340:1;69707:68:0;70046:9;:22;69810:294;;69859:1;;69880:4;;70046:22;;;;;1065:3;919:2;69903:47;777:2;634:1;69903:47;:::i;:::-;:85;;;;:::i;69810:294::-;69788:394;;;;-1:-1:-1;;;69788:394:0;;;;;;;:::i;:::-;70223:9;70218:416;70242:9;70238:13;;:1;:13;70218:416;;;70548:9;:22;70277:341;;70325:4;;70548:22;;;;;;70352:247;;:168;:247;70277:25;:341::i;:::-;70253:3;;70218:416;;;-1:-1:-1;70650:9:0;:35;;;;;;;;;;;;;;;-1:-1:-1;;70650:35:0;;;;;;:22;70722:160;70749:60;70722:8;:160::i;72136:109::-;72196:13;72229:8;;;;;;;;;;;;;;;;;72222:15;;72136:109;:::o;55713:191::-;55806:6;;;-1:-1:-1;;;;;55823:17:0;;;-1:-1:-1;;;;;;55823:17:0;;;;;;;55856:40;;55806:6;;;55823:17;55806:6;;55856:40;;55787:16;;55856:40;55776:128;55713:191;:::o;60597:332::-;60313:5;-1:-1:-1;;;;;60700:33:0;;;;60692:88;;;;-1:-1:-1;;;60692:88:0;;21107:2:1;60692:88:0;;;21089:21:1;21146:2;21126:18;;;21119:30;21185:34;21165:18;;;21158:62;-1:-1:-1;;;21236:18:1;;;21229:40;21286:19;;60692:88:0;20905:406:1;60692:88:0;-1:-1:-1;;;;;60799:22:0;;60791:60;;;;-1:-1:-1;;;60791:60:0;;21518:2:1;60791:60:0;;;21500:21:1;21557:2;21537:18;;;21530:30;21596:27;21576:18;;;21569:55;21641:18;;60791:60:0;21316:349:1;60791:60:0;60886:35;;;;;;;;;-1:-1:-1;;;;;60886:35:0;;;;;;-1:-1:-1;;;;;60886:35:0;;;;;;;;;;-1:-1:-1;;;60864:57:0;;;;:19;:57;60597:332::o;48747:315::-;48902:8;-1:-1:-1;;;;;48893:17:0;:5;-1:-1:-1;;;;;48893:17:0;;48885:55;;;;-1:-1:-1;;;48885:55:0;;21872:2:1;48885:55:0;;;21854:21:1;21911:2;21891:18;;;21884:30;21950:27;21930:18;;;21923:55;21995:18;;48885:55:0;21670:349:1;48885:55:0;-1:-1:-1;;;;;48951:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;48951:46:0;;;;;;;;;;49013:41;;636::1;;;49013::0;;609:18:1;49013:41:0;;;;;;;48747:315;;;:::o;41735:350::-;41891:28;41901:4;41907:2;41911:7;41891:9;:28::i;:::-;41952:47;41975:4;41981:2;41985:7;41994:4;41952:22;:47::i;:::-;41930:147;;;;-1:-1:-1;;;41930:147:0;;;;;;;:::i;26569:716::-;26625:13;26676:14;26693:17;26704:5;26693:10;:17::i;:::-;26713:1;26693:21;26676:38;;26729:20;26763:6;26752:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26752:18:0;-1:-1:-1;26729:41:0;-1:-1:-1;26894:28:0;;;26910:2;26894:28;26951:288;-1:-1:-1;;26983:5:0;-1:-1:-1;;;27120:2:0;27109:14;;27104:30;26983:5;27091:44;27181:2;27172:11;;;-1:-1:-1;27202:21:0;26951:288;27202:21;-1:-1:-1;27260:6:0;26569:716;-1:-1:-1;;;26569:716:0:o;36433:321::-;36551:4;-1:-1:-1;;;;;;36588:40:0;;-1:-1:-1;;;36588:40:0;;:105;;-1:-1:-1;;;;;;;36645:48:0;;-1:-1:-1;;;36645:48:0;36588:105;:158;;;-1:-1:-1;;;;;;;;;;13373:40:0;;;36710:36;13264:157;49850:1035;50005:4;-1:-1:-1;;;;;50026:13:0;;2958:19;:23;50022:856;;50079:174;;-1:-1:-1;;;50079:174:0;;-1:-1:-1;;;;;50079:36:0;;;;;:174;;11537:10;;50173:4;;50200:7;;50230:4;;50079:174;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50079:174:0;;;;;;;;-1:-1:-1;;50079:174:0;;;;;;;;;;;;:::i;:::-;;;50058:765;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50436:6;:13;50453:1;50436:18;50432:376;;50479:108;;-1:-1:-1;;;50479:108:0;;;;;;;:::i;50432:376::-;50758:6;50752:13;50743:6;50739:2;50735:15;50728:38;50058:765;-1:-1:-1;;;;;;50317:51:0;-1:-1:-1;;;50317:51:0;;-1:-1:-1;50310:58:0;;50022:856;-1:-1:-1;50862:4:0;49850:1035;;;;;;:::o;71273:197::-;71390:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;71390:21:0;-1:-1:-1;;;;;71390:21:0;;;;;;;;71429:33;;71390:16;;;71429:33;;71390:16;;71429:33;71273:197;;:::o;71967:161::-;-1:-1:-1;;;;;72043:22:0;;;;;;:12;:22;;;;;;;:31;;;72090:30;;;;;72068:6;2770:25:1;;2758:2;2743:18;;2624:177;72090:30:0;;;;;;;;71967:161;;:::o;71478:412::-;71637:20;71660:15;71669:5;71660:8;:15::i;:::-;71637:38;-1:-1:-1;;;;;;71715:18:0;;;71711:94;;-1:-1:-1;;;;;71771:18:0;;;;;;:12;:18;;;;;;71752:53;;71765:4;;71771:33;;;71752:12;:53::i;:::-;-1:-1:-1;;;;;71839:16:0;;;;;;:12;:16;;;;;;71822:49;;71835:2;;71839:31;;71822:12;:49::i;43918:319::-;44047:18;44053:2;44057:7;44047:5;:18::i;:::-;44098:53;44129:1;44133:2;44137:7;44146:4;44098:22;:53::i;:::-;44076:153;;;;-1:-1:-1;;;44076:153:0;;;;;;;:::i;23517:922::-;23570:7;;-1:-1:-1;;;23648:15:0;;23644:102;;-1:-1:-1;;;23684:15:0;;;-1:-1:-1;23728:2:0;23718:12;23644:102;23773:6;23764:5;:15;23760:102;;23809:6;23800:15;;;-1:-1:-1;23844:2:0;23834:12;23760:102;23889:6;23880:5;:15;23876:102;;23925:6;23916:15;;;-1:-1:-1;23960:2:0;23950:12;23876:102;24005:5;23996;:14;23992:99;;24040:5;24031:14;;;-1:-1:-1;24074:1:0;24064:11;23992:99;24118:5;24109;:14;24105:99;;24153:5;24144:14;;;-1:-1:-1;24187:1:0;24177:11;24105:99;24231:5;24222;:14;24218:99;;24266:5;24257:14;;;-1:-1:-1;24300:1:0;24290:11;24218:99;24344:5;24335;:14;24331:66;;24380:1;24370:11;24425:6;23517:922;-1:-1:-1;;23517:922:0:o;44573:942::-;-1:-1:-1;;;;;44653:16:0;;44645:61;;;;-1:-1:-1;;;44645:61:0;;22974:2:1;44645:61:0;;;22956:21:1;;;22993:18;;;22986:30;23052:34;23032:18;;;23025:62;23104:18;;44645:61:0;22772:356:1;44645:61:0;42694:4;42292:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42292:16:0;42718:31;44717:58;;;;-1:-1:-1;;;44717:58:0;;23335:2:1;44717:58:0;;;23317:21:1;23374:2;23354:18;;;23347:30;23413;23393:18;;;23386:58;23461:18;;44717:58:0;23133:352:1;44717:58:0;42694:4;42292:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42292:16:0;42718:31;44926:58;;;;-1:-1:-1;;;44926:58:0;;23335:2:1;44926:58:0;;;23317:21:1;23374:2;23354:18;;;23347:30;23413;23393:18;;;23386:58;23461:18;;44926:58:0;23133:352:1;44926:58:0;-1:-1:-1;;;;;45333:13:0;;;;;;:9;:13;;;;;;;;:18;;45350:1;45333:18;;;45375:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;45375:21:0;;;;;45414:33;45383:7;;45333:13;;45414:33;;45333:13;;45414:33;45460:47;45488:1;45492:2;45496:7;45505:1;45460:19;:47::i;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;688:250::-;773:1;783:113;797:6;794:1;791:13;783:113;;;873:11;;;867:18;854:11;;;847:39;819:2;812:10;783:113;;;-1:-1:-1;;930:1:1;912:16;;905:27;688:250::o;943:271::-;985:3;1023:5;1017:12;1050:6;1045:3;1038:19;1066:76;1135:6;1128:4;1123:3;1119:14;1112:4;1105:5;1101:16;1066:76;:::i;:::-;1196:2;1175:15;-1:-1:-1;;1171:29:1;1162:39;;;;1203:4;1158:50;;943:271;-1:-1:-1;;943:271:1:o;1219:220::-;1368:2;1357:9;1350:21;1331:4;1388:45;1429:2;1418:9;1414:18;1406:6;1388:45;:::i;1444:180::-;1503:6;1556:2;1544:9;1535:7;1531:23;1527:32;1524:52;;;1572:1;1569;1562:12;1524:52;-1:-1:-1;1595:23:1;;1444:180;-1:-1:-1;1444:180:1:o;1837:173::-;1905:20;;-1:-1:-1;;;;;1954:31:1;;1944:42;;1934:70;;2000:1;1997;1990:12;2015:254;2083:6;2091;2144:2;2132:9;2123:7;2119:23;2115:32;2112:52;;;2160:1;2157;2150:12;2112:52;2183:29;2202:9;2183:29;:::i;:::-;2173:39;2259:2;2244:18;;;;2231:32;;-1:-1:-1;;;2015:254:1:o;2274:160::-;2339:20;;2395:13;;2388:21;2378:32;;2368:60;;2424:1;2421;2414:12;2439:180;2495:6;2548:2;2536:9;2527:7;2523:23;2519:32;2516:52;;;2564:1;2561;2554:12;2516:52;2587:26;2603:9;2587:26;:::i;2806:156::-;2872:20;;2932:4;2921:16;;2911:27;;2901:55;;2952:1;2949;2942:12;2967:256;3033:6;3041;3094:2;3082:9;3073:7;3069:23;3065:32;3062:52;;;3110:1;3107;3100:12;3062:52;3133:29;3152:9;3133:29;:::i;:::-;3123:39;;3181:36;3213:2;3202:9;3198:18;3181:36;:::i;:::-;3171:46;;2967:256;;;;;:::o;3228:328::-;3305:6;3313;3321;3374:2;3362:9;3353:7;3349:23;3345:32;3342:52;;;3390:1;3387;3380:12;3342:52;3413:29;3432:9;3413:29;:::i;:::-;3403:39;;3461:38;3495:2;3484:9;3480:18;3461:38;:::i;:::-;3451:48;;3546:2;3535:9;3531:18;3518:32;3508:42;;3228:328;;;;;:::o;3561:367::-;3624:8;3634:6;3688:3;3681:4;3673:6;3669:17;3665:27;3655:55;;3706:1;3703;3696:12;3655:55;-1:-1:-1;3729:20:1;;3772:18;3761:30;;3758:50;;;3804:1;3801;3794:12;3758:50;3841:4;3833:6;3829:17;3817:29;;3901:3;3894:4;3884:6;3881:1;3877:14;3869:6;3865:27;3861:38;3858:47;3855:67;;;3918:1;3915;3908:12;3933:437;4019:6;4027;4080:2;4068:9;4059:7;4055:23;4051:32;4048:52;;;4096:1;4093;4086:12;4048:52;4136:9;4123:23;4169:18;4161:6;4158:30;4155:50;;;4201:1;4198;4191:12;4155:50;4240:70;4302:7;4293:6;4282:9;4278:22;4240:70;:::i;:::-;4329:8;;4214:96;;-1:-1:-1;3933:437:1;-1:-1:-1;;;;3933:437:1:o;4375:248::-;4443:6;4451;4504:2;4492:9;4483:7;4479:23;4475:32;4472:52;;;4520:1;4517;4510:12;4472:52;-1:-1:-1;;4543:23:1;;;4613:2;4598:18;;;4585:32;;-1:-1:-1;4375:248:1:o;4907:771::-;5027:6;5035;5043;5051;5104:2;5092:9;5083:7;5079:23;5075:32;5072:52;;;5120:1;5117;5110:12;5072:52;5160:9;5147:23;5189:18;5230:2;5222:6;5219:14;5216:34;;;5246:1;5243;5236:12;5216:34;5285:70;5347:7;5338:6;5327:9;5323:22;5285:70;:::i;:::-;5374:8;;-1:-1:-1;5259:96:1;-1:-1:-1;5462:2:1;5447:18;;5434:32;;-1:-1:-1;5478:16:1;;;5475:36;;;5507:1;5504;5497:12;5475:36;;5546:72;5610:7;5599:8;5588:9;5584:24;5546:72;:::i;:::-;4907:771;;;;-1:-1:-1;5637:8:1;-1:-1:-1;;;;4907:771:1:o;5683:182::-;5740:6;5793:2;5781:9;5772:7;5768:23;5764:32;5761:52;;;5809:1;5806;5799:12;5761:52;5832:27;5849:9;5832:27;:::i;5870:334::-;5947:6;5955;5963;6016:2;6004:9;5995:7;5991:23;5987:32;5984:52;;;6032:1;6029;6022:12;5984:52;6055:29;6074:9;6055:29;:::i;:::-;6045:39;;6103:38;6137:2;6126:9;6122:18;6103:38;:::i;:::-;6093:48;;6160:38;6194:2;6183:9;6179:18;6160:38;:::i;:::-;6150:48;;5870:334;;;;;:::o;6209:186::-;6268:6;6321:2;6309:9;6300:7;6296:23;6292:32;6289:52;;;6337:1;6334;6327:12;6289:52;6360:29;6379:9;6360:29;:::i;6400:179::-;6467:20;;-1:-1:-1;;;;;6516:38:1;;6506:49;;6496:77;;6569:1;6566;6559:12;6584:184;6642:6;6695:2;6683:9;6674:7;6670:23;6666:32;6663:52;;;6711:1;6708;6701:12;6663:52;6734:28;6752:9;6734:28;:::i;7042:258::-;7109:6;7117;7170:2;7158:9;7149:7;7145:23;7141:32;7138:52;;;7186:1;7183;7176:12;7138:52;7209:29;7228:9;7209:29;:::i;:::-;7199:39;;7257:37;7290:2;7279:9;7275:18;7257:37;:::i;7305:254::-;7370:6;7378;7431:2;7419:9;7410:7;7406:23;7402:32;7399:52;;;7447:1;7444;7437:12;7399:52;7470:29;7489:9;7470:29;:::i;:::-;7460:39;;7518:35;7549:2;7538:9;7534:18;7518:35;:::i;7679:1165::-;7823:4;7865:3;7854:9;7850:19;7842:27;;7915:4;7906:6;7900:13;7896:24;7885:9;7878:43;7989:4;7981;7973:6;7969:17;7963:24;7959:35;7952:4;7941:9;7937:20;7930:65;8042:4;8034:6;8030:17;8024:24;8057:52;8103:4;8092:9;8088:20;8074:12;6840:4;6829:16;6817:29;;6773:75;8057:52;;8158:4;8150:6;8146:17;8140:24;8173:54;8221:4;8210:9;8206:20;8190:14;6840:4;6829:16;6817:29;;6773:75;8173:54;;8276:4;8268:6;8264:17;8258:24;8291:54;8339:4;8328:9;8324:20;8308:14;6840:4;6829:16;6817:29;;6773:75;8291:54;;8394:4;8386:6;8382:17;8376:24;8409:55;8458:4;8447:9;8443:20;8427:14;-1:-1:-1;;;;;7629:38:1;7617:51;;7564:110;8409:55;;8513:4;8505:6;8501:17;8495:24;8528:55;8577:4;8566:9;8562:20;8546:14;-1:-1:-1;;;;;7629:38:1;7617:51;;7564:110;8528:55;;8632:4;8624:6;8620:17;8614:24;8647:53;8694:4;8683:9;8679:20;8663:14;470:13;463:21;451:34;;400:91;8647:53;-1:-1:-1;8719:6:1;8762:15;;;8756:22;470:13;;463:21;8819:18;;;451:34;8787:51;;;7679:1165;;;;:::o;8849:127::-;8910:10;8905:3;8901:20;8898:1;8891:31;8941:4;8938:1;8931:15;8965:4;8962:1;8955:15;8981:1138;9076:6;9084;9092;9100;9153:3;9141:9;9132:7;9128:23;9124:33;9121:53;;;9170:1;9167;9160:12;9121:53;9193:29;9212:9;9193:29;:::i;:::-;9183:39;;9241:38;9275:2;9264:9;9260:18;9241:38;:::i;:::-;9231:48;;9326:2;9315:9;9311:18;9298:32;9288:42;;9381:2;9370:9;9366:18;9353:32;9404:18;9445:2;9437:6;9434:14;9431:34;;;9461:1;9458;9451:12;9431:34;9499:6;9488:9;9484:22;9474:32;;9544:7;9537:4;9533:2;9529:13;9525:27;9515:55;;9566:1;9563;9556:12;9515:55;9602:2;9589:16;9624:2;9620;9617:10;9614:36;;;9630:18;;:::i;:::-;9705:2;9699:9;9673:2;9759:13;;-1:-1:-1;;9755:22:1;;;9779:2;9751:31;9747:40;9735:53;;;9803:18;;;9823:22;;;9800:46;9797:72;;;9849:18;;:::i;:::-;9889:10;9885:2;9878:22;9924:2;9916:6;9909:18;9964:7;9959:2;9954;9950;9946:11;9942:20;9939:33;9936:53;;;9985:1;9982;9975:12;9936:53;10041:2;10036;10032;10028:11;10023:2;10015:6;10011:15;9998:46;10086:1;10081:2;10076;10068:6;10064:15;10060:24;10053:35;10107:6;10097:16;;;;;;;8981:1138;;;;;;;:::o;10124:260::-;10192:6;10200;10253:2;10241:9;10232:7;10228:23;10224:32;10221:52;;;10269:1;10266;10259:12;10221:52;10292:29;10311:9;10292:29;:::i;:::-;10282:39;;10340:38;10374:2;10363:9;10359:18;10340:38;:::i;10389:380::-;10468:1;10464:12;;;;10511;;;10532:61;;10586:4;10578:6;10574:17;10564:27;;10532:61;10639:2;10631:6;10628:14;10608:18;10605:38;10602:161;;10685:10;10680:3;10676:20;10673:1;10666:31;10720:4;10717:1;10710:15;10748:4;10745:1;10738:15;10602:161;;10389:380;;;:::o;11606:127::-;11667:10;11662:3;11658:20;11655:1;11648:31;11698:4;11695:1;11688:15;11722:4;11719:1;11712:15;11738:148;11826:4;11805:12;;;11819;;;11801:31;;11844:13;;11841:39;;;11860:18;;:::i;11891:409::-;12093:2;12075:21;;;12132:2;12112:18;;;12105:30;12171:34;12166:2;12151:18;;12144:62;-1:-1:-1;;;12237:2:1;12222:18;;12215:43;12290:3;12275:19;;11891:409::o;12305:125::-;12370:9;;;12391:10;;;12388:36;;;12404:18;;:::i;12788:127::-;12849:10;12844:3;12840:20;12837:1;12830:31;12880:4;12877:1;12870:15;12904:4;12901:1;12894:15;12920:168;12993:9;;;13024;;13041:15;;;13035:22;;13021:37;13011:71;;13062:18;;:::i;13225:217::-;13265:1;13291;13281:132;;13335:10;13330:3;13326:20;13323:1;13316:31;13370:4;13367:1;13360:15;13398:4;13395:1;13388:15;13281:132;-1:-1:-1;13427:9:1;;13225:217::o;13447:151::-;13537:4;13530:12;;;13516;;;13512:31;;13555:14;;13552:40;;;13572:18;;:::i;13603:135::-;13642:3;13663:17;;;13660:43;;13683:18;;:::i;:::-;-1:-1:-1;13730:1:1;13719:13;;13603:135::o;14499:265::-;-1:-1:-1;;;;;14628:10:1;;;14640;;;14624:27;14671:20;;;;14570:26;14710:24;;;14700:58;;14738:18;;:::i;15118:175::-;15155:3;15199:4;15192:5;15188:16;15228:4;15219:7;15216:17;15213:43;;15236:18;;:::i;:::-;15285:1;15272:15;;15118:175;-1:-1:-1;;15118:175:1:o;17190:663::-;17470:3;17508:6;17502:13;17524:66;17583:6;17578:3;17571:4;17563:6;17559:17;17524:66;:::i;:::-;17653:13;;17612:16;;;;17675:70;17653:13;17612:16;17722:4;17710:17;;17675:70;:::i;:::-;-1:-1:-1;;;17767:20:1;;17796:22;;;17845:1;17834:13;;17190:663;-1:-1:-1;;;;17190:663:1:o;19324:414::-;19526:2;19508:21;;;19565:2;19545:18;;;19538:30;19604:34;19599:2;19584:18;;19577:62;-1:-1:-1;;;19670:2:1;19655:18;;19648:48;19728:3;19713:19;;19324:414::o;19743:401::-;19945:2;19927:21;;;19984:2;19964:18;;;19957:30;20023:34;20018:2;20003:18;;19996:62;-1:-1:-1;;;20089:2:1;20074:18;;20067:35;20134:3;20119:19;;19743:401::o;22024:489::-;-1:-1:-1;;;;;22293:15:1;;;22275:34;;22345:15;;22340:2;22325:18;;22318:43;22392:2;22377:18;;22370:34;;;22440:3;22435:2;22420:18;;22413:31;;;22218:4;;22461:46;;22487:19;;22479:6;22461:46;:::i;:::-;22453:54;22024:489;-1:-1:-1;;;;;;22024:489:1:o;22518:249::-;22587:6;22640:2;22628:9;22619:7;22615:23;22611:32;22608:52;;;22656:1;22653;22646:12;22608:52;22688:9;22682:16;22707:30;22731:5;22707:30;:::i
Swarm Source
ipfs://b3283ab8083151dbcacf9836521acf6a60bf3e5fd3f8bf0f8b86fe424380c273
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.