ERC-721
Overview
Max Total Supply
38 EILabsAI_Discount_Pass
Holders
15
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 EILabsAI_Discount_PassLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
EILabsAI_Discount_Pass
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-06 */ // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error UnableDetermineTokenOwner(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal _currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { if (index >= totalSupply()) revert TokenIndexOutOfBounds(); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. assert(false); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert UnableDetermineTokenOwner(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved(); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer(); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer(); else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/EILabsAI_Discount_Pass.sol pragma solidity ^0.8.0; contract EILabsAI_Discount_Pass is ERC721A, Ownable{ using Strings for uint256; uint256 public maxSupply = 100; uint256 public constant MAX_PUBLIC_MINT = 2; uint256 public constant MAX_BURN_MINT = 2; uint256 public publicSalePrice = .0001 ether; // Will be set with the new function once burn is complete uint256 public burnMintCount = 0; string private baseTokenUri; string public placeholderTokenUri; //deploy smart contract, toggle WL, toggle WL when done, toggle publicSale //2 days later toggle reveal bool public publicSale; bool public pause; bool public teamMinted; bool public mintBurnEnabled = true; IERC721 tokenToBurn = IERC721(0x4A186C1F525f4C7D430aa3FceB93be958f4E35AC); address burnAddress = 0xE18E14581b3F79C1f947d99Fc4952c1621EF43b6; bytes32 private merkleRoot; mapping(address => uint256) public totalPublicMint; mapping(address => uint256) public totalMintBurn; constructor() ERC721A("EI Labs AI Discount Pass", "EILabsAI_Discount_Pass"){ } modifier callerIsUser() { require(tx.origin == msg.sender, "EILabsAI_Discount_Pass :: Cannot be called by a contract"); _; } function mint(uint256 _quantity) external payable callerIsUser{ require(publicSale, "EILabsAI_Discount_Pass :: Not Yet Active."); require((totalSupply() + _quantity) <= maxSupply, "EILabsAI_Discount_Pass :: Beyond Max Supply"); require((totalPublicMint[msg.sender] +_quantity) <= MAX_PUBLIC_MINT, "EILabsAI_Discount_Pass :: Already max minted!"); require(msg.value >= (publicSalePrice * _quantity), "EILabsAI_Discount_Pass :: Below "); totalPublicMint[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } function teamMint() external onlyOwner{ require(!teamMinted, "EILabsAI_Discount_Pass :: Team already minted"); teamMinted = true; _safeMint(msg.sender, 25); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenUri; } //return uri for certain token function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); uint256 trueId = tokenId; //string memory baseURI = _baseURI(); return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : ""; } /// @dev walletOf() function shouldn't be called on-chain due to gas consumption function walletOf() external view returns(uint256[] memory){ address _owner = msg.sender; uint256 numberOfOwnedNFT = balanceOf(_owner); uint256[] memory ownerIds = new uint256[](numberOfOwnedNFT); for(uint256 index = 0; index < numberOfOwnedNFT; index++){ ownerIds[index] = tokenOfOwnerByIndex(_owner, index); } return ownerIds; } function setTokenUri(string memory _baseTokenUri) external onlyOwner{ baseTokenUri = _baseTokenUri; } function setPlaceHolderUri(string memory _placeholderTokenUri) external onlyOwner{ placeholderTokenUri = _placeholderTokenUri; } function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner{ merkleRoot = _merkleRoot; } function getMerkleRoot() external view returns (bytes32){ return merkleRoot; } function togglePause() external onlyOwner{ pause = !pause; } function togglePublicSale() external onlyOwner{ publicSale = !publicSale; } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } function setPublicSalePrice(uint256 newPublicSalePrice) external onlyOwner { publicSalePrice = newPublicSalePrice; } function setMaxSupply(uint256 newMaxSupply) external onlyOwner { maxSupply = newMaxSupply; } function setMintBurnEnabled(bool _mintBurnEnabled) external onlyOwner { mintBurnEnabled = _mintBurnEnabled; } function mintBurn(uint256 _quantity, uint256[] calldata _tokenIds) external callerIsUser{ require(mintBurnEnabled, "EILabsAI_Discount_Pass :: Not Yet Active."); require((totalSupply() + _quantity) <= maxSupply, "EILabsAI_Discount_Pass :: Beyond Max Supply"); require((totalMintBurn[msg.sender] +_quantity) <= MAX_BURN_MINT, "EILabsAI_Discount_Pass :: Already max minted!"); require(_tokenIds.length == _quantity*2, "EILabsAI_Discount_Pass :: Not enough tokens to burn"); for(uint256 i = 0; i < _tokenIds.length; ++i){ require(tokenToBurn.getApproved(_tokenIds[i]) == address(this), "EILabsAI_Discount_Pass :: Token not approved"); } for(uint256 i = 0; i < _tokenIds.length; ++i){ tokenToBurn.transferFrom(msg.sender, address(burnAddress), _tokenIds[i]); } burnMintCount += _quantity*2; totalMintBurn[msg.sender] += _quantity; _safeMint(msg.sender, _quantity); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BURN_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"mintBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintBurnEnabled","type":"bool"}],"name":"setMintBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceHolderUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPublicSalePrice","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalMintBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526064600855655af3107a40006009556000600a556001600d60036101000a81548160ff021916908315150217905550734a186c1f525f4c7d430aa3fceb93be958f4e35ac600d60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e18e14581b3f79c1f947d99fc4952c1621ef43b6600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000ea57600080fd5b506040518060400160405280601881526020017f4549204c61627320414920446973636f756e74205061737300000000000000008152506040518060400160405280601681526020017f45494c61627341495f446973636f756e745f506173730000000000000000000081525081600190805190602001906200016f9291906200027f565b508060029080519060200190620001889291906200027f565b505050620001ab6200019f620001b160201b60201c565b620001b960201b60201c565b62000394565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028d906200032f565b90600052602060002090601f016020900481019282620002b15760008555620002fd565b82601f10620002cc57805160ff1916838001178555620002fd565b82800160010185558215620002fd579182015b82811115620002fc578251825591602001919060010190620002df565b5b5090506200030c919062000310565b5090565b5b808211156200032b57600081600090555060010162000311565b5090565b600060028204905060018216806200034857607f821691505b602082108114156200035f576200035e62000365565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61456080620003a46000396000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd14610910578063d5abeb011461094d578063e222c7f914610978578063e8b5498d1461098f578063e985e9c5146109ba578063f2fde38b146109f757610272565b8063a22cb4651461082a578063afc26f8514610853578063b0962c5314610890578063b88d4fde146108b9578063ba7a86b8146108e2578063c4ae3168146108f957610272565b806383a974a21161011357806383a974a2146107375780638456cb59146107625780638da5cb5b1461078d57806395d89b41146107b85780639b6860c8146107e3578063a0712d681461080e57610272565b806370a0823114610666578063715018a6146106a357806372a36dba146106ba578063791a2519146106e55780637cb647591461070e57610272565b806333bc1c5c116101e85780634f6ccce7116101ac5780634f6ccce7146105445780635802c5bd146105815780636352211e146105ac57806365f13097146105e95780636f548cda146106145780636f8b44b01461063d57610272565b806333bc1c5c146104905780633ccfd60b146104bb57806342842e0e146104c557806349590657146104ee5780634cf5f7a41461051957610272565b806318160ddd1161023a57806318160ddd1461036e5780631c16521c146103995780632303bbf4146103d657806323b872dd146103ff5780632f745c591461042857806331d172ba1461046557610272565b806301ffc9a7146102775780630675b7c6146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061357f565b610a20565b6040516102ab9190613b25565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906135d9565b610b6a565b005b3480156102e957600080fd5b506102f2610b8c565b6040516102ff9190613b5b565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613622565b610c1e565b60405161033c9190613a65565b60405180910390f35b34801561035157600080fd5b5061036c600480360381019061036791906134e5565b610c9a565b005b34801561037a57600080fd5b50610383610da5565b6040516103909190613cdd565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613335565b610dae565b6040516103cd9190613cdd565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f8919061364f565b610dc6565b005b34801561040b57600080fd5b50610426600480360381019061042191906133cf565b611280565b005b34801561043457600080fd5b5061044f600480360381019061044a91906134e5565b611290565b60405161045c9190613cdd565b60405180910390f35b34801561047157600080fd5b5061047a611451565b6040516104879190613cdd565b60405180910390f35b34801561049c57600080fd5b506104a5611457565b6040516104b29190613b25565b60405180910390f35b6104c361146a565b005b3480156104d157600080fd5b506104ec60048036038101906104e791906133cf565b6114c2565b005b3480156104fa57600080fd5b506105036114e2565b6040516105109190613b40565b60405180910390f35b34801561052557600080fd5b5061052e6114ec565b60405161053b9190613b5b565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190613622565b61157a565b6040516105789190613cdd565b60405180910390f35b34801561058d57600080fd5b506105966115c4565b6040516105a39190613cdd565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190613622565b6115c9565b6040516105e09190613a65565b60405180910390f35b3480156105f557600080fd5b506105fe6115df565b60405161060b9190613cdd565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613525565b6115e4565b005b34801561064957600080fd5b50610664600480360381019061065f9190613622565b611609565b005b34801561067257600080fd5b5061068d60048036038101906106889190613335565b61161b565b60405161069a9190613cdd565b60405180910390f35b3480156106af57600080fd5b506106b86116fb565b005b3480156106c657600080fd5b506106cf61170f565b6040516106dc9190613b25565b60405180910390f35b3480156106f157600080fd5b5061070c60048036038101906107079190613622565b611722565b005b34801561071a57600080fd5b5061073560048036038101906107309190613552565b611734565b005b34801561074357600080fd5b5061074c611746565b6040516107599190613b03565b60405180910390f35b34801561076e57600080fd5b506107776117f8565b6040516107849190613b25565b60405180910390f35b34801561079957600080fd5b506107a261180b565b6040516107af9190613a65565b60405180910390f35b3480156107c457600080fd5b506107cd611835565b6040516107da9190613b5b565b60405180910390f35b3480156107ef57600080fd5b506107f86118c7565b6040516108059190613cdd565b60405180910390f35b61082860048036038101906108239190613622565b6118cd565b005b34801561083657600080fd5b50610851600480360381019061084c91906134a5565b611b22565b005b34801561085f57600080fd5b5061087a60048036038101906108759190613335565b611c9a565b6040516108879190613cdd565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b291906135d9565b611cb2565b005b3480156108c557600080fd5b506108e060048036038101906108db9190613422565b611cd4565b005b3480156108ee57600080fd5b506108f7611d27565b005b34801561090557600080fd5b5061090e611da7565b005b34801561091c57600080fd5b5061093760048036038101906109329190613622565b611ddb565b6040516109449190613b5b565b60405180910390f35b34801561095957600080fd5b50610962611e89565b60405161096f9190613cdd565b60405180910390f35b34801561098457600080fd5b5061098d611e8f565b005b34801561099b57600080fd5b506109a4611ec3565b6040516109b19190613b25565b60405180910390f35b3480156109c657600080fd5b506109e160048036038101906109dc919061338f565b611ed6565b6040516109ee9190613b25565b60405180910390f35b348015610a0357600080fd5b50610a1e6004803603810190610a199190613335565b611f6a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aeb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b635750610b6282611fee565b5b9050919050565b610b72612058565b80600b9080519060200190610b8892919061308f565b5050565b606060018054610b9b90613f80565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc790613f80565b8015610c145780601f10610be957610100808354040283529160200191610c14565b820191906000526020600020905b815481529060010190602001808311610bf757829003601f168201915b5050505050905090565b6000610c29826120d6565b610c5f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca5826115c9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d0d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2c6120e3565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d5e5750610d5c81610d576120e3565b611ed6565b155b15610d95576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610da08383836120eb565b505050565b60008054905090565b60106020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90613c5d565b60405180910390fd5b600d60039054906101000a900460ff16610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613cbd565b60405180910390fd5b60085483610e8f610da5565b610e999190613e10565b1115610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190613c9d565b60405180910390fd5b600283601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f279190613e10565b1115610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90613bfd565b60405180910390fd5b600283610f759190613e66565b8282905014610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090613b9d565b60405180910390fd5b60005b82829050811015611109573073ffffffffffffffffffffffffffffffffffffffff16600d60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663081812fc85858581811061102f5761102e6140e8565b5b905060200201356040518263ffffffff1660e01b81526004016110529190613cdd565b60206040518083038186803b15801561106a57600080fd5b505afa15801561107e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a29190613362565b73ffffffffffffffffffffffffffffffffffffffff16146110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90613bdd565b60405180910390fd5b8061110290613fe3565b9050610fbc565b5060005b828290508110156111f557600d60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686868681811061118d5761118c6140e8565b5b905060200201356040518463ffffffff1660e01b81526004016111b293929190613a80565b600060405180830381600087803b1580156111cc57600080fd5b505af11580156111e0573d6000803e3d6000fd5b50505050806111ee90613fe3565b905061110d565b506002836112039190613e66565b600a60008282546112149190613e10565b9250508190555082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461126a9190613e10565b9250508190555061127b338461219d565b505050565b61128b8383836121bb565b505050565b600061129b8361161b565b82106112d3576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112dd610da5565b905060008060005b83811015611437576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146113d757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611429578684141561142057819550505050505061144b565b83806001019450505b5080806001019150506112e5565b5060006114475761144661402c565b5b5050505b92915050565b600a5481565b600d60009054906101000a900460ff1681565b611472612058565b61147a61180b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156114bf573d6000803e3d6000fd5b50565b6114dd83838360405180602001604052806000815250611cd4565b505050565b6000600f54905090565b600c80546114f990613f80565b80601f016020809104026020016040519081016040528092919081815260200182805461152590613f80565b80156115725780601f1061154757610100808354040283529160200191611572565b820191906000526020600020905b81548152906001019060200180831161155557829003601f168201915b505050505081565b6000611584610da5565b82106115bc576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b600281565b60006115d4826126e0565b600001519050919050565b600281565b6115ec612058565b80600d60036101000a81548160ff02191690831515021790555050565b611611612058565b8060088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611683576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611703612058565b61170d6000612868565b565b600d60039054906101000a900460ff1681565b61172a612058565b8060098190555050565b61173c612058565b80600f8190555050565b6060600033905060006117588261161b565b905060008167ffffffffffffffff81111561177657611775614117565b5b6040519080825280602002602001820160405280156117a45781602001602082028036833780820191505090505b50905060005b828110156117ee576117bc8482611290565b8282815181106117cf576117ce6140e8565b5b60200260200101818152505080806117e690613fe3565b9150506117aa565b5080935050505090565b600d60019054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461184490613f80565b80601f016020809104026020016040519081016040528092919081815260200182805461187090613f80565b80156118bd5780601f10611892576101008083540402835291602001916118bd565b820191906000526020600020905b8154815290600101906020018083116118a057829003601f168201915b5050505050905090565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193290613c5d565b60405180910390fd5b600d60009054906101000a900460ff1661198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613cbd565b60405180910390fd5b60085481611996610da5565b6119a09190613e10565b11156119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890613c9d565b60405180910390fd5b600281601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a2e9190613e10565b1115611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690613bfd565b60405180910390fd5b80600954611a7d9190613e66565b341015611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab690613bbd565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0e9190613e10565b92505081905550611b1f338261219d565b50565b611b2a6120e3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611b9c6120e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c496120e3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c8e9190613b25565b60405180910390a35050565b60116020528060005260406000206000915090505481565b611cba612058565b80600c9080519060200190611cd092919061308f565b5050565b611cdf8484846121bb565b611ceb8484848461292e565b611d21576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611d2f612058565b600d60029054906101000a900460ff1615611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7690613c7d565b60405180910390fd5b6001600d60026101000a81548160ff021916908315150217905550611da533601961219d565b565b611daf612058565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6060611de6826120d6565b611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613c3d565b60405180910390fd5b60008290506000600b8054611e3990613f80565b905011611e555760405180602001604052806000815250611e81565b600b611e6082612abc565b604051602001611e71929190613a36565b6040516020818303038152906040525b915050919050565b60085481565b611e97612058565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60029054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f72612058565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd990613b7d565b60405180910390fd5b611feb81612868565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120606120e3565b73ffffffffffffffffffffffffffffffffffffffff1661207e61180b565b73ffffffffffffffffffffffffffffffffffffffff16146120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90613c1d565b60405180910390fd5b565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6121b7828260405180602001604052806000815250612b94565b5050565b60006121c6826126e0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121ed6120e3565b73ffffffffffffffffffffffffffffffffffffffff16148061224957506122126120e3565b73ffffffffffffffffffffffffffffffffffffffff1661223184610c1e565b73ffffffffffffffffffffffffffffffffffffffff16145b806122655750612264826000015161225f6120e3565b611ed6565b5b90508061229e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612307576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561236e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61237b8585856001612ba6565b61238b60008484600001516120eb565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612670576125cf816120d6565b1561266f5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126d98585856001612bac565b5050505050565b6126e8613115565b6126f1826120d6565b612727576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110612830576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612821578092505050612863565b5080806001900391505061272d565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061294f8473ffffffffffffffffffffffffffffffffffffffff16612bb2565b15612aaf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129786120e3565b8786866040518563ffffffff1660e01b815260040161299a9493929190613ab7565b602060405180830381600087803b1580156129b457600080fd5b505af19250505080156129e557506040513d601f19601f820116820180604052508101906129e291906135ac565b60015b612a5f573d8060008114612a15576040519150601f19603f3d011682016040523d82523d6000602084013e612a1a565b606091505b50600081511415612a57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ab4565b600190505b949350505050565b606060006001612acb84612bd5565b01905060008167ffffffffffffffff811115612aea57612ae9614117565b5b6040519080825280601f01601f191660200182016040528015612b1c5781602001600182028036833780820191505090505b509050600082602001820190505b600115612b89578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612b7357612b7261408a565b5b0494506000851415612b8457612b89565b612b2a565b819350505050919050565b612ba18383836001612d28565b505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612c33577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612c2957612c2861408a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612c70576d04ee2d6d415b85acef81000000008381612c6657612c6561408a565b5b0492506020810190505b662386f26fc100008310612c9f57662386f26fc100008381612c9557612c9461408a565b5b0492506010810190505b6305f5e1008310612cc8576305f5e1008381612cbe57612cbd61408a565b5b0492506008810190505b6127108310612ced576127108381612ce357612ce261408a565b5b0492506004810190505b60648310612d105760648381612d0657612d0561408a565b5b0492506002810190505b600a8310612d1f576001810190505b80915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d95576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612dd0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ddd6000868387612ba6565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561307257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156130265750613024600088848861292e565b155b1561305d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612fab565b5080600081905550506130886000868387612bac565b5050505050565b82805461309b90613f80565b90600052602060002090601f0160209004810192826130bd5760008555613104565b82601f106130d657805160ff1916838001178555613104565b82800160010185558215613104579182015b828111156131035782518255916020019190600101906130e8565b5b509050613111919061314f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613168576000816000905550600101613150565b5090565b600061317f61317a84613d1d565b613cf8565b90508281526020810184848401111561319b5761319a614155565b5b6131a6848285613f3e565b509392505050565b60006131c16131bc84613d4e565b613cf8565b9050828152602081018484840111156131dd576131dc614155565b5b6131e8848285613f3e565b509392505050565b6000813590506131ff816144b7565b92915050565b600081519050613214816144b7565b92915050565b60008083601f8401126132305761322f61414b565b5b8235905067ffffffffffffffff81111561324d5761324c614146565b5b60208301915083602082028301111561326957613268614150565b5b9250929050565b60008135905061327f816144ce565b92915050565b600081359050613294816144e5565b92915050565b6000813590506132a9816144fc565b92915050565b6000815190506132be816144fc565b92915050565b600082601f8301126132d9576132d861414b565b5b81356132e984826020860161316c565b91505092915050565b600082601f8301126133075761330661414b565b5b81356133178482602086016131ae565b91505092915050565b60008135905061332f81614513565b92915050565b60006020828403121561334b5761334a61415f565b5b6000613359848285016131f0565b91505092915050565b6000602082840312156133785761337761415f565b5b600061338684828501613205565b91505092915050565b600080604083850312156133a6576133a561415f565b5b60006133b4858286016131f0565b92505060206133c5858286016131f0565b9150509250929050565b6000806000606084860312156133e8576133e761415f565b5b60006133f6868287016131f0565b9350506020613407868287016131f0565b925050604061341886828701613320565b9150509250925092565b6000806000806080858703121561343c5761343b61415f565b5b600061344a878288016131f0565b945050602061345b878288016131f0565b935050604061346c87828801613320565b925050606085013567ffffffffffffffff81111561348d5761348c61415a565b5b613499878288016132c4565b91505092959194509250565b600080604083850312156134bc576134bb61415f565b5b60006134ca858286016131f0565b92505060206134db85828601613270565b9150509250929050565b600080604083850312156134fc576134fb61415f565b5b600061350a858286016131f0565b925050602061351b85828601613320565b9150509250929050565b60006020828403121561353b5761353a61415f565b5b600061354984828501613270565b91505092915050565b6000602082840312156135685761356761415f565b5b600061357684828501613285565b91505092915050565b6000602082840312156135955761359461415f565b5b60006135a38482850161329a565b91505092915050565b6000602082840312156135c2576135c161415f565b5b60006135d0848285016132af565b91505092915050565b6000602082840312156135ef576135ee61415f565b5b600082013567ffffffffffffffff81111561360d5761360c61415a565b5b613619848285016132f2565b91505092915050565b6000602082840312156136385761363761415f565b5b600061364684828501613320565b91505092915050565b6000806000604084860312156136685761366761415f565b5b600061367686828701613320565b935050602084013567ffffffffffffffff8111156136975761369661415a565b5b6136a38682870161321a565b92509250509250925092565b60006136bb8383613a18565b60208301905092915050565b6136d081613ec0565b82525050565b60006136e182613da4565b6136eb8185613dd2565b93506136f683613d7f565b8060005b8381101561372757815161370e88826136af565b975061371983613dc5565b9250506001810190506136fa565b5085935050505092915050565b61373d81613ed2565b82525050565b61374c81613ede565b82525050565b600061375d82613daf565b6137678185613de3565b9350613777818560208601613f4d565b61378081614164565b840191505092915050565b600061379682613dba565b6137a08185613df4565b93506137b0818560208601613f4d565b6137b981614164565b840191505092915050565b60006137cf82613dba565b6137d98185613e05565b93506137e9818560208601613f4d565b80840191505092915050565b6000815461380281613f80565b61380c8186613e05565b9450600182166000811461382757600181146138385761386b565b60ff1983168652818601935061386b565b61384185613d8f565b60005b8381101561386357815481890152600182019150602081019050613844565b838801955050505b50505092915050565b6000613881602683613df4565b915061388c82614175565b604082019050919050565b60006138a4603383613df4565b91506138af826141c4565b604082019050919050565b60006138c7602083613df4565b91506138d282614213565b602082019050919050565b60006138ea602c83613df4565b91506138f58261423c565b604082019050919050565b600061390d602d83613df4565b91506139188261428b565b604082019050919050565b6000613930600583613e05565b915061393b826142da565b600582019050919050565b6000613953602083613df4565b915061395e82614303565b602082019050919050565b6000613976602f83613df4565b91506139818261432c565b604082019050919050565b6000613999603883613df4565b91506139a48261437b565b604082019050919050565b60006139bc602d83613df4565b91506139c7826143ca565b604082019050919050565b60006139df602b83613df4565b91506139ea82614419565b604082019050919050565b6000613a02602983613df4565b9150613a0d82614468565b604082019050919050565b613a2181613f34565b82525050565b613a3081613f34565b82525050565b6000613a4282856137f5565b9150613a4e82846137c4565b9150613a5982613923565b91508190509392505050565b6000602082019050613a7a60008301846136c7565b92915050565b6000606082019050613a9560008301866136c7565b613aa260208301856136c7565b613aaf6040830184613a27565b949350505050565b6000608082019050613acc60008301876136c7565b613ad960208301866136c7565b613ae66040830185613a27565b8181036060830152613af88184613752565b905095945050505050565b60006020820190508181036000830152613b1d81846136d6565b905092915050565b6000602082019050613b3a6000830184613734565b92915050565b6000602082019050613b556000830184613743565b92915050565b60006020820190508181036000830152613b75818461378b565b905092915050565b60006020820190508181036000830152613b9681613874565b9050919050565b60006020820190508181036000830152613bb681613897565b9050919050565b60006020820190508181036000830152613bd6816138ba565b9050919050565b60006020820190508181036000830152613bf6816138dd565b9050919050565b60006020820190508181036000830152613c1681613900565b9050919050565b60006020820190508181036000830152613c3681613946565b9050919050565b60006020820190508181036000830152613c5681613969565b9050919050565b60006020820190508181036000830152613c768161398c565b9050919050565b60006020820190508181036000830152613c96816139af565b9050919050565b60006020820190508181036000830152613cb6816139d2565b9050919050565b60006020820190508181036000830152613cd6816139f5565b9050919050565b6000602082019050613cf26000830184613a27565b92915050565b6000613d02613d13565b9050613d0e8282613fb2565b919050565b6000604051905090565b600067ffffffffffffffff821115613d3857613d37614117565b5b613d4182614164565b9050602081019050919050565b600067ffffffffffffffff821115613d6957613d68614117565b5b613d7282614164565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e1b82613f34565b9150613e2683613f34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e5b57613e5a61405b565b5b828201905092915050565b6000613e7182613f34565b9150613e7c83613f34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eb557613eb461405b565b5b828202905092915050565b6000613ecb82613f14565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f6b578082015181840152602081019050613f50565b83811115613f7a576000848401525b50505050565b60006002820490506001821680613f9857607f821691505b60208210811415613fac57613fab6140b9565b5b50919050565b613fbb82614164565b810181811067ffffffffffffffff82111715613fda57613fd9614117565b5b80604052505050565b6000613fee82613f34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140215761402061405b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a204e6f7420656e60008201527f6f75676820746f6b656e7320746f206275726e00000000000000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a2042656c6f7720600082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a20546f6b656e2060008201527f6e6f7420617070726f7665640000000000000000000000000000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a20416c7265616460008201527f79206d6178206d696e7465642100000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a2043616e6e6f7460008201527f2062652063616c6c6564206279206120636f6e74726163740000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a205465616d206160008201527f6c7265616479206d696e74656400000000000000000000000000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a204265796f6e6460008201527f204d617820537570706c79000000000000000000000000000000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a204e6f7420596560008201527f74204163746976652e0000000000000000000000000000000000000000000000602082015250565b6144c081613ec0565b81146144cb57600080fd5b50565b6144d781613ed2565b81146144e257600080fd5b50565b6144ee81613ede565b81146144f957600080fd5b50565b61450581613ee8565b811461451057600080fd5b50565b61451c81613f34565b811461452757600080fd5b5056fea264697066735822122024f6087d715082e3ff8d9a9125fa330cb24a8cd5dba98469890d448929378a2b64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102725760003560e01c806370a082311161014f578063a22cb465116100c1578063c87b56dd1161007a578063c87b56dd14610910578063d5abeb011461094d578063e222c7f914610978578063e8b5498d1461098f578063e985e9c5146109ba578063f2fde38b146109f757610272565b8063a22cb4651461082a578063afc26f8514610853578063b0962c5314610890578063b88d4fde146108b9578063ba7a86b8146108e2578063c4ae3168146108f957610272565b806383a974a21161011357806383a974a2146107375780638456cb59146107625780638da5cb5b1461078d57806395d89b41146107b85780639b6860c8146107e3578063a0712d681461080e57610272565b806370a0823114610666578063715018a6146106a357806372a36dba146106ba578063791a2519146106e55780637cb647591461070e57610272565b806333bc1c5c116101e85780634f6ccce7116101ac5780634f6ccce7146105445780635802c5bd146105815780636352211e146105ac57806365f13097146105e95780636f548cda146106145780636f8b44b01461063d57610272565b806333bc1c5c146104905780633ccfd60b146104bb57806342842e0e146104c557806349590657146104ee5780634cf5f7a41461051957610272565b806318160ddd1161023a57806318160ddd1461036e5780631c16521c146103995780632303bbf4146103d657806323b872dd146103ff5780632f745c591461042857806331d172ba1461046557610272565b806301ffc9a7146102775780630675b7c6146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e6004803603810190610299919061357f565b610a20565b6040516102ab9190613b25565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d691906135d9565b610b6a565b005b3480156102e957600080fd5b506102f2610b8c565b6040516102ff9190613b5b565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613622565b610c1e565b60405161033c9190613a65565b60405180910390f35b34801561035157600080fd5b5061036c600480360381019061036791906134e5565b610c9a565b005b34801561037a57600080fd5b50610383610da5565b6040516103909190613cdd565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613335565b610dae565b6040516103cd9190613cdd565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f8919061364f565b610dc6565b005b34801561040b57600080fd5b50610426600480360381019061042191906133cf565b611280565b005b34801561043457600080fd5b5061044f600480360381019061044a91906134e5565b611290565b60405161045c9190613cdd565b60405180910390f35b34801561047157600080fd5b5061047a611451565b6040516104879190613cdd565b60405180910390f35b34801561049c57600080fd5b506104a5611457565b6040516104b29190613b25565b60405180910390f35b6104c361146a565b005b3480156104d157600080fd5b506104ec60048036038101906104e791906133cf565b6114c2565b005b3480156104fa57600080fd5b506105036114e2565b6040516105109190613b40565b60405180910390f35b34801561052557600080fd5b5061052e6114ec565b60405161053b9190613b5b565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190613622565b61157a565b6040516105789190613cdd565b60405180910390f35b34801561058d57600080fd5b506105966115c4565b6040516105a39190613cdd565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190613622565b6115c9565b6040516105e09190613a65565b60405180910390f35b3480156105f557600080fd5b506105fe6115df565b60405161060b9190613cdd565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613525565b6115e4565b005b34801561064957600080fd5b50610664600480360381019061065f9190613622565b611609565b005b34801561067257600080fd5b5061068d60048036038101906106889190613335565b61161b565b60405161069a9190613cdd565b60405180910390f35b3480156106af57600080fd5b506106b86116fb565b005b3480156106c657600080fd5b506106cf61170f565b6040516106dc9190613b25565b60405180910390f35b3480156106f157600080fd5b5061070c60048036038101906107079190613622565b611722565b005b34801561071a57600080fd5b5061073560048036038101906107309190613552565b611734565b005b34801561074357600080fd5b5061074c611746565b6040516107599190613b03565b60405180910390f35b34801561076e57600080fd5b506107776117f8565b6040516107849190613b25565b60405180910390f35b34801561079957600080fd5b506107a261180b565b6040516107af9190613a65565b60405180910390f35b3480156107c457600080fd5b506107cd611835565b6040516107da9190613b5b565b60405180910390f35b3480156107ef57600080fd5b506107f86118c7565b6040516108059190613cdd565b60405180910390f35b61082860048036038101906108239190613622565b6118cd565b005b34801561083657600080fd5b50610851600480360381019061084c91906134a5565b611b22565b005b34801561085f57600080fd5b5061087a60048036038101906108759190613335565b611c9a565b6040516108879190613cdd565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b291906135d9565b611cb2565b005b3480156108c557600080fd5b506108e060048036038101906108db9190613422565b611cd4565b005b3480156108ee57600080fd5b506108f7611d27565b005b34801561090557600080fd5b5061090e611da7565b005b34801561091c57600080fd5b5061093760048036038101906109329190613622565b611ddb565b6040516109449190613b5b565b60405180910390f35b34801561095957600080fd5b50610962611e89565b60405161096f9190613cdd565b60405180910390f35b34801561098457600080fd5b5061098d611e8f565b005b34801561099b57600080fd5b506109a4611ec3565b6040516109b19190613b25565b60405180910390f35b3480156109c657600080fd5b506109e160048036038101906109dc919061338f565b611ed6565b6040516109ee9190613b25565b60405180910390f35b348015610a0357600080fd5b50610a1e6004803603810190610a199190613335565b611f6a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aeb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b5357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b635750610b6282611fee565b5b9050919050565b610b72612058565b80600b9080519060200190610b8892919061308f565b5050565b606060018054610b9b90613f80565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc790613f80565b8015610c145780601f10610be957610100808354040283529160200191610c14565b820191906000526020600020905b815481529060010190602001808311610bf757829003601f168201915b5050505050905090565b6000610c29826120d6565b610c5f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca5826115c9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d0d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2c6120e3565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d5e5750610d5c81610d576120e3565b611ed6565b155b15610d95576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610da08383836120eb565b505050565b60008054905090565b60106020528060005260406000206000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90613c5d565b60405180910390fd5b600d60039054906101000a900460ff16610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613cbd565b60405180910390fd5b60085483610e8f610da5565b610e999190613e10565b1115610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed190613c9d565b60405180910390fd5b600283601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f279190613e10565b1115610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90613bfd565b60405180910390fd5b600283610f759190613e66565b8282905014610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090613b9d565b60405180910390fd5b60005b82829050811015611109573073ffffffffffffffffffffffffffffffffffffffff16600d60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663081812fc85858581811061102f5761102e6140e8565b5b905060200201356040518263ffffffff1660e01b81526004016110529190613cdd565b60206040518083038186803b15801561106a57600080fd5b505afa15801561107e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a29190613362565b73ffffffffffffffffffffffffffffffffffffffff16146110f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ef90613bdd565b60405180910390fd5b8061110290613fe3565b9050610fbc565b5060005b828290508110156111f557600d60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd33600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686868681811061118d5761118c6140e8565b5b905060200201356040518463ffffffff1660e01b81526004016111b293929190613a80565b600060405180830381600087803b1580156111cc57600080fd5b505af11580156111e0573d6000803e3d6000fd5b50505050806111ee90613fe3565b905061110d565b506002836112039190613e66565b600a60008282546112149190613e10565b9250508190555082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461126a9190613e10565b9250508190555061127b338461219d565b505050565b61128b8383836121bb565b505050565b600061129b8361161b565b82106112d3576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112dd610da5565b905060008060005b83811015611437576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146113d757806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611429578684141561142057819550505050505061144b565b83806001019450505b5080806001019150506112e5565b5060006114475761144661402c565b5b5050505b92915050565b600a5481565b600d60009054906101000a900460ff1681565b611472612058565b61147a61180b565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156114bf573d6000803e3d6000fd5b50565b6114dd83838360405180602001604052806000815250611cd4565b505050565b6000600f54905090565b600c80546114f990613f80565b80601f016020809104026020016040519081016040528092919081815260200182805461152590613f80565b80156115725780601f1061154757610100808354040283529160200191611572565b820191906000526020600020905b81548152906001019060200180831161155557829003601f168201915b505050505081565b6000611584610da5565b82106115bc576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b600281565b60006115d4826126e0565b600001519050919050565b600281565b6115ec612058565b80600d60036101000a81548160ff02191690831515021790555050565b611611612058565b8060088190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611683576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611703612058565b61170d6000612868565b565b600d60039054906101000a900460ff1681565b61172a612058565b8060098190555050565b61173c612058565b80600f8190555050565b6060600033905060006117588261161b565b905060008167ffffffffffffffff81111561177657611775614117565b5b6040519080825280602002602001820160405280156117a45781602001602082028036833780820191505090505b50905060005b828110156117ee576117bc8482611290565b8282815181106117cf576117ce6140e8565b5b60200260200101818152505080806117e690613fe3565b9150506117aa565b5080935050505090565b600d60019054906101000a900460ff1681565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461184490613f80565b80601f016020809104026020016040519081016040528092919081815260200182805461187090613f80565b80156118bd5780601f10611892576101008083540402835291602001916118bd565b820191906000526020600020905b8154815290600101906020018083116118a057829003601f168201915b5050505050905090565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193290613c5d565b60405180910390fd5b600d60009054906101000a900460ff1661198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198190613cbd565b60405180910390fd5b60085481611996610da5565b6119a09190613e10565b11156119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890613c9d565b60405180910390fd5b600281601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a2e9190613e10565b1115611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690613bfd565b60405180910390fd5b80600954611a7d9190613e66565b341015611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab690613bbd565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0e9190613e10565b92505081905550611b1f338261219d565b50565b611b2a6120e3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b8f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611b9c6120e3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c496120e3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c8e9190613b25565b60405180910390a35050565b60116020528060005260406000206000915090505481565b611cba612058565b80600c9080519060200190611cd092919061308f565b5050565b611cdf8484846121bb565b611ceb8484848461292e565b611d21576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611d2f612058565b600d60029054906101000a900460ff1615611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7690613c7d565b60405180910390fd5b6001600d60026101000a81548160ff021916908315150217905550611da533601961219d565b565b611daf612058565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6060611de6826120d6565b611e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1c90613c3d565b60405180910390fd5b60008290506000600b8054611e3990613f80565b905011611e555760405180602001604052806000815250611e81565b600b611e6082612abc565b604051602001611e71929190613a36565b6040516020818303038152906040525b915050919050565b60085481565b611e97612058565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b600d60029054906101000a900460ff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f72612058565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd990613b7d565b60405180910390fd5b611feb81612868565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6120606120e3565b73ffffffffffffffffffffffffffffffffffffffff1661207e61180b565b73ffffffffffffffffffffffffffffffffffffffff16146120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90613c1d565b60405180910390fd5b565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6121b7828260405180602001604052806000815250612b94565b5050565b60006121c6826126e0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121ed6120e3565b73ffffffffffffffffffffffffffffffffffffffff16148061224957506122126120e3565b73ffffffffffffffffffffffffffffffffffffffff1661223184610c1e565b73ffffffffffffffffffffffffffffffffffffffff16145b806122655750612264826000015161225f6120e3565b611ed6565b5b90508061229e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612307576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561236e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61237b8585856001612ba6565b61238b60008484600001516120eb565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612670576125cf816120d6565b1561266f5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126d98585856001612bac565b5050505050565b6126e8613115565b6126f1826120d6565b612727576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110612830576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612821578092505050612863565b5080806001900391505061272d565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061294f8473ffffffffffffffffffffffffffffffffffffffff16612bb2565b15612aaf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129786120e3565b8786866040518563ffffffff1660e01b815260040161299a9493929190613ab7565b602060405180830381600087803b1580156129b457600080fd5b505af19250505080156129e557506040513d601f19601f820116820180604052508101906129e291906135ac565b60015b612a5f573d8060008114612a15576040519150601f19603f3d011682016040523d82523d6000602084013e612a1a565b606091505b50600081511415612a57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ab4565b600190505b949350505050565b606060006001612acb84612bd5565b01905060008167ffffffffffffffff811115612aea57612ae9614117565b5b6040519080825280601f01601f191660200182016040528015612b1c5781602001600182028036833780820191505090505b509050600082602001820190505b600115612b89578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612b7357612b7261408a565b5b0494506000851415612b8457612b89565b612b2a565b819350505050919050565b612ba18383836001612d28565b505050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612c33577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612c2957612c2861408a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612c70576d04ee2d6d415b85acef81000000008381612c6657612c6561408a565b5b0492506020810190505b662386f26fc100008310612c9f57662386f26fc100008381612c9557612c9461408a565b5b0492506010810190505b6305f5e1008310612cc8576305f5e1008381612cbe57612cbd61408a565b5b0492506008810190505b6127108310612ced576127108381612ce357612ce261408a565b5b0492506004810190505b60648310612d105760648381612d0657612d0561408a565b5b0492506002810190505b600a8310612d1f576001810190505b80915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d95576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612dd0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ddd6000868387612ba6565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561307257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156130265750613024600088848861292e565b155b1561305d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612fab565b5080600081905550506130886000868387612bac565b5050505050565b82805461309b90613f80565b90600052602060002090601f0160209004810192826130bd5760008555613104565b82601f106130d657805160ff1916838001178555613104565b82800160010185558215613104579182015b828111156131035782518255916020019190600101906130e8565b5b509050613111919061314f565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613168576000816000905550600101613150565b5090565b600061317f61317a84613d1d565b613cf8565b90508281526020810184848401111561319b5761319a614155565b5b6131a6848285613f3e565b509392505050565b60006131c16131bc84613d4e565b613cf8565b9050828152602081018484840111156131dd576131dc614155565b5b6131e8848285613f3e565b509392505050565b6000813590506131ff816144b7565b92915050565b600081519050613214816144b7565b92915050565b60008083601f8401126132305761322f61414b565b5b8235905067ffffffffffffffff81111561324d5761324c614146565b5b60208301915083602082028301111561326957613268614150565b5b9250929050565b60008135905061327f816144ce565b92915050565b600081359050613294816144e5565b92915050565b6000813590506132a9816144fc565b92915050565b6000815190506132be816144fc565b92915050565b600082601f8301126132d9576132d861414b565b5b81356132e984826020860161316c565b91505092915050565b600082601f8301126133075761330661414b565b5b81356133178482602086016131ae565b91505092915050565b60008135905061332f81614513565b92915050565b60006020828403121561334b5761334a61415f565b5b6000613359848285016131f0565b91505092915050565b6000602082840312156133785761337761415f565b5b600061338684828501613205565b91505092915050565b600080604083850312156133a6576133a561415f565b5b60006133b4858286016131f0565b92505060206133c5858286016131f0565b9150509250929050565b6000806000606084860312156133e8576133e761415f565b5b60006133f6868287016131f0565b9350506020613407868287016131f0565b925050604061341886828701613320565b9150509250925092565b6000806000806080858703121561343c5761343b61415f565b5b600061344a878288016131f0565b945050602061345b878288016131f0565b935050604061346c87828801613320565b925050606085013567ffffffffffffffff81111561348d5761348c61415a565b5b613499878288016132c4565b91505092959194509250565b600080604083850312156134bc576134bb61415f565b5b60006134ca858286016131f0565b92505060206134db85828601613270565b9150509250929050565b600080604083850312156134fc576134fb61415f565b5b600061350a858286016131f0565b925050602061351b85828601613320565b9150509250929050565b60006020828403121561353b5761353a61415f565b5b600061354984828501613270565b91505092915050565b6000602082840312156135685761356761415f565b5b600061357684828501613285565b91505092915050565b6000602082840312156135955761359461415f565b5b60006135a38482850161329a565b91505092915050565b6000602082840312156135c2576135c161415f565b5b60006135d0848285016132af565b91505092915050565b6000602082840312156135ef576135ee61415f565b5b600082013567ffffffffffffffff81111561360d5761360c61415a565b5b613619848285016132f2565b91505092915050565b6000602082840312156136385761363761415f565b5b600061364684828501613320565b91505092915050565b6000806000604084860312156136685761366761415f565b5b600061367686828701613320565b935050602084013567ffffffffffffffff8111156136975761369661415a565b5b6136a38682870161321a565b92509250509250925092565b60006136bb8383613a18565b60208301905092915050565b6136d081613ec0565b82525050565b60006136e182613da4565b6136eb8185613dd2565b93506136f683613d7f565b8060005b8381101561372757815161370e88826136af565b975061371983613dc5565b9250506001810190506136fa565b5085935050505092915050565b61373d81613ed2565b82525050565b61374c81613ede565b82525050565b600061375d82613daf565b6137678185613de3565b9350613777818560208601613f4d565b61378081614164565b840191505092915050565b600061379682613dba565b6137a08185613df4565b93506137b0818560208601613f4d565b6137b981614164565b840191505092915050565b60006137cf82613dba565b6137d98185613e05565b93506137e9818560208601613f4d565b80840191505092915050565b6000815461380281613f80565b61380c8186613e05565b9450600182166000811461382757600181146138385761386b565b60ff1983168652818601935061386b565b61384185613d8f565b60005b8381101561386357815481890152600182019150602081019050613844565b838801955050505b50505092915050565b6000613881602683613df4565b915061388c82614175565b604082019050919050565b60006138a4603383613df4565b91506138af826141c4565b604082019050919050565b60006138c7602083613df4565b91506138d282614213565b602082019050919050565b60006138ea602c83613df4565b91506138f58261423c565b604082019050919050565b600061390d602d83613df4565b91506139188261428b565b604082019050919050565b6000613930600583613e05565b915061393b826142da565b600582019050919050565b6000613953602083613df4565b915061395e82614303565b602082019050919050565b6000613976602f83613df4565b91506139818261432c565b604082019050919050565b6000613999603883613df4565b91506139a48261437b565b604082019050919050565b60006139bc602d83613df4565b91506139c7826143ca565b604082019050919050565b60006139df602b83613df4565b91506139ea82614419565b604082019050919050565b6000613a02602983613df4565b9150613a0d82614468565b604082019050919050565b613a2181613f34565b82525050565b613a3081613f34565b82525050565b6000613a4282856137f5565b9150613a4e82846137c4565b9150613a5982613923565b91508190509392505050565b6000602082019050613a7a60008301846136c7565b92915050565b6000606082019050613a9560008301866136c7565b613aa260208301856136c7565b613aaf6040830184613a27565b949350505050565b6000608082019050613acc60008301876136c7565b613ad960208301866136c7565b613ae66040830185613a27565b8181036060830152613af88184613752565b905095945050505050565b60006020820190508181036000830152613b1d81846136d6565b905092915050565b6000602082019050613b3a6000830184613734565b92915050565b6000602082019050613b556000830184613743565b92915050565b60006020820190508181036000830152613b75818461378b565b905092915050565b60006020820190508181036000830152613b9681613874565b9050919050565b60006020820190508181036000830152613bb681613897565b9050919050565b60006020820190508181036000830152613bd6816138ba565b9050919050565b60006020820190508181036000830152613bf6816138dd565b9050919050565b60006020820190508181036000830152613c1681613900565b9050919050565b60006020820190508181036000830152613c3681613946565b9050919050565b60006020820190508181036000830152613c5681613969565b9050919050565b60006020820190508181036000830152613c768161398c565b9050919050565b60006020820190508181036000830152613c96816139af565b9050919050565b60006020820190508181036000830152613cb6816139d2565b9050919050565b60006020820190508181036000830152613cd6816139f5565b9050919050565b6000602082019050613cf26000830184613a27565b92915050565b6000613d02613d13565b9050613d0e8282613fb2565b919050565b6000604051905090565b600067ffffffffffffffff821115613d3857613d37614117565b5b613d4182614164565b9050602081019050919050565b600067ffffffffffffffff821115613d6957613d68614117565b5b613d7282614164565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e1b82613f34565b9150613e2683613f34565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e5b57613e5a61405b565b5b828201905092915050565b6000613e7182613f34565b9150613e7c83613f34565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eb557613eb461405b565b5b828202905092915050565b6000613ecb82613f14565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f6b578082015181840152602081019050613f50565b83811115613f7a576000848401525b50505050565b60006002820490506001821680613f9857607f821691505b60208210811415613fac57613fab6140b9565b5b50919050565b613fbb82614164565b810181811067ffffffffffffffff82111715613fda57613fd9614117565b5b80604052505050565b6000613fee82613f34565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140215761402061405b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a204e6f7420656e60008201527f6f75676820746f6b656e7320746f206275726e00000000000000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a2042656c6f7720600082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a20546f6b656e2060008201527f6e6f7420617070726f7665640000000000000000000000000000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a20416c7265616460008201527f79206d6178206d696e7465642100000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a2043616e6e6f7460008201527f2062652063616c6c6564206279206120636f6e74726163740000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a205465616d206160008201527f6c7265616479206d696e74656400000000000000000000000000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a204265796f6e6460008201527f204d617820537570706c79000000000000000000000000000000000000000000602082015250565b7f45494c61627341495f446973636f756e745f50617373203a3a204e6f7420596560008201527f74204163746976652e0000000000000000000000000000000000000000000000602082015250565b6144c081613ec0565b81146144cb57600080fd5b50565b6144d781613ed2565b81146144e257600080fd5b50565b6144ee81613ede565b81146144f957600080fd5b50565b61450581613ee8565b811461451057600080fd5b50565b61451c81613f34565b811461452757600080fd5b5056fea264697066735822122024f6087d715082e3ff8d9a9125fa330cb24a8cd5dba98469890d448929378a2b64736f6c63430008070033
Deployed Bytecode Sourcemap
64752:5245:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51941:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67831:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53757:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55234:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54823:345;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50208:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65635:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68999:995;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56091:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50862:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65089:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65324:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68494:114;;;:::i;:::-;;56332:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68215:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65165:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50386:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64931:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53566:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64881:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68868:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68754:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52377:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27536:103;;;;;;;;;;;;;:::i;:::-;;65406:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68616:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68102:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67417:406;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65353:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26888:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53926:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64979:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65997:574;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55510:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65692:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67952:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56588:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66579:190;;;;;;;;;;;;;:::i;:::-;;68315:74;;;;;;;;;;;;;:::i;:::-;;66934:389;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64844:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68397:89;;;;;;;;;;;;;:::i;:::-;;65377:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55860:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27794:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51941:372;52043:4;52095:25;52080:40;;;:11;:40;;;;:105;;;;52152:33;52137:48;;;:11;:48;;;;52080:105;:172;;;;52217:35;52202:50;;;:11;:50;;;;52080:172;:225;;;;52269:36;52293:11;52269:23;:36::i;:::-;52080:225;52060:245;;51941:372;;;:::o;67831:115::-;26774:13;:11;:13::i;:::-;67925::::1;67910:12;:28;;;;;;;;;;;;:::i;:::-;;67831:115:::0;:::o;53757:100::-;53811:13;53844:5;53837:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53757:100;:::o;55234:204::-;55302:7;55327:16;55335:7;55327;:16::i;:::-;55322:64;;55352:34;;;;;;;;;;;;;;55322:64;55406:15;:24;55422:7;55406:24;;;;;;;;;;;;;;;;;;;;;55399:31;;55234:204;;;:::o;54823:345::-;54896:13;54912:24;54928:7;54912:15;:24::i;:::-;54896:40;;54957:5;54951:11;;:2;:11;;;54947:48;;;54971:24;;;;;;;;;;;;;;54947:48;55028:5;55012:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;55038:37;55055:5;55062:12;:10;:12::i;:::-;55038:16;:37::i;:::-;55037:38;55012:63;55008:111;;;55084:35;;;;;;;;;;;;;;55008:111;55132:28;55141:2;55145:7;55154:5;55132:8;:28::i;:::-;54885:283;54823:345;;:::o;50208:101::-;50261:7;50288:13;;50281:20;;50208:101;:::o;65635:50::-;;;;;;;;;;;;;;;;;:::o;68999:995::-;65898:10;65885:23;;:9;:23;;;65877:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;69106:15:::1;;;;;;;;;;;69098:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;69217:9;;69203;69187:13;:11;:13::i;:::-;:25;;;;:::i;:::-;69186:40;;69178:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;64971:1;69321:9;69294:13;:25;69308:10;69294:25;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;69293:55;;69285:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;69447:1;69437:9;:11;;;;:::i;:::-;69417:9;;:16;;:31;69409:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;69521:9;69517:183;69540:9;;:16;;69536:1;:20;69517:183;;;69634:4;69585:54;;:11;;;;;;;;;;;:23;;;69609:9;;69619:1;69609:12;;;;;;;:::i;:::-;;;;;;;;69585:37;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:54;;;69577:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;69558:3;;;;:::i;:::-;;;69517:183;;;;69714:9;69710:144;69733:9;;:16;;69729:1;:20;69710:144;;;69770:11;;;;;;;;;;;:24;;;69795:10;69815:11;;;;;;;;;;;69829:9;;69839:1;69829:12;;;;;;;:::i;:::-;;;;;;;;69770:72;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;69751:3;;;;:::i;:::-;;;69710:144;;;;69893:1;69883:9;:11;;;;:::i;:::-;69866:13;;:28;;;;;;;:::i;:::-;;;;;;;;69934:9;69905:13;:25;69919:10;69905:25;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;69954:32;69964:10;69976:9;69954;:32::i;:::-;68999:995:::0;;;:::o;56091:170::-;56225:28;56235:4;56241:2;56245:7;56225:9;:28::i;:::-;56091:170;;;:::o;50862:1007::-;50951:7;50984:16;50994:5;50984:9;:16::i;:::-;50975:5;:25;50971:61;;51009:23;;;;;;;;;;;;;;50971:61;51043:22;51068:13;:11;:13::i;:::-;51043:38;;51092:19;51122:25;51311:9;51306:466;51326:14;51322:1;:18;51306:466;;;51366:31;51400:11;:14;51412:1;51400:14;;;;;;;;;;;51366:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51463:1;51437:28;;:9;:14;;;:28;;;51433:111;;51510:9;:14;;;51490:34;;51433:111;51587:5;51566:26;;:17;:26;;;51562:195;;;51636:5;51621:11;:20;51617:85;;;51677:1;51670:8;;;;;;;;;51617:85;51724:13;;;;;;;51562:195;51347:425;51342:3;;;;;;;51306:466;;;;51855:5;51848:13;;;;:::i;:::-;;50960:909;;;50862:1007;;;;;:::o;65089:32::-;;;;:::o;65324:22::-;;;;;;;;;;;;;:::o;68494:114::-;26774:13;:11;:13::i;:::-;68560:7:::1;:5;:7::i;:::-;68552:25;;:48;68578:21;68552:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68494:114::o:0;56332:185::-;56470:39;56487:4;56493:2;56497:7;56470:39;;;;;;;;;;;;:16;:39::i;:::-;56332:185;;;:::o;68215:92::-;68263:7;68289:10;;68282:17;;68215:92;:::o;65165:35::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50386:176::-;50453:7;50486:13;:11;:13::i;:::-;50477:5;:22;50473:58;;50508:23;;;;;;;;;;;;;;50473:58;50549:5;50542:12;;50386:176;;;:::o;64931:41::-;64971:1;64931:41;:::o;53566:124::-;53630:7;53657:20;53669:7;53657:11;:20::i;:::-;:25;;;53650:32;;53566:124;;;:::o;64881:43::-;64923:1;64881:43;:::o;68868:123::-;26774:13;:11;:13::i;:::-;68967:16:::1;68949:15;;:34;;;;;;;;;;;;;;;;;;68868:123:::0;:::o;68754:106::-;26774:13;:11;:13::i;:::-;68840:12:::1;68828:9;:24;;;;68754:106:::0;:::o;52377:206::-;52441:7;52482:1;52465:19;;:5;:19;;;52461:60;;;52493:28;;;;;;;;;;;;;;52461:60;52547:12;:19;52560:5;52547:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;52539:36;;52532:43;;52377:206;;;:::o;27536:103::-;26774:13;:11;:13::i;:::-;27601:30:::1;27628:1;27601:18;:30::i;:::-;27536:103::o:0;65406:34::-;;;;;;;;;;;;;:::o;68616:130::-;26774:13;:11;:13::i;:::-;68720:18:::1;68702:15;:36;;;;68616:130:::0;:::o;68102:105::-;26774:13;:11;:13::i;:::-;68188:11:::1;68175:10;:24;;;;68102:105:::0;:::o;67417:406::-;67459:16;67487:14;67504:10;67487:27;;67525:24;67552:17;67562:6;67552:9;:17::i;:::-;67525:44;;67580:25;67622:16;67608:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67580:59;;67656:13;67652:136;67683:16;67675:5;:24;67652:136;;;67742:34;67762:6;67770:5;67742:19;:34::i;:::-;67724:8;67733:5;67724:15;;;;;;;;:::i;:::-;;;;;;;:52;;;;;67701:7;;;;;:::i;:::-;;;;67652:136;;;;67807:8;67800:15;;;;;67417:406;:::o;65353:17::-;;;;;;;;;;;;;:::o;26888:87::-;26934:7;26961:6;;;;;;;;;;;26954:13;;26888:87;:::o;53926:104::-;53982:13;54015:7;54008:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53926:104;:::o;64979:44::-;;;;:::o;65997:574::-;65898:10;65885:23;;:9;:23;;;65877:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;66078:10:::1;;;;;;;;;;;66070:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;66184:9;;66170;66154:13;:11;:13::i;:::-;:25;;;;:::i;:::-;66153:40;;66145:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;64923:1;66290:9;66261:15;:27;66277:10;66261:27;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;66260:59;;66252:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;66420:9;66402:15;;:27;;;;:::i;:::-;66388:9;:42;;66380:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;66511:9;66480:15;:27;66496:10;66480:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;66531:32;66541:10;66553:9;66531;:32::i;:::-;65997:574:::0;:::o;55510:279::-;55613:12;:10;:12::i;:::-;55601:24;;:8;:24;;;55597:54;;;55634:17;;;;;;;;;;;;;;55597:54;55709:8;55664:18;:32;55683:12;:10;:12::i;:::-;55664:32;;;;;;;;;;;;;;;:42;55697:8;55664:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;55762:8;55733:48;;55748:12;:10;:12::i;:::-;55733:48;;;55772:8;55733:48;;;;;;:::i;:::-;;;;;;;;55510:279;;:::o;65692:48::-;;;;;;;;;;;;;;;;;:::o;67952:142::-;26774:13;:11;:13::i;:::-;68066:20:::1;68044:19;:42;;;;;;;;;;;;:::i;:::-;;67952:142:::0;:::o;56588:308::-;56747:28;56757:4;56763:2;56767:7;56747:9;:28::i;:::-;56791:48;56814:4;56820:2;56824:7;56833:5;56791:22;:48::i;:::-;56786:102;;56848:40;;;;;;;;;;;;;;56786:102;56588:308;;;;:::o;66579:190::-;26774:13;:11;:13::i;:::-;66637:10:::1;;;;;;;;;;;66636:11;66628:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;66721:4;66708:10;;:17;;;;;;;;;;;;;;;;;;66736:25;66746:10;66758:2;66736:9;:25::i;:::-;66579:190::o:0;68315:74::-;26774:13;:11;:13::i;:::-;68376:5:::1;;;;;;;;;;;68375:6;68367:5;;:14;;;;;;;;;;;;;;;;;;68315:74::o:0;66934:389::-;67007:13;67041:16;67049:7;67041;:16::i;:::-;67033:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;67120:14;67137:7;67120:24;;67240:1;67217:12;67211:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;67268:12;67282:17;:6;:15;:17::i;:::-;67251:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67211:104;67204:111;;;66934:389;;;:::o;64844:30::-;;;;:::o;68397:89::-;26774:13;:11;:13::i;:::-;68468:10:::1;;;;;;;;;;;68467:11;68454:10;;:24;;;;;;;;;;;;;;;;;;68397:89::o:0;65377:22::-;;;;;;;;;;;;;:::o;55860:164::-;55957:4;55981:18;:25;56000:5;55981:25;;;;;;;;;;;;;;;:35;56007:8;55981:35;;;;;;;;;;;;;;;;;;;;;;;;;55974:42;;55860:164;;;;:::o;27794:201::-;26774:13;:11;:13::i;:::-;27903:1:::1;27883:22;;:8;:22;;;;27875:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27959:28;27978:8;27959:18;:28::i;:::-;27794:201:::0;:::o;40617:157::-;40702:4;40741:25;40726:40;;;:11;:40;;;;40719:47;;40617:157;;;:::o;27053:132::-;27128:12;:10;:12::i;:::-;27117:23;;:7;:5;:7::i;:::-;:23;;;27109:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27053:132::o;57151:112::-;57208:4;57242:13;;57232:7;:23;57225:30;;57151:112;;;:::o;25439:98::-;25492:7;25519:10;25512:17;;25439:98;:::o;61914:196::-;62056:2;62029:15;:24;62045:7;62029:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;62094:7;62090:2;62074:28;;62083:5;62074:28;;;;;;;;;;;;61914:196;;;:::o;57271:104::-;57340:27;57350:2;57354:8;57340:27;;;;;;;;;;;;:9;:27::i;:::-;57271:104;;:::o;59834:1962::-;59949:35;59987:20;59999:7;59987:11;:20::i;:::-;59949:58;;60020:22;60062:13;:18;;;60046:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;60121:12;:10;:12::i;:::-;60097:36;;:20;60109:7;60097:11;:20::i;:::-;:36;;;60046:87;:154;;;;60150:50;60167:13;:18;;;60187:12;:10;:12::i;:::-;60150:16;:50::i;:::-;60046:154;60020:181;;60219:17;60214:66;;60245:35;;;;;;;;;;;;;;60214:66;60317:4;60295:26;;:13;:18;;;:26;;;60291:67;;60330:28;;;;;;;;;;;;;;60291:67;60387:1;60373:16;;:2;:16;;;60369:52;;;60398:23;;;;;;;;;;;;;;60369:52;60434:43;60456:4;60462:2;60466:7;60475:1;60434:21;:43::i;:::-;60542:49;60559:1;60563:7;60572:13;:18;;;60542:8;:49::i;:::-;60917:1;60887:12;:18;60900:4;60887:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60961:1;60933:12;:16;60946:2;60933:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61007:2;60979:11;:20;60991:7;60979:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;61069:15;61024:11;:20;61036:7;61024:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;61337:19;61369:1;61359:7;:11;61337:33;;61430:1;61389:43;;:11;:24;61401:11;61389:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;61385:295;;;61457:20;61465:11;61457:7;:20::i;:::-;61453:212;;;61534:13;:18;;;61502:11;:24;61514:11;61502:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;61617:13;:28;;;61575:11;:24;61587:11;61575:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;61453:212;61385:295;60862:829;61727:7;61723:2;61708:27;;61717:4;61708:27;;;;;;;;;;;;61746:42;61767:4;61773:2;61777:7;61786:1;61746:20;:42::i;:::-;59938:1858;;59834:1962;;;:::o;53000:504::-;53061:21;;:::i;:::-;53100:16;53108:7;53100;:16::i;:::-;53095:61;;53125:31;;;;;;;;;;;;;;53095:61;53199:12;53214:7;53199:22;;53194:245;53231:1;53223:4;:9;53194:245;;53261:31;53295:11;:17;53307:4;53295:17;;;;;;;;;;;53261:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53361:1;53335:28;;:9;:14;;;:28;;;53331:93;;53395:9;53388:16;;;;;;53331:93;53242:197;53234:6;;;;;;;;53194:245;;;;53469:27;;;;;;;;;;;;;;53000:504;;;;:::o;28155:191::-;28229:16;28248:6;;;;;;;;;;;28229:25;;28274:8;28265:6;;:17;;;;;;;;;;;;;;;;;;28329:8;28298:40;;28319:8;28298:40;;;;;;;;;;;;28218:128;28155:191;:::o;62675:765::-;62830:4;62851:15;:2;:13;;;:15::i;:::-;62847:586;;;62903:2;62887:36;;;62924:12;:10;:12::i;:::-;62938:4;62944:7;62953:5;62887:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;62883:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63150:1;63133:6;:13;:18;63129:234;;;63160:40;;;;;;;;;;;;;;63129:234;63313:6;63307:13;63298:6;63294:2;63290:15;63283:38;62883:495;63020:45;;;63010:55;;;:6;:55;;;;63003:62;;;;;62847:586;63417:4;63410:11;;62675:765;;;;;;;:::o;22866:716::-;22922:13;22973:14;23010:1;22990:17;23001:5;22990:10;:17::i;:::-;:21;22973:38;;23026:20;23060:6;23049:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23026:41;;23082:11;23211:6;23207:2;23203:15;23195:6;23191:28;23184:35;;23248:288;23255:4;23248:288;;;23280:5;;;;;;;;23422:8;23417:2;23410:5;23406:14;23401:30;23396:3;23388:44;23478:2;23469:11;;;;;;:::i;:::-;;;;;23512:1;23503:5;:10;23499:21;;;23515:5;;23499:21;23248:288;;;23557:6;23550:13;;;;;22866:716;;;:::o;57738:163::-;57861:32;57867:2;57871:8;57881:5;57888:4;57861:5;:32::i;:::-;57738:163;;;:::o;63928:159::-;;;;;:::o;64499:158::-;;;;;:::o;29586:326::-;29646:4;29903:1;29881:7;:19;;;:23;29874:30;;29586:326;;;:::o;19732:922::-;19785:7;19805:14;19822:1;19805:18;;19872:6;19863:5;:15;19859:102;;19908:6;19899:15;;;;;;:::i;:::-;;;;;19943:2;19933:12;;;;19859:102;19988:6;19979:5;:15;19975:102;;20024:6;20015:15;;;;;;:::i;:::-;;;;;20059:2;20049:12;;;;19975:102;20104:6;20095:5;:15;20091:102;;20140:6;20131:15;;;;;;:::i;:::-;;;;;20175:2;20165:12;;;;20091:102;20220:5;20211;:14;20207:99;;20255:5;20246:14;;;;;;:::i;:::-;;;;;20289:1;20279:11;;;;20207:99;20333:5;20324;:14;20320:99;;20368:5;20359:14;;;;;;:::i;:::-;;;;;20402:1;20392:11;;;;20320:99;20446:5;20437;:14;20433:99;;20481:5;20472:14;;;;;;:::i;:::-;;;;;20515:1;20505:11;;;;20433:99;20559:5;20550;:14;20546:66;;20595:1;20585:11;;;;20546:66;20640:6;20633:13;;;19732:922;;;:::o;58160:1420::-;58299:20;58322:13;;58299:36;;58364:1;58350:16;;:2;:16;;;58346:48;;;58375:19;;;;;;;;;;;;;;58346:48;58421:1;58409:8;:13;58405:44;;;58431:18;;;;;;;;;;;;;;58405:44;58462:61;58492:1;58496:2;58500:12;58514:8;58462:21;:61::i;:::-;58838:8;58802:12;:16;58815:2;58802:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58903:8;58862:12;:16;58875:2;58862:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58962:2;58929:11;:25;58941:12;58929:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;59029:15;58979:11;:25;58991:12;58979:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;59062:20;59085:12;59062:35;;59119:9;59114:330;59134:8;59130:1;:12;59114:330;;;59198:12;59194:2;59173:38;;59190:1;59173:38;;;;;;;;;;;;59234:4;:68;;;;;59243:59;59274:1;59278:2;59282:12;59296:5;59243:22;:59::i;:::-;59242:60;59234:68;59230:164;;;59334:40;;;;;;;;;;;;;;59230:164;59414:14;;;;;;;59144:3;;;;;;;59114:330;;;;59476:12;59460:13;:28;;;;58777:723;59512:60;59541:1;59545:2;59549:12;59563:8;59512:20;:60::i;:::-;58288:1292;58160:1420;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;986:143;;;;:::o;1152:568::-;1225:8;1235:6;1285:3;1278:4;1270:6;1266:17;1262:27;1252:122;;1293:79;;:::i;:::-;1252:122;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:117;;;1458:79;;:::i;:::-;1422:117;1572:4;1564:6;1560:17;1548:29;;1626:3;1618:4;1610:6;1606:17;1596:8;1592:32;1589:41;1586:128;;;1633:79;;:::i;:::-;1586:128;1152:568;;;;;:::o;1726:133::-;1769:5;1807:6;1794:20;1785:29;;1823:30;1847:5;1823:30;:::i;:::-;1726:133;;;;:::o;1865:139::-;1911:5;1949:6;1936:20;1927:29;;1965:33;1992:5;1965:33;:::i;:::-;1865:139;;;;:::o;2010:137::-;2055:5;2093:6;2080:20;2071:29;;2109:32;2135:5;2109:32;:::i;:::-;2010:137;;;;:::o;2153:141::-;2209:5;2240:6;2234:13;2225:22;;2256:32;2282:5;2256:32;:::i;:::-;2153:141;;;;:::o;2313:338::-;2368:5;2417:3;2410:4;2402:6;2398:17;2394:27;2384:122;;2425:79;;:::i;:::-;2384:122;2542:6;2529:20;2567:78;2641:3;2633:6;2626:4;2618:6;2614:17;2567:78;:::i;:::-;2558:87;;2374:277;2313:338;;;;:::o;2671:340::-;2727:5;2776:3;2769:4;2761:6;2757:17;2753:27;2743:122;;2784:79;;:::i;:::-;2743:122;2901:6;2888:20;2926:79;3001:3;2993:6;2986:4;2978:6;2974:17;2926:79;:::i;:::-;2917:88;;2733:278;2671:340;;;;:::o;3017:139::-;3063:5;3101:6;3088:20;3079:29;;3117:33;3144:5;3117:33;:::i;:::-;3017:139;;;;:::o;3162:329::-;3221:6;3270:2;3258:9;3249:7;3245:23;3241:32;3238:119;;;3276:79;;:::i;:::-;3238:119;3396:1;3421:53;3466:7;3457:6;3446:9;3442:22;3421:53;:::i;:::-;3411:63;;3367:117;3162:329;;;;:::o;3497:351::-;3567:6;3616:2;3604:9;3595:7;3591:23;3587:32;3584:119;;;3622:79;;:::i;:::-;3584:119;3742:1;3767:64;3823:7;3814:6;3803:9;3799:22;3767:64;:::i;:::-;3757:74;;3713:128;3497:351;;;;:::o;3854:474::-;3922:6;3930;3979:2;3967:9;3958:7;3954:23;3950:32;3947:119;;;3985:79;;:::i;:::-;3947:119;4105:1;4130:53;4175:7;4166:6;4155:9;4151:22;4130:53;:::i;:::-;4120:63;;4076:117;4232:2;4258:53;4303:7;4294:6;4283:9;4279:22;4258:53;:::i;:::-;4248:63;;4203:118;3854:474;;;;;:::o;4334:619::-;4411:6;4419;4427;4476:2;4464:9;4455:7;4451:23;4447:32;4444:119;;;4482:79;;:::i;:::-;4444:119;4602:1;4627:53;4672:7;4663:6;4652:9;4648:22;4627:53;:::i;:::-;4617:63;;4573:117;4729:2;4755:53;4800:7;4791:6;4780:9;4776:22;4755:53;:::i;:::-;4745:63;;4700:118;4857:2;4883:53;4928:7;4919:6;4908:9;4904:22;4883:53;:::i;:::-;4873:63;;4828:118;4334:619;;;;;:::o;4959:943::-;5054:6;5062;5070;5078;5127:3;5115:9;5106:7;5102:23;5098:33;5095:120;;;5134:79;;:::i;:::-;5095:120;5254:1;5279:53;5324:7;5315:6;5304:9;5300:22;5279:53;:::i;:::-;5269:63;;5225:117;5381:2;5407:53;5452:7;5443:6;5432:9;5428:22;5407:53;:::i;:::-;5397:63;;5352:118;5509:2;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5480:118;5665:2;5654:9;5650:18;5637:32;5696:18;5688:6;5685:30;5682:117;;;5718:79;;:::i;:::-;5682:117;5823:62;5877:7;5868:6;5857:9;5853:22;5823:62;:::i;:::-;5813:72;;5608:287;4959:943;;;;;;;:::o;5908:468::-;5973:6;5981;6030:2;6018:9;6009:7;6005:23;6001:32;5998:119;;;6036:79;;:::i;:::-;5998:119;6156:1;6181:53;6226:7;6217:6;6206:9;6202:22;6181:53;:::i;:::-;6171:63;;6127:117;6283:2;6309:50;6351:7;6342:6;6331:9;6327:22;6309:50;:::i;:::-;6299:60;;6254:115;5908:468;;;;;:::o;6382:474::-;6450:6;6458;6507:2;6495:9;6486:7;6482:23;6478:32;6475:119;;;6513:79;;:::i;:::-;6475:119;6633:1;6658:53;6703:7;6694:6;6683:9;6679:22;6658:53;:::i;:::-;6648:63;;6604:117;6760:2;6786:53;6831:7;6822:6;6811:9;6807:22;6786:53;:::i;:::-;6776:63;;6731:118;6382:474;;;;;:::o;6862:323::-;6918:6;6967:2;6955:9;6946:7;6942:23;6938:32;6935:119;;;6973:79;;:::i;:::-;6935:119;7093:1;7118:50;7160:7;7151:6;7140:9;7136:22;7118:50;:::i;:::-;7108:60;;7064:114;6862:323;;;;:::o;7191:329::-;7250:6;7299:2;7287:9;7278:7;7274:23;7270:32;7267:119;;;7305:79;;:::i;:::-;7267:119;7425:1;7450:53;7495:7;7486:6;7475:9;7471:22;7450:53;:::i;:::-;7440:63;;7396:117;7191:329;;;;:::o;7526:327::-;7584:6;7633:2;7621:9;7612:7;7608:23;7604:32;7601:119;;;7639:79;;:::i;:::-;7601:119;7759:1;7784:52;7828:7;7819:6;7808:9;7804:22;7784:52;:::i;:::-;7774:62;;7730:116;7526:327;;;;:::o;7859:349::-;7928:6;7977:2;7965:9;7956:7;7952:23;7948:32;7945:119;;;7983:79;;:::i;:::-;7945:119;8103:1;8128:63;8183:7;8174:6;8163:9;8159:22;8128:63;:::i;:::-;8118:73;;8074:127;7859:349;;;;:::o;8214:509::-;8283:6;8332:2;8320:9;8311:7;8307:23;8303:32;8300:119;;;8338:79;;:::i;:::-;8300:119;8486:1;8475:9;8471:17;8458:31;8516:18;8508:6;8505:30;8502:117;;;8538:79;;:::i;:::-;8502:117;8643:63;8698:7;8689:6;8678:9;8674:22;8643:63;:::i;:::-;8633:73;;8429:287;8214:509;;;;:::o;8729:329::-;8788:6;8837:2;8825:9;8816:7;8812:23;8808:32;8805:119;;;8843:79;;:::i;:::-;8805:119;8963:1;8988:53;9033:7;9024:6;9013:9;9009:22;8988:53;:::i;:::-;8978:63;;8934:117;8729:329;;;;:::o;9064:704::-;9159:6;9167;9175;9224:2;9212:9;9203:7;9199:23;9195:32;9192:119;;;9230:79;;:::i;:::-;9192:119;9350:1;9375:53;9420:7;9411:6;9400:9;9396:22;9375:53;:::i;:::-;9365:63;;9321:117;9505:2;9494:9;9490:18;9477:32;9536:18;9528:6;9525:30;9522:117;;;9558:79;;:::i;:::-;9522:117;9671:80;9743:7;9734:6;9723:9;9719:22;9671:80;:::i;:::-;9653:98;;;;9448:313;9064:704;;;;;:::o;9774:179::-;9843:10;9864:46;9906:3;9898:6;9864:46;:::i;:::-;9942:4;9937:3;9933:14;9919:28;;9774:179;;;;:::o;9959:118::-;10046:24;10064:5;10046:24;:::i;:::-;10041:3;10034:37;9959:118;;:::o;10113:732::-;10232:3;10261:54;10309:5;10261:54;:::i;:::-;10331:86;10410:6;10405:3;10331:86;:::i;:::-;10324:93;;10441:56;10491:5;10441:56;:::i;:::-;10520:7;10551:1;10536:284;10561:6;10558:1;10555:13;10536:284;;;10637:6;10631:13;10664:63;10723:3;10708:13;10664:63;:::i;:::-;10657:70;;10750:60;10803:6;10750:60;:::i;:::-;10740:70;;10596:224;10583:1;10580;10576:9;10571:14;;10536:284;;;10540:14;10836:3;10829:10;;10237:608;;;10113:732;;;;:::o;10851:109::-;10932:21;10947:5;10932:21;:::i;:::-;10927:3;10920:34;10851:109;;:::o;10966:118::-;11053:24;11071:5;11053:24;:::i;:::-;11048:3;11041:37;10966:118;;:::o;11090:360::-;11176:3;11204:38;11236:5;11204:38;:::i;:::-;11258:70;11321:6;11316:3;11258:70;:::i;:::-;11251:77;;11337:52;11382:6;11377:3;11370:4;11363:5;11359:16;11337:52;:::i;:::-;11414:29;11436:6;11414:29;:::i;:::-;11409:3;11405:39;11398:46;;11180:270;11090:360;;;;:::o;11456:364::-;11544:3;11572:39;11605:5;11572:39;:::i;:::-;11627:71;11691:6;11686:3;11627:71;:::i;:::-;11620:78;;11707:52;11752:6;11747:3;11740:4;11733:5;11729:16;11707:52;:::i;:::-;11784:29;11806:6;11784:29;:::i;:::-;11779:3;11775:39;11768:46;;11548:272;11456:364;;;;:::o;11826:377::-;11932:3;11960:39;11993:5;11960:39;:::i;:::-;12015:89;12097:6;12092:3;12015:89;:::i;:::-;12008:96;;12113:52;12158:6;12153:3;12146:4;12139:5;12135:16;12113:52;:::i;:::-;12190:6;12185:3;12181:16;12174:23;;11936:267;11826:377;;;;:::o;12233:845::-;12336:3;12373:5;12367:12;12402:36;12428:9;12402:36;:::i;:::-;12454:89;12536:6;12531:3;12454:89;:::i;:::-;12447:96;;12574:1;12563:9;12559:17;12590:1;12585:137;;;;12736:1;12731:341;;;;12552:520;;12585:137;12669:4;12665:9;12654;12650:25;12645:3;12638:38;12705:6;12700:3;12696:16;12689:23;;12585:137;;12731:341;12798:38;12830:5;12798:38;:::i;:::-;12858:1;12872:154;12886:6;12883:1;12880:13;12872:154;;;12960:7;12954:14;12950:1;12945:3;12941:11;12934:35;13010:1;13001:7;12997:15;12986:26;;12908:4;12905:1;12901:12;12896:17;;12872:154;;;13055:6;13050:3;13046:16;13039:23;;12738:334;;12552:520;;12340:738;;12233:845;;;;:::o;13084:366::-;13226:3;13247:67;13311:2;13306:3;13247:67;:::i;:::-;13240:74;;13323:93;13412:3;13323:93;:::i;:::-;13441:2;13436:3;13432:12;13425:19;;13084:366;;;:::o;13456:::-;13598:3;13619:67;13683:2;13678:3;13619:67;:::i;:::-;13612:74;;13695:93;13784:3;13695:93;:::i;:::-;13813:2;13808:3;13804:12;13797:19;;13456:366;;;:::o;13828:::-;13970:3;13991:67;14055:2;14050:3;13991:67;:::i;:::-;13984:74;;14067:93;14156:3;14067:93;:::i;:::-;14185:2;14180:3;14176:12;14169:19;;13828:366;;;:::o;14200:::-;14342:3;14363:67;14427:2;14422:3;14363:67;:::i;:::-;14356:74;;14439:93;14528:3;14439:93;:::i;:::-;14557:2;14552:3;14548:12;14541:19;;14200:366;;;:::o;14572:::-;14714:3;14735:67;14799:2;14794:3;14735:67;:::i;:::-;14728:74;;14811:93;14900:3;14811:93;:::i;:::-;14929:2;14924:3;14920:12;14913:19;;14572:366;;;:::o;14944:400::-;15104:3;15125:84;15207:1;15202:3;15125:84;:::i;:::-;15118:91;;15218:93;15307:3;15218:93;:::i;:::-;15336:1;15331:3;15327:11;15320:18;;14944:400;;;:::o;15350:366::-;15492:3;15513:67;15577:2;15572:3;15513:67;:::i;:::-;15506:74;;15589:93;15678:3;15589:93;:::i;:::-;15707:2;15702:3;15698:12;15691:19;;15350:366;;;:::o;15722:::-;15864:3;15885:67;15949:2;15944:3;15885:67;:::i;:::-;15878:74;;15961:93;16050:3;15961:93;:::i;:::-;16079:2;16074:3;16070:12;16063:19;;15722:366;;;:::o;16094:::-;16236:3;16257:67;16321:2;16316:3;16257:67;:::i;:::-;16250:74;;16333:93;16422:3;16333:93;:::i;:::-;16451:2;16446:3;16442:12;16435:19;;16094:366;;;:::o;16466:::-;16608:3;16629:67;16693:2;16688:3;16629:67;:::i;:::-;16622:74;;16705:93;16794:3;16705:93;:::i;:::-;16823:2;16818:3;16814:12;16807:19;;16466:366;;;:::o;16838:::-;16980:3;17001:67;17065:2;17060:3;17001:67;:::i;:::-;16994:74;;17077:93;17166:3;17077:93;:::i;:::-;17195:2;17190:3;17186:12;17179:19;;16838:366;;;:::o;17210:::-;17352:3;17373:67;17437:2;17432:3;17373:67;:::i;:::-;17366:74;;17449:93;17538:3;17449:93;:::i;:::-;17567:2;17562:3;17558:12;17551:19;;17210:366;;;:::o;17582:108::-;17659:24;17677:5;17659:24;:::i;:::-;17654:3;17647:37;17582:108;;:::o;17696:118::-;17783:24;17801:5;17783:24;:::i;:::-;17778:3;17771:37;17696:118;;:::o;17820:695::-;18098:3;18120:92;18208:3;18199:6;18120:92;:::i;:::-;18113:99;;18229:95;18320:3;18311:6;18229:95;:::i;:::-;18222:102;;18341:148;18485:3;18341:148;:::i;:::-;18334:155;;18506:3;18499:10;;17820:695;;;;;:::o;18521:222::-;18614:4;18652:2;18641:9;18637:18;18629:26;;18665:71;18733:1;18722:9;18718:17;18709:6;18665:71;:::i;:::-;18521:222;;;;:::o;18749:442::-;18898:4;18936:2;18925:9;18921:18;18913:26;;18949:71;19017:1;19006:9;19002:17;18993:6;18949:71;:::i;:::-;19030:72;19098:2;19087:9;19083:18;19074:6;19030:72;:::i;:::-;19112;19180:2;19169:9;19165:18;19156:6;19112:72;:::i;:::-;18749:442;;;;;;:::o;19197:640::-;19392:4;19430:3;19419:9;19415:19;19407:27;;19444:71;19512:1;19501:9;19497:17;19488:6;19444:71;:::i;:::-;19525:72;19593:2;19582:9;19578:18;19569:6;19525:72;:::i;:::-;19607;19675:2;19664:9;19660:18;19651:6;19607:72;:::i;:::-;19726:9;19720:4;19716:20;19711:2;19700:9;19696:18;19689:48;19754:76;19825:4;19816:6;19754:76;:::i;:::-;19746:84;;19197:640;;;;;;;:::o;19843:373::-;19986:4;20024:2;20013:9;20009:18;20001:26;;20073:9;20067:4;20063:20;20059:1;20048:9;20044:17;20037:47;20101:108;20204:4;20195:6;20101:108;:::i;:::-;20093:116;;19843:373;;;;:::o;20222:210::-;20309:4;20347:2;20336:9;20332:18;20324:26;;20360:65;20422:1;20411:9;20407:17;20398:6;20360:65;:::i;:::-;20222:210;;;;:::o;20438:222::-;20531:4;20569:2;20558:9;20554:18;20546:26;;20582:71;20650:1;20639:9;20635:17;20626:6;20582:71;:::i;:::-;20438:222;;;;:::o;20666:313::-;20779:4;20817:2;20806:9;20802:18;20794:26;;20866:9;20860:4;20856:20;20852:1;20841:9;20837:17;20830:47;20894:78;20967:4;20958:6;20894:78;:::i;:::-;20886:86;;20666:313;;;;:::o;20985:419::-;21151:4;21189:2;21178:9;21174:18;21166:26;;21238:9;21232:4;21228:20;21224:1;21213:9;21209:17;21202:47;21266:131;21392:4;21266:131;:::i;:::-;21258:139;;20985:419;;;:::o;21410:::-;21576:4;21614:2;21603:9;21599:18;21591:26;;21663:9;21657:4;21653:20;21649:1;21638:9;21634:17;21627:47;21691:131;21817:4;21691:131;:::i;:::-;21683:139;;21410:419;;;:::o;21835:::-;22001:4;22039:2;22028:9;22024:18;22016:26;;22088:9;22082:4;22078:20;22074:1;22063:9;22059:17;22052:47;22116:131;22242:4;22116:131;:::i;:::-;22108:139;;21835:419;;;:::o;22260:::-;22426:4;22464:2;22453:9;22449:18;22441:26;;22513:9;22507:4;22503:20;22499:1;22488:9;22484:17;22477:47;22541:131;22667:4;22541:131;:::i;:::-;22533:139;;22260:419;;;:::o;22685:::-;22851:4;22889:2;22878:9;22874:18;22866:26;;22938:9;22932:4;22928:20;22924:1;22913:9;22909:17;22902:47;22966:131;23092:4;22966:131;:::i;:::-;22958:139;;22685:419;;;:::o;23110:::-;23276:4;23314:2;23303:9;23299:18;23291:26;;23363:9;23357:4;23353:20;23349:1;23338:9;23334:17;23327:47;23391:131;23517:4;23391:131;:::i;:::-;23383:139;;23110:419;;;:::o;23535:::-;23701:4;23739:2;23728:9;23724:18;23716:26;;23788:9;23782:4;23778:20;23774:1;23763:9;23759:17;23752:47;23816:131;23942:4;23816:131;:::i;:::-;23808:139;;23535:419;;;:::o;23960:::-;24126:4;24164:2;24153:9;24149:18;24141:26;;24213:9;24207:4;24203:20;24199:1;24188:9;24184:17;24177:47;24241:131;24367:4;24241:131;:::i;:::-;24233:139;;23960:419;;;:::o;24385:::-;24551:4;24589:2;24578:9;24574:18;24566:26;;24638:9;24632:4;24628:20;24624:1;24613:9;24609:17;24602:47;24666:131;24792:4;24666:131;:::i;:::-;24658:139;;24385:419;;;:::o;24810:::-;24976:4;25014:2;25003:9;24999:18;24991:26;;25063:9;25057:4;25053:20;25049:1;25038:9;25034:17;25027:47;25091:131;25217:4;25091:131;:::i;:::-;25083:139;;24810:419;;;:::o;25235:::-;25401:4;25439:2;25428:9;25424:18;25416:26;;25488:9;25482:4;25478:20;25474:1;25463:9;25459:17;25452:47;25516:131;25642:4;25516:131;:::i;:::-;25508:139;;25235:419;;;:::o;25660:222::-;25753:4;25791:2;25780:9;25776:18;25768:26;;25804:71;25872:1;25861:9;25857:17;25848:6;25804:71;:::i;:::-;25660:222;;;;:::o;25888:129::-;25922:6;25949:20;;:::i;:::-;25939:30;;25978:33;26006:4;25998:6;25978:33;:::i;:::-;25888:129;;;:::o;26023:75::-;26056:6;26089:2;26083:9;26073:19;;26023:75;:::o;26104:307::-;26165:4;26255:18;26247:6;26244:30;26241:56;;;26277:18;;:::i;:::-;26241:56;26315:29;26337:6;26315:29;:::i;:::-;26307:37;;26399:4;26393;26389:15;26381:23;;26104:307;;;:::o;26417:308::-;26479:4;26569:18;26561:6;26558:30;26555:56;;;26591:18;;:::i;:::-;26555:56;26629:29;26651:6;26629:29;:::i;:::-;26621:37;;26713:4;26707;26703:15;26695:23;;26417:308;;;:::o;26731:132::-;26798:4;26821:3;26813:11;;26851:4;26846:3;26842:14;26834:22;;26731:132;;;:::o;26869:141::-;26918:4;26941:3;26933:11;;26964:3;26961:1;26954:14;26998:4;26995:1;26985:18;26977:26;;26869:141;;;:::o;27016:114::-;27083:6;27117:5;27111:12;27101:22;;27016:114;;;:::o;27136:98::-;27187:6;27221:5;27215:12;27205:22;;27136:98;;;:::o;27240:99::-;27292:6;27326:5;27320:12;27310:22;;27240:99;;;:::o;27345:113::-;27415:4;27447;27442:3;27438:14;27430:22;;27345:113;;;:::o;27464:184::-;27563:11;27597:6;27592:3;27585:19;27637:4;27632:3;27628:14;27613:29;;27464:184;;;;:::o;27654:168::-;27737:11;27771:6;27766:3;27759:19;27811:4;27806:3;27802:14;27787:29;;27654:168;;;;:::o;27828:169::-;27912:11;27946:6;27941:3;27934:19;27986:4;27981:3;27977:14;27962:29;;27828:169;;;;:::o;28003:148::-;28105:11;28142:3;28127:18;;28003:148;;;;:::o;28157:305::-;28197:3;28216:20;28234:1;28216:20;:::i;:::-;28211:25;;28250:20;28268:1;28250:20;:::i;:::-;28245:25;;28404:1;28336:66;28332:74;28329:1;28326:81;28323:107;;;28410:18;;:::i;:::-;28323:107;28454:1;28451;28447:9;28440:16;;28157:305;;;;:::o;28468:348::-;28508:7;28531:20;28549:1;28531:20;:::i;:::-;28526:25;;28565:20;28583:1;28565:20;:::i;:::-;28560:25;;28753:1;28685:66;28681:74;28678:1;28675:81;28670:1;28663:9;28656:17;28652:105;28649:131;;;28760:18;;:::i;:::-;28649:131;28808:1;28805;28801:9;28790:20;;28468:348;;;;:::o;28822:96::-;28859:7;28888:24;28906:5;28888:24;:::i;:::-;28877:35;;28822:96;;;:::o;28924:90::-;28958:7;29001:5;28994:13;28987:21;28976:32;;28924:90;;;:::o;29020:77::-;29057:7;29086:5;29075:16;;29020:77;;;:::o;29103:149::-;29139:7;29179:66;29172:5;29168:78;29157:89;;29103:149;;;:::o;29258:126::-;29295:7;29335:42;29328:5;29324:54;29313:65;;29258:126;;;:::o;29390:77::-;29427:7;29456:5;29445:16;;29390:77;;;:::o;29473:154::-;29557:6;29552:3;29547;29534:30;29619:1;29610:6;29605:3;29601:16;29594:27;29473:154;;;:::o;29633:307::-;29701:1;29711:113;29725:6;29722:1;29719:13;29711:113;;;29810:1;29805:3;29801:11;29795:18;29791:1;29786:3;29782:11;29775:39;29747:2;29744:1;29740:10;29735:15;;29711:113;;;29842:6;29839:1;29836:13;29833:101;;;29922:1;29913:6;29908:3;29904:16;29897:27;29833:101;29682:258;29633:307;;;:::o;29946:320::-;29990:6;30027:1;30021:4;30017:12;30007:22;;30074:1;30068:4;30064:12;30095:18;30085:81;;30151:4;30143:6;30139:17;30129:27;;30085:81;30213:2;30205:6;30202:14;30182:18;30179:38;30176:84;;;30232:18;;:::i;:::-;30176:84;29997:269;29946:320;;;:::o;30272:281::-;30355:27;30377:4;30355:27;:::i;:::-;30347:6;30343:40;30485:6;30473:10;30470:22;30449:18;30437:10;30434:34;30431:62;30428:88;;;30496:18;;:::i;:::-;30428:88;30536:10;30532:2;30525:22;30315:238;30272:281;;:::o;30559:233::-;30598:3;30621:24;30639:5;30621:24;:::i;:::-;30612:33;;30667:66;30660:5;30657:77;30654:103;;;30737:18;;:::i;:::-;30654:103;30784:1;30777:5;30773:13;30766:20;;30559:233;;;:::o;30798:180::-;30846:77;30843:1;30836:88;30943:4;30940:1;30933:15;30967:4;30964:1;30957:15;30984:180;31032:77;31029:1;31022:88;31129:4;31126:1;31119:15;31153:4;31150:1;31143:15;31170:180;31218:77;31215:1;31208:88;31315:4;31312:1;31305:15;31339:4;31336:1;31329:15;31356:180;31404:77;31401:1;31394:88;31501:4;31498:1;31491:15;31525:4;31522:1;31515:15;31542:180;31590:77;31587:1;31580:88;31687:4;31684:1;31677:15;31711:4;31708:1;31701:15;31728:180;31776:77;31773:1;31766:88;31873:4;31870:1;31863:15;31897:4;31894:1;31887:15;31914:117;32023:1;32020;32013:12;32037:117;32146:1;32143;32136:12;32160:117;32269:1;32266;32259:12;32283:117;32392:1;32389;32382:12;32406:117;32515:1;32512;32505:12;32529:117;32638:1;32635;32628:12;32652:102;32693:6;32744:2;32740:7;32735:2;32728:5;32724:14;32720:28;32710:38;;32652:102;;;:::o;32760:225::-;32900:34;32896:1;32888:6;32884:14;32877:58;32969:8;32964:2;32956:6;32952:15;32945:33;32760:225;:::o;32991:238::-;33131:34;33127:1;33119:6;33115:14;33108:58;33200:21;33195:2;33187:6;33183:15;33176:46;32991:238;:::o;33235:182::-;33375:34;33371:1;33363:6;33359:14;33352:58;33235:182;:::o;33423:231::-;33563:34;33559:1;33551:6;33547:14;33540:58;33632:14;33627:2;33619:6;33615:15;33608:39;33423:231;:::o;33660:232::-;33800:34;33796:1;33788:6;33784:14;33777:58;33869:15;33864:2;33856:6;33852:15;33845:40;33660:232;:::o;33898:155::-;34038:7;34034:1;34026:6;34022:14;34015:31;33898:155;:::o;34059:182::-;34199:34;34195:1;34187:6;34183:14;34176:58;34059:182;:::o;34247:234::-;34387:34;34383:1;34375:6;34371:14;34364:58;34456:17;34451:2;34443:6;34439:15;34432:42;34247:234;:::o;34487:243::-;34627:34;34623:1;34615:6;34611:14;34604:58;34696:26;34691:2;34683:6;34679:15;34672:51;34487:243;:::o;34736:232::-;34876:34;34872:1;34864:6;34860:14;34853:58;34945:15;34940:2;34932:6;34928:15;34921:40;34736:232;:::o;34974:230::-;35114:34;35110:1;35102:6;35098:14;35091:58;35183:13;35178:2;35170:6;35166:15;35159:38;34974:230;:::o;35210:228::-;35350:34;35346:1;35338:6;35334:14;35327:58;35419:11;35414:2;35406:6;35402:15;35395:36;35210:228;:::o;35444:122::-;35517:24;35535:5;35517:24;:::i;:::-;35510:5;35507:35;35497:63;;35556:1;35553;35546:12;35497:63;35444:122;:::o;35572:116::-;35642:21;35657:5;35642:21;:::i;:::-;35635:5;35632:32;35622:60;;35678:1;35675;35668:12;35622:60;35572:116;:::o;35694:122::-;35767:24;35785:5;35767:24;:::i;:::-;35760:5;35757:35;35747:63;;35806:1;35803;35796:12;35747:63;35694:122;:::o;35822:120::-;35894:23;35911:5;35894:23;:::i;:::-;35887:5;35884:34;35874:62;;35932:1;35929;35922:12;35874:62;35822:120;:::o;35948:122::-;36021:24;36039:5;36021:24;:::i;:::-;36014:5;36011:35;36001:63;;36060:1;36057;36050:12;36001:63;35948:122;:::o
Swarm Source
ipfs://24f6087d715082e3ff8d9a9125fa330cb24a8cd5dba98469890d448929378a2b
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.